
    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_43e1336c5ffd14b4204afcb8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.943000;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_13518768b0d80d9a68e18e0f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.901000;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_4a598e027a45cf4e5b0a7c00.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.245000;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_84216427974baa8ee9a94bca.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.845000;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_dda78cc734d954e0010e3d3d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690000;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_30cf07bd7075c4b3d001d4c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722000;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_ad17712936430d60c8fc7299.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910000;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_6e2d7676e98e4c7bd2b4acc0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.167000;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_97424c199c6eed64eb630360.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.998000;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_dcb0791f56835c8fb0ee5d44.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_fde4eeb99e1f5d230a183886.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.624000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.m2{transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v5{vertical-align:-24.839095px;}
.v3{vertical-align:-8.819055px;}
.v1{vertical-align:-4.782120px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.253998px;}
.v6{vertical-align:25.171509px;}
.v4{vertical-align:33.683455px;}
.ls19{letter-spacing:-5.868462px;}
.ls69{letter-spacing:-4.638656px;}
.ls73{letter-spacing:-4.633874px;}
.ls7b{letter-spacing:-2.142390px;}
.ls68{letter-spacing:-1.655784px;}
.ls67{letter-spacing:-1.464502px;}
.ls62{letter-spacing:-1.440592px;}
.ls64{letter-spacing:-1.380816px;}
.ls66{letter-spacing:-1.374839px;}
.ls60{letter-spacing:-1.368861px;}
.ls63{letter-spacing:-1.356906px;}
.ls5f{letter-spacing:-1.344951px;}
.ls61{letter-spacing:-1.338973px;}
.lsa5{letter-spacing:-1.267262px;}
.lsa6{letter-spacing:-1.238569px;}
.ls5e{letter-spacing:-1.219422px;}
.ls65{letter-spacing:-1.141714px;}
.ls1d{letter-spacing:-1.123781px;}
.ls2e{letter-spacing:-1.081938px;}
.ls4d{letter-spacing:-1.075961px;}
.ls16{letter-spacing:-1.064006px;}
.ls36{letter-spacing:-1.046073px;}
.ls58{letter-spacing:-1.040095px;}
.ls31{letter-spacing:-1.022163px;}
.ls4f{letter-spacing:-0.999461px;}
.ls5c{letter-spacing:-0.998252px;}
.ls48{letter-spacing:-0.992275px;}
.ls57{letter-spacing:-0.986297px;}
.ls25{letter-spacing:-0.980320px;}
.ls20{letter-spacing:-0.974342px;}
.ls59{letter-spacing:-0.968365px;}
.ls4a{letter-spacing:-0.962387px;}
.ls1f{letter-spacing:-0.956410px;}
.ls49{letter-spacing:-0.950432px;}
.lsb6{letter-spacing:-0.946860px;}
.ls9c{letter-spacing:-0.941463px;}
.ls5b{letter-spacing:-0.920544px;}
.ls5a{letter-spacing:-0.908589px;}
.ls4c{letter-spacing:-0.902612px;}
.ls4b{letter-spacing:-0.878701px;}
.lsa7{letter-spacing:-0.855999px;}
.ls4e{letter-spacing:-0.854791px;}
.lsb9{letter-spacing:-0.851217px;}
.lsa4{letter-spacing:-0.822525px;}
.ls98{letter-spacing:-0.806971px;}
.ls12{letter-spacing:-0.803396px;}
.ls74{letter-spacing:-0.789050px;}
.ls80{letter-spacing:-0.783060px;}
.ls18{letter-spacing:-0.779486px;}
.ls7c{letter-spacing:-0.774703px;}
.ls6d{letter-spacing:-0.769921px;}
.ls76{letter-spacing:-0.765139px;}
.ls11{letter-spacing:-0.765128px;}
.ls6b{letter-spacing:-0.760357px;}
.ls41{letter-spacing:-0.759150px;}
.ls7e{letter-spacing:-0.755575px;}
.ls77{letter-spacing:-0.750793px;}
.ls7d{letter-spacing:-0.746011px;}
.ls53{letter-spacing:-0.741229px;}
.ls17{letter-spacing:-0.741217px;}
.ls6a{letter-spacing:-0.736446px;}
.ls82{letter-spacing:-0.735240px;}
.lsb5{letter-spacing:-0.731664px;}
.ls9e{letter-spacing:-0.729262px;}
.ls99{letter-spacing:-0.723285px;}
.lsa3{letter-spacing:-0.722100px;}
.lsb7{letter-spacing:-0.717318px;}
.lsa2{letter-spacing:-0.712536px;}
.lsa1{letter-spacing:-0.698190px;}
.ls97{letter-spacing:-0.681442px;}
.lsa9{letter-spacing:-0.659933px;}
.ls78{letter-spacing:-0.655150px;}
.ls9a{letter-spacing:-0.652748px;}
.ls6c{letter-spacing:-0.459084px;}
.ls70{letter-spacing:-0.454301px;}
.ls6e{letter-spacing:-0.449519px;}
.ls6f{letter-spacing:-0.439955px;}
.ls10{letter-spacing:0.000000px;}
.ls72{letter-spacing:0.059774px;}
.ls8d{letter-spacing:0.179327px;}
.lsad{letter-spacing:0.191285px;}
.lsac{letter-spacing:0.239106px;}
.ls92{letter-spacing:0.251057px;}
.ls28{letter-spacing:0.388541px;}
.ls15{letter-spacing:0.418429px;}
.ls29{letter-spacing:0.442339px;}
.ls27{letter-spacing:0.460272px;}
.lsab{letter-spacing:0.578637px;}
.lsb2{letter-spacing:0.583419px;}
.lsa8{letter-spacing:0.592983px;}
.lsaa{letter-spacing:0.621676px;}
.ls3{letter-spacing:0.651554px;}
.lsa{letter-spacing:0.699375px;}
.ls8{letter-spacing:0.705352px;}
.ls6{letter-spacing:0.711330px;}
.ls9{letter-spacing:0.717307px;}
.ls7{letter-spacing:0.723285px;}
.ls5{letter-spacing:0.729262px;}
.ls88{letter-spacing:0.735240px;}
.ls1b{letter-spacing:0.747195px;}
.ls86{letter-spacing:0.771105px;}
.lsb3{letter-spacing:0.784313px;}
.lsb1{letter-spacing:0.932513px;}
.lsb8{letter-spacing:0.980335px;}
.lsb{letter-spacing:1.058028px;}
.ls87{letter-spacing:1.087916px;}
.ls14{letter-spacing:1.362884px;}
.ls54{letter-spacing:1.404727px;}
.ls50{letter-spacing:1.739470px;}
.ls1c{letter-spacing:1.763380px;}
.ls13{letter-spacing:1.799246px;}
.ls4{letter-spacing:1.900864px;}
.ls2a{letter-spacing:2.139966px;}
.lsae{letter-spacing:2.257161px;}
.lsb0{letter-spacing:2.281071px;}
.lsaf{letter-spacing:2.295416px;}
.ls44{letter-spacing:2.379069px;}
.ls42{letter-spacing:2.385046px;}
.ls43{letter-spacing:2.426889px;}
.ls24{letter-spacing:2.767610px;}
.ls23{letter-spacing:2.845318px;}
.ls3e{letter-spacing:3.102354px;}
.ls8f{letter-spacing:3.215831px;}
.ls91{letter-spacing:3.229845px;}
.ls8e{letter-spacing:3.825637px;}
.lsf{letter-spacing:5.862879px;}
.ls94{letter-spacing:9.743423px;}
.ls93{letter-spacing:10.042301px;}
.lsc{letter-spacing:10.580280px;}
.lsd{letter-spacing:10.938935px;}
.ls89{letter-spacing:11.237813px;}
.ls8b{letter-spacing:11.243790px;}
.ls8a{letter-spacing:11.297589px;}
.lsb4{letter-spacing:11.429267px;}
.ls96{letter-spacing:13.103010px;}
.ls95{letter-spacing:13.772507px;}
.ls51{letter-spacing:13.796208px;}
.ls0{letter-spacing:14.025275px;}
.ls1{letter-spacing:14.025915px;}
.ls2{letter-spacing:14.107252px;}
.ls39{letter-spacing:14.136929px;}
.ls26{letter-spacing:14.346142px;}
.ls9b{letter-spacing:15.015630px;}
.ls3c{letter-spacing:15.063452px;}
.ls5d{letter-spacing:15.153115px;}
.ls21{letter-spacing:15.493835px;}
.ls83{letter-spacing:16.085614px;}
.ls84{letter-spacing:16.515998px;}
.ls1e{letter-spacing:16.713257px;}
.ls85{letter-spacing:16.856719px;}
.ls8c{letter-spacing:16.916493px;}
.ls81{letter-spacing:17.065932px;}
.ls35{letter-spacing:17.125709px;}
.ls3b{letter-spacing:17.197440px;}
.ls37{letter-spacing:17.394699px;}
.ls52{letter-spacing:17.538159px;}
.ls3f{letter-spacing:17.878882px;}
.ls7f{letter-spacing:18.769539px;}
.ls30{letter-spacing:18.895067px;}
.ls71{letter-spacing:19.068416px;}
.ls40{letter-spacing:19.167290px;}
.ls55{letter-spacing:19.427068px;}
.ls90{letter-spacing:19.543071px;}
.ls3a{letter-spacing:19.576507px;}
.ls56{letter-spacing:19.785721px;}
.ls2d{letter-spacing:20.084602px;}
.ls34{letter-spacing:20.742133px;}
.ls2b{letter-spacing:21.160560px;}
.ls46{letter-spacing:21.160562px;}
.ls3d{letter-spacing:22.116971px;}
.ls47{letter-spacing:22.505513px;}
.ls45{letter-spacing:22.834279px;}
.ls2f{letter-spacing:24.340624px;}
.ls22{letter-spacing:25.631775px;}
.ls1a{letter-spacing:25.942610px;}
.ls33{letter-spacing:26.241488px;}
.ls38{letter-spacing:26.378972px;}
.ls2c{letter-spacing:26.899018px;}
.ls32{letter-spacing:28.423296px;}
.lse{letter-spacing:35.718863px;}
.ls79{letter-spacing:113.173654px;}
.ls75{letter-spacing:124.397288px;}
.ls7a{letter-spacing:126.099720px;}
.ls9d{letter-spacing:208.365782px;}
.ls9f{letter-spacing:235.234919px;}
.lsa0{letter-spacing:368.576333px;}
.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;}
}
.ws1a9{word-spacing:-235.294695px;}
.ws157{word-spacing:-124.445110px;}
.ws163{word-spacing:-117.731010px;}
.ws170{word-spacing:-117.080645px;}
.ws162{word-spacing:-101.983493px;}
.ws16c{word-spacing:-100.309751px;}
.ws16e{word-spacing:-94.379922px;}
.ws165{word-spacing:-91.654114px;}
.wsa3{word-spacing:-28.483071px;}
.wsca{word-spacing:-26.438747px;}
.ws57{word-spacing:-25.691551px;}
.ws95{word-spacing:-24.400399px;}
.wsf5{word-spacing:-22.565289px;}
.wsd1{word-spacing:-19.636283px;}
.wsdc{word-spacing:-19.233044px;}
.ws9a{word-spacing:-18.954842px;}
.wsd7{word-spacing:-17.938658px;}
.ws111{word-spacing:-17.597935px;}
.wsd6{word-spacing:-17.257215px;}
.wsc0{word-spacing:-17.185485px;}
.ws17d{word-spacing:-17.125708px;}
.ws182{word-spacing:-16.916494px;}
.ws2f{word-spacing:-16.773033px;}
.ws181{word-spacing:-16.575774px;}
.ws180{word-spacing:-16.145390px;}
.ws50{word-spacing:-15.553611px;}
.ws130{word-spacing:-15.212890px;}
.ws1a1{word-spacing:-15.075406px;}
.wsd0{word-spacing:-14.196705px;}
.ws10f{word-spacing:-13.855984px;}
.ws76{word-spacing:-2.827386px;}
.wsec{word-spacing:-2.486665px;}
.ws1fc{word-spacing:-2.328892px;}
.ws115{word-spacing:-1.799246px;}
.ws1fd{word-spacing:-1.028156px;}
.ws1fe{word-spacing:-0.980335px;}
.ws1e0{word-spacing:-0.640804px;}
.ws1df{word-spacing:-0.626458px;}
.wsa2{word-spacing:-0.448317px;}
.ws196{word-spacing:-0.065754px;}
.ws1e{word-spacing:-0.059776px;}
.ws23{word-spacing:-0.050809px;}
.ws20{word-spacing:-0.047821px;}
.ws19e{word-spacing:-0.041843px;}
.ws3{word-spacing:-0.039846px;}
.ws28{word-spacing:0.000000px;}
.ws19f{word-spacing:0.610905px;}
.ws1a5{word-spacing:0.621666px;}
.ws1ae{word-spacing:0.650368px;}
.ws1a8{word-spacing:0.669487px;}
.ws1f{word-spacing:0.681442px;}
.ws201{word-spacing:0.712536px;}
.ws1bf{word-spacing:0.717318px;}
.ws143{word-spacing:0.731664px;}
.ws1b3{word-spacing:0.774703px;}
.ws108{word-spacing:0.795015px;}
.ws1c4{word-spacing:0.808178px;}
.ws3e{word-spacing:0.914567px;}
.ws2e{word-spacing:1.064006px;}
.ws1bb{word-spacing:1.190748px;}
.ws140{word-spacing:1.596008px;}
.ws1f8{word-spacing:2.094569px;}
.ws0{word-spacing:8.435660px;}
.ws1f6{word-spacing:9.325134px;}
.ws1d5{word-spacing:9.612061px;}
.ws1a{word-spacing:10.042301px;}
.ws1d6{word-spacing:10.090273px;}
.ws1b{word-spacing:10.221627px;}
.ws1cb{word-spacing:10.329379px;}
.ws1e4{word-spacing:10.377200px;}
.ws1c9{word-spacing:10.425022px;}
.ws1ca{word-spacing:10.472843px;}
.ws1d{word-spacing:10.580274px;}
.ws1f9{word-spacing:10.616306px;}
.ws1ee{word-spacing:10.664128px;}
.ws1db{word-spacing:10.711949px;}
.wsa8{word-spacing:10.879159px;}
.ws19b{word-spacing:10.998710px;}
.ws1f3{word-spacing:11.094518px;}
.ws199{word-spacing:11.237813px;}
.ws1d4{word-spacing:11.333624px;}
.ws10c{word-spacing:11.381446px;}
.ws10d{word-spacing:11.429267px;}
.ws194{word-spacing:11.477088px;}
.ws1b2{word-spacing:11.716194px;}
.ws1b1{word-spacing:11.764015px;}
.ws1e7{word-spacing:11.811836px;}
.ws1a6{word-spacing:11.895344px;}
.ws2a{word-spacing:11.955120px;}
.ws15f{word-spacing:12.003121px;}
.wsa0{word-spacing:12.014895px;}
.ws10b{word-spacing:12.050942px;}
.ws9d{word-spacing:12.074671px;}
.ws1fa{word-spacing:12.098764px;}
.ws1c{word-spacing:12.289860px;}
.ws1e5{word-spacing:12.337870px;}
.wsc5{word-spacing:12.433324px;}
.ws9e{word-spacing:12.433331px;}
.ws1b4{word-spacing:12.433512px;}
.ws12c{word-spacing:12.445280px;}
.ws167{word-spacing:12.481333px;}
.wsef{word-spacing:12.552876px;}
.ws19c{word-spacing:12.582763px;}
.wsbf{word-spacing:12.612651px;}
.ws19a{word-spacing:12.636562px;}
.ws1b8{word-spacing:12.672618px;}
.ws1c3{word-spacing:12.720439px;}
.wsd2{word-spacing:12.732202px;}
.ws1dd{word-spacing:12.768260px;}
.ws62{word-spacing:12.863903px;}
.ws6c{word-spacing:12.911529px;}
.ws200{word-spacing:12.926070px;}
.ws10e{word-spacing:12.959545px;}
.ws86{word-spacing:12.971305px;}
.ws25{word-spacing:13.007155px;}
.ws7{word-spacing:13.007366px;}
.ws1c0{word-spacing:13.007374px;}
.wsc1{word-spacing:13.031080px;}
.ws1b7{word-spacing:13.055188px;}
.ws11c{word-spacing:13.090856px;}
.ws1d7{word-spacing:13.103009px;}
.wse6{word-spacing:13.150632px;}
.ws195{word-spacing:13.150830px;}
.ws1f0{word-spacing:13.198651px;}
.ws202{word-spacing:13.246472px;}
.ws40{word-spacing:13.270183px;}
.ws1c2{word-spacing:13.294294px;}
.ws1e2{word-spacing:13.342115px;}
.ws1bd{word-spacing:13.437757px;}
.wsfa{word-spacing:13.443532px;}
.ws54{word-spacing:13.449510px;}
.ws1ac{word-spacing:13.485579px;}
.wsfd{word-spacing:13.515263px;}
.ws2c{word-spacing:13.569061px;}
.ws1d3{word-spacing:13.581221px;}
.ws77{word-spacing:13.628836px;}
.ws8b{word-spacing:13.688612px;}
.ws126{word-spacing:13.700567px;}
.ws1d2{word-spacing:13.724685px;}
.ws8c{word-spacing:13.748388px;}
.ws21{word-spacing:13.820327px;}
.ws11f{word-spacing:13.838051px;}
.wsfb{word-spacing:13.844029px;}
.ws80{word-spacing:13.868148px;}
.ws1b0{word-spacing:13.920751px;}
.ws58{word-spacing:13.927714px;}
.ws27{word-spacing:13.972530px;}
.ws9c{word-spacing:13.987490px;}
.ws13e{word-spacing:13.993468px;}
.ws78{word-spacing:14.047266px;}
.ws1bc{word-spacing:14.107254px;}
.ws13d{word-spacing:14.136929px;}
.ws1e6{word-spacing:14.155075px;}
.ws8d{word-spacing:14.166817px;}
.ws1af{word-spacing:14.198114px;}
.ws135{word-spacing:14.280390px;}
.ws7b{word-spacing:14.286368px;}
.wse1{word-spacing:14.346144px;}
.ws1c7{word-spacing:14.355920px;}
.ws4d{word-spacing:14.405919px;}
.ws1d1{word-spacing:14.422874px;}
.ws1d0{word-spacing:14.442003px;}
.wsda{word-spacing:14.465695px;}
.ws12d{word-spacing:14.477650px;}
.ws24{word-spacing:14.480622px;}
.ws169{word-spacing:14.489824px;}
.ws6{word-spacing:14.575902px;}
.ws33{word-spacing:14.585246px;}
.ws1cc{word-spacing:14.642852px;}
.ws4c{word-spacing:14.645022px;}
.ws1e3{word-spacing:14.647634px;}
.ws120{word-spacing:14.668932px;}
.ws51{word-spacing:14.704797px;}
.ws9f{word-spacing:14.722726px;}
.ws1c8{word-spacing:14.728930px;}
.ws17f{word-spacing:14.734684px;}
.ws16b{word-spacing:14.762405px;}
.ws66{word-spacing:14.764573px;}
.ws3c{word-spacing:14.824348px;}
.ws166{word-spacing:14.824354px;}
.ws1c6{word-spacing:14.824572px;}
.ws22{word-spacing:14.836286px;}
.ws125{word-spacing:14.836304px;}
.ws1f7{word-spacing:14.872393px;}
.ws12a{word-spacing:14.914012px;}
.ws12b{word-spacing:14.925967px;}
.wsab{word-spacing:14.943900px;}
.ws118{word-spacing:14.944125px;}
.ws1f2{word-spacing:14.972818px;}
.ws1f4{word-spacing:14.982382px;}
.ws2b{word-spacing:15.003675px;}
.wsaa{word-spacing:15.003679px;}
.ws160{word-spacing:15.049332px;}
.ws187{word-spacing:15.063451px;}
.wse0{word-spacing:15.123226px;}
.ws102{word-spacing:15.183002px;}
.ws124{word-spacing:15.194957px;}
.ws1b9{word-spacing:15.207142px;}
.ws87{word-spacing:15.230822px;}
.ws186{word-spacing:15.242793px;}
.wsc{word-spacing:15.248755px;}
.ws142{word-spacing:15.274091px;}
.ws1be{word-spacing:15.278874px;}
.ws161{word-spacing:15.288438px;}
.ws3f{word-spacing:15.302553px;}
.ws1ec{word-spacing:15.341041px;}
.ws16a{word-spacing:15.360170px;}
.ws3b{word-spacing:15.362329px;}
.ws3a{word-spacing:15.362335px;}
.ws155{word-spacing:15.374516px;}
.ws1cd{word-spacing:15.412773px;}
.ws3d{word-spacing:15.422104px;}
.ws70{word-spacing:15.481880px;}
.ws129{word-spacing:15.505790px;}
.ws18d{word-spacing:15.529700px;}
.wse{word-spacing:15.535678px;}
.ws128{word-spacing:15.559588px;}
.ws5f{word-spacing:15.601431px;}
.wsd9{word-spacing:15.661207px;}
.ws1f5{word-spacing:15.675789px;}
.ws1f1{word-spacing:15.685354px;}
.ws112{word-spacing:15.720982px;}
.ws17b{word-spacing:15.780758px;}
.wsff{word-spacing:15.834556px;}
.ws65{word-spacing:15.840534px;}
.wsfe{word-spacing:15.864444px;}
.ws14f{word-spacing:15.960085px;}
.ws2d{word-spacing:16.019860px;}
.ws1a3{word-spacing:16.019863px;}
.ws168{word-spacing:16.029666px;}
.ws30{word-spacing:16.079636px;}
.ws64{word-spacing:16.139412px;}
.ws117{word-spacing:16.163566px;}
.ws7a{word-spacing:16.199187px;}
.ws116{word-spacing:16.211387px;}
.ws1a4{word-spacing:16.258963px;}
.ws127{word-spacing:16.282873px;}
.ws11b{word-spacing:16.318738px;}
.ws52{word-spacing:16.378514px;}
.ws150{word-spacing:16.438290px;}
.ws1dc{word-spacing:16.450493px;}
.ws8a{word-spacing:16.498065px;}
.ws15c{word-spacing:16.557841px;}
.ws12f{word-spacing:16.671414px;}
.ws73{word-spacing:16.677392px;}
.ws14e{word-spacing:16.677397px;}
.ws198{word-spacing:16.737163px;}
.ws2{word-spacing:16.737168px;}
.ws4e{word-spacing:16.796943px;}
.wscc{word-spacing:16.796947px;}
.ws4{word-spacing:16.856719px;}
.ws1d8{word-spacing:16.880884px;}
.ws100{word-spacing:16.910517px;}
.ws152{word-spacing:16.916493px;}
.ws5a{word-spacing:16.916494px;}
.ws17e{word-spacing:16.916496px;}
.ws39{word-spacing:16.976270px;}
.wsd{word-spacing:16.982248px;}
.ws84{word-spacing:17.036046px;}
.wsd8{word-spacing:17.095821px;}
.ws4b{word-spacing:17.155597px;}
.ws12e{word-spacing:17.227327px;}
.wsf7{word-spacing:17.233305px;}
.ws10{word-spacing:17.269170px;}
.wscf{word-spacing:17.275148px;}
.wsd5{word-spacing:17.334913px;}
.ws68{word-spacing:17.334924px;}
.ws6a{word-spacing:17.394699px;}
.ws110{word-spacing:17.394703px;}
.wscb{word-spacing:17.454475px;}
.ws13f{word-spacing:17.460452px;}
.wsb2{word-spacing:17.514250px;}
.ws11e{word-spacing:17.574028px;}
.ws17a{word-spacing:17.591954px;}
.ws1b5{word-spacing:17.646023px;}
.ws123{word-spacing:17.657712px;}
.ws136{word-spacing:17.663689px;}
.ws67{word-spacing:17.693577px;}
.ws122{word-spacing:17.699555px;}
.ws175{word-spacing:17.753345px;}
.ws176{word-spacing:17.813128px;}
.ws82{word-spacing:17.872904px;}
.ws1e1{word-spacing:17.885129px;}
.wsb{word-spacing:17.920724px;}
.ws6f{word-spacing:17.992455px;}
.ws8e{word-spacing:18.052231px;}
.ws9b{word-spacing:18.112006px;}
.wsee{word-spacing:18.171782px;}
.ws98{word-spacing:18.231558px;}
.ws38{word-spacing:18.291333px;}
.ws19d{word-spacing:18.297311px;}
.wsbe{word-spacing:18.351109px;}
.ws197{word-spacing:18.392952px;}
.ws183{word-spacing:18.410884px;}
.ws151{word-spacing:18.470660px;}
.ws1c1{word-spacing:18.506805px;}
.ws97{word-spacing:18.530440px;}
.ws188{word-spacing:18.554346px;}
.ws18e{word-spacing:18.578256px;}
.ws15b{word-spacing:18.590211px;}
.ws1aa{word-spacing:18.590932px;}
.wsf6{word-spacing:18.667919px;}
.ws1a7{word-spacing:18.706937px;}
.wsa9{word-spacing:18.709762px;}
.wsea{word-spacing:18.769538px;}
.wsb6{word-spacing:18.805643px;}
.ws99{word-spacing:18.829314px;}
.ws5{word-spacing:18.877134px;}
.wsa6{word-spacing:18.889089px;}
.ws174{word-spacing:18.948865px;}
.ws69{word-spacing:18.972775px;}
.ws5e{word-spacing:19.008640px;}
.ws1a0{word-spacing:19.018644px;}
.ws109{word-spacing:19.068416px;}
.ws29{word-spacing:19.068659px;}
.ws31{word-spacing:19.128192px;}
.wse3{word-spacing:19.170034px;}
.ws72{word-spacing:19.187967px;}
.ws1c5{word-spacing:19.224123px;}
.ws16{word-spacing:19.307518px;}
.ws85{word-spacing:19.367294px;}
.ws6b{word-spacing:19.427070px;}
.wsc2{word-spacing:19.456957px;}
.ws1ab{word-spacing:19.463229px;}
.ws74{word-spacing:19.486845px;}
.ws132{word-spacing:19.516733px;}
.wsb9{word-spacing:19.606396px;}
.wsd4{word-spacing:19.725948px;}
.ws1b6{word-spacing:19.726245px;}
.wsb5{word-spacing:19.785723px;}
.ws5b{word-spacing:19.845499px;}
.ws106{word-spacing:19.905274px;}
.wsb0{word-spacing:20.024825px;}
.ws113{word-spacing:20.084601px;}
.ws59{word-spacing:20.144377px;}
.ws131{word-spacing:20.204152px;}
.ws7c{word-spacing:20.228368px;}
.ws48{word-spacing:20.263928px;}
.ws1cf{word-spacing:20.276189px;}
.ws14{word-spacing:20.317726px;}
.wsad{word-spacing:20.323703px;}
.ws121{word-spacing:20.359569px;}
.ws192{word-spacing:20.365546px;}
.ws1ad{word-spacing:20.371831px;}
.ws63{word-spacing:20.383479px;}
.ws37{word-spacing:20.443255px;}
.ws1d9{word-spacing:20.515295px;}
.wsdf{word-spacing:20.562806px;}
.ws101{word-spacing:20.568783px;}
.ws18{word-spacing:20.682357px;}
.ws1ef{word-spacing:20.706580px;}
.ws55{word-spacing:20.742133px;}
.ws184{word-spacing:20.801908px;}
.ws7f{word-spacing:20.850043px;}
.ws7d{word-spacing:20.945686px;}
.ws7e{word-spacing:21.041328px;}
.ws10a{word-spacing:21.054430px;}
.ws1ba{word-spacing:21.089149px;}
.ws6e{word-spacing:21.100786px;}
.ws1ff{word-spacing:21.127406px;}
.wsc4{word-spacing:21.220337px;}
.ws107{word-spacing:21.280113px;}
.ws1ce{word-spacing:21.328255px;}
.ws1ed{word-spacing:21.376077px;}
.ws1a2{word-spacing:21.410042px;}
.ws190{word-spacing:21.447485px;}
.wsdd{word-spacing:21.459440px;}
.ws4f{word-spacing:21.578991px;}
.ws15d{word-spacing:21.638773px;}
.wsc3{word-spacing:21.758318px;}
.ws1da{word-spacing:21.806467px;}
.ws5c{word-spacing:21.818093px;}
.wse8{word-spacing:21.937645px;}
.wsf8{word-spacing:22.033286px;}
.ws139{word-spacing:22.033290px;}
.ws1eb{word-spacing:22.093395px;}
.ws6d{word-spacing:22.116971px;}
.wsf9{word-spacing:22.122949px;}
.wsc6{word-spacing:22.176747px;}
.ws203{word-spacing:22.179473px;}
.ws13a{word-spacing:22.182725px;}
.ws1e8{word-spacing:22.189037px;}
.ws138{word-spacing:22.242500px;}
.ws1e9{word-spacing:22.284679px;}
.wsf1{word-spacing:22.296298px;}
.wsf4{word-spacing:22.296304px;}
.ws18f{word-spacing:22.302276px;}
.wsde{word-spacing:22.356074px;}
.wse9{word-spacing:22.475625px;}
.ws1ea{word-spacing:22.571607px;}
.wsc7{word-spacing:22.595176px;}
.ws154{word-spacing:22.662467px;}
.ws1{word-spacing:22.691028px;}
.ws88{word-spacing:22.774503px;}
.wsf3{word-spacing:22.774504px;}
.wsc8{word-spacing:22.834279px;}
.ws79{word-spacing:22.894054px;}
.ws15e{word-spacing:22.953830px;}
.ws141{word-spacing:23.001997px;}
.wsf0{word-spacing:23.013605px;}
.ws133{word-spacing:23.103269px;}
.ws34{word-spacing:23.133157px;}
.wsf2{word-spacing:23.133163px;}
.ws53{word-spacing:23.192932px;}
.wsce{word-spacing:23.252708px;}
.ws179{word-spacing:23.312483px;}
.ws189{word-spacing:23.372259px;}
.ws185{word-spacing:23.432035px;}
.ws134{word-spacing:23.485833px;}
.ws94{word-spacing:23.491810px;}
.ws96{word-spacing:23.551586px;}
.wscd{word-spacing:23.611361px;}
.wse2{word-spacing:23.671137px;}
.ws11d{word-spacing:23.790688px;}
.ws89{word-spacing:23.808621px;}
.ws42{word-spacing:23.850464px;}
.wse5{word-spacing:23.910239px;}
.ws41{word-spacing:23.970015px;}
.ws13{word-spacing:24.107499px;}
.ws17c{word-spacing:24.149342px;}
.ws11a{word-spacing:24.209117px;}
.wsb1{word-spacing:24.328669px;}
.ws71{word-spacing:24.388444px;}
.wsac{word-spacing:24.448220px;}
.ws114{word-spacing:24.507995px;}
.ws32{word-spacing:24.567771px;}
.wsf{word-spacing:24.800896px;}
.wsa5{word-spacing:24.866649px;}
.wsbc{word-spacing:24.986200px;}
.ws44{word-spacing:25.045976px;}
.ws81{word-spacing:25.165527px;}
.wsbd{word-spacing:25.225303px;}
.wsb3{word-spacing:25.285078px;}
.wsfc{word-spacing:25.422562px;}
.ws137{word-spacing:25.488315px;}
.ws45{word-spacing:25.524181px;}
.ws43{word-spacing:25.583956px;}
.ws36{word-spacing:25.643732px;}
.wsa7{word-spacing:25.655687px;}
.ws26{word-spacing:25.684050px;}
.ws47{word-spacing:25.823059px;}
.ws35{word-spacing:25.882834px;}
.ws177{word-spacing:25.942610px;}
.ws46{word-spacing:26.062163px;}
.wsb4{word-spacing:26.181712px;}
.ws8f{word-spacing:26.187690px;}
.ws93{word-spacing:26.241488px;}
.wsd3{word-spacing:26.301263px;}
.ws5d{word-spacing:26.361039px;}
.ws12{word-spacing:26.420815px;}
.ws13b{word-spacing:26.426792px;}
.wsbb{word-spacing:26.480590px;}
.ws11{word-spacing:26.492545px;}
.ws92{word-spacing:26.540359px;}
.wsba{word-spacing:26.540366px;}
.ws13c{word-spacing:26.570254px;}
.ws178{word-spacing:26.600141px;}
.ws105{word-spacing:26.659917px;}
.ws49{word-spacing:26.719693px;}
.wsaf{word-spacing:26.779468px;}
.ws4a{word-spacing:26.839244px;}
.wsae{word-spacing:26.899019px;}
.ws91{word-spacing:26.899026px;}
.wseb{word-spacing:26.940889px;}
.ws60{word-spacing:27.048458px;}
.ws153{word-spacing:27.078346px;}
.wse7{word-spacing:27.084324px;}
.wsa1{word-spacing:27.096279px;}
.ws119{word-spacing:27.108234px;}
.wsc9{word-spacing:27.138122px;}
.ws83{word-spacing:27.197897px;}
.wsed{word-spacing:27.209852px;}
.ws18b{word-spacing:27.257673px;}
.ws90{word-spacing:27.317449px;}
.wsa4{word-spacing:27.401132px;}
.ws75{word-spacing:27.401134px;}
.ws56{word-spacing:27.407112px;}
.wsb7{word-spacing:27.437000px;}
.ws104{word-spacing:27.556551px;}
.ws1fb{word-spacing:27.631090px;}
.ws173{word-spacing:27.676102px;}
.ws103{word-spacing:27.676112px;}
.ws18a{word-spacing:27.735878px;}
.wse4{word-spacing:27.795653px;}
.wsb8{word-spacing:27.855429px;}
.ws18c{word-spacing:27.867384px;}
.wsdb{word-spacing:27.974980px;}
.ws1de{word-spacing:28.214508px;}
.ws15{word-spacing:28.883569px;}
.ws191{word-spacing:29.098761px;}
.ws17{word-spacing:29.188425px;}
.ws9{word-spacing:29.242223px;}
.wsa{word-spacing:29.523168px;}
.ws8{word-spacing:29.642726px;}
.ws19{word-spacing:33.713436px;}
.ws193{word-spacing:50.307918px;}
.ws144{word-spacing:79.636645px;}
.ws14c{word-spacing:102.107827px;}
.ws14b{word-spacing:102.117391px;}
.ws14d{word-spacing:102.122173px;}
.ws147{word-spacing:102.126955px;}
.ws146{word-spacing:102.715156px;}
.ws148{word-spacing:102.772542px;}
.ws16d{word-spacing:114.608289px;}
.ws15a{word-spacing:114.613071px;}
.ws171{word-spacing:114.617853px;}
.ws172{word-spacing:114.622635px;}
.ws159{word-spacing:114.675238px;}
.ws16f{word-spacing:114.680021px;}
.ws158{word-spacing:114.689585px;}
.ws14a{word-spacing:125.860617px;}
.ws149{word-spacing:125.870181px;}
.ws145{word-spacing:125.927567px;}
.ws156{word-spacing:125.937131px;}
.ws164{word-spacing:130.351028px;}
.ws61{word-spacing:1641.567876px;}
._5a{margin-left:-386.304868px;}
._58{margin-left:-250.907044px;}
._57{margin-left:-224.409518px;}
._59{margin-left:-218.360261px;}
._42{margin-left:-129.075454px;}
._41{margin-left:-127.204393px;}
._3c{margin-left:-126.104505px;}
._39{margin-left:-125.052439px;}
._47{margin-left:-124.048194px;}
._43{margin-left:-118.931325px;}
._44{margin-left:-116.157737px;}
._40{margin-left:-113.814457px;}
._45{margin-left:-112.690520px;}
._1f{margin-left:-28.590716px;}
._20{margin-left:-27.102325px;}
._17{margin-left:-26.097892px;}
._1b{margin-left:-24.651263px;}
._1c{margin-left:-23.515855px;}
._1d{margin-left:-21.758099px;}
._1e{margin-left:-19.988933px;}
._10{margin-left:-17.920847px;}
._f{margin-left:-16.749000px;}
._16{margin-left:-14.821300px;}
._24{margin-left:-13.422750px;}
._3b{margin-left:-12.074877px;}
._3a{margin-left:-10.544551px;}
._12{margin-left:-8.475730px;}
._23{margin-left:-7.400191px;}
._3{margin-left:-6.216756px;}
._5{margin-left:-4.423394px;}
._4{margin-left:-3.227882px;}
._0{margin-left:-1.865027px;}
._1{width:1.554166px;}
._26{width:3.000790px;}
._c{width:4.115373px;}
._b{width:5.893953px;}
._5b{width:8.368710px;}
._21{width:9.636136px;}
._a{width:11.190166px;}
._d{width:13.171720px;}
._2{width:15.111546px;}
._14{width:16.701360px;}
._e{width:17.813269px;}
._13{width:18.948865px;}
._11{width:20.395603px;}
._9{width:22.236523px;}
._7{width:23.252708px;}
._6{width:24.328669px;}
._22{width:25.464546px;}
._15{width:26.636091px;}
._18{width:27.676102px;}
._8{width:29.302027px;}
._25{width:30.988135px;}
._19{width:32.088028px;}
._46{width:34.096516px;}
._27{width:38.598154px;}
._49{width:49.351470px;}
._56{width:66.303122px;}
._28{width:77.757319px;}
._38{width:81.296041px;}
._53{width:84.403145px;}
._4d{width:90.619807px;}
._4f{width:93.728138px;}
._35{width:99.061636px;}
._2d{width:100.257123px;}
._2c{width:101.309190px;}
._2a{width:102.791694px;}
._2b{width:104.202396px;}
._55{width:109.222002px;}
._48{width:112.595087px;}
._3d{width:114.412245px;}
._32{width:122.230988px;}
._30{width:124.478585px;}
._2f{width:125.482830px;}
._31{width:127.347857px;}
._2e{width:130.025844px;}
._29{width:132.249463px;}
._51{width:133.538687px;}
._33{width:135.620924px;}
._37{width:146.715443px;}
._34{width:148.963039px;}
._52{width:150.335630px;}
._50{width:156.552292px;}
._4b{width:164.024242px;}
._4c{width:167.132573px;}
._4e{width:168.567188px;}
._4a{width:176.457567px;}
._54{width:183.271985px;}
._3f{width:293.669991px;}
._3e{width:661.367201px;}
._36{width:1176.066780px;}
._1a{width:1287.824962px;}
.fc1{color:rgb(58,42,151);}
.fc0{color:rgb(19,20,19);}
.fs7{font-size:31.876199px;}
.fs5{font-size:33.869399px;}
.fs3{font-size:39.845999px;}
.fs8{font-size:41.842801px;}
.fs0{font-size:47.821200px;}
.fs4{font-size:50.809198px;}
.fs2{font-size:59.775599px;}
.fs6{font-size:65.753998px;}
.fs1{font-size:77.709000px;}
.y0{bottom:0.000000px;}
.y87{bottom:75.769184px;}
.y1e8{bottom:75.774412px;}
.y55{bottom:75.777772px;}
.yae{bottom:75.803451px;}
.ycc{bottom:75.837763px;}
.y14b{bottom:75.863258px;}
.y1ae{bottom:75.872224px;}
.yef{bottom:75.910228px;}
.y139{bottom:75.914546px;}
.y17f{bottom:75.937099px;}
.ye2{bottom:75.937490px;}
.y113{bottom:75.940201px;}
.y78{bottom:76.022553px;}
.ye6{bottom:76.023903px;}
.y111{bottom:76.258548px;}
.yf1{bottom:76.280399px;}
.y131{bottom:76.537957px;}
.y115{bottom:76.537969px;}
.yf3{bottom:76.878167px;}
.ye1{bottom:90.056700px;}
.y1ad{bottom:90.075120px;}
.y77{bottom:90.225449px;}
.ye5{bottom:90.226799px;}
.y1e7{bottom:90.575074px;}
.y86{bottom:93.627145px;}
.y54{bottom:93.635733px;}
.yad{bottom:93.661411px;}
.ycb{bottom:93.695724px;}
.y14a{bottom:93.721219px;}
.yee{bottom:93.768189px;}
.y138{bottom:93.772506px;}
.y110{bottom:94.206171px;}
.ye0{bottom:95.414103px;}
.y17c{bottom:101.277623px;}
.y17e{bottom:101.281952px;}
.ydf{bottom:104.254212px;}
.y76{bottom:104.428345px;}
.y1e6{bottom:105.292047px;}
.y1ac{bottom:105.640921px;}
.y17d{bottom:107.914947px;}
.y27{bottom:111.490289px;}
.y85{bottom:111.574768px;}
.y53{bottom:111.583356px;}
.yac{bottom:111.609034px;}
.yca{bottom:111.643347px;}
.y149{bottom:111.668842px;}
.yed{bottom:111.715812px;}
.y137{bottom:111.720129px;}
.y10f{bottom:112.153794px;}
.yde{bottom:118.457108px;}
.y179{bottom:119.220929px;}
.y17b{bottom:119.225246px;}
.y1ab{bottom:119.843817px;}
.y1e5{bottom:120.092709px;}
.y130{bottom:123.223403px;}
.y114{bottom:123.223415px;}
.yf2{bottom:123.647301px;}
.y17a{bottom:125.858253px;}
.y26{bottom:126.453598px;}
.y84{bottom:129.522391px;}
.y52{bottom:129.530979px;}
.yab{bottom:129.556657px;}
.yc9{bottom:129.590970px;}
.y148{bottom:129.616465px;}
.yec{bottom:129.663435px;}
.y136{bottom:129.667752px;}
.y10e{bottom:130.101417px;}
.y25{bottom:132.066147px;}
.ydd{bottom:132.660004px;}
.y1e4{bottom:134.893371px;}
.y1aa{bottom:135.409618px;}
.y176{bottom:137.167445px;}
.y178{bottom:137.168552px;}
.y12e{bottom:137.334329px;}
.y21d{bottom:137.929962px;}
.y177{bottom:143.801548px;}
.ydc{bottom:146.862900px;}
.y83{bottom:147.470014px;}
.y51{bottom:147.478602px;}
.yaa{bottom:147.504280px;}
.yc8{bottom:147.538593px;}
.y147{bottom:147.564088px;}
.yeb{bottom:147.611058px;}
.y135{bottom:147.615375px;}
.y10d{bottom:147.959378px;}
.y24{bottom:148.818901px;}
.y1a9{bottom:149.612514px;}
.y1e3{bottom:149.694033px;}
.y21c{bottom:152.132858px;}
.ydb{bottom:152.220451px;}
.y23{bottom:154.516502px;}
.y175{bottom:155.115068px;}
.y12d{bottom:155.281952px;}
.y1e2{bottom:163.896929px;}
.y1a8{bottom:165.262002px;}
.y82{bottom:165.417637px;}
.y50{bottom:165.426225px;}
.ya9{bottom:165.451903px;}
.yc7{bottom:165.486216px;}
.y146{bottom:165.511711px;}
.yea{bottom:165.558681px;}
.y134{bottom:165.562998px;}
.y10c{bottom:165.907001px;}
.y21b{bottom:166.335754px;}
.y22{bottom:171.264104px;}
.y1e1{bottom:178.697591px;}
.y173{bottom:179.518055px;}
.y21a{bottom:180.466992px;}
.y1a7{bottom:180.827804px;}
.y172{bottom:181.979882px;}
.y174{bottom:181.984200px;}
.y81{bottom:183.365260px;}
.y4f{bottom:183.373848px;}
.ya8{bottom:183.399526px;}
.yc6{bottom:183.433839px;}
.y145{bottom:183.459334px;}
.ye9{bottom:183.506304px;}
.y133{bottom:183.510621px;}
.y10b{bottom:183.854624px;}
.y21{bottom:186.151199px;}
.y12c{bottom:191.083500px;}
.y20{bottom:191.848801px;}
.y1e0{bottom:192.900487px;}
.y219{bottom:194.586201px;}
.y1a6{bottom:196.477292px;}
.y170{bottom:197.461510px;}
.y16f{bottom:199.914692px;}
.y171{bottom:199.927505px;}
.y80{bottom:201.312883px;}
.y4e{bottom:201.321471px;}
.ya7{bottom:201.347149px;}
.yc5{bottom:201.381462px;}
.y144{bottom:201.406957px;}
.ye8{bottom:201.453927px;}
.yda{bottom:201.454220px;}
.y132{bottom:201.458244px;}
.y10a{bottom:201.802247px;}
.y1df{bottom:207.701149px;}
.y1f{bottom:208.605081px;}
.y218{bottom:208.789097px;}
.y1a5{bottom:212.043093px;}
.y16e{bottom:217.862315px;}
.y7f{bottom:219.260506px;}
.y4d{bottom:219.269094px;}
.ya6{bottom:219.294772px;}
.yc4{bottom:219.329085px;}
.y143{bottom:219.354580px;}
.ye7{bottom:219.401550px;}
.yd9{bottom:219.401843px;}
.y109{bottom:219.749870px;}
.y1de{bottom:221.904045px;}
.y217{bottom:222.991993px;}
.y1e{bottom:223.568390px;}
.y1a4{bottom:226.245989px;}
.y1d{bottom:229.181099px;}
.y16d{bottom:235.809938px;}
.y1dd{bottom:236.621018px;}
.y7e{bottom:237.118467px;}
.y4c{bottom:237.127055px;}
.ya5{bottom:237.152733px;}
.yc3{bottom:237.187045px;}
.y216{bottom:237.194889px;}
.y142{bottom:237.212540px;}
.yd8{bottom:237.259804px;}
.y108{bottom:237.697493px;}
.y13c{bottom:238.872917px;}
.y1a3{bottom:241.895477px;}
.y12b{bottom:244.900432px;}
.y1dc{bottom:250.823915px;}
.y16b{bottom:251.206352px;}
.y215{bottom:251.397785px;}
.y13b{bottom:253.075813px;}
.y16a{bottom:253.749196px;}
.y16c{bottom:253.757561px;}
.y7d{bottom:255.066090px;}
.y4b{bottom:255.074678px;}
.ya4{bottom:255.100356px;}
.yc2{bottom:255.134668px;}
.y141{bottom:255.160163px;}
.y107{bottom:255.645116px;}
.y1a2{bottom:257.461278px;}
.y12a{bottom:262.848055px;}
.y214{bottom:265.600681px;}
.y1db{bottom:265.624576px;}
.y13a{bottom:267.278709px;}
.yf0{bottom:268.894501px;}
.y1a1{bottom:271.664174px;}
.y169{bottom:271.696819px;}
.y7c{bottom:273.013713px;}
.y4a{bottom:273.022301px;}
.ya3{bottom:273.047979px;}
.yc1{bottom:273.082291px;}
.y140{bottom:273.107786px;}
.yd7{bottom:273.146393px;}
.y106{bottom:273.592739px;}
.y1c{bottom:275.871393px;}
.y213{bottom:279.803577px;}
.y1da{bottom:279.827472px;}
.y129{bottom:280.795678px;}
.y1a0{bottom:285.867070px;}
.y168{bottom:289.554780px;}
.y1b{bottom:290.834702px;}
.y7b{bottom:290.961336px;}
.y49{bottom:290.969924px;}
.ya2{bottom:290.995602px;}
.yc0{bottom:291.029914px;}
.y13f{bottom:291.055409px;}
.y105{bottom:291.450700px;}
.y212{bottom:294.006473px;}
.y1d9{bottom:294.628134px;}
.y126{bottom:298.683357px;}
.y128{bottom:298.743301px;}
.y19f{bottom:301.516558px;}
.y166{bottom:305.036247px;}
.y127{bottom:305.376297px;}
.y165{bottom:307.498086px;}
.y167{bottom:307.502403px;}
.y211{bottom:308.209369px;}
.y7a{bottom:308.908959px;}
.y48{bottom:308.917547px;}
.ya1{bottom:308.943225px;}
.ybf{bottom:308.977537px;}
.y13e{bottom:309.003032px;}
.y104{bottom:309.398323px;}
.y1d8{bottom:309.428796px;}
.y19e{bottom:315.719454px;}
.y125{bottom:316.630980px;}
.y210{bottom:322.412265px;}
.y1d7{bottom:323.631692px;}
.y162{bottom:325.441232px;}
.y164{bottom:325.445709px;}
.y79{bottom:326.856582px;}
.y47{bottom:326.865170px;}
.ya0{bottom:326.890848px;}
.ybe{bottom:326.925160px;}
.yd6{bottom:326.950655px;}
.y103{bottom:327.345946px;}
.y19d{bottom:331.285255px;}
.y163{bottom:332.078705px;}
.y124{bottom:334.488941px;}
.y20f{bottom:336.615161px;}
.y1d6{bottom:338.432354px;}
.y15f{bottom:340.922859px;}
.y15e{bottom:343.384675px;}
.y161{bottom:343.388855px;}
.y75{bottom:344.804205px;}
.y46{bottom:344.812793px;}
.y9f{bottom:344.838471px;}
.ybd{bottom:344.872783px;}
.yd5{bottom:344.898278px;}
.y102{bottom:345.293569px;}
.y19c{bottom:345.488151px;}
.y160{bottom:350.017708px;}
.y20e{bottom:350.818057px;}
.y123{bottom:352.436564px;}
.y1d5{bottom:352.635250px;}
.y15b{bottom:358.866142px;}
.y19b{bottom:361.137639px;}
.y15a{bottom:361.327981px;}
.y15c{bottom:361.332298px;}
.y74{bottom:362.751828px;}
.y45{bottom:362.760416px;}
.y9e{bottom:362.786094px;}
.ybc{bottom:362.820406px;}
.yd4{bottom:362.845901px;}
.y101{bottom:363.241192px;}
.y20d{bottom:365.020953px;}
.y18{bottom:366.814817px;}
.y1d4{bottom:367.352224px;}
.y15d{bottom:367.965294px;}
.y122{bottom:370.384187px;}
.y19a{bottom:375.340535px;}
.y158{bottom:376.809448px;}
.y20c{bottom:379.223849px;}
.y157{bottom:379.271264px;}
.y159{bottom:379.275604px;}
.y73{bottom:380.609788px;}
.y44{bottom:380.618377px;}
.y9d{bottom:380.644055px;}
.ybb{bottom:380.678367px;}
.yd3{bottom:380.703862px;}
.y100{bottom:381.188815px;}
.y1d3{bottom:381.555120px;}
.y17{bottom:384.672776px;}
.y121{bottom:388.331810px;}
.y199{bottom:390.906336px;}
.y20b{bottom:393.426745px;}
.y154{bottom:394.667679px;}
.y1d2{bottom:396.355782px;}
.y153{bottom:397.214593px;}
.y155{bottom:397.218887px;}
.y72{bottom:398.557411px;}
.y43{bottom:398.566000px;}
.y9c{bottom:398.591678px;}
.yba{bottom:398.625990px;}
.yd2{bottom:398.651485px;}
.yff{bottom:399.136438px;}
.y156{bottom:403.851883px;}
.y198{bottom:405.109232px;}
.y120{bottom:406.279433px;}
.y20a{bottom:407.629641px;}
.y1d1{bottom:410.558678px;}
.y152{bottom:415.162216px;}
.y71{bottom:416.505034px;}
.y42{bottom:416.513623px;}
.y9b{bottom:416.539301px;}
.yb9{bottom:416.573613px;}
.yd1{bottom:416.599108px;}
.yfe{bottom:417.084061px;}
.y16{bottom:420.553080px;}
.y197{bottom:420.675034px;}
.y209{bottom:421.832537px;}
.y11f{bottom:424.227056px;}
.y1d0{bottom:425.359340px;}
.y70{bottom:434.452657px;}
.y41{bottom:434.461246px;}
.ye4{bottom:434.467600px;}
.y9a{bottom:434.486924px;}
.yb8{bottom:434.521236px;}
.yd0{bottom:434.546731px;}
.y196{bottom:434.877930px;}
.yfd{bottom:434.942021px;}
.y208{bottom:436.035433px;}
.y15{bottom:438.500703px;}
.y1cf{bottom:440.160001px;}
.y11e{bottom:442.174679px;}
.y207{bottom:450.238329px;}
.y195{bottom:450.527418px;}
.y151{bottom:450.963730px;}
.y6f{bottom:452.400280px;}
.y40{bottom:452.408869px;}
.ye3{bottom:452.415223px;}
.y99{bottom:452.434547px;}
.yb7{bottom:452.468859px;}
.ycf{bottom:452.494354px;}
.yfc{bottom:452.889644px;}
.y1ce{bottom:454.362897px;}
.y14{bottom:456.448326px;}
.yce{bottom:459.127487px;}
.y11d{bottom:460.122302px;}
.y206{bottom:464.357539px;}
.y194{bottom:464.730314px;}
.y1cd{bottom:469.163559px;}
.y6e{bottom:470.347903px;}
.y3f{bottom:470.356492px;}
.y98{bottom:470.382170px;}
.yb6{bottom:470.416482px;}
.yfb{bottom:470.837267px;}
.y13{bottom:474.395949px;}
.y11c{bottom:477.980262px;}
.y205{bottom:478.560435px;}
.y193{bottom:480.296115px;}
.y1cc{bottom:483.366455px;}
.y6d{bottom:488.295526px;}
.y3e{bottom:488.304115px;}
.y97{bottom:488.329793px;}
.yb5{bottom:488.364105px;}
.y13d{bottom:488.381104px;}
.yfa{bottom:488.784890px;}
.y12{bottom:492.343572px;}
.y204{bottom:492.763331px;}
.y192{bottom:494.499011px;}
.y11b{bottom:495.927885px;}
.y1cb{bottom:498.167117px;}
.y6c{bottom:506.243149px;}
.y3d{bottom:506.251738px;}
.y96{bottom:506.277416px;}
.yb4{bottom:506.311728px;}
.yf9{bottom:506.732513px;}
.y203{bottom:506.966227px;}
.y191{bottom:510.148499px;}
.y11{bottom:510.291195px;}
.y1ca{bottom:512.370013px;}
.y11a{bottom:513.875508px;}
.y202{bottom:521.169123px;}
.y6b{bottom:524.101110px;}
.y3c{bottom:524.109699px;}
.y95{bottom:524.135377px;}
.yb3{bottom:524.169689px;}
.y190{bottom:524.351395px;}
.yf8{bottom:524.680136px;}
.y1c9{bottom:527.086987px;}
.y10{bottom:528.149155px;}
.y119{bottom:531.823131px;}
.y201{bottom:535.372019px;}
.y150{bottom:537.694465px;}
.y18f{bottom:538.554291px;}
.y1c8{bottom:541.289883px;}
.y6a{bottom:542.048733px;}
.y3b{bottom:542.057322px;}
.y94{bottom:542.083000px;}
.yb2{bottom:542.117312px;}
.yf7{bottom:542.627759px;}
.yf{bottom:546.096778px;}
.y200{bottom:549.574915px;}
.y118{bottom:549.770754px;}
.y1c7{bottom:556.090545px;}
.y69{bottom:559.996356px;}
.y3a{bottom:560.004945px;}
.y93{bottom:560.030623px;}
.yb1{bottom:560.064935px;}
.yf6{bottom:560.575382px;}
.y1ff{bottom:563.777811px;}
.ye{bottom:564.044401px;}
.y117{bottom:567.718377px;}
.y1c6{bottom:570.293441px;}
.y14f{bottom:570.523720px;}
.y18e{bottom:574.355850px;}
.y68{bottom:577.943979px;}
.y39{bottom:577.952568px;}
.y92{bottom:577.978246px;}
.y1fe{bottom:577.980707px;}
.yb0{bottom:578.012558px;}
.yf5{bottom:578.433343px;}
.yd{bottom:581.992024px;}
.y1c5{bottom:585.094103px;}
.y116{bottom:585.666000px;}
.y1fd{bottom:592.183603px;}
.y67{bottom:595.891602px;}
.y38{bottom:595.900191px;}
.y91{bottom:595.925869px;}
.yf4{bottom:596.380966px;}
.y1c4{bottom:599.296999px;}
.yc{bottom:599.939647px;}
.y14e{bottom:603.436661px;}
.y1fc{bottom:606.386499px;}
.y66{bottom:613.839225px;}
.y37{bottom:613.847814px;}
.y90{bottom:613.873492px;}
.yaf{bottom:613.899170px;}
.y1c3{bottom:614.097661px;}
.y14d{bottom:617.639557px;}
.yb{bottom:617.887270px;}
.y1fb{bottom:620.589395px;}
.y12f{bottom:622.403091px;}
.y1c2{bottom:628.898323px;}
.y65{bottom:631.786848px;}
.y36{bottom:631.795437px;}
.y8f{bottom:631.821115px;}
.y14c{bottom:631.842453px;}
.y112{bottom:633.033005px;}
.y1fa{bottom:634.792291px;}
.ya{bottom:635.834893px;}
.y1c1{bottom:643.101219px;}
.y18d{bottom:646.128547px;}
.y1f9{bottom:648.995187px;}
.y64{bottom:649.734471px;}
.y35{bottom:649.743060px;}
.y8e{bottom:649.768738px;}
.y9{bottom:653.782516px;}
.y1c0{bottom:657.818192px;}
.y1f8{bottom:663.198083px;}
.y63{bottom:667.592432px;}
.y34{bottom:667.601020px;}
.y8d{bottom:667.626699px;}
.y1bf{bottom:672.021088px;}
.y18c{bottom:677.167026px;}
.y1f7{bottom:677.400979px;}
.y62{bottom:685.540055px;}
.y33{bottom:685.548643px;}
.y8c{bottom:685.574322px;}
.y1be{bottom:686.821750px;}
.y1f6{bottom:691.603875px;}
.y18b{bottom:695.114649px;}
.y1bd{bottom:701.622412px;}
.y8{bottom:703.108966px;}
.y61{bottom:703.487678px;}
.y32{bottom:703.496266px;}
.y8b{bottom:703.521945px;}
.y1f5{bottom:705.806771px;}
.y7{bottom:716.116333px;}
.y1bc{bottom:716.423074px;}
.y1f4{bottom:719.925981px;}
.y60{bottom:721.435301px;}
.y31{bottom:721.443889px;}
.y8a{bottom:721.469568px;}
.y18a{bottom:730.232811px;}
.y1bb{bottom:731.223736px;}
.y1f3{bottom:734.128877px;}
.y5f{bottom:739.382924px;}
.y30{bottom:739.391512px;}
.y89{bottom:739.417191px;}
.y1ba{bottom:746.024398px;}
.ycd{bottom:746.050186px;}
.y1f2{bottom:748.331773px;}
.y5e{bottom:757.330547px;}
.y2f{bottom:757.339135px;}
.y1b9{bottom:760.227294px;}
.y1f1{bottom:762.534669px;}
.y189{bottom:764.588837px;}
.y1b8{bottom:774.430190px;}
.y5d{bottom:775.278170px;}
.y2e{bottom:775.286758px;}
.y88{bottom:775.303802px;}
.y1f0{bottom:776.737565px;}
.y5{bottom:785.593506px;}
.y1b7{bottom:788.633086px;}
.y1ef{bottom:790.940461px;}
.y6{bottom:792.226685px;}
.y5c{bottom:793.225793px;}
.y2d{bottom:793.234381px;}
.y187{bottom:800.894339px;}
.y1b6{bottom:803.350059px;}
.y3{bottom:803.536835px;}
.y1ee{bottom:805.143357px;}
.y188{bottom:807.193542px;}
.y4{bottom:810.169922px;}
.y5b{bottom:811.083754px;}
.y2c{bottom:811.092342px;}
.y1b5{bottom:817.552955px;}
.y1ed{bottom:819.346253px;}
.y5a{bottom:829.031377px;}
.y2b{bottom:829.039965px;}
.y186{bottom:829.048645px;}
.y1b4{bottom:832.353617px;}
.y1ec{bottom:833.549149px;}
.y2{bottom:846.141632px;}
.y1b3{bottom:846.556513px;}
.y59{bottom:846.979000px;}
.y2a{bottom:846.987588px;}
.y184{bottom:846.991974px;}
.y1eb{bottom:847.752045px;}
.y185{bottom:853.625061px;}
.y1b2{bottom:861.357175px;}
.y1ea{bottom:861.954941px;}
.y58{bottom:864.926623px;}
.y29{bottom:864.935211px;}
.y183{bottom:871.568207px;}
.y1b1{bottom:875.560071px;}
.y1e9{bottom:876.157837px;}
.y57{bottom:882.874246px;}
.y181{bottom:882.878540px;}
.y182{bottom:889.511719px;}
.y1b0{bottom:890.360733px;}
.y28{bottom:900.821869px;}
.y1{bottom:901.842316px;}
.y1af{bottom:904.563629px;}
.y180{bottom:907.454956px;}
.y1a{bottom:925.736984px;}
.y19{bottom:939.939880px;}
.y56{bottom:940.280090px;}
.h6{height:21.663004px;}
.hf{height:23.173997px;}
.hc{height:24.623053px;}
.h5{height:27.294509px;}
.he{height:28.968041px;}
.h13{height:30.419716px;}
.h7{height:32.231489px;}
.h10{height:32.757522px;}
.h2{height:34.766013px;}
.h17{height:35.052649px;}
.hb{height:36.938287px;}
.h11{height:40.527856px;}
.h4{height:40.946285px;}
.h8{height:43.456860px;}
.h15{height:44.831699px;}
.hd{height:45.041488px;}
.h3{height:53.230665px;}
.ha{height:55.352204px;}
.h9{height:55.710858px;}
.h14{height:56.179719px;}
.h16{height:56.181642px;}
.h12{height:56.204658px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x2{left:76.535402px;}
.x1{left:80.787300px;}
.x11{left:84.358950px;}
.xc{left:93.571451px;}
.xb{left:97.625256px;}
.xa{left:99.755205px;}
.x3e{left:108.510155px;}
.x37{left:111.911854px;}
.x3f{left:127.814095px;}
.x38{left:131.300697px;}
.xf{left:143.716496px;}
.x10{left:149.158951px;}
.x3b{left:150.604649px;}
.x3{left:163.530601px;}
.x42{left:166.336945px;}
.x12{left:167.357403px;}
.x3c{left:169.993652px;}
.x43{left:171.354298px;}
.x44{left:175.861347px;}
.x45{left:180.793648px;}
.x7{left:192.188850px;}
.x4{left:195.590561px;}
.x40{left:198.226639px;}
.x13{left:199.505204px;}
.x39{left:201.713402px;}
.x8{left:209.536949px;}
.x41{left:214.639343px;}
.x3a{left:218.040894px;}
.x14{left:229.776024px;}
.x3d{left:240.406197px;}
.x15{left:248.486069px;}
.x24{left:256.053452px;}
.x16{left:267.196115px;}
.x25{left:272.976311px;}
.x2d{left:279.442500px;}
.x17{left:285.822472px;}
.x26{left:286.837646px;}
.x2e{left:291.004646px;}
.x2a{left:295.341591px;}
.x27{left:298.488144px;}
.x5{left:303.760506px;}
.x6{left:312.944847px;}
.xd{left:318.897606px;}
.x18{left:323.242562px;}
.x2f{left:324.254997px;}
.x2b{left:326.125946px;}
.xe{left:328.251892px;}
.x2c{left:337.776306px;}
.x9{left:339.817200px;}
.x19{left:341.868919px;}
.x33{left:344.579407px;}
.x46{left:352.062904px;}
.x34{left:358.525955px;}
.x1a{left:360.578964px;}
.x30{left:375.533707px;}
.x1b{left:379.289010px;}
.x28{left:395.433014px;}
.x1c{left:397.915367px;}
.x35{left:406.658112px;}
.x29{left:409.379379px;}
.x31{left:411.760483px;}
.x1d{left:416.625412px;}
.x32{left:425.706894px;}
.x36{left:428.513260px;}
.x1e{left:435.335457px;}
.x22{left:450.538513px;}
.x1f{left:453.961814px;}
.x23{left:462.018768px;}
.x20{left:472.671859px;}
.x21{left:491.381905px;}
.x47{left:523.672348px;}
@media print{
.v5{vertical-align:-22.079195pt;}
.v3{vertical-align:-7.839160pt;}
.v1{vertical-align:-4.250773pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.892442pt;}
.v6{vertical-align:22.374675pt;}
.v4{vertical-align:29.940849pt;}
.ls19{letter-spacing:-5.216411pt;}
.ls69{letter-spacing:-4.123250pt;}
.ls73{letter-spacing:-4.118999pt;}
.ls7b{letter-spacing:-1.904346pt;}
.ls68{letter-spacing:-1.471808pt;}
.ls67{letter-spacing:-1.301780pt;}
.ls62{letter-spacing:-1.280526pt;}
.ls64{letter-spacing:-1.227392pt;}
.ls66{letter-spacing:-1.222079pt;}
.ls60{letter-spacing:-1.216766pt;}
.ls63{letter-spacing:-1.206139pt;}
.ls5f{letter-spacing:-1.195512pt;}
.ls61{letter-spacing:-1.190199pt;}
.lsa5{letter-spacing:-1.126455pt;}
.lsa6{letter-spacing:-1.100950pt;}
.ls5e{letter-spacing:-1.083931pt;}
.ls65{letter-spacing:-1.014857pt;}
.ls1d{letter-spacing:-0.998917pt;}
.ls2e{letter-spacing:-0.961723pt;}
.ls4d{letter-spacing:-0.956410pt;}
.ls16{letter-spacing:-0.945783pt;}
.ls36{letter-spacing:-0.929843pt;}
.ls58{letter-spacing:-0.924529pt;}
.ls31{letter-spacing:-0.908589pt;}
.ls4f{letter-spacing:-0.888410pt;}
.ls5c{letter-spacing:-0.887336pt;}
.ls48{letter-spacing:-0.882022pt;}
.ls57{letter-spacing:-0.876709pt;}
.ls25{letter-spacing:-0.871395pt;}
.ls20{letter-spacing:-0.866082pt;}
.ls59{letter-spacing:-0.860769pt;}
.ls4a{letter-spacing:-0.855455pt;}
.ls1f{letter-spacing:-0.850142pt;}
.ls49{letter-spacing:-0.844828pt;}
.lsb6{letter-spacing:-0.841653pt;}
.ls9c{letter-spacing:-0.836856pt;}
.ls5b{letter-spacing:-0.818262pt;}
.ls5a{letter-spacing:-0.807635pt;}
.ls4c{letter-spacing:-0.802321pt;}
.ls4b{letter-spacing:-0.781068pt;}
.lsa7{letter-spacing:-0.760888pt;}
.ls4e{letter-spacing:-0.759814pt;}
.lsb9{letter-spacing:-0.756638pt;}
.lsa4{letter-spacing:-0.731133pt;}
.ls98{letter-spacing:-0.717307pt;}
.ls12{letter-spacing:-0.714130pt;}
.ls74{letter-spacing:-0.701378pt;}
.ls80{letter-spacing:-0.696054pt;}
.ls18{letter-spacing:-0.692876pt;}
.ls7c{letter-spacing:-0.688625pt;}
.ls6d{letter-spacing:-0.684375pt;}
.ls76{letter-spacing:-0.680124pt;}
.ls11{letter-spacing:-0.680113pt;}
.ls6b{letter-spacing:-0.675873pt;}
.ls41{letter-spacing:-0.674800pt;}
.ls7e{letter-spacing:-0.671622pt;}
.ls77{letter-spacing:-0.667371pt;}
.ls7d{letter-spacing:-0.663121pt;}
.ls53{letter-spacing:-0.658870pt;}
.ls17{letter-spacing:-0.658860pt;}
.ls6a{letter-spacing:-0.654619pt;}
.ls82{letter-spacing:-0.653547pt;}
.lsb5{letter-spacing:-0.650368pt;}
.ls9e{letter-spacing:-0.648233pt;}
.ls99{letter-spacing:-0.642920pt;}
.lsa3{letter-spacing:-0.641867pt;}
.lsb7{letter-spacing:-0.637616pt;}
.lsa2{letter-spacing:-0.633365pt;}
.lsa1{letter-spacing:-0.620613pt;}
.ls97{letter-spacing:-0.605726pt;}
.lsa9{letter-spacing:-0.586607pt;}
.ls78{letter-spacing:-0.582356pt;}
.ls9a{letter-spacing:-0.580220pt;}
.ls6c{letter-spacing:-0.408074pt;}
.ls70{letter-spacing:-0.403823pt;}
.ls6e{letter-spacing:-0.399573pt;}
.ls6f{letter-spacing:-0.391071pt;}
.ls10{letter-spacing:0.000000pt;}
.ls72{letter-spacing:0.053133pt;}
.ls8d{letter-spacing:0.159402pt;}
.lsad{letter-spacing:0.170031pt;}
.lsac{letter-spacing:0.212539pt;}
.ls92{letter-spacing:0.223162pt;}
.ls28{letter-spacing:0.345370pt;}
.ls15{letter-spacing:0.371937pt;}
.ls29{letter-spacing:0.393191pt;}
.ls27{letter-spacing:0.409131pt;}
.lsab{letter-spacing:0.514344pt;}
.lsb2{letter-spacing:0.518594pt;}
.lsa8{letter-spacing:0.527096pt;}
.lsaa{letter-spacing:0.552601pt;}
.ls3{letter-spacing:0.579159pt;}
.lsa{letter-spacing:0.621666pt;}
.ls8{letter-spacing:0.626980pt;}
.ls6{letter-spacing:0.632293pt;}
.ls9{letter-spacing:0.637606pt;}
.ls7{letter-spacing:0.642920pt;}
.ls5{letter-spacing:0.648233pt;}
.ls88{letter-spacing:0.653547pt;}
.ls1b{letter-spacing:0.664173pt;}
.ls86{letter-spacing:0.685427pt;}
.lsb3{letter-spacing:0.697167pt;}
.lsb1{letter-spacing:0.828901pt;}
.lsb8{letter-spacing:0.871409pt;}
.lsb{letter-spacing:0.940469pt;}
.ls87{letter-spacing:0.967036pt;}
.ls14{letter-spacing:1.211452pt;}
.ls54{letter-spacing:1.248646pt;}
.ls50{letter-spacing:1.546195pt;}
.ls1c{letter-spacing:1.567449pt;}
.ls13{letter-spacing:1.599329pt;}
.ls4{letter-spacing:1.689657pt;}
.ls2a{letter-spacing:1.902192pt;}
.lsae{letter-spacing:2.006365pt;}
.lsb0{letter-spacing:2.027619pt;}
.lsaf{letter-spacing:2.040370pt;}
.ls44{letter-spacing:2.114728pt;}
.ls42{letter-spacing:2.120041pt;}
.ls43{letter-spacing:2.157235pt;}
.ls24{letter-spacing:2.460098pt;}
.ls23{letter-spacing:2.529172pt;}
.ls3e{letter-spacing:2.757648pt;}
.ls8f{letter-spacing:2.858517pt;}
.ls91{letter-spacing:2.870973pt;}
.ls8e{letter-spacing:3.400566pt;}
.lsf{letter-spacing:5.211448pt;}
.ls94{letter-spacing:8.660820pt;}
.ls93{letter-spacing:8.926489pt;}
.lsc{letter-spacing:9.404693pt;}
.lsd{letter-spacing:9.723497pt;}
.ls89{letter-spacing:9.989167pt;}
.ls8b{letter-spacing:9.994480pt;}
.ls8a{letter-spacing:10.042301pt;}
.lsb4{letter-spacing:10.159348pt;}
.ls96{letter-spacing:11.647120pt;}
.ls95{letter-spacing:12.242228pt;}
.ls51{letter-spacing:12.263296pt;}
.ls0{letter-spacing:12.466911pt;}
.ls1{letter-spacing:12.467480pt;}
.ls2{letter-spacing:12.539779pt;}
.ls39{letter-spacing:12.566159pt;}
.ls26{letter-spacing:12.752127pt;}
.ls9b{letter-spacing:13.347227pt;}
.ls3c{letter-spacing:13.389735pt;}
.ls5d{letter-spacing:13.469435pt;}
.ls21{letter-spacing:13.772298pt;}
.ls83{letter-spacing:14.298324pt;}
.ls84{letter-spacing:14.680888pt;}
.ls1e{letter-spacing:14.856229pt;}
.ls85{letter-spacing:14.983750pt;}
.ls8c{letter-spacing:15.036882pt;}
.ls81{letter-spacing:15.169717pt;}
.ls35{letter-spacing:15.222852pt;}
.ls3b{letter-spacing:15.286613pt;}
.ls37{letter-spacing:15.461955pt;}
.ls52{letter-spacing:15.589475pt;}
.ls3f{letter-spacing:15.892340pt;}
.ls7f{letter-spacing:16.684034pt;}
.ls30{letter-spacing:16.795615pt;}
.ls71{letter-spacing:16.949703pt;}
.ls40{letter-spacing:17.037591pt;}
.ls55{letter-spacing:17.268505pt;}
.ls90{letter-spacing:17.371619pt;}
.ls3a{letter-spacing:17.401340pt;}
.ls56{letter-spacing:17.587308pt;}
.ls2d{letter-spacing:17.852980pt;}
.ls34{letter-spacing:18.437451pt;}
.ls2b{letter-spacing:18.809387pt;}
.ls46{letter-spacing:18.809388pt;}
.ls3d{letter-spacing:19.659530pt;}
.ls47{letter-spacing:20.004901pt;}
.ls45{letter-spacing:20.297137pt;}
.ls2f{letter-spacing:21.636110pt;}
.ls22{letter-spacing:22.783800pt;}
.ls1a{letter-spacing:23.060098pt;}
.ls33{letter-spacing:23.325767pt;}
.ls38{letter-spacing:23.447975pt;}
.ls2c{letter-spacing:23.910238pt;}
.ls32{letter-spacing:25.265152pt;}
.lse{letter-spacing:31.750101pt;}
.ls79{letter-spacing:100.598804pt;}
.ls75{letter-spacing:110.575368pt;}
.ls7a{letter-spacing:112.088640pt;}
.ls9d{letter-spacing:185.214029pt;}
.ls9f{letter-spacing:209.097706pt;}
.lsa0{letter-spacing:327.623407pt;}
.ws1a9{word-spacing:-209.150840pt;}
.ws157{word-spacing:-110.617875pt;}
.ws163{word-spacing:-104.649787pt;}
.ws170{word-spacing:-104.071684pt;}
.ws162{word-spacing:-90.651994pt;}
.ws16c{word-spacing:-89.164223pt;}
.ws16e{word-spacing:-83.893264pt;}
.ws165{word-spacing:-81.470324pt;}
.wsa3{word-spacing:-25.318286pt;}
.wsca{word-spacing:-23.501109pt;}
.ws57{word-spacing:-22.836934pt;}
.ws95{word-spacing:-21.689244pt;}
.wsf5{word-spacing:-20.058035pt;}
.wsd1{word-spacing:-17.454474pt;}
.wsdc{word-spacing:-17.096039pt;}
.ws9a{word-spacing:-16.848749pt;}
.wsd7{word-spacing:-15.945474pt;}
.ws111{word-spacing:-15.642609pt;}
.wsd6{word-spacing:-15.339747pt;}
.wsc0{word-spacing:-15.275986pt;}
.ws17d{word-spacing:-15.222851pt;}
.ws182{word-spacing:-15.036884pt;}
.ws2f{word-spacing:-14.909363pt;}
.ws181{word-spacing:-14.734021pt;}
.ws180{word-spacing:-14.351458pt;}
.ws50{word-spacing:-13.825432pt;}
.ws130{word-spacing:-13.522569pt;}
.ws1a1{word-spacing:-13.400361pt;}
.wsd0{word-spacing:-12.619293pt;}
.ws10f{word-spacing:-12.316430pt;}
.ws76{word-spacing:-2.513232pt;}
.wsec{word-spacing:-2.210369pt;}
.ws1fc{word-spacing:-2.070127pt;}
.ws115{word-spacing:-1.599329pt;}
.ws1fd{word-spacing:-0.913916pt;}
.ws1fe{word-spacing:-0.871409pt;}
.ws1e0{word-spacing:-0.569604pt;}
.ws1df{word-spacing:-0.556851pt;}
.wsa2{word-spacing:-0.398504pt;}
.ws196{word-spacing:-0.058448pt;}
.ws1e{word-spacing:-0.053134pt;}
.ws23{word-spacing:-0.045164pt;}
.ws20{word-spacing:-0.042508pt;}
.ws19e{word-spacing:-0.037194pt;}
.ws3{word-spacing:-0.035419pt;}
.ws28{word-spacing:0.000000pt;}
.ws19f{word-spacing:0.543027pt;}
.ws1a5{word-spacing:0.552592pt;}
.ws1ae{word-spacing:0.578105pt;}
.ws1a8{word-spacing:0.595099pt;}
.ws1f{word-spacing:0.605726pt;}
.ws201{word-spacing:0.633365pt;}
.ws1bf{word-spacing:0.637616pt;}
.ws143{word-spacing:0.650368pt;}
.ws1b3{word-spacing:0.688625pt;}
.ws108{word-spacing:0.706680pt;}
.ws1c4{word-spacing:0.718381pt;}
.ws3e{word-spacing:0.812948pt;}
.ws2e{word-spacing:0.945783pt;}
.ws1bb{word-spacing:1.058443pt;}
.ws140{word-spacing:1.418674pt;}
.ws1f8{word-spacing:1.861839pt;}
.ws0{word-spacing:7.498364pt;}
.ws1f6{word-spacing:8.289008pt;}
.ws1d5{word-spacing:8.544054pt;}
.ws1a{word-spacing:8.926489pt;}
.ws1d6{word-spacing:8.969132pt;}
.ws1b{word-spacing:9.085891pt;}
.ws1cb{word-spacing:9.181670pt;}
.ws1e4{word-spacing:9.224178pt;}
.ws1c9{word-spacing:9.266686pt;}
.ws1ca{word-spacing:9.309194pt;}
.ws1d{word-spacing:9.404688pt;}
.ws1f9{word-spacing:9.436717pt;}
.ws1ee{word-spacing:9.479225pt;}
.ws1db{word-spacing:9.521732pt;}
.wsa8{word-spacing:9.670363pt;}
.ws19b{word-spacing:9.776631pt;}
.ws1f3{word-spacing:9.861794pt;}
.ws199{word-spacing:9.989167pt;}
.ws1d4{word-spacing:10.074333pt;}
.ws10c{word-spacing:10.116841pt;}
.ws10d{word-spacing:10.159348pt;}
.ws194{word-spacing:10.201856pt;}
.ws1b2{word-spacing:10.414395pt;}
.ws1b1{word-spacing:10.456902pt;}
.ws1e7{word-spacing:10.499410pt;}
.ws1a6{word-spacing:10.573639pt;}
.ws2a{word-spacing:10.626773pt;}
.ws15f{word-spacing:10.669441pt;}
.wsa0{word-spacing:10.679907pt;}
.ws10b{word-spacing:10.711949pt;}
.ws9d{word-spacing:10.733041pt;}
.ws1fa{word-spacing:10.754457pt;}
.ws1c{word-spacing:10.924320pt;}
.ws1e5{word-spacing:10.966995pt;}
.wsc5{word-spacing:11.051844pt;}
.ws9e{word-spacing:11.051850pt;}
.ws1b4{word-spacing:11.052011pt;}
.ws12c{word-spacing:11.062471pt;}
.ws167{word-spacing:11.094518pt;}
.wsef{word-spacing:11.158112pt;}
.ws19c{word-spacing:11.184679pt;}
.wsbf{word-spacing:11.211246pt;}
.ws19a{word-spacing:11.232499pt;}
.ws1b8{word-spacing:11.264549pt;}
.ws1c3{word-spacing:11.307057pt;}
.wsd2{word-spacing:11.317513pt;}
.ws1dd{word-spacing:11.349565pt;}
.ws62{word-spacing:11.434580pt;}
.ws6c{word-spacing:11.476915pt;}
.ws200{word-spacing:11.489840pt;}
.ws10e{word-spacing:11.519596pt;}
.ws86{word-spacing:11.530049pt;}
.ws25{word-spacing:11.561915pt;}
.ws7{word-spacing:11.562104pt;}
.ws1c0{word-spacing:11.562110pt;}
.wsc1{word-spacing:11.583183pt;}
.ws1b7{word-spacing:11.604611pt;}
.ws11c{word-spacing:11.636317pt;}
.ws1d7{word-spacing:11.647119pt;}
.wse6{word-spacing:11.689450pt;}
.ws195{word-spacing:11.689627pt;}
.ws1f0{word-spacing:11.732134pt;}
.ws202{word-spacing:11.774642pt;}
.ws40{word-spacing:11.795718pt;}
.ws1c2{word-spacing:11.817150pt;}
.ws1e2{word-spacing:11.859658pt;}
.ws1bd{word-spacing:11.944673pt;}
.wsfa{word-spacing:11.949806pt;}
.ws54{word-spacing:11.955120pt;}
.ws1ac{word-spacing:11.987181pt;}
.wsfd{word-spacing:12.013567pt;}
.ws2c{word-spacing:12.061387pt;}
.ws1d3{word-spacing:12.072196pt;}
.ws77{word-spacing:12.114521pt;}
.ws8b{word-spacing:12.167655pt;}
.ws126{word-spacing:12.178282pt;}
.ws1d2{word-spacing:12.199720pt;}
.ws8c{word-spacing:12.220789pt;}
.ws21{word-spacing:12.284735pt;}
.ws11f{word-spacing:12.300490pt;}
.wsfb{word-spacing:12.305803pt;}
.ws80{word-spacing:12.327243pt;}
.ws1b0{word-spacing:12.374001pt;}
.ws58{word-spacing:12.380191pt;}
.ws27{word-spacing:12.420026pt;}
.ws9c{word-spacing:12.433324pt;}
.ws13e{word-spacing:12.438638pt;}
.ws78{word-spacing:12.486458pt;}
.ws1bc{word-spacing:12.539781pt;}
.ws13d{word-spacing:12.566159pt;}
.ws1e6{word-spacing:12.582289pt;}
.ws8d{word-spacing:12.592726pt;}
.ws1af{word-spacing:12.620546pt;}
.ws135{word-spacing:12.693680pt;}
.ws7b{word-spacing:12.698994pt;}
.wse1{word-spacing:12.752128pt;}
.ws1c7{word-spacing:12.760817pt;}
.ws4d{word-spacing:12.805262pt;}
.ws1d1{word-spacing:12.820332pt;}
.ws1d0{word-spacing:12.837336pt;}
.wsda{word-spacing:12.858395pt;}
.ws12d{word-spacing:12.869022pt;}
.ws24{word-spacing:12.871664pt;}
.ws169{word-spacing:12.879843pt;}
.ws6{word-spacing:12.956357pt;}
.ws33{word-spacing:12.964663pt;}
.ws1cc{word-spacing:13.015868pt;}
.ws4c{word-spacing:13.017797pt;}
.ws1e3{word-spacing:13.020119pt;}
.ws120{word-spacing:13.039051pt;}
.ws51{word-spacing:13.070931pt;}
.ws9f{word-spacing:13.086868pt;}
.ws1c8{word-spacing:13.092382pt;}
.ws17f{word-spacing:13.097497pt;}
.ws16b{word-spacing:13.122137pt;}
.ws66{word-spacing:13.124065pt;}
.ws3c{word-spacing:13.177199pt;}
.ws166{word-spacing:13.177204pt;}
.ws1c6{word-spacing:13.177397pt;}
.ws22{word-spacing:13.187810pt;}
.ws125{word-spacing:13.187825pt;}
.ws1f7{word-spacing:13.219905pt;}
.ws12a{word-spacing:13.256899pt;}
.ws12b{word-spacing:13.267526pt;}
.wsab{word-spacing:13.283466pt;}
.ws118{word-spacing:13.283667pt;}
.ws1f2{word-spacing:13.309171pt;}
.ws1f4{word-spacing:13.317673pt;}
.ws2b{word-spacing:13.336600pt;}
.wsaa{word-spacing:13.336604pt;}
.ws160{word-spacing:13.377184pt;}
.ws187{word-spacing:13.389734pt;}
.wse0{word-spacing:13.442868pt;}
.ws102{word-spacing:13.496002pt;}
.ws124{word-spacing:13.506629pt;}
.ws1b9{word-spacing:13.517459pt;}
.ws87{word-spacing:13.538509pt;}
.ws186{word-spacing:13.549149pt;}
.wsc{word-spacing:13.554449pt;}
.ws142{word-spacing:13.576970pt;}
.ws1be{word-spacing:13.581221pt;}
.ws161{word-spacing:13.589722pt;}
.ws3f{word-spacing:13.602270pt;}
.ws1ec{word-spacing:13.636481pt;}
.ws16a{word-spacing:13.653484pt;}
.ws3b{word-spacing:13.655403pt;}
.ws3a{word-spacing:13.655409pt;}
.ws155{word-spacing:13.666236pt;}
.ws1cd{word-spacing:13.700243pt;}
.ws3d{word-spacing:13.708537pt;}
.ws70{word-spacing:13.761671pt;}
.ws129{word-spacing:13.782925pt;}
.ws18d{word-spacing:13.804178pt;}
.wse{word-spacing:13.809492pt;}
.ws128{word-spacing:13.830745pt;}
.ws5f{word-spacing:13.867939pt;}
.wsd9{word-spacing:13.921073pt;}
.ws1f5{word-spacing:13.934035pt;}
.ws1f1{word-spacing:13.942537pt;}
.ws112{word-spacing:13.974207pt;}
.ws17b{word-spacing:14.027340pt;}
.wsff{word-spacing:14.075161pt;}
.ws65{word-spacing:14.080474pt;}
.wsfe{word-spacing:14.101728pt;}
.ws14f{word-spacing:14.186742pt;}
.ws2d{word-spacing:14.239876pt;}
.ws1a3{word-spacing:14.239879pt;}
.ws168{word-spacing:14.248592pt;}
.ws30{word-spacing:14.293010pt;}
.ws64{word-spacing:14.346144pt;}
.ws117{word-spacing:14.367614pt;}
.ws7a{word-spacing:14.399278pt;}
.ws116{word-spacing:14.410122pt;}
.ws1a4{word-spacing:14.452411pt;}
.ws127{word-spacing:14.473665pt;}
.ws11b{word-spacing:14.505545pt;}
.ws52{word-spacing:14.558679pt;}
.ws150{word-spacing:14.611813pt;}
.ws1dc{word-spacing:14.622660pt;}
.ws8a{word-spacing:14.664947pt;}
.ws15c{word-spacing:14.718081pt;}
.ws12f{word-spacing:14.819035pt;}
.ws73{word-spacing:14.824348pt;}
.ws14e{word-spacing:14.824353pt;}
.ws198{word-spacing:14.877478pt;}
.ws2{word-spacing:14.877482pt;}
.ws4e{word-spacing:14.930616pt;}
.wscc{word-spacing:14.930620pt;}
.ws4{word-spacing:14.983750pt;}
.ws1d8{word-spacing:15.005230pt;}
.ws100{word-spacing:15.031571pt;}
.ws152{word-spacing:15.036883pt;}
.ws5a{word-spacing:15.036884pt;}
.ws17e{word-spacing:15.036885pt;}
.ws39{word-spacing:15.090018pt;}
.wsd{word-spacing:15.095331pt;}
.ws84{word-spacing:15.143152pt;}
.wsd8{word-spacing:15.196285pt;}
.ws4b{word-spacing:15.249419pt;}
.ws12e{word-spacing:15.313180pt;}
.wsf7{word-spacing:15.318493pt;}
.ws10{word-spacing:15.350374pt;}
.wscf{word-spacing:15.355687pt;}
.wsd5{word-spacing:15.408811pt;}
.ws68{word-spacing:15.408821pt;}
.ws6a{word-spacing:15.461955pt;}
.ws110{word-spacing:15.461959pt;}
.wscb{word-spacing:15.515089pt;}
.ws13f{word-spacing:15.520402pt;}
.wsb2{word-spacing:15.568223pt;}
.ws11e{word-spacing:15.621358pt;}
.ws17a{word-spacing:15.637293pt;}
.ws1b5{word-spacing:15.685354pt;}
.ws123{word-spacing:15.695744pt;}
.ws136{word-spacing:15.701057pt;}
.ws67{word-spacing:15.727624pt;}
.ws122{word-spacing:15.732938pt;}
.ws175{word-spacing:15.780751pt;}
.ws176{word-spacing:15.833892pt;}
.ws82{word-spacing:15.887026pt;}
.ws1e1{word-spacing:15.897892pt;}
.wsb{word-spacing:15.929533pt;}
.ws6f{word-spacing:15.993293pt;}
.ws8e{word-spacing:16.046427pt;}
.ws9b{word-spacing:16.099561pt;}
.wsee{word-spacing:16.152695pt;}
.ws98{word-spacing:16.205829pt;}
.ws38{word-spacing:16.258963pt;}
.ws19d{word-spacing:16.264276pt;}
.wsbe{word-spacing:16.312097pt;}
.ws197{word-spacing:16.349290pt;}
.ws183{word-spacing:16.365231pt;}
.ws151{word-spacing:16.418364pt;}
.ws1c1{word-spacing:16.450493pt;}
.ws97{word-spacing:16.471502pt;}
.ws188{word-spacing:16.492752pt;}
.ws18e{word-spacing:16.514005pt;}
.ws15b{word-spacing:16.524632pt;}
.ws1aa{word-spacing:16.525273pt;}
.wsf6{word-spacing:16.593706pt;}
.ws1a7{word-spacing:16.628389pt;}
.wsa9{word-spacing:16.630900pt;}
.wsea{word-spacing:16.684034pt;}
.wsb6{word-spacing:16.716127pt;}
.ws99{word-spacing:16.737168pt;}
.ws5{word-spacing:16.779675pt;}
.wsa6{word-spacing:16.790301pt;}
.ws174{word-spacing:16.843435pt;}
.ws69{word-spacing:16.864689pt;}
.ws5e{word-spacing:16.896569pt;}
.ws1a0{word-spacing:16.905461pt;}
.ws109{word-spacing:16.949703pt;}
.ws29{word-spacing:16.949919pt;}
.ws31{word-spacing:17.002837pt;}
.wse3{word-spacing:17.040031pt;}
.ws72{word-spacing:17.055971pt;}
.ws1c5{word-spacing:17.088109pt;}
.ws16{word-spacing:17.162239pt;}
.ws85{word-spacing:17.215372pt;}
.ws6b{word-spacing:17.268506pt;}
.wsc2{word-spacing:17.295073pt;}
.ws1ab{word-spacing:17.300648pt;}
.ws74{word-spacing:17.321640pt;}
.ws132{word-spacing:17.348207pt;}
.wsb9{word-spacing:17.427908pt;}
.wsd4{word-spacing:17.534176pt;}
.ws1b6{word-spacing:17.534440pt;}
.wsb5{word-spacing:17.587309pt;}
.ws5b{word-spacing:17.640443pt;}
.ws106{word-spacing:17.693577pt;}
.wsb0{word-spacing:17.799845pt;}
.ws113{word-spacing:17.852979pt;}
.ws59{word-spacing:17.906113pt;}
.ws131{word-spacing:17.959246pt;}
.ws7c{word-spacing:17.980771pt;}
.ws48{word-spacing:18.012380pt;}
.ws1cf{word-spacing:18.023279pt;}
.ws14{word-spacing:18.060201pt;}
.wsad{word-spacing:18.065514pt;}
.ws121{word-spacing:18.097395pt;}
.ws192{word-spacing:18.102708pt;}
.ws1ad{word-spacing:18.108295pt;}
.ws63{word-spacing:18.118648pt;}
.ws37{word-spacing:18.171782pt;}
.ws1d9{word-spacing:18.235818pt;}
.wsdf{word-spacing:18.278050pt;}
.ws101{word-spacing:18.283363pt;}
.ws18{word-spacing:18.384317pt;}
.ws1ef{word-spacing:18.405849pt;}
.ws55{word-spacing:18.437451pt;}
.ws184{word-spacing:18.490585pt;}
.ws7f{word-spacing:18.533372pt;}
.ws7d{word-spacing:18.618387pt;}
.ws7e{word-spacing:18.703403pt;}
.ws10a{word-spacing:18.715049pt;}
.ws1ba{word-spacing:18.745911pt;}
.ws6e{word-spacing:18.756254pt;}
.ws1ff{word-spacing:18.779917pt;}
.wsc4{word-spacing:18.862522pt;}
.ws107{word-spacing:18.915656pt;}
.ws1ce{word-spacing:18.958449pt;}
.ws1ed{word-spacing:19.000957pt;}
.ws1a2{word-spacing:19.031148pt;}
.ws190{word-spacing:19.064431pt;}
.wsdd{word-spacing:19.075058pt;}
.ws4f{word-spacing:19.181325pt;}
.ws15d{word-spacing:19.234465pt;}
.wsc3{word-spacing:19.340727pt;}
.ws1da{word-spacing:19.383527pt;}
.ws5c{word-spacing:19.393861pt;}
.wse8{word-spacing:19.500129pt;}
.wsf8{word-spacing:19.585143pt;}
.ws139{word-spacing:19.585146pt;}
.ws1eb{word-spacing:19.638573pt;}
.ws6d{word-spacing:19.659530pt;}
.wsf9{word-spacing:19.664844pt;}
.wsc6{word-spacing:19.712664pt;}
.ws203{word-spacing:19.715087pt;}
.ws13a{word-spacing:19.717977pt;}
.ws1e8{word-spacing:19.723588pt;}
.ws138{word-spacing:19.771111pt;}
.ws1e9{word-spacing:19.808604pt;}
.wsf1{word-spacing:19.818932pt;}
.wsf4{word-spacing:19.818937pt;}
.ws18f{word-spacing:19.824245pt;}
.wsde{word-spacing:19.872066pt;}
.wse9{word-spacing:19.978333pt;}
.ws1ea{word-spacing:20.063650pt;}
.wsc7{word-spacing:20.084601pt;}
.ws154{word-spacing:20.144415pt;}
.ws1{word-spacing:20.169803pt;}
.ws88{word-spacing:20.244003pt;}
.wsf3{word-spacing:20.244004pt;}
.wsc8{word-spacing:20.297137pt;}
.ws79{word-spacing:20.350270pt;}
.ws15e{word-spacing:20.403404pt;}
.ws141{word-spacing:20.446220pt;}
.wsf0{word-spacing:20.456538pt;}
.ws133{word-spacing:20.536239pt;}
.ws34{word-spacing:20.562806pt;}
.wsf2{word-spacing:20.562811pt;}
.ws53{word-spacing:20.615940pt;}
.wsce{word-spacing:20.669074pt;}
.ws179{word-spacing:20.722207pt;}
.ws189{word-spacing:20.775341pt;}
.ws185{word-spacing:20.828475pt;}
.ws134{word-spacing:20.876296pt;}
.ws94{word-spacing:20.881609pt;}
.ws96{word-spacing:20.934743pt;}
.wscd{word-spacing:20.987877pt;}
.wse2{word-spacing:21.041011pt;}
.ws11d{word-spacing:21.147278pt;}
.ws89{word-spacing:21.163219pt;}
.ws42{word-spacing:21.200412pt;}
.wse5{word-spacing:21.253546pt;}
.ws41{word-spacing:21.306680pt;}
.ws13{word-spacing:21.428888pt;}
.ws17c{word-spacing:21.466082pt;}
.ws11a{word-spacing:21.519215pt;}
.wsb1{word-spacing:21.625483pt;}
.ws71{word-spacing:21.678617pt;}
.wsac{word-spacing:21.731751pt;}
.ws114{word-spacing:21.784885pt;}
.ws32{word-spacing:21.838019pt;}
.wsf{word-spacing:22.045241pt;}
.wsa5{word-spacing:22.103688pt;}
.wsbc{word-spacing:22.209956pt;}
.ws44{word-spacing:22.263090pt;}
.ws81{word-spacing:22.369357pt;}
.wsbd{word-spacing:22.422491pt;}
.wsb3{word-spacing:22.475625pt;}
.wsfc{word-spacing:22.597833pt;}
.ws137{word-spacing:22.656280pt;}
.ws45{word-spacing:22.688160pt;}
.ws43{word-spacing:22.741294pt;}
.ws36{word-spacing:22.794428pt;}
.wsa7{word-spacing:22.805055pt;}
.ws26{word-spacing:22.830266pt;}
.ws47{word-spacing:22.953830pt;}
.ws35{word-spacing:23.006964pt;}
.ws177{word-spacing:23.060098pt;}
.ws46{word-spacing:23.166367pt;}
.wsb4{word-spacing:23.272633pt;}
.ws8f{word-spacing:23.277946pt;}
.ws93{word-spacing:23.325767pt;}
.wsd3{word-spacing:23.378901pt;}
.ws5d{word-spacing:23.432035pt;}
.ws12{word-spacing:23.485168pt;}
.ws13b{word-spacing:23.490482pt;}
.wsbb{word-spacing:23.538302pt;}
.ws11{word-spacing:23.548929pt;}
.ws92{word-spacing:23.591430pt;}
.wsba{word-spacing:23.591436pt;}
.ws13c{word-spacing:23.618003pt;}
.ws178{word-spacing:23.644570pt;}
.ws105{word-spacing:23.697704pt;}
.ws49{word-spacing:23.750838pt;}
.wsaf{word-spacing:23.803972pt;}
.ws4a{word-spacing:23.857106pt;}
.wsae{word-spacing:23.910239pt;}
.ws91{word-spacing:23.910246pt;}
.wseb{word-spacing:23.947457pt;}
.ws60{word-spacing:24.043074pt;}
.ws153{word-spacing:24.069641pt;}
.wse7{word-spacing:24.074954pt;}
.wsa1{word-spacing:24.085581pt;}
.ws119{word-spacing:24.096208pt;}
.wsc9{word-spacing:24.122775pt;}
.ws83{word-spacing:24.175909pt;}
.wsed{word-spacing:24.186535pt;}
.ws18b{word-spacing:24.229043pt;}
.ws90{word-spacing:24.282176pt;}
.wsa4{word-spacing:24.356562pt;}
.ws75{word-spacing:24.356564pt;}
.ws56{word-spacing:24.361877pt;}
.wsb7{word-spacing:24.388444pt;}
.ws104{word-spacing:24.494712pt;}
.ws1fb{word-spacing:24.560969pt;}
.ws173{word-spacing:24.600980pt;}
.ws103{word-spacing:24.600988pt;}
.ws18a{word-spacing:24.654114pt;}
.wse4{word-spacing:24.707247pt;}
.wsb8{word-spacing:24.760381pt;}
.ws18c{word-spacing:24.771008pt;}
.wsdb{word-spacing:24.866649pt;}
.ws1de{word-spacing:25.079563pt;}
.ws15{word-spacing:25.674284pt;}
.ws191{word-spacing:25.865566pt;}
.ws17{word-spacing:25.945266pt;}
.ws9{word-spacing:25.993087pt;}
.wsa{word-spacing:26.242816pt;}
.ws8{word-spacing:26.349090pt;}
.ws19{word-spacing:29.967498pt;}
.ws193{word-spacing:44.718149pt;}
.ws144{word-spacing:70.788129pt;}
.ws14c{word-spacing:90.762513pt;}
.ws14b{word-spacing:90.771014pt;}
.ws14d{word-spacing:90.775265pt;}
.ws147{word-spacing:90.779516pt;}
.ws146{word-spacing:91.302361pt;}
.ws148{word-spacing:91.353370pt;}
.ws16d{word-spacing:101.874034pt;}
.ws15a{word-spacing:101.878285pt;}
.ws171{word-spacing:101.882536pt;}
.ws172{word-spacing:101.886787pt;}
.ws159{word-spacing:101.933545pt;}
.ws16f{word-spacing:101.937796pt;}
.ws158{word-spacing:101.946298pt;}
.ws14a{word-spacing:111.876104pt;}
.ws149{word-spacing:111.884606pt;}
.ws145{word-spacing:111.935615pt;}
.ws156{word-spacing:111.944117pt;}
.ws164{word-spacing:115.867580pt;}
.ws61{word-spacing:1459.171446pt;}
._5a{margin-left:-343.382105pt;}
._58{margin-left:-223.028484pt;}
._57{margin-left:-199.475127pt;}
._59{margin-left:-194.098010pt;}
._42{margin-left:-114.733737pt;}
._41{margin-left:-113.070572pt;}
._3c{margin-left:-112.092894pt;}
._39{margin-left:-111.157724pt;}
._47{margin-left:-110.265061pt;}
._43{margin-left:-105.716734pt;}
._44{margin-left:-103.251321pt;}
._40{margin-left:-101.168406pt;}
._45{margin-left:-100.169351pt;}
._1f{margin-left:-25.413970pt;}
._20{margin-left:-24.090955pt;}
._17{margin-left:-23.198126pt;}
._1b{margin-left:-21.912234pt;}
._1c{margin-left:-20.902982pt;}
._1d{margin-left:-19.340533pt;}
._1e{margin-left:-17.767941pt;}
._10{margin-left:-15.929642pt;}
._f{margin-left:-14.888000pt;}
._16{margin-left:-13.174489pt;}
._24{margin-left:-11.931333pt;}
._3b{margin-left:-10.733224pt;}
._3a{margin-left:-9.372934pt;}
._12{margin-left:-7.533982pt;}
._23{margin-left:-6.577948pt;}
._3{margin-left:-5.526005pt;}
._5{margin-left:-3.931906pt;}
._4{margin-left:-2.869229pt;}
._0{margin-left:-1.657802pt;}
._1{width:1.381480pt;}
._26{width:2.667369pt;}
._c{width:3.658109pt;}
._b{width:5.239069pt;}
._5b{width:7.438853pt;}
._21{width:8.565454pt;}
._a{width:9.946814pt;}
._d{width:11.708195pt;}
._2{width:13.432486pt;}
._14{width:14.845653pt;}
._e{width:15.834017pt;}
._13{width:16.843435pt;}
._11{width:18.129425pt;}
._9{width:19.765798pt;}
._7{width:20.669074pt;}
._6{width:21.625483pt;}
._22{width:22.635152pt;}
._15{width:23.676525pt;}
._18{width:24.600980pt;}
._8{width:26.046246pt;}
._25{width:27.545009pt;}
._19{width:28.522692pt;}
._46{width:30.308014pt;}
._27{width:34.309470pt;}
._49{width:43.867973pt;}
._56{width:58.936108pt;}
._28{width:69.117617pt;}
._38{width:72.263147pt;}
._53{width:75.025018pt;}
._4d{width:80.550940pt;}
._4f{width:83.313901pt;}
._35{width:88.054788pt;}
._2d{width:89.117443pt;}
._2c{width:90.052613pt;}
._2a{width:91.370394pt;}
._2b{width:92.624352pt;}
._55{width:97.086224pt;}
._48{width:100.084521pt;}
._3d{width:101.699774pt;}
._32{width:108.649767pt;}
._30{width:110.647631pt;}
._2f{width:111.540293pt;}
._31{width:113.198095pt;}
._2e{width:115.578528pt;}
._29{width:117.555078pt;}
._51{width:118.701055pt;}
._33{width:120.551933pt;}
._37{width:130.413727pt;}
._34{width:132.411590pt;}
._52{width:133.631671pt;}
._50{width:139.157593pt;}
._4b{width:145.799326pt;}
._4c{width:148.562287pt;}
._4e{width:149.837500pt;}
._4a{width:156.851170pt;}
._54{width:162.908431pt;}
._3f{width:261.039992pt;}
._3e{width:587.881956pt;}
._36{width:1045.392694pt;}
._1a{width:1144.733299pt;}
.fs7{font-size:28.334399pt;}
.fs5{font-size:30.106132pt;}
.fs3{font-size:35.418666pt;}
.fs8{font-size:37.193601pt;}
.fs0{font-size:42.507734pt;}
.fs4{font-size:45.163732pt;}
.fs2{font-size:53.133865pt;}
.fs6{font-size:58.447998pt;}
.fs1{font-size:69.074666pt;}
.y0{bottom:0.000000pt;}
.y87{bottom:67.350386pt;}
.y1e8{bottom:67.355033pt;}
.y55{bottom:67.358020pt;}
.yae{bottom:67.380845pt;}
.ycc{bottom:67.411345pt;}
.y14b{bottom:67.434007pt;}
.y1ae{bottom:67.441977pt;}
.yef{bottom:67.475759pt;}
.y139{bottom:67.479596pt;}
.y17f{bottom:67.499643pt;}
.ye2{bottom:67.499991pt;}
.y113{bottom:67.502401pt;}
.y78{bottom:67.575602pt;}
.ye6{bottom:67.576803pt;}
.y111{bottom:67.785376pt;}
.yf1{bottom:67.804799pt;}
.y131{bottom:68.033740pt;}
.y115{bottom:68.033750pt;}
.yf3{bottom:68.336149pt;}
.ye1{bottom:80.050400pt;}
.y1ad{bottom:80.066773pt;}
.y77{bottom:80.200399pt;}
.ye5{bottom:80.201599pt;}
.y1e7{bottom:80.511177pt;}
.y86{bottom:83.224129pt;}
.y54{bottom:83.231763pt;}
.yad{bottom:83.254588pt;}
.ycb{bottom:83.285088pt;}
.y14a{bottom:83.307750pt;}
.yee{bottom:83.349502pt;}
.y138{bottom:83.353339pt;}
.y110{bottom:83.738819pt;}
.ye0{bottom:84.812536pt;}
.y17c{bottom:90.024554pt;}
.y17e{bottom:90.028402pt;}
.ydf{bottom:92.670410pt;}
.y76{bottom:92.825195pt;}
.y1e6{bottom:93.592931pt;}
.y1ac{bottom:93.903041pt;}
.y17d{bottom:95.924398pt;}
.y27{bottom:99.102480pt;}
.y85{bottom:99.177571pt;}
.y53{bottom:99.185205pt;}
.yac{bottom:99.208031pt;}
.yca{bottom:99.238530pt;}
.y149{bottom:99.261193pt;}
.yed{bottom:99.302944pt;}
.y137{bottom:99.306782pt;}
.y10f{bottom:99.692261pt;}
.yde{bottom:105.295207pt;}
.y179{bottom:105.974159pt;}
.y17b{bottom:105.977997pt;}
.y1ab{bottom:106.527838pt;}
.y1e5{bottom:106.749075pt;}
.y130{bottom:109.531914pt;}
.y114{bottom:109.531925pt;}
.yf2{bottom:109.908712pt;}
.y17a{bottom:111.874003pt;}
.y26{bottom:112.403198pt;}
.y84{bottom:115.131014pt;}
.y52{bottom:115.138648pt;}
.yab{bottom:115.161473pt;}
.yc9{bottom:115.191973pt;}
.y148{bottom:115.214635pt;}
.yec{bottom:115.256387pt;}
.y136{bottom:115.260224pt;}
.y10e{bottom:115.645704pt;}
.y25{bottom:117.392131pt;}
.ydd{bottom:117.920003pt;}
.y1e4{bottom:119.905219pt;}
.y1aa{bottom:120.364105pt;}
.y176{bottom:121.926618pt;}
.y178{bottom:121.927602pt;}
.y12e{bottom:122.074959pt;}
.y21d{bottom:122.604411pt;}
.y177{bottom:127.823598pt;}
.ydc{bottom:130.544800pt;}
.y83{bottom:131.084457pt;}
.y51{bottom:131.092091pt;}
.yaa{bottom:131.114916pt;}
.yc8{bottom:131.145416pt;}
.y147{bottom:131.168078pt;}
.yeb{bottom:131.209830pt;}
.y135{bottom:131.213667pt;}
.y10d{bottom:131.519447pt;}
.y24{bottom:132.283468pt;}
.y1a9{bottom:132.988902pt;}
.y1e3{bottom:133.061363pt;}
.y21c{bottom:135.229208pt;}
.ydb{bottom:135.307068pt;}
.y23{bottom:137.348002pt;}
.y175{bottom:137.880061pt;}
.y12d{bottom:138.028402pt;}
.y1e2{bottom:145.686159pt;}
.y1a8{bottom:146.899558pt;}
.y82{bottom:147.037899pt;}
.y50{bottom:147.045533pt;}
.ya9{bottom:147.068359pt;}
.yc7{bottom:147.098858pt;}
.y146{bottom:147.121521pt;}
.yea{bottom:147.163272pt;}
.y134{bottom:147.167110pt;}
.y10c{bottom:147.472890pt;}
.y21b{bottom:147.854004pt;}
.y22{bottom:152.234759pt;}
.y1e1{bottom:158.842303pt;}
.y173{bottom:159.571604pt;}
.y21a{bottom:160.415104pt;}
.y1a7{bottom:160.735825pt;}
.y172{bottom:161.759896pt;}
.y174{bottom:161.763733pt;}
.y81{bottom:162.991342pt;}
.y4f{bottom:162.998976pt;}
.ya8{bottom:163.021801pt;}
.yc6{bottom:163.052301pt;}
.y145{bottom:163.074963pt;}
.ye9{bottom:163.116715pt;}
.y133{bottom:163.120552pt;}
.y10b{bottom:163.426332pt;}
.y21{bottom:165.467733pt;}
.y12c{bottom:169.852000pt;}
.y20{bottom:170.532267pt;}
.y1e0{bottom:171.467099pt;}
.y219{bottom:172.965512pt;}
.y1a6{bottom:174.646481pt;}
.y170{bottom:175.521342pt;}
.y16f{bottom:177.701948pt;}
.y171{bottom:177.713338pt;}
.y80{bottom:178.944785pt;}
.y4e{bottom:178.952419pt;}
.ya7{bottom:178.975244pt;}
.yc5{bottom:179.005744pt;}
.y144{bottom:179.028406pt;}
.ye8{bottom:179.070158pt;}
.yda{bottom:179.070418pt;}
.y132{bottom:179.073995pt;}
.y10a{bottom:179.379775pt;}
.y1df{bottom:184.623243pt;}
.y1f{bottom:185.426739pt;}
.y218{bottom:185.590308pt;}
.y1a5{bottom:188.482749pt;}
.y16e{bottom:193.655391pt;}
.y7f{bottom:194.898227pt;}
.y4d{bottom:194.905861pt;}
.ya6{bottom:194.928687pt;}
.yc4{bottom:194.959186pt;}
.y143{bottom:194.981849pt;}
.ye7{bottom:195.023600pt;}
.yd9{bottom:195.023860pt;}
.y109{bottom:195.333218pt;}
.y1de{bottom:197.248040pt;}
.y217{bottom:198.215105pt;}
.y1e{bottom:198.727458pt;}
.y1a4{bottom:201.107546pt;}
.y1d{bottom:203.716532pt;}
.y16d{bottom:209.608834pt;}
.y1dd{bottom:210.329794pt;}
.y7e{bottom:210.771970pt;}
.y4c{bottom:210.779604pt;}
.ya5{bottom:210.802429pt;}
.yc3{bottom:210.832929pt;}
.y216{bottom:210.839901pt;}
.y142{bottom:210.855591pt;}
.yd8{bottom:210.897603pt;}
.y108{bottom:211.286660pt;}
.y13c{bottom:212.331482pt;}
.y1a3{bottom:215.018202pt;}
.y12b{bottom:217.689273pt;}
.y1dc{bottom:222.954591pt;}
.y16b{bottom:223.294535pt;}
.y215{bottom:223.464698pt;}
.y13b{bottom:224.956279pt;}
.y16a{bottom:225.554841pt;}
.y16c{bottom:225.562276pt;}
.y7d{bottom:226.725413pt;}
.y4b{bottom:226.733047pt;}
.ya4{bottom:226.755872pt;}
.yc2{bottom:226.786372pt;}
.y141{bottom:226.809034pt;}
.y107{bottom:227.240103pt;}
.y1a2{bottom:228.854469pt;}
.y12a{bottom:233.642716pt;}
.y214{bottom:236.089494pt;}
.y1db{bottom:236.110735pt;}
.y13a{bottom:237.581075pt;}
.yf0{bottom:239.017334pt;}
.y1a1{bottom:241.479266pt;}
.y169{bottom:241.508284pt;}
.y7c{bottom:242.678856pt;}
.y4a{bottom:242.686490pt;}
.ya3{bottom:242.709315pt;}
.yc1{bottom:242.739815pt;}
.y140{bottom:242.762477pt;}
.yd7{bottom:242.796794pt;}
.y106{bottom:243.193546pt;}
.y1c{bottom:245.219016pt;}
.y213{bottom:248.714291pt;}
.y1da{bottom:248.735531pt;}
.y129{bottom:249.596159pt;}
.y1a0{bottom:254.104062pt;}
.y168{bottom:257.382027pt;}
.y1b{bottom:258.519735pt;}
.y7b{bottom:258.632298pt;}
.y49{bottom:258.639932pt;}
.ya2{bottom:258.662757pt;}
.yc0{bottom:258.693257pt;}
.y13f{bottom:258.715919pt;}
.y105{bottom:259.067289pt;}
.y212{bottom:261.339087pt;}
.y1d9{bottom:261.891675pt;}
.y126{bottom:265.496317pt;}
.y128{bottom:265.549601pt;}
.y19f{bottom:268.014718pt;}
.y166{bottom:271.143331pt;}
.y127{bottom:271.445597pt;}
.y165{bottom:273.331632pt;}
.y167{bottom:273.335470pt;}
.y211{bottom:273.963884pt;}
.y7a{bottom:274.585741pt;}
.y48{bottom:274.593375pt;}
.ya1{bottom:274.616200pt;}
.ybf{bottom:274.646700pt;}
.y13e{bottom:274.669362pt;}
.y104{bottom:275.020731pt;}
.y1d8{bottom:275.047819pt;}
.y19e{bottom:280.639515pt;}
.y125{bottom:281.449760pt;}
.y210{bottom:286.588680pt;}
.y1d7{bottom:287.672615pt;}
.y162{bottom:289.281095pt;}
.y164{bottom:289.285075pt;}
.y79{bottom:290.539184pt;}
.y47{bottom:290.546818pt;}
.ya0{bottom:290.569643pt;}
.ybe{bottom:290.600143pt;}
.yd6{bottom:290.622805pt;}
.y103{bottom:290.974174pt;}
.y19d{bottom:294.475782pt;}
.y163{bottom:295.181071pt;}
.y124{bottom:297.323503pt;}
.y20f{bottom:299.213477pt;}
.y1d6{bottom:300.828759pt;}
.y15f{bottom:303.042541pt;}
.y15e{bottom:305.230822pt;}
.y161{bottom:305.234538pt;}
.y75{bottom:306.492626pt;}
.y46{bottom:306.500260pt;}
.y9f{bottom:306.523085pt;}
.ybd{bottom:306.553585pt;}
.yd5{bottom:306.576248pt;}
.y102{bottom:306.927617pt;}
.y19c{bottom:307.100579pt;}
.y160{bottom:311.126852pt;}
.y20e{bottom:311.838273pt;}
.y123{bottom:313.276945pt;}
.y1d5{bottom:313.453556pt;}
.y15b{bottom:318.992126pt;}
.y19b{bottom:321.011235pt;}
.y15a{bottom:321.180428pt;}
.y15c{bottom:321.184265pt;}
.y74{bottom:322.446069pt;}
.y45{bottom:322.453703pt;}
.y9e{bottom:322.476528pt;}
.ybc{bottom:322.507028pt;}
.yd4{bottom:322.529690pt;}
.y101{bottom:322.881059pt;}
.y20d{bottom:324.463070pt;}
.y18{bottom:326.057615pt;}
.y1d4{bottom:326.535310pt;}
.y15d{bottom:327.080261pt;}
.y122{bottom:329.230388pt;}
.y19a{bottom:333.636031pt;}
.y158{bottom:334.941732pt;}
.y20c{bottom:337.087866pt;}
.y157{bottom:337.130013pt;}
.y159{bottom:337.133870pt;}
.y73{bottom:338.319812pt;}
.y44{bottom:338.327446pt;}
.y9d{bottom:338.350271pt;}
.ybb{bottom:338.380771pt;}
.yd3{bottom:338.403433pt;}
.y100{bottom:338.834502pt;}
.y1d3{bottom:339.160107pt;}
.y17{bottom:341.931357pt;}
.y121{bottom:345.183831pt;}
.y199{bottom:347.472299pt;}
.y20b{bottom:349.712663pt;}
.y154{bottom:350.815715pt;}
.y1d2{bottom:352.316250pt;}
.y153{bottom:353.079638pt;}
.y155{bottom:353.083455pt;}
.y72{bottom:354.273255pt;}
.y43{bottom:354.280889pt;}
.y9c{bottom:354.303714pt;}
.yba{bottom:354.334213pt;}
.yd2{bottom:354.356876pt;}
.yff{bottom:354.787945pt;}
.y156{bottom:358.979451pt;}
.y198{bottom:360.097095pt;}
.y120{bottom:361.137273pt;}
.y20a{bottom:362.337459pt;}
.y1d1{bottom:364.941047pt;}
.y152{bottom:369.033081pt;}
.y71{bottom:370.226697pt;}
.y42{bottom:370.234331pt;}
.y9b{bottom:370.257156pt;}
.yb9{bottom:370.287656pt;}
.yd1{bottom:370.310318pt;}
.yfe{bottom:370.741387pt;}
.y16{bottom:373.824960pt;}
.y197{bottom:373.933363pt;}
.y209{bottom:374.962255pt;}
.y11f{bottom:377.090716pt;}
.y1d0{bottom:378.097191pt;}
.y70{bottom:386.180140pt;}
.y41{bottom:386.187774pt;}
.ye4{bottom:386.193422pt;}
.y9a{bottom:386.210599pt;}
.yb8{bottom:386.241099pt;}
.yd0{bottom:386.263761pt;}
.y196{bottom:386.558160pt;}
.yfd{bottom:386.615130pt;}
.y208{bottom:387.587052pt;}
.y15{bottom:389.778402pt;}
.y1cf{bottom:391.253335pt;}
.y11e{bottom:393.044159pt;}
.y207{bottom:400.211848pt;}
.y195{bottom:400.468816pt;}
.y151{bottom:400.856649pt;}
.y6f{bottom:402.133583pt;}
.y40{bottom:402.141217pt;}
.ye3{bottom:402.146865pt;}
.y99{bottom:402.164042pt;}
.yb7{bottom:402.194541pt;}
.ycf{bottom:402.217204pt;}
.yfc{bottom:402.568573pt;}
.y1ce{bottom:403.878131pt;}
.y14{bottom:405.731845pt;}
.yce{bottom:408.113322pt;}
.y11d{bottom:408.997601pt;}
.y206{bottom:412.762257pt;}
.y194{bottom:413.093612pt;}
.y1cd{bottom:417.034275pt;}
.y6e{bottom:418.087025pt;}
.y3f{bottom:418.094659pt;}
.y98{bottom:418.117484pt;}
.yb6{bottom:418.147984pt;}
.yfb{bottom:418.522015pt;}
.y13{bottom:421.685288pt;}
.y11c{bottom:424.871344pt;}
.y205{bottom:425.387053pt;}
.y193{bottom:426.929880pt;}
.y1cc{bottom:429.659071pt;}
.y6d{bottom:434.040468pt;}
.y3e{bottom:434.048102pt;}
.y97{bottom:434.070927pt;}
.yb5{bottom:434.101427pt;}
.y13d{bottom:434.116536pt;}
.yfa{bottom:434.475458pt;}
.y12{bottom:437.638730pt;}
.y204{bottom:438.011850pt;}
.y192{bottom:439.554676pt;}
.y11b{bottom:440.824787pt;}
.y1cb{bottom:442.815215pt;}
.y6c{bottom:449.993911pt;}
.y3d{bottom:450.001545pt;}
.y96{bottom:450.024370pt;}
.yb4{bottom:450.054869pt;}
.yf9{bottom:450.428901pt;}
.y203{bottom:450.636646pt;}
.y191{bottom:453.465332pt;}
.y11{bottom:453.592173pt;}
.y1ca{bottom:455.440012pt;}
.y11a{bottom:456.778230pt;}
.y202{bottom:463.261443pt;}
.y6b{bottom:465.867654pt;}
.y3c{bottom:465.875288pt;}
.y95{bottom:465.898113pt;}
.yb3{bottom:465.928612pt;}
.y190{bottom:466.090129pt;}
.yf8{bottom:466.382343pt;}
.y1c9{bottom:468.521766pt;}
.y10{bottom:469.465916pt;}
.y119{bottom:472.731672pt;}
.y201{bottom:475.886239pt;}
.y150{bottom:477.950635pt;}
.y18f{bottom:478.714925pt;}
.y1c8{bottom:481.146563pt;}
.y6a{bottom:481.821096pt;}
.y3b{bottom:481.828730pt;}
.y94{bottom:481.851555pt;}
.yb2{bottom:481.882055pt;}
.yf7{bottom:482.335786pt;}
.yf{bottom:485.419359pt;}
.y200{bottom:488.511036pt;}
.y118{bottom:488.685115pt;}
.y1c7{bottom:494.302707pt;}
.y69{bottom:497.774539pt;}
.y3a{bottom:497.782173pt;}
.y93{bottom:497.804998pt;}
.yb1{bottom:497.835498pt;}
.yf6{bottom:498.289229pt;}
.y1ff{bottom:501.135832pt;}
.ye{bottom:501.372801pt;}
.y117{bottom:504.638558pt;}
.y1c6{bottom:506.927503pt;}
.y14f{bottom:507.132195pt;}
.y18e{bottom:510.538534pt;}
.y68{bottom:513.727982pt;}
.y39{bottom:513.735616pt;}
.y92{bottom:513.758441pt;}
.y1fe{bottom:513.760629pt;}
.yb0{bottom:513.788940pt;}
.yf5{bottom:514.162972pt;}
.yd{bottom:517.326244pt;}
.y1c5{bottom:520.083647pt;}
.y116{bottom:520.592000pt;}
.y1fd{bottom:526.385425pt;}
.y67{bottom:529.681424pt;}
.y38{bottom:529.689058pt;}
.y91{bottom:529.711883pt;}
.yf4{bottom:530.116414pt;}
.y1c4{bottom:532.708443pt;}
.yc{bottom:533.279687pt;}
.y14e{bottom:536.388143pt;}
.y1fc{bottom:539.010221pt;}
.y66{bottom:545.634867pt;}
.y37{bottom:545.642501pt;}
.y90{bottom:545.665326pt;}
.yaf{bottom:545.688151pt;}
.y1c3{bottom:545.864587pt;}
.y14d{bottom:549.012940pt;}
.yb{bottom:549.233129pt;}
.y1fb{bottom:551.635018pt;}
.y12f{bottom:553.247192pt;}
.y1c2{bottom:559.020731pt;}
.y65{bottom:561.588310pt;}
.y36{bottom:561.595944pt;}
.y8f{bottom:561.618769pt;}
.y14c{bottom:561.637736pt;}
.y112{bottom:562.696004pt;}
.y1fa{bottom:564.259814pt;}
.ya{bottom:565.186572pt;}
.y1c1{bottom:571.645528pt;}
.y18d{bottom:574.336487pt;}
.y1f9{bottom:576.884611pt;}
.y64{bottom:577.541752pt;}
.y35{bottom:577.549386pt;}
.y8e{bottom:577.572211pt;}
.y9{bottom:581.140015pt;}
.y1c0{bottom:584.727282pt;}
.y1f8{bottom:589.509407pt;}
.y63{bottom:593.415495pt;}
.y34{bottom:593.423129pt;}
.y8d{bottom:593.445954pt;}
.y1bf{bottom:597.352078pt;}
.y18c{bottom:601.926245pt;}
.y1f7{bottom:602.134204pt;}
.y62{bottom:609.368938pt;}
.y33{bottom:609.376572pt;}
.y8c{bottom:609.399397pt;}
.y1be{bottom:610.508222pt;}
.y1f6{bottom:614.759000pt;}
.y18b{bottom:617.879688pt;}
.y1bd{bottom:623.664366pt;}
.y8{bottom:624.985747pt;}
.y61{bottom:625.322381pt;}
.y32{bottom:625.330015pt;}
.y8b{bottom:625.352840pt;}
.y1f5{bottom:627.383797pt;}
.y7{bottom:636.547852pt;}
.y1bc{bottom:636.820510pt;}
.y1f4{bottom:639.934205pt;}
.y60{bottom:641.275823pt;}
.y31{bottom:641.283457pt;}
.y8a{bottom:641.306282pt;}
.y18a{bottom:649.095832pt;}
.y1bb{bottom:649.976654pt;}
.y1f3{bottom:652.559002pt;}
.y5f{bottom:657.229266pt;}
.y30{bottom:657.236900pt;}
.y89{bottom:657.259725pt;}
.y1ba{bottom:663.132798pt;}
.ycd{bottom:663.155721pt;}
.y1f2{bottom:665.183798pt;}
.y5e{bottom:673.182709pt;}
.y2f{bottom:673.190343pt;}
.y1b9{bottom:675.757594pt;}
.y1f1{bottom:677.808595pt;}
.y189{bottom:679.634521pt;}
.y1b8{bottom:688.382391pt;}
.y5d{bottom:689.136151pt;}
.y2e{bottom:689.143785pt;}
.y88{bottom:689.158936pt;}
.y1f0{bottom:690.433391pt;}
.y5{bottom:698.305339pt;}
.y1b7{bottom:701.007187pt;}
.y1ef{bottom:703.058187pt;}
.y6{bottom:704.201497pt;}
.y5c{bottom:705.089594pt;}
.y2d{bottom:705.097228pt;}
.y187{bottom:711.906079pt;}
.y1b6{bottom:714.088942pt;}
.y3{bottom:714.254964pt;}
.y1ee{bottom:715.682984pt;}
.y188{bottom:717.505371pt;}
.y4{bottom:720.151042pt;}
.y5b{bottom:720.963337pt;}
.y2c{bottom:720.970971pt;}
.y1b5{bottom:726.713738pt;}
.y1ed{bottom:728.307780pt;}
.y5a{bottom:736.916779pt;}
.y2b{bottom:736.924413pt;}
.y186{bottom:736.932129pt;}
.y1b4{bottom:739.869882pt;}
.y1ec{bottom:740.932577pt;}
.y2{bottom:752.125895pt;}
.y1b3{bottom:752.494679pt;}
.y59{bottom:752.870222pt;}
.y2a{bottom:752.877856pt;}
.y184{bottom:752.881755pt;}
.y1eb{bottom:753.557373pt;}
.y185{bottom:758.777832pt;}
.y1b2{bottom:765.650822pt;}
.y1ea{bottom:766.182170pt;}
.y58{bottom:768.823665pt;}
.y29{bottom:768.831299pt;}
.y183{bottom:774.727295pt;}
.y1b1{bottom:778.275619pt;}
.y1e9{bottom:778.806966pt;}
.y57{bottom:784.777107pt;}
.y181{bottom:784.780924pt;}
.y182{bottom:790.677083pt;}
.y1b0{bottom:791.431763pt;}
.y28{bottom:800.730550pt;}
.y1{bottom:801.637614pt;}
.y1af{bottom:804.056559pt;}
.y180{bottom:806.626628pt;}
.y1a{bottom:822.877319pt;}
.y19{bottom:835.502116pt;}
.y56{bottom:835.804525pt;}
.h6{height:19.256003pt;}
.hf{height:20.599108pt;}
.hc{height:21.887158pt;}
.h5{height:24.261786pt;}
.he{height:25.749370pt;}
.h13{height:27.039748pt;}
.h7{height:28.650212pt;}
.h10{height:29.117798pt;}
.h2{height:30.903122pt;}
.h17{height:31.157910pt;}
.hb{height:32.834033pt;}
.h11{height:36.024761pt;}
.h4{height:36.396698pt;}
.h8{height:38.628320pt;}
.h15{height:39.850399pt;}
.hd{height:40.036879pt;}
.h3{height:47.316146pt;}
.ha{height:49.201959pt;}
.h9{height:49.520762pt;}
.h14{height:49.937528pt;}
.h16{height:49.939237pt;}
.h12{height:49.959696pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x2{left:68.031469pt;}
.x1{left:71.810933pt;}
.x11{left:74.985733pt;}
.xc{left:83.174623pt;}
.xb{left:86.778005pt;}
.xa{left:88.671293pt;}
.x3e{left:96.453471pt;}
.x37{left:99.477203pt;}
.x3f{left:113.612528pt;}
.x38{left:116.711731pt;}
.xf{left:127.747996pt;}
.x10{left:132.585734pt;}
.x3b{left:133.870799pt;}
.x3{left:145.360535pt;}
.x42{left:147.855062pt;}
.x12{left:148.762136pt;}
.x3c{left:151.105469pt;}
.x43{left:152.314931pt;}
.x44{left:156.321198pt;}
.x45{left:160.705465pt;}
.x7{left:170.834534pt;}
.x4{left:173.858276pt;}
.x40{left:176.201457pt;}
.x13{left:177.337959pt;}
.x39{left:179.300802pt;}
.x8{left:186.255066pt;}
.x41{left:190.790527pt;}
.x3a{left:193.814128pt;}
.x14{left:204.245355pt;}
.x3d{left:213.694397pt;}
.x15{left:220.876506pt;}
.x24{left:227.603068pt;}
.x16{left:237.507657pt;}
.x25{left:242.645610pt;}
.x2d{left:248.393333pt;}
.x17{left:254.064419pt;}
.x26{left:254.966797pt;}
.x2e{left:258.670797pt;}
.x2a{left:262.525859pt;}
.x27{left:265.322795pt;}
.x5{left:270.009338pt;}
.x6{left:278.173197pt;}
.xd{left:283.464539pt;}
.x18{left:287.326722pt;}
.x2f{left:288.226664pt;}
.x2b{left:289.889730pt;}
.xe{left:291.779460pt;}
.x2c{left:300.245605pt;}
.x9{left:302.059733pt;}
.x19{left:303.883484pt;}
.x33{left:306.292806pt;}
.x46{left:312.944804pt;}
.x34{left:318.689738pt;}
.x1a{left:320.514635pt;}
.x30{left:333.807739pt;}
.x1b{left:337.145786pt;}
.x28{left:351.496012pt;}
.x1c{left:353.702548pt;}
.x35{left:361.473877pt;}
.x29{left:363.892782pt;}
.x31{left:366.009318pt;}
.x1d{left:370.333700pt;}
.x32{left:378.406128pt;}
.x36{left:380.900675pt;}
.x1e{left:386.964851pt;}
.x22{left:400.478678pt;}
.x1f{left:403.521613pt;}
.x23{left:410.683350pt;}
.x20{left:420.152764pt;}
.x21{left:436.783915pt;}
.x47{left:465.486532pt;}
}




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