
    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_0bfeb34ca1e02744aea7aa6e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.870117;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_da7b531e455c427eec6f65d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_f3948add60c527a7c0d3ada1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_ae290c29bce99f9cc3d64980.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_36a0bf3c2f63b03f62a7fdd1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c0cc396db671f587304e1727.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.956055;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_d41fdbe6d0bd059473a18f1f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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.236547,0.000000,-0.080905,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080905,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080905,0.236547,0,0);}
.m1{transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);}
.m3{transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);}
.m2{transform:matrix(0.236549,0.000000,-0.080900,0.236549,0,0);-ms-transform:matrix(0.236549,0.000000,-0.080900,0.236549,0,0);-webkit-transform:matrix(0.236549,0.000000,-0.080900,0.236549,0,0);}
.m4{transform:matrix(0.236549,0.000000,-0.080899,0.236549,0,0);-ms-transform:matrix(0.236549,0.000000,-0.080899,0.236549,0,0);-webkit-transform:matrix(0.236549,0.000000,-0.080899,0.236549,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);}
.v4{vertical-align:-52.560000px;}
.ve{vertical-align:-47.520600px;}
.vf{vertical-align:-39.238200px;}
.v11{vertical-align:-20.880468px;}
.vd{vertical-align:-16.197385px;}
.vb{vertical-align:-14.758200px;}
.v1{vertical-align:-8.989380px;}
.v10{vertical-align:-6.120000px;}
.v7{vertical-align:-2.876555px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.160833px;}
.v9{vertical-align:3.240000px;}
.vc{vertical-align:5.400864px;}
.v2{vertical-align:9.000000px;}
.v8{vertical-align:13.680000px;}
.v5{vertical-align:15.121889px;}
.v6{vertical-align:16.200000px;}
.va{vertical-align:19.078667px;}
.ls28{letter-spacing:-0.685368px;}
.ls5b{letter-spacing:-0.217268px;}
.lsbc{letter-spacing:-0.156916px;}
.ls92{letter-spacing:-0.144845px;}
.ls4f{letter-spacing:-0.144288px;}
.lsb4{letter-spacing:-0.138810px;}
.lsba{letter-spacing:-0.134064px;}
.ls9d{letter-spacing:-0.129276px;}
.ls9b{letter-spacing:-0.124488px;}
.ls70{letter-spacing:-0.120704px;}
.ls72{letter-spacing:-0.108634px;}
.ls9a{letter-spacing:-0.105336px;}
.ls5e{letter-spacing:-0.102599px;}
.ls60{letter-spacing:-0.096564px;}
.ls4d{letter-spacing:-0.096192px;}
.ls9c{letter-spacing:-0.090972px;}
.ls53{letter-spacing:-0.090528px;}
.ls61{letter-spacing:-0.084493px;}
.ls25{letter-spacing:-0.084168px;}
.lsa4{letter-spacing:-0.081396px;}
.ls63{letter-spacing:-0.078458px;}
.ls21{letter-spacing:-0.078156px;}
.ls55{letter-spacing:-0.072423px;}
.ls1e{letter-spacing:-0.072144px;}
.lsbb{letter-spacing:-0.071820px;}
.ls5a{letter-spacing:-0.066387px;}
.ls23{letter-spacing:-0.066132px;}
.ls5d{letter-spacing:-0.060352px;}
.ls1f{letter-spacing:-0.060120px;}
.lsb5{letter-spacing:-0.058716px;}
.ls58{letter-spacing:-0.054317px;}
.ls1c{letter-spacing:-0.054108px;}
.ls66{letter-spacing:-0.052668px;}
.ls5f{letter-spacing:-0.048282px;}
.ls26{letter-spacing:-0.048096px;}
.lsb9{letter-spacing:-0.047880px;}
.lsa1{letter-spacing:-0.043092px;}
.ls5c{letter-spacing:-0.042247px;}
.ls22{letter-spacing:-0.042084px;}
.ls99{letter-spacing:-0.038304px;}
.ls59{letter-spacing:-0.036211px;}
.ls24{letter-spacing:-0.036072px;}
.lsa2{letter-spacing:-0.033516px;}
.ls64{letter-spacing:-0.030176px;}
.lsa3{letter-spacing:-0.028728px;}
.ls57{letter-spacing:-0.024141px;}
.ls1b{letter-spacing:-0.024048px;}
.lsb8{letter-spacing:-0.023940px;}
.ls19{letter-spacing:-0.021600px;}
.lsb6{letter-spacing:-0.019152px;}
.ls62{letter-spacing:-0.018106px;}
.ls29{letter-spacing:-0.018036px;}
.ls97{letter-spacing:-0.014364px;}
.ls71{letter-spacing:-0.012070px;}
.ls1d{letter-spacing:-0.012024px;}
.lsb7{letter-spacing:-0.009576px;}
.ls6f{letter-spacing:-0.006035px;}
.ls27{letter-spacing:-0.006012px;}
.ls1a{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.004788px;}
.ls2c{letter-spacing:0.006012px;}
.ls4a{letter-spacing:0.009360px;}
.ls0{letter-spacing:0.009576px;}
.ls7{letter-spacing:0.012024px;}
.ls42{letter-spacing:0.012070px;}
.ls82{letter-spacing:0.014364px;}
.ls36{letter-spacing:0.015552px;}
.ls8d{letter-spacing:0.016200px;}
.ls38{letter-spacing:0.017280px;}
.lsb{letter-spacing:0.018036px;}
.ls1{letter-spacing:0.019152px;}
.ls93{letter-spacing:0.023940px;}
.ls6{letter-spacing:0.024048px;}
.ls74{letter-spacing:0.024141px;}
.ls47{letter-spacing:0.025164px;}
.ls85{letter-spacing:0.028728px;}
.lsa{letter-spacing:0.030060px;}
.ls3e{letter-spacing:0.030176px;}
.ls7d{letter-spacing:0.033516px;}
.ls51{letter-spacing:0.034992px;}
.ls18{letter-spacing:0.035964px;}
.ls13{letter-spacing:0.036072px;}
.ls56{letter-spacing:0.036211px;}
.ls67{letter-spacing:0.038304px;}
.ls2b{letter-spacing:0.041940px;}
.lsf{letter-spacing:0.042084px;}
.ls54{letter-spacing:0.042247px;}
.ls7b{letter-spacing:0.043092px;}
.ls49{letter-spacing:0.043200px;}
.ls98{letter-spacing:0.047880px;}
.ls16{letter-spacing:0.047952px;}
.ls2e{letter-spacing:0.048096px;}
.ls35{letter-spacing:0.049860px;}
.lsc{letter-spacing:0.050328px;}
.ls37{letter-spacing:0.052560px;}
.ls88{letter-spacing:0.052668px;}
.ls95{letter-spacing:0.054000px;}
.ls2d{letter-spacing:0.054108px;}
.ls3f{letter-spacing:0.054317px;}
.ls7e{letter-spacing:0.057456px;}
.ls39{letter-spacing:0.060012px;}
.ls31{letter-spacing:0.060120px;}
.ls45{letter-spacing:0.060352px;}
.ls40{letter-spacing:0.060711px;}
.ls86{letter-spacing:0.062244px;}
.ls43{letter-spacing:0.063299px;}
.ls6d{letter-spacing:0.063900px;}
.ls6e{letter-spacing:0.064838px;}
.ls4{letter-spacing:0.066132px;}
.ls65{letter-spacing:0.066387px;}
.ls41{letter-spacing:0.066535px;}
.lsab{letter-spacing:0.067032px;}
.ls73{letter-spacing:0.067104px;}
.ls90{letter-spacing:0.071820px;}
.ls17{letter-spacing:0.071928px;}
.ls69{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.072144px;}
.ls96{letter-spacing:0.075600px;}
.ls34{letter-spacing:0.076608px;}
.ls14{letter-spacing:0.078156px;}
.ls87{letter-spacing:0.081396px;}
.ls4c{letter-spacing:0.083880px;}
.ls9{letter-spacing:0.084168px;}
.ls78{letter-spacing:0.086184px;}
.ls8{letter-spacing:0.090180px;}
.ls79{letter-spacing:0.090972px;}
.ls8e{letter-spacing:0.091800px;}
.lsa5{letter-spacing:0.092268px;}
.ls33{letter-spacing:0.095760px;}
.ls2{letter-spacing:0.096192px;}
.lsa9{letter-spacing:0.100548px;}
.ls3{letter-spacing:0.102204px;}
.ls8b{letter-spacing:0.102600px;}
.ls7c{letter-spacing:0.105336px;}
.ls12{letter-spacing:0.108216px;}
.ls9e{letter-spacing:0.110124px;}
.ls3b{letter-spacing:0.114228px;}
.ls7a{letter-spacing:0.114912px;}
.ls15{letter-spacing:0.120240px;}
.lsac{letter-spacing:0.124488px;}
.lse{letter-spacing:0.125820px;}
.ls10{letter-spacing:0.126252px;}
.lsad{letter-spacing:0.129276px;}
.ls8f{letter-spacing:0.134064px;}
.ls2f{letter-spacing:0.138276px;}
.lsb1{letter-spacing:0.138852px;}
.ls83{letter-spacing:0.143640px;}
.ls7f{letter-spacing:0.144000px;}
.lsaf{letter-spacing:0.148428px;}
.ls30{letter-spacing:0.150300px;}
.ls94{letter-spacing:0.151200px;}
.ls84{letter-spacing:0.153216px;}
.lsb0{letter-spacing:0.162792px;}
.ls20{letter-spacing:0.176148px;}
.lsaa{letter-spacing:0.177156px;}
.ls91{letter-spacing:0.180000px;}
.ls3a{letter-spacing:0.180360px;}
.ls50{letter-spacing:0.181944px;}
.lsb2{letter-spacing:0.201096px;}
.lsa7{letter-spacing:0.220248px;}
.ls46{letter-spacing:0.235374px;}
.ls3c{letter-spacing:0.354708px;}
.ls3d{letter-spacing:2.394053px;}
.lsae{letter-spacing:5.309892px;}
.ls76{letter-spacing:6.512002px;}
.ls52{letter-spacing:7.647264px;}
.lsa8{letter-spacing:12.247704px;}
.lsb3{letter-spacing:12.277584px;}
.ls4e{letter-spacing:19.172268px;}
.ls48{letter-spacing:23.184000px;}
.ls68{letter-spacing:40.886640px;}
.ls11{letter-spacing:40.887612px;}
.lsd{letter-spacing:41.117976px;}
.ls9f{letter-spacing:69.028596px;}
.lsa0{letter-spacing:71.187984px;}
.ls75{letter-spacing:107.296200px;}
.ls77{letter-spacing:109.459800px;}
.ls89{letter-spacing:115.504644px;}
.lsa6{letter-spacing:115.510390px;}
.ls8a{letter-spacing:130.140000px;}
.ls32{letter-spacing:197.120338px;}
.ls80{letter-spacing:344.070468px;}
.ls6b{letter-spacing:412.552601px;}
.ls81{letter-spacing:413.908236px;}
.ls6c{letter-spacing:468.681770px;}
.ls8c{letter-spacing:469.796400px;}
.ls4b{letter-spacing:763.200000px;}
.ls44{letter-spacing:929.549372px;}
.ls6a{letter-spacing:991.110457px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6d{word-spacing:-64.559400px;}
.ws65{word-spacing:-60.352200px;}
.ws6a{word-spacing:-37.458604px;}
.ws6b{word-spacing:-35.443111px;}
.ws5c{word-spacing:-33.652288px;}
.ws60{word-spacing:-33.133358px;}
.wse6{word-spacing:-31.523580px;}
.ws6f{word-spacing:-30.041280px;}
.wse3{word-spacing:-29.646000px;}
.ws15d{word-spacing:-26.286120px;}
.ws5e{word-spacing:-23.193383px;}
.ws1{word-spacing:-21.146148px;}
.ws71{word-spacing:-18.000000px;}
.ws66{word-spacing:-16.139850px;}
.ws0{word-spacing:-15.102144px;}
.ws63{word-spacing:-15.088050px;}
.wse7{word-spacing:-15.051839px;}
.ws59{word-spacing:-15.030000px;}
.wse1{word-spacing:-13.500000px;}
.ws1c9{word-spacing:-12.190248px;}
.ws1cc{word-spacing:-12.171096px;}
.ws1ce{word-spacing:-12.113640px;}
.ws1cd{word-spacing:-12.075336px;}
.ws1ca{word-spacing:-12.070548px;}
.ws160{word-spacing:-11.970000px;}
.ws1cb{word-spacing:-11.835936px;}
.wse2{word-spacing:-11.812500px;}
.ws15f{word-spacing:-11.172000px;}
.ws61{word-spacing:-10.561650px;}
.ws15a{word-spacing:-10.499700px;}
.ws5b{word-spacing:-10.149900px;}
.ws5d{word-spacing:-9.754992px;}
.ws5a{word-spacing:-9.720000px;}
.ws68{word-spacing:-9.414750px;}
.ws15c{word-spacing:-9.000000px;}
.wsac{word-spacing:-8.310498px;}
.ws15e{word-spacing:-7.470000px;}
.ws67{word-spacing:-6.724650px;}
.ws93{word-spacing:-0.272916px;}
.ws1e0{word-spacing:-0.268128px;}
.ws1fe{word-spacing:-0.253764px;}
.ws18a{word-spacing:-0.244188px;}
.ws189{word-spacing:-0.234612px;}
.ws208{word-spacing:-0.229824px;}
.ws19f{word-spacing:-0.225036px;}
.ws1f3{word-spacing:-0.220248px;}
.ws1f2{word-spacing:-0.215460px;}
.ws16f{word-spacing:-0.205884px;}
.ws1b0{word-spacing:-0.201096px;}
.ws171{word-spacing:-0.196308px;}
.ws1e5{word-spacing:-0.191520px;}
.ws211{word-spacing:-0.186732px;}
.ws1b8{word-spacing:-0.184536px;}
.ws186{word-spacing:-0.181944px;}
.ws95{word-spacing:-0.167580px;}
.ws187{word-spacing:-0.148428px;}
.ws4{word-spacing:-0.143856px;}
.ws19e{word-spacing:-0.138852px;}
.ws7a{word-spacing:-0.134208px;}
.ws18c{word-spacing:-0.134064px;}
.ws5{word-spacing:-0.131868px;}
.ws185{word-spacing:-0.124488px;}
.ws18b{word-spacing:-0.119700px;}
.wsc2{word-spacing:-0.117432px;}
.ws193{word-spacing:-0.114912px;}
.ws188{word-spacing:-0.105336px;}
.ws1fc{word-spacing:-0.095760px;}
.ws191{word-spacing:-0.090972px;}
.ws104{word-spacing:-0.072000px;}
.ws92{word-spacing:-0.048096px;}
.wsd3{word-spacing:-0.043200px;}
.ws39{word-spacing:-0.036072px;}
.ws2f{word-spacing:-0.030060px;}
.wsb2{word-spacing:-0.024141px;}
.ws1fd{word-spacing:-0.019152px;}
.wsae{word-spacing:-0.012070px;}
.ws8{word-spacing:-0.012024px;}
.ws1b7{word-spacing:-0.009576px;}
.ws7{word-spacing:-0.006012px;}
.ws3{word-spacing:0.000000px;}
.ws166{word-spacing:0.006035px;}
.ws2{word-spacing:0.009576px;}
.wsab{word-spacing:0.012024px;}
.ws72{word-spacing:0.014364px;}
.ws6{word-spacing:0.021600px;}
.ws9{word-spacing:0.024048px;}
.ws91{word-spacing:0.030060px;}
.ws1a0{word-spacing:0.033516px;}
.ws11a{word-spacing:0.036211px;}
.ws1a1{word-spacing:0.038304px;}
.ws151{word-spacing:0.048282px;}
.ws24{word-spacing:0.054108px;}
.wsb1{word-spacing:0.054317px;}
.ws17{word-spacing:0.060120px;}
.wsf8{word-spacing:0.060352px;}
.ws83{word-spacing:0.066132px;}
.ws101{word-spacing:0.066387px;}
.wsc1{word-spacing:0.072423px;}
.ws19c{word-spacing:0.075600px;}
.ws103{word-spacing:0.078458px;}
.ws143{word-spacing:0.084493px;}
.ws123{word-spacing:0.090528px;}
.wsb5{word-spacing:0.096564px;}
.ws9f{word-spacing:0.102204px;}
.wsd2{word-spacing:0.102599px;}
.ws19d{word-spacing:0.102600px;}
.ws150{word-spacing:0.108634px;}
.wsad{word-spacing:0.120704px;}
.ws25{word-spacing:0.126252px;}
.ws1c6{word-spacing:0.126740px;}
.ws40{word-spacing:0.138276px;}
.wsf{word-spacing:0.144288px;}
.ws1a{word-spacing:0.150300px;}
.wsb6{word-spacing:0.247444px;}
.ws127{word-spacing:0.428501px;}
.ws13a{word-spacing:0.434536px;}
.wsfe{word-spacing:0.452642px;}
.ws20{word-spacing:0.486972px;}
.ws126{word-spacing:0.494888px;}
.ws20b{word-spacing:0.675108px;}
.ws46{word-spacing:0.709416px;}
.wse{word-spacing:0.721440px;}
.ws1ab{word-spacing:0.772508px;}
.wsfd{word-spacing:0.778543px;}
.ws1f{word-spacing:0.793584px;}
.ws110{word-spacing:0.796649px;}
.wsd{word-spacing:0.799596px;}
.ws105{word-spacing:0.814755px;}
.ws108{word-spacing:0.826825px;}
.ws1aa{word-spacing:0.863036px;}
.ws30{word-spacing:0.877752px;}
.ws207{word-spacing:0.909720px;}
.ws21b{word-spacing:0.911318px;}
.ws20a{word-spacing:0.928872px;}
.ws12{word-spacing:1.076148px;}
.ws19{word-spacing:1.082160px;}
.wsee{word-spacing:1.128586px;}
.ws10f{word-spacing:1.207044px;}
.ws53{word-spacing:1.220436px;}
.ws21a{word-spacing:1.264032px;}
.ws206{word-spacing:1.287972px;}
.ws219{word-spacing:1.302336px;}
.ws20f{word-spacing:1.340640px;}
.ws2e{word-spacing:1.448892px;}
.ws27{word-spacing:1.460916px;}
.ws1d5{word-spacing:1.484664px;}
.ws26{word-spacing:1.490976px;}
.wsed{word-spacing:1.520875px;}
.ws2d{word-spacing:1.527048px;}
.ws14d{word-spacing:1.557087px;}
.ws10{word-spacing:1.803600px;}
.ws147{word-spacing:1.864883px;}
.ws181{word-spacing:1.870918px;}
.ws1d4{word-spacing:1.876953px;}
.ws165{word-spacing:1.882989px;}
.ws148{word-spacing:1.889024px;}
.ws13e{word-spacing:1.895059px;}
.ws164{word-spacing:1.925235px;}
.ws33{word-spacing:1.947888px;}
.ws22{word-spacing:1.971936px;}
.ws1f0{word-spacing:1.987020px;}
.wsc{word-spacing:2.230452px;}
.ws12f{word-spacing:2.251137px;}
.ws17e{word-spacing:2.257172px;}
.ws10e{word-spacing:2.263208px;}
.ws22c{word-spacing:2.269243px;}
.ws7f{word-spacing:2.272536px;}
.ws12c{word-spacing:2.275278px;}
.ws12b{word-spacing:2.287348px;}
.ws1ef{word-spacing:2.384424px;}
.ws1e6{word-spacing:2.441880px;}
.ws79{word-spacing:2.513016px;}
.wsb0{word-spacing:2.516687px;}
.ws96{word-spacing:2.555100px;}
.ws17d{word-spacing:2.571004px;}
.ws180{word-spacing:2.583074px;}
.ws74{word-spacing:2.585160px;}
.ws1a3{word-spacing:2.589109px;}
.wsc6{word-spacing:2.601180px;}
.wsda{word-spacing:2.607215px;}
.ws1a4{word-spacing:2.625321px;}
.ws1a9{word-spacing:2.631356px;}
.ws163{word-spacing:2.637391px;}
.ws1f7{word-spacing:2.642976px;}
.ws21{word-spacing:2.843676px;}
.wsa7{word-spacing:2.879748px;}
.ws14{word-spacing:2.939868px;}
.wsb4{word-spacing:2.945187px;}
.wsa8{word-spacing:2.975940px;}
.ws17f{word-spacing:2.981399px;}
.ws15{word-spacing:2.981952px;}
.wsaf{word-spacing:2.987434px;}
.ws4d{word-spacing:3.030048px;}
.ws1f6{word-spacing:3.040380px;}
.ws1f1{word-spacing:3.059532px;}
.ws1e4{word-spacing:3.169656px;}
.wsb3{word-spacing:3.259019px;}
.ws98{word-spacing:3.264516px;}
.ws157{word-spacing:3.307301px;}
.wsdb{word-spacing:3.313336px;}
.ws99{word-spacing:3.330648px;}
.ws158{word-spacing:3.331441px;}
.ws142{word-spacing:3.337477px;}
.ws11f{word-spacing:3.361618px;}
.wsbd{word-spacing:3.367653px;}
.ws1e3{word-spacing:3.432996px;}
.ws73{word-spacing:3.595176px;}
.ws116{word-spacing:3.663379px;}
.wsbc{word-spacing:3.681484px;}
.wscb{word-spacing:3.687519px;}
.ws117{word-spacing:3.693555px;}
.ws12d{word-spacing:3.705625px;}
.ws9b{word-spacing:3.715416px;}
.ws12e{word-spacing:3.717696px;}
.wsf9{word-spacing:3.723731px;}
.ws1da{word-spacing:3.772013px;}
.ws1d9{word-spacing:4.013421px;}
.ws10b{word-spacing:4.019457px;}
.ws100{word-spacing:4.025492px;}
.wse0{word-spacing:4.043597px;}
.ws11e{word-spacing:4.055668px;}
.ws19b{word-spacing:4.061703px;}
.ws183{word-spacing:4.067738px;}
.ws1be{word-spacing:4.073774px;}
.ws56{word-spacing:4.118220px;}
.ws1e9{word-spacing:4.146408px;}
.ws132{word-spacing:4.381570px;}
.ws176{word-spacing:4.387605px;}
.ws1d8{word-spacing:4.405711px;}
.ws19a{word-spacing:4.417781px;}
.ws177{word-spacing:4.441922px;}
.ws1c2{word-spacing:4.447957px;}
.ws1b6{word-spacing:4.620420px;}
.ws3f{word-spacing:4.671324px;}
.ws1a6{word-spacing:4.743683px;}
.ws14b{word-spacing:4.749718px;}
.ws107{word-spacing:4.767824px;}
.ws196{word-spacing:4.785929px;}
.ws172{word-spacing:4.804035px;}
.ws1b5{word-spacing:4.926852px;}
.ws58{word-spacing:5.026032px;}
.ws86{word-spacing:5.038056px;}
.ws32{word-spacing:5.056092px;}
.ws9a{word-spacing:5.062104px;}
.ws106{word-spacing:5.087690px;}
.ws11{word-spacing:5.104188px;}
.wsf6{word-spacing:5.111831px;}
.ws115{word-spacing:5.129937px;}
.ws45{word-spacing:5.134248px;}
.ws1ac{word-spacing:5.135972px;}
.ws8f{word-spacing:5.146272px;}
.ws8e{word-spacing:5.170320px;}
.ws90{word-spacing:5.206392px;}
.ws1f5{word-spacing:5.247648px;}
.ws8d{word-spacing:5.338656px;}
.ws85{word-spacing:5.404788px;}
.ws1c5{word-spacing:5.467909px;}
.wsbf{word-spacing:5.473945px;}
.wsc0{word-spacing:5.479980px;}
.ws13f{word-spacing:5.492050px;}
.wsca{word-spacing:5.498085px;}
.wsf5{word-spacing:5.504121px;}
.ws230{word-spacing:5.516191px;}
.ws22f{word-spacing:5.528262px;}
.ws1fa{word-spacing:5.601960px;}
.ws75{word-spacing:5.741460px;}
.ws87{word-spacing:5.765508px;}
.ws7e{word-spacing:5.795568px;}
.ws3d{word-spacing:5.813604px;}
.ws1c4{word-spacing:5.823987px;}
.ws3c{word-spacing:5.849676px;}
.wsea{word-spacing:5.860199px;}
.ws1bc{word-spacing:5.866234px;}
.wsbe{word-spacing:5.878304px;}
.ws145{word-spacing:5.902445px;}
.ws1f9{word-spacing:5.985000px;}
.wsa6{word-spacing:6.120216px;}
.ws1d7{word-spacing:6.161960px;}
.ws1d6{word-spacing:6.180065px;}
.ws1dc{word-spacing:6.198171px;}
.ws10d{word-spacing:6.204206px;}
.ws7d{word-spacing:6.204384px;}
.ws17b{word-spacing:6.210241px;}
.ws178{word-spacing:6.222312px;}
.ws112{word-spacing:6.234382px;}
.ws209{word-spacing:6.391980px;}
.wsa2{word-spacing:6.480936px;}
.ws29{word-spacing:6.504984px;}
.wsa1{word-spacing:6.517008px;}
.ws169{word-spacing:6.536143px;}
.ws1db{word-spacing:6.548214px;}
.ws10c{word-spacing:6.566319px;}
.ws1d0{word-spacing:6.572355px;}
.ws111{word-spacing:6.578390px;}
.ws12a{word-spacing:6.584425px;}
.ws36{word-spacing:6.841656px;}
.ws1cf{word-spacing:6.892221px;}
.ws168{word-spacing:6.904292px;}
.ws167{word-spacing:6.940503px;}
.ws129{word-spacing:6.946538px;}
.ws50{word-spacing:6.979932px;}
.ws1af{word-spacing:7.038360px;}
.ws1ae{word-spacing:7.071876px;}
.ws7b{word-spacing:7.214400px;}
.ws78{word-spacing:7.220412px;}
.wsa5{word-spacing:7.232436px;}
.ws197{word-spacing:7.272440px;}
.ws195{word-spacing:7.290546px;}
.ws141{word-spacing:7.296581px;}
.wsdf{word-spacing:7.302616px;}
.ws122{word-spacing:7.308651px;}
.ws128{word-spacing:7.326757px;}
.wsa4{word-spacing:7.563096px;}
.ws1dd{word-spacing:7.628518px;}
.ws9d{word-spacing:7.629228px;}
.wsef{word-spacing:7.634553px;}
.wsf0{word-spacing:7.640589px;}
.ws130{word-spacing:7.646624px;}
.wsc5{word-spacing:7.652659px;}
.ws140{word-spacing:7.658694px;}
.ws139{word-spacing:7.664729px;}
.ws204{word-spacing:7.746984px;}
.ws1ff{word-spacing:7.871472px;}
.ws1f8{word-spacing:7.881048px;}
.ws76{word-spacing:7.911792px;}
.ws149{word-spacing:7.990631px;}
.ws1a7{word-spacing:8.002702px;}
.ws119{word-spacing:8.026843px;}
.ws21d{word-spacing:8.032878px;}
.ws133{word-spacing:8.038913px;}
.ws134{word-spacing:8.057019px;}
.ws41{word-spacing:8.062092px;}
.ws210{word-spacing:8.125236px;}
.ws215{word-spacing:8.206632px;}
.ws1ec{word-spacing:8.220996px;}
.wsaa{word-spacing:8.272512px;}
.ws31{word-spacing:8.284536px;}
.ws1b{word-spacing:8.326620px;}
.ws1a2{word-spacing:8.334639px;}
.wsbb{word-spacing:8.346709px;}
.wsa0{word-spacing:8.350668px;}
.wsd9{word-spacing:8.352744px;}
.wsfa{word-spacing:8.370850px;}
.ws159{word-spacing:8.376885px;}
.wsba{word-spacing:8.413097px;}
.wsa9{word-spacing:8.446860px;}
.ws1ea{word-spacing:8.460396px;}
.ws7c{word-spacing:8.464896px;}
.ws1eb{word-spacing:8.551368px;}
.ws3b{word-spacing:8.657280px;}
.ws144{word-spacing:8.684682px;}
.wsec{word-spacing:8.702787px;}
.ws174{word-spacing:8.708822px;}
.ws175{word-spacing:8.726928px;}
.ws16c{word-spacing:8.738999px;}
.ws1e8{word-spacing:8.876952px;}
.wseb{word-spacing:9.076971px;}
.ws1bf{word-spacing:9.083006px;}
.ws1d3{word-spacing:9.101112px;}
.ws16b{word-spacing:9.107147px;}
.ws1c0{word-spacing:9.137323px;}
.ws94{word-spacing:9.173808px;}
.ws212{word-spacing:9.207324px;}
.ws1e7{word-spacing:9.264780px;}
.ws81{word-spacing:9.354672px;}
.wsff{word-spacing:9.420978px;}
.ws57{word-spacing:9.474912px;}
.ws20e{word-spacing:9.542484px;}
.ws20d{word-spacing:9.595152px;}
.ws80{word-spacing:9.703368px;}
.ws88{word-spacing:9.721404px;}
.ws225{word-spacing:9.777056px;}
.ws223{word-spacing:9.789127px;}
.ws109{word-spacing:9.807233px;}
.wscf{word-spacing:9.819303px;}
.ws1a8{word-spacing:9.831373px;}
.ws1e{word-spacing:9.877716px;}
.ws201{word-spacing:9.887220px;}
.ws1fb{word-spacing:9.978192px;}
.wsce{word-spacing:10.145205px;}
.ws113{word-spacing:10.151240px;}
.ws1c8{word-spacing:10.169346px;}
.ws17c{word-spacing:10.205557px;}
.ws48{word-spacing:10.250460px;}
.ws200{word-spacing:10.318140px;}
.wsb{word-spacing:10.502964px;}
.ws37{word-spacing:10.809576px;}
.wsf1{word-spacing:10.905643px;}
.ws52{word-spacing:10.905768px;}
.ws18{word-spacing:10.959876px;}
.ws28{word-spacing:11.158272px;}
.ws2b{word-spacing:11.164284px;}
.wsf4{word-spacing:11.249650px;}
.wsdc{word-spacing:11.261721px;}
.ws16a{word-spacing:11.267756px;}
.ws97{word-spacing:11.302560px;}
.ws9c{word-spacing:11.531016px;}
.ws2a{word-spacing:11.579112px;}
.wsd1{word-spacing:11.605728px;}
.wsc4{word-spacing:11.635904px;}
.ws1c{word-spacing:11.687328px;}
.ws1b4{word-spacing:11.716236px;}
.ws34{word-spacing:11.879712px;}
.ws135{word-spacing:11.901454px;}
.ws3e{word-spacing:11.903760px;}
.ws138{word-spacing:11.955771px;}
.ws14a{word-spacing:11.967841px;}
.ws136{word-spacing:11.985947px;}
.ws205{word-spacing:12.070548px;}
.ws137{word-spacing:12.287708px;}
.ws4c{word-spacing:12.294540px;}
.wsf3{word-spacing:12.317884px;}
.wsf2{word-spacing:12.323919px;}
.wsd0{word-spacing:12.329954px;}
.ws22b{word-spacing:12.342025px;}
.ws118{word-spacing:12.348060px;}
.ws22a{word-spacing:12.366166px;}
.ws1ee{word-spacing:12.439224px;}
.ws17a{word-spacing:12.667927px;}
.wsc7{word-spacing:12.679997px;}
.ws14c{word-spacing:12.686032px;}
.wsb9{word-spacing:12.692068px;}
.ws51{word-spacing:12.769488px;}
.ws1ed{word-spacing:12.817476px;}
.ws218{word-spacing:12.855780px;}
.ws23{word-spacing:12.943836px;}
.ws4b{word-spacing:13.015980px;}
.wsb8{word-spacing:13.048146px;}
.ws179{word-spacing:13.054181px;}
.ws14f{word-spacing:13.072287px;}
.ws152{word-spacing:13.084357px;}
.ws1e1{word-spacing:13.267548px;}
.ws9e{word-spacing:13.322592px;}
.ws47{word-spacing:13.328604px;}
.wsc9{word-spacing:13.368012px;}
.ws1a5{word-spacing:13.410259px;}
.ws14e{word-spacing:13.416294px;}
.ws1c7{word-spacing:13.736161px;}
.ws146{word-spacing:13.766337px;}
.wsc8{word-spacing:13.772372px;}
.wsa{word-spacing:14.152248px;}
.ws1ad{word-spacing:14.170697px;}
.ws77{word-spacing:14.392728px;}
.wse8{word-spacing:14.436246px;}
.ws16{word-spacing:14.470884px;}
.wse9{word-spacing:14.514704px;}
.ws192{word-spacing:14.617764px;}
.ws1ba{word-spacing:14.822500px;}
.ws1bb{word-spacing:14.840606px;}
.ws16d{word-spacing:14.864747px;}
.wsfc{word-spacing:14.882853px;}
.wsd6{word-spacing:14.888888px;}
.ws217{word-spacing:14.943348px;}
.ws43{word-spacing:15.108156px;}
.ws38{word-spacing:15.132204px;}
.ws1d1{word-spacing:15.178578px;}
.ws42{word-spacing:15.186312px;}
.wsfb{word-spacing:15.196684px;}
.wsd5{word-spacing:15.232895px;}
.ws214{word-spacing:15.307236px;}
.ws216{word-spacing:15.331176px;}
.ws190{word-spacing:15.335964px;}
.ws35{word-spacing:15.468876px;}
.wsa3{word-spacing:15.480900px;}
.ws3a{word-spacing:15.492924px;}
.ws1d2{word-spacing:15.558797px;}
.ws229{word-spacing:15.570868px;}
.ws199{word-spacing:15.576903px;}
.ws198{word-spacing:15.619149px;}
.ws20c{word-spacing:15.661548px;}
.ws18f{word-spacing:15.666336px;}
.ws213{word-spacing:15.695064px;}
.ws173{word-spacing:15.926946px;}
.ws228{word-spacing:15.993333px;}
.ws8b{word-spacing:16.190316px;}
.ws224{word-spacing:16.289059px;}
.ws10a{word-spacing:16.301129px;}
.ws8c{word-spacing:16.328592px;}
.ws120{word-spacing:16.651172px;}
.wsde{word-spacing:16.657207px;}
.ws121{word-spacing:16.711524px;}
.ws44{word-spacing:16.713360px;}
.ws13c{word-spacing:16.940863px;}
.wsdd{word-spacing:16.971039px;}
.ws13b{word-spacing:16.977074px;}
.ws13d{word-spacing:17.007250px;}
.ws222{word-spacing:17.031391px;}
.ws4f{word-spacing:17.272476px;}
.ws89{word-spacing:17.392716px;}
.ws21f{word-spacing:17.405574px;}
.ws220{word-spacing:17.411610px;}
.ws8a{word-spacing:17.428788px;}
.ws221{word-spacing:17.465927px;}
.wsb7{word-spacing:17.713371px;}
.wsc3{word-spacing:17.719406px;}
.ws11d{word-spacing:17.761652px;}
.ws1d{word-spacing:17.771472px;}
.ws1c1{word-spacing:18.123766px;}
.ws2c{word-spacing:18.378684px;}
.ws231{word-spacing:18.443632px;}
.ws1e2{word-spacing:18.563076px;}
.ws84{word-spacing:18.763452px;}
.ws154{word-spacing:18.781605px;}
.wscc{word-spacing:19.155788px;}
.ws153{word-spacing:19.173894px;}
.ws203{word-spacing:19.223820px;}
.ws82{word-spacing:19.256436px;}
.ws202{word-spacing:19.372248px;}
.ws13{word-spacing:19.430784px;}
.ws1f4{word-spacing:19.736136px;}
.ws49{word-spacing:20.146212px;}
.ws4e{word-spacing:20.170260px;}
.ws4a{word-spacing:20.230380px;}
.ws131{word-spacing:20.936178px;}
.ws55{word-spacing:20.969856px;}
.ws182{word-spacing:20.978425px;}
.ws102{word-spacing:20.996530px;}
.ws54{word-spacing:21.258432px;}
.ws1c3{word-spacing:21.286221px;}
.ws1bd{word-spacing:21.328467px;}
.ws156{word-spacing:21.364679px;}
.ws233{word-spacing:21.702651px;}
.ws155{word-spacing:21.708686px;}
.ws232{word-spacing:22.082870px;}
.ws16e{word-spacing:22.503600px;}
.ws170{word-spacing:22.546692px;}
.ws21c{word-spacing:23.108857px;}
.ws162{word-spacing:23.120928px;}
.wsd8{word-spacing:23.126963px;}
.ws1b9{word-spacing:23.151104px;}
.ws11c{word-spacing:23.452865px;}
.wsd7{word-spacing:23.464935px;}
.ws161{word-spacing:23.519252px;}
.ws11b{word-spacing:23.525288px;}
.ws21e{word-spacing:23.808943px;}
.ws184{word-spacing:24.243479px;}
.wsf7{word-spacing:24.545240px;}
.ws22e{word-spacing:26.060080px;}
.ws22d{word-spacing:26.343735px;}
.ws194{word-spacing:26.410123px;}
.ws18e{word-spacing:29.000916px;}
.ws114{word-spacing:29.228570px;}
.ws18d{word-spacing:29.369592px;}
.wscd{word-spacing:32.487589px;}
.ws227{word-spacing:33.585999px;}
.ws226{word-spacing:33.604105px;}
.ws1de{word-spacing:39.477060px;}
.ws1df{word-spacing:47.085192px;}
.ws234{word-spacing:67.045259px;}
.wsd4{word-spacing:68.475606px;}
.ws1b3{word-spacing:75.688704px;}
.ws124{word-spacing:100.770068px;}
.ws1b2{word-spacing:112.982436px;}
.ws15b{word-spacing:145.703112px;}
.ws69{word-spacing:162.859594px;}
.ws6c{word-spacing:296.689159px;}
.ws1b1{word-spacing:307.035288px;}
.ws125{word-spacing:318.569088px;}
.wse5{word-spacing:388.187910px;}
.ws6e{word-spacing:392.112144px;}
.ws70{word-spacing:468.358560px;}
.wse4{word-spacing:469.682651px;}
.ws5f{word-spacing:930.650284px;}
.ws62{word-spacing:1023.676272px;}
.ws64{word-spacing:1065.596997px;}
._2a{margin-left:-811.622421px;}
._f{margin-left:-636.630914px;}
._21{margin-left:-633.483542px;}
._12{margin-left:-628.936311px;}
._24{margin-left:-530.139760px;}
._26{margin-left:-453.456255px;}
._18{margin-left:-442.305003px;}
._1d{margin-left:-431.288755px;}
._5d{margin-left:-428.166000px;}
._32{margin-left:-421.146790px;}
._5e{margin-left:-415.924200px;}
._3e{margin-left:-389.680538px;}
._52{margin-left:-359.893800px;}
._3d{margin-left:-354.760359px;}
._5c{margin-left:-331.776000px;}
._37{margin-left:-330.148921px;}
._11{margin-left:-284.771856px;}
._66{margin-left:-277.855380px;}
._1e{margin-left:-270.438208px;}
._5f{margin-left:-257.526000px;}
._22{margin-left:-255.841185px;}
._65{margin-left:-250.977078px;}
._35{margin-left:-243.128376px;}
._3b{margin-left:-241.768341px;}
._36{margin-left:-235.907274px;}
._25{margin-left:-230.696284px;}
._4e{margin-left:-228.220200px;}
._56{margin-left:-225.193500px;}
._39{margin-left:-220.883531px;}
._2b{margin-left:-218.414475px;}
._5b{margin-left:-213.694200px;}
._67{margin-left:-212.198094px;}
._1f{margin-left:-210.037726px;}
._19{margin-left:-207.397009px;}
._1a{margin-left:-203.477442px;}
._59{margin-left:-201.835800px;}
._53{margin-left:-199.697400px;}
._61{margin-left:-196.311083px;}
._10{margin-left:-192.391016px;}
._e{margin-left:-190.591311px;}
._20{margin-left:-188.884549px;}
._2d{margin-left:-185.298390px;}
._3c{margin-left:-182.687456px;}
._3f{margin-left:-180.451726px;}
._15{margin-left:-179.142483px;}
._3a{margin-left:-177.474638px;}
._50{margin-left:-169.543800px;}
._58{margin-left:-168.334200px;}
._2e{margin-left:-166.214631px;}
._1c{margin-left:-162.075833px;}
._62{margin-left:-157.792005px;}
._8{margin-left:-152.740932px;}
._34{margin-left:-151.101276px;}
._28{margin-left:-144.658188px;}
._48{margin-left:-143.142048px;}
._57{margin-left:-139.536000px;}
._17{margin-left:-138.463232px;}
._47{margin-left:-130.118688px;}
._46{margin-left:-125.440128px;}
._55{margin-left:-124.423425px;}
._31{margin-left:-120.655063px;}
._7{margin-left:-118.567072px;}
._43{margin-left:-117.430564px;}
._44{margin-left:-115.630304px;}
._45{margin-left:-114.193926px;}
._64{margin-left:-110.890283px;}
._1b{margin-left:-105.555998px;}
._38{margin-left:-101.684601px;}
._40{margin-left:-98.136744px;}
._16{margin-left:-95.984275px;}
._30{margin-left:-92.078013px;}
._c{margin-left:-88.713635px;}
._33{margin-left:-83.513260px;}
._13{margin-left:-81.269784px;}
._27{margin-left:-78.337156px;}
._23{margin-left:-76.617118px;}
._d{margin-left:-73.593577px;}
._29{margin-left:-72.295900px;}
._4f{margin-left:-71.263800px;}
._5a{margin-left:-70.173000px;}
._51{margin-left:-64.694700px;}
._14{margin-left:-60.518255px;}
._60{margin-left:-58.432882px;}
._2f{margin-left:-48.477653px;}
._54{margin-left:-38.773350px;}
._63{margin-left:-35.750170px;}
._4c{margin-left:-32.403096px;}
._4d{margin-left:-29.162183px;}
._4{margin-left:-20.158236px;}
._6{margin-left:-18.162468px;}
._72{margin-left:-15.145668px;}
._4a{margin-left:-12.963653px;}
._b{margin-left:-7.673940px;}
._3{margin-left:-5.038056px;}
._41{margin-left:-2.516687px;}
._1{margin-left:-1.398096px;}
._2{width:1.016028px;}
._2c{width:2.386878px;}
._42{width:3.397829px;}
._4b{width:5.437733px;}
._68{width:7.157771px;}
._a{width:8.488944px;}
._69{width:16.526274px;}
._74{width:19.027512px;}
._70{width:23.844240px;}
._73{width:47.303639px;}
._0{width:63.000504px;}
._71{width:119.862792px;}
._6a{width:157.990915px;}
._6f{width:168.685185px;}
._6e{width:204.222564px;}
._6d{width:261.008244px;}
._49{width:330.859963px;}
._6c{width:413.137368px;}
._9{width:466.561260px;}
._6b{width:584.806320px;}
._5{width:1757.320488px;}
.fc2{color:transparent;}
.fc1{color:rgb(238,40,37);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:26.898600px;}
.fs1d{font-size:29.880000px;}
.fsa{font-size:36.000000px;}
.fs10{font-size:37.659000px;}
.fs13{font-size:38.303400px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:40.599600px;}
.fs19{font-size:41.998800px;}
.fsc{font-size:42.246600px;}
.fs1a{font-size:44.387008px;}
.fs17{font-size:44.659800px;}
.fs1e{font-size:44.688000px;}
.fs20{font-size:47.229160px;}
.fs16{font-size:47.250000px;}
.fs0{font-size:47.880000px;}
.fs1c{font-size:50.602976px;}
.fs15{font-size:54.000000px;}
.fs12{font-size:54.720000px;}
.fs1b{font-size:57.070914px;}
.fs18{font-size:57.420000px;}
.fs1f{font-size:57.455400px;}
.fs9{font-size:57.999000px;}
.fs3{font-size:60.120000px;}
.fsd{font-size:60.352200px;}
.fs21{font-size:60.723082px;}
.fs8{font-size:61.297428px;}
.fs6{font-size:63.539045px;}
.fse{font-size:64.559400px;}
.fs11{font-size:68.230609px;}
.fs2{font-size:72.000000px;}
.fs14{font-size:76.094487px;}
.fs4{font-size:83.880000px;}
.fsb{font-size:108.634200px;}
.fs1{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y1d7{bottom:1.440450px;}
.y1c0{bottom:2.250450px;}
.y1e9{bottom:2.520450px;}
.yb7{bottom:3.060450px;}
.y78{bottom:3.150450px;}
.y9c{bottom:3.240450px;}
.yb0{bottom:3.510450px;}
.y56{bottom:110.430912px;}
.y2c{bottom:110.993034px;}
.y120{bottom:122.960258px;}
.y15a{bottom:123.146672px;}
.y224{bottom:126.923292px;}
.y55{bottom:127.981443px;}
.y2b{bottom:128.543565px;}
.y92{bottom:129.089388px;}
.yde{bottom:129.176231px;}
.y1ff{bottom:129.179865px;}
.y11f{bottom:140.510678px;}
.y192{bottom:140.514971px;}
.y159{bottom:140.697092px;}
.y1bb{bottom:140.790513px;}
.y1fe{bottom:143.310450px;}
.y223{bottom:144.473712px;}
.y2a{bottom:146.094096px;}
.y91{bottom:146.639919px;}
.ydd{bottom:146.726650px;}
.y54{bottom:151.562010px;}
.y11e{bottom:158.061097px;}
.y191{bottom:158.065391px;}
.y158{bottom:158.247512px;}
.y1ba{bottom:158.790556px;}
.y222{bottom:162.024132px;}
.y29{bottom:163.644627px;}
.y1fd{bottom:163.830450px;}
.y90{bottom:164.189883px;}
.ydc{bottom:164.277070px;}
.y53{bottom:169.112541px;}
.y1b9{bottom:174.540600px;}
.y11d{bottom:175.611517px;}
.y190{bottom:175.615811px;}
.y157{bottom:175.797931px;}
.y1b7{bottom:176.790556px;}
.y1b8{bottom:176.790600px;}
.y221{bottom:179.574552px;}
.y28{bottom:181.195158px;}
.ydb{bottom:181.827490px;}
.y8f{bottom:182.729388px;}
.y52{bottom:186.663072px;}
.y18f{bottom:193.166231px;}
.y156{bottom:193.348351px;}
.y1b1{bottom:194.790275px;}
.y1b6{bottom:194.790600px;}
.y1b5{bottom:195.329796px;}
.y1b3{bottom:195.330450px;}
.y1b4{bottom:196.500450px;}
.y1b2{bottom:198.660823px;}
.y27{bottom:198.745689px;}
.y11c{bottom:199.191122px;}
.y8e{bottom:200.279919px;}
.y51{bottom:204.213603px;}
.y220{bottom:206.124993px;}
.yda{bottom:208.377931px;}
.y18e{bottom:210.716650px;}
.y155{bottom:210.898771px;}
.y1b0{bottom:212.790319px;}
.y26{bottom:216.296220px;}
.y11b{bottom:216.741541px;}
.y8d{bottom:217.826175px;}
.y50{bottom:221.764134px;}
.y21f{bottom:223.675413px;}
.yd9{bottom:225.928351px;}
.y18d{bottom:228.267070px;}
.y154{bottom:228.449191px;}
.y1af{bottom:230.790363px;}
.y25{bottom:233.846751px;}
.y11a{bottom:234.291961px;}
.y4f{bottom:239.314665px;}
.y21e{bottom:241.225833px;}
.yd8{bottom:243.478771px;}
.y8c{bottom:244.645707px;}
.y18c{bottom:245.817490px;}
.y153{bottom:245.999610px;}
.y27c{bottom:246.440136px;}
.y1ae{bottom:248.790406px;}
.y119{bottom:251.842381px;}
.y4e{bottom:256.865196px;}
.y21d{bottom:258.776252px;}
.y24{bottom:260.397246px;}
.yd7{bottom:261.029191px;}
.y8b{bottom:262.196238px;}
.y152{bottom:263.550030px;}
.y1ad{bottom:266.790450px;}
.y118{bottom:269.392801px;}
.y18b{bottom:272.367931px;}
.y27b{bottom:272.990578px;}
.y4d{bottom:274.415727px;}
.y21c{bottom:276.326672px;}
.yd6{bottom:278.579610px;}
.y8a{bottom:279.746769px;}
.y151{bottom:281.100450px;}
.y23{bottom:284.966787px;}
.y18a{bottom:289.918351px;}
.y4c{bottom:291.966258px;}
.y1ac{bottom:293.069865px;}
.y21b{bottom:293.877092px;}
.y117{bottom:294.413314px;}
.yd5{bottom:296.130030px;}
.y27a{bottom:299.541019px;}
.y24c{bottom:302.426148px;}
.y22{bottom:302.517318px;}
.y89{bottom:306.297264px;}
.y1ab{bottom:307.200450px;}
.y189{bottom:307.468771px;}
.y150{bottom:308.730450px;}
.y4b{bottom:309.516789px;}
.y21a{bottom:311.427512px;}
.y116{bottom:311.963734px;}
.yd4{bottom:313.680450px;}
.y24b{bottom:316.556733px;}
.y279{bottom:317.091439px;}
.y88{bottom:323.847795px;}
.y1aa{bottom:324.750600px;}
.y188{bottom:325.019191px;}
.y4a{bottom:327.067320px;}
.y21{bottom:328.526733px;}
.y219{bottom:328.977931px;}
.y115{bottom:329.514154px;}
.y24a{bottom:330.687318px;}
.y1c4{bottom:333.030450px;}
.y278{bottom:334.641859px;}
.yd3{bottom:340.680450px;}
.y87{bottom:341.398326px;}
.y187{bottom:342.569610px;}
.y49{bottom:344.617851px;}
.y249{bottom:344.817903px;}
.y1c3{bottom:344.820450px;}
.y20{bottom:346.077264px;}
.y218{bottom:346.528351px;}
.y114{bottom:347.064573px;}
.y1c2{bottom:347.070450px;}
.y277{bottom:352.192279px;}
.y86{bottom:358.948857px;}
.y186{bottom:360.120030px;}
.y48{bottom:362.168382px;}
.y1f{bottom:363.627795px;}
.y217{bottom:364.078771px;}
.y113{bottom:364.614993px;}
.y248{bottom:367.947534px;}
.y1c9{bottom:368.042250px;}
.y14f{bottom:368.215593px;}
.y276{bottom:369.742698px;}
.y85{bottom:376.499388px;}
.y185{bottom:377.670450px;}
.y47{bottom:379.718913px;}
.y1e{bottom:381.178326px;}
.y216{bottom:381.629191px;}
.y247{bottom:382.078119px;}
.y112{bottom:382.165413px;}
.y1c8{bottom:383.881800px;}
.y14e{bottom:385.766013px;}
.y275{bottom:387.293118px;}
.yd2{bottom:388.284993px;}
.y84{bottom:394.049919px;}
.y1d{bottom:398.728857px;}
.y215{bottom:399.179610px;}
.y111{bottom:399.715833px;}
.y1c7{bottom:399.721350px;}
.y46{bottom:403.299480px;}
.y14d{bottom:403.316433px;}
.y184{bottom:403.681062px;}
.y274{bottom:404.843538px;}
.y246{bottom:405.207750px;}
.yd1{bottom:405.835413px;}
.y83{bottom:411.600450px;}
.y1c6{bottom:415.560900px;}
.y1c{bottom:416.279388px;}
.y214{bottom:416.730030px;}
.y110{bottom:417.266252px;}
.y183{bottom:417.810450px;}
.y245{bottom:419.338335px;}
.y45{bottom:420.850011px;}
.y14c{bottom:420.866852px;}
.y273{bottom:422.393958px;}
.yd0{bottom:423.385833px;}
.y244{bottom:433.468920px;}
.y1b{bottom:433.829919px;}
.y213{bottom:434.280450px;}
.y10f{bottom:434.816672px;}
.y44{bottom:438.400542px;}
.y14b{bottom:438.417272px;}
.y272{bottom:439.944378px;}
.ycf{bottom:440.936252px;}
.y1c5{bottom:441.210000px;}
.y1ee{bottom:442.110600px;}
.y82{bottom:443.640015px;}
.y1ec{bottom:443.640144px;}
.y1ed{bottom:443.640450px;}
.y1f2{bottom:450.570450px;}
.y182{bottom:450.746917px;}
.y1a{bottom:451.380450px;}
.y10e{bottom:452.367092px;}
.y1bf{bottom:454.800000px;}
.y43{bottom:455.951073px;}
.y14a{bottom:455.967692px;}
.y243{bottom:456.598551px;}
.y1c1{bottom:457.050450px;}
.y1be{bottom:457.050900px;}
.y271{bottom:457.494797px;}
.y81{bottom:457.770600px;}
.yce{bottom:458.486672px;}
.y212{bottom:461.910450px;}
.y10d{bottom:469.917512px;}
.y242{bottom:470.729136px;}
.y42{bottom:473.501604px;}
.y270{bottom:475.045217px;}
.ycd{bottom:476.037092px;}
.y181{bottom:477.297359px;}
.y19{bottom:479.010450px;}
.ye8{bottom:480.990450px;}
.y80{bottom:481.708470px;}
.y149{bottom:482.518134px;}
.y1bd{bottom:482.520600px;}
.ye7{bottom:483.240450px;}
.y1f1{bottom:484.501062px;}
.y1bc{bottom:484.770600px;}
.y241{bottom:484.859721px;}
.y10c{bottom:487.467931px;}
.y41{bottom:491.052135px;}
.ycc{bottom:493.587512px;}
.y1f0{bottom:498.630450px;}
.y240{bottom:498.990306px;}
.y148{bottom:500.068553px;}
.y26f{bottom:501.865735px;}
.y180{bottom:503.847800px;}
.y10b{bottom:505.018351px;}
.y7f{bottom:508.258965px;}
.y40{bottom:508.602666px;}
.ycb{bottom:511.137931px;}
.y1fc{bottom:515.821062px;}
.y147{bottom:517.618973px;}
.y26e{bottom:519.416154px;}
.y1a9{bottom:520.500600px;}
.y1a8{bottom:520.500693px;}
.y211{bottom:520.860477px;}
.y23f{bottom:522.119937px;}
.y10a{bottom:522.568771px;}
.y3f{bottom:526.153197px;}
.yca{bottom:528.688351px;}
.ye4{bottom:529.680450px;}
.y1ef{bottom:529.860450px;}
.y1fb{bottom:529.950450px;}
.ye1{bottom:530.220450px;}
.y17f{bottom:530.398242px;}
.y7e{bottom:534.809460px;}
.y210{bottom:534.989865px;}
.y146{bottom:535.169393px;}
.y1a7{bottom:535.440450px;}
.y1a6{bottom:535.440693px;}
.y23e{bottom:536.250522px;}
.ye2{bottom:536.610450px;}
.y26d{bottom:536.966574px;}
.ydf{bottom:537.150450px;}
.y18{bottom:538.499388px;}
.y109{bottom:540.119191px;}
.y3e{bottom:543.703728px;}
.ye3{bottom:544.171072px;}
.ye0{bottom:544.711072px;}
.yc9{bottom:546.238771px;}
.y20f{bottom:549.120450px;}
.y1eb{bottom:550.290450px;}
.y1a5{bottom:550.380450px;}
.y23d{bottom:550.381107px;}
.y1fa{bottom:550.470450px;}
.y1e3{bottom:552.989793px;}
.y26c{bottom:554.516994px;}
.y17{bottom:556.049919px;}
.y17e{bottom:556.948684px;}
.y108{bottom:557.669610px;}
.y7d{bottom:561.359955px;}
.y145{bottom:561.719834px;}
.yc8{bottom:563.789191px;}
.y23c{bottom:564.511692px;}
.y1e2{bottom:567.120378px;}
.yea{bottom:567.930450px;}
.y3d{bottom:568.724169px;}
.yec{bottom:568.740450px;}
.ye9{bottom:570.180450px;}
.y1a4{bottom:570.900450px;}
.yeb{bottom:570.990450px;}
.y26b{bottom:572.067414px;}
.y20e{bottom:572.970450px;}
.y16{bottom:573.600450px;}
.y107{bottom:575.220030px;}
.y23b{bottom:578.642277px;}
.y144{bottom:579.270254px;}
.y1e1{bottom:581.250963px;}
.yc7{bottom:581.339610px;}
.y17d{bottom:583.499125px;}
.y20d{bottom:586.110450px;}
.y3c{bottom:586.274700px;}
.y7c{bottom:587.910450px;}
.y26a{bottom:589.617834px;}
.y1e5{bottom:590.340450px;}
.ye6{bottom:590.430450px;}
.ye5{bottom:592.680450px;}
.y106{bottom:592.770450px;}
.y20c{bottom:597.360450px;}
.y143{bottom:597.808973px;}
.yc6{bottom:598.890030px;}
.y15{bottom:601.230450px;}
.y23a{bottom:601.771908px;}
.y3b{bottom:603.825231px;}
.y17c{bottom:610.049567px;}
.y7b{bottom:613.200450px;}
.y239{bottom:615.901296px;}
.y269{bottom:616.438351px;}
.yc5{bottom:616.440450px;}
.y1e8{bottom:618.600000px;}
.y105{bottom:619.770450px;}
.y1e7{bottom:621.119865px;}
.y1ea{bottom:621.120450px;}
.y3a{bottom:621.375762px;}
.y20b{bottom:621.750450px;}
.y74{bottom:624.810450px;}
.y142{bottom:625.349191px;}
.y76{bottom:628.410450px;}
.y238{bottom:630.030684px;}
.y268{bottom:633.988771px;}
.y20a{bottom:634.890450px;}
.y1e6{bottom:635.250450px;}
.y17b{bottom:636.600008px;}
.y1e4{bottom:636.600450px;}
.y7a{bottom:637.590242px;}
.y79{bottom:637.590450px;}
.y73{bottom:638.130360px;}
.y39{bottom:638.926293px;}
.y141{bottom:642.899610px;}
.y75{bottom:643.080270px;}
.y77{bottom:643.530000px;}
.yc4{bottom:644.070450px;}
.y237{bottom:644.160072px;}
.y209{bottom:646.140450px;}
.y267{bottom:651.539191px;}
.y38{bottom:656.476824px;}
.y236{bottom:658.290657px;}
.y140{bottom:660.450030px;}
.y17a{bottom:663.150450px;}
.y104{bottom:667.380030px;}
.y266{bottom:669.089610px;}
.y14{bottom:669.714123px;}
.y208{bottom:670.530450px;}
.y72{bottom:673.229919px;}
.y13f{bottom:677.999191px;}
.y37{bottom:680.057391px;}
.y179{bottom:680.160234px;}
.y235{bottom:681.420288px;}
.y207{bottom:683.670450px;}
.y103{bottom:684.930161px;}
.y265{bottom:686.640030px;}
.y13{bottom:687.264654px;}
.y71{bottom:688.530450px;}
.y70{bottom:690.780450px;}
.y6f{bottom:690.780945px;}
.y178{bottom:694.290819px;}
.y206{bottom:694.920450px;}
.y13e{bottom:695.549610px;}
.y234{bottom:695.549676px;}
.y36{bottom:697.607922px;}
.yc3{bottom:703.559534px;}
.y264{bottom:704.190450px;}
.y12{bottom:704.815185px;}
.y6e{bottom:709.320450px;}
.y6d{bottom:709.320945px;}
.y233{bottom:709.680261px;}
.y102{bottom:710.939741px;}
.y13d{bottom:713.100030px;}
.y35{bottom:715.158453px;}
.y177{bottom:717.420450px;}
.yc2{bottom:721.109954px;}
.y11{bottom:722.365716px;}
.y232{bottom:723.810846px;}
.y205{bottom:724.799865px;}
.y6c{bottom:727.860450px;}
.y6b{bottom:727.860945px;}
.y13c{bottom:730.648771px;}
.y263{bottom:732.090450px;}
.y34{bottom:732.708984px;}
.yc1{bottom:736.680450px;}
.y101{bottom:736.950030px;}
.ybf{bottom:738.929639px;}
.yc0{bottom:738.930450px;}
.y10{bottom:739.916247px;}
.y176{bottom:741.357724px;}
.y1d6{bottom:743.340000px;}
.y204{bottom:743.430450px;}
.y1d5{bottom:744.779892px;}
.y1d8{bottom:744.780450px;}
.y6a{bottom:746.398326px;}
.y231{bottom:746.940477px;}
.y13b{bottom:748.199191px;}
.y33{bottom:750.259515px;}
.y100{bottom:754.499741px;}
.yf{bottom:757.466778px;}
.ybe{bottom:757.469834px;}
.y1d4{bottom:758.909280px;}
.y230{bottom:761.071062px;}
.y69{bottom:763.948857px;}
.y13a{bottom:765.749610px;}
.y203{bottom:766.560450px;}
.y32{bottom:767.810046px;}
.y175{bottom:767.908165px;}
.y1d3{bottom:773.039865px;}
.ye{bottom:775.017309px;}
.ybd{bottom:775.020254px;}
.y22f{bottom:775.200450px;}
.y202{bottom:777.899865px;}
.yff{bottom:780.510030px;}
.y68{bottom:781.499388px;}
.y139{bottom:783.300030px;}
.y1df{bottom:787.080450px;}
.y1d2{bottom:787.170450px;}
.y1dd{bottom:788.610297px;}
.y1de{bottom:788.610600px;}
.y262{bottom:791.040873px;}
.ybc{bottom:791.310450px;}
.y201{bottom:792.030450px;}
.yd{bottom:792.567840px;}
.y31{bottom:792.830487px;}
.yba{bottom:793.560180px;}
.ybb{bottom:793.560450px;}
.y174{bottom:794.458607px;}
.y1e0{bottom:795.000450px;}
.yfe{bottom:798.052909px;}
.y67{bottom:799.049919px;}
.y138{bottom:800.847294px;}
.y261{bottom:805.171458px;}
.y22e{bottom:808.950450px;}
.yc{bottom:810.118371px;}
.y30{bottom:810.381018px;}
.yb9{bottom:812.100376px;}
.y200{bottom:812.550450px;}
.y1da{bottom:813.810450px;}
.y1d9{bottom:815.340450px;}
.y66{bottom:816.597795px;}
.y260{bottom:819.300846px;}
.y173{bottom:821.009049px;}
.yfd{bottom:824.063199px;}
.yb{bottom:827.668902px;}
.y2f{bottom:827.931549px;}
.y137{bottom:828.387512px;}
.y65{bottom:834.148326px;}
.yb5{bottom:838.560450px;}
.yb6{bottom:838.920000px;}
.yfc{bottom:841.613618px;}
.yb8{bottom:841.980450px;}
.y25f{bottom:842.430477px;}
.yb4{bottom:842.699589px;}
.ya{bottom:845.219433px;}
.y1d1{bottom:845.219865px;}
.y2e{bottom:845.482080px;}
.y136{bottom:845.937931px;}
.y1ca{bottom:846.120450px;}
.y172{bottom:847.559490px;}
.y64{bottom:851.698857px;}
.y1cd{bottom:856.109280px;}
.y25e{bottom:856.559865px;}
.yfb{bottom:859.164038px;}
.y1d0{bottom:859.350450px;}
.y9{bottom:862.769964px;}
.y2d{bottom:863.032611px;}
.y135{bottom:863.488351px;}
.y63{bottom:869.249388px;}
.yb3{bottom:869.250030px;}
.y1dc{bottom:869.699865px;}
.y1cc{bottom:870.239865px;}
.y25d{bottom:870.683943px;}
.y171{bottom:874.109932px;}
.yfa{bottom:876.714458px;}
.y1cf{bottom:879.329865px;}
.y8{bottom:880.589532px;}
.y134{bottom:881.038771px;}
.y1db{bottom:883.830450px;}
.y1cb{bottom:884.370450px;}
.y62{bottom:886.799919px;}
.yb2{bottom:886.801169px;}
.y1ce{bottom:893.460450px;}
.y25c{bottom:893.813574px;}
.yf9{bottom:894.264878px;}
.y133{bottom:898.589191px;}
.y22d{bottom:900.120319px;}
.y170{bottom:900.660373px;}
.y1a3{bottom:903.000450px;}
.y61{bottom:904.350450px;}
.y25b{bottom:907.944159px;}
.y1f9{bottom:910.734993px;}
.yac{bottom:913.260450px;}
.y132{bottom:916.139610px;}
.y7{bottom:916.139991px;}
.ya8{bottom:917.310450px;}
.y22c{bottom:918.120363px;}
.yf8{bottom:920.815319px;}
.y25a{bottom:922.074744px;}
.yab{bottom:922.350340px;}
.yaa{bottom:922.440450px;}
.yae{bottom:924.689956px;}
.yad{bottom:924.780338px;}
.y1a2{bottom:925.590450px;}
.y1a1{bottom:927.120450px;}
.y16f{bottom:927.390363px;}
.y1a0{bottom:927.930450px;}
.y1f8{bottom:928.285413px;}
.y60{bottom:931.979901px;}
.ya7{bottom:932.429786px;}
.yb1{bottom:932.430450px;}
.y131{bottom:933.690030px;}
.y22b{bottom:936.120406px;}
.yf7{bottom:938.365739px;}
.yaf{bottom:940.260000px;}
.y19f{bottom:942.780450px;}
.ya9{bottom:943.770120px;}
.y259{bottom:945.204375px;}
.y16e{bottom:945.390406px;}
.y1f7{bottom:945.835833px;}
.y130{bottom:951.239393px;}
.y6{bottom:951.690450px;}
.y225{bottom:954.116154px;}
.y22a{bottom:954.120450px;}
.y229{bottom:954.659796px;}
.y227{bottom:954.660450px;}
.y228{bottom:955.830450px;}
.yf6{bottom:955.916159px;}
.y5f{bottom:956.550450px;}
.y19e{bottom:957.990450px;}
.y226{bottom:957.990823px;}
.y258{bottom:959.334960px;}
.y1f6{bottom:963.386252px;}
.y16d{bottom:963.390000px;}
.y169{bottom:963.390319px;}
.y16b{bottom:963.390450px;}
.y16c{bottom:964.560450px;}
.y16a{bottom:966.630657px;}
.ya6{bottom:970.770030px;}
.y257{bottom:973.465545px;}
.yf5{bottom:973.466579px;}
.y19d{bottom:974.550450px;}
.y12f{bottom:978.779610px;}
.y1f5{bottom:980.936672px;}
.y168{bottom:981.390363px;}
.y5{bottom:987.780450px;}
.ya5{bottom:988.320288px;}
.y19c{bottom:990.750450px;}
.yf4{bottom:991.016998px;}
.y12e{bottom:996.330030px;}
.y256{bottom:996.595176px;}
.y1f4{bottom:998.487092px;}
.y167{bottom:999.390406px;}
.y19b{bottom:1005.600450px;}
.ya4{bottom:1006.860484px;}
.yf3{bottom:1008.567418px;}
.y255{bottom:1010.725761px;}
.y12d{bottom:1013.880030px;}
.y5e{bottom:1016.036733px;}
.y1f3{bottom:1016.037512px;}
.y165{bottom:1017.390212px;}
.y166{bottom:1017.390450px;}
.y19a{bottom:1019.730450px;}
.y254{bottom:1024.856346px;}
.y12c{bottom:1031.430448px;}
.y199{bottom:1031.608351px;}
.y5d{bottom:1033.587264px;}
.yf2{bottom:1033.587931px;}
.y164{bottom:1035.390256px;}
.ya1{bottom:1036.650450px;}
.y9e{bottom:1036.650462px;}
.y4{bottom:1038.090459px;}
.y253{bottom:1047.985977px;}
.y198{bottom:1049.158771px;}
.y99{bottom:1049.790450px;}
.y5c{bottom:1051.137795px;}
.yf1{bottom:1051.138351px;}
.y9a{bottom:1051.139978px;}
.y9f{bottom:1051.139989px;}
.y163{bottom:1053.390300px;}
.ya2{bottom:1054.920450px;}
.y12a{bottom:1059.330783px;}
.y252{bottom:1062.116562px;}
.y129{bottom:1063.560099px;}
.y12b{bottom:1064.100450px;}
.ya3{bottom:1064.460624px;}
.y197{bottom:1066.709191px;}
.y5b{bottom:1068.688326px;}
.yf0{bottom:1068.688771px;}
.y3{bottom:1072.558956px;}
.y9d{bottom:1072.830450px;}
.y251{bottom:1076.247147px;}
.y162{bottom:1082.010450px;}
.y15d{bottom:1084.259415px;}
.y196{bottom:1084.259610px;}
.y161{bottom:1084.260000px;}
.y15f{bottom:1084.260450px;}
.y160{bottom:1085.430450px;}
.y5a{bottom:1086.238857px;}
.yef{bottom:1086.239191px;}
.y15e{bottom:1087.500657px;}
.y9b{bottom:1088.670000px;}
.ya0{bottom:1091.910313px;}
.y124{bottom:1097.040056px;}
.y250{bottom:1099.376778px;}
.y195{bottom:1101.810030px;}
.y122{bottom:1102.080450px;}
.y15c{bottom:1102.799610px;}
.y59{bottom:1103.789388px;}
.yee{bottom:1103.789610px;}
.y2{bottom:1107.030450px;}
.y24f{bottom:1113.507363px;}
.y121{bottom:1114.759645px;}
.y128{bottom:1114.770450px;}
.y98{bottom:1117.110450px;}
.y194{bottom:1119.360254px;}
.y97{bottom:1119.360450px;}
.y96{bottom:1119.360945px;}
.y15b{bottom:1120.350030px;}
.y58{bottom:1121.339919px;}
.yed{bottom:1121.340030px;}
.y24e{bottom:1127.636751px;}
.y126{bottom:1127.819888px;}
.y125{bottom:1132.950056px;}
.y127{bottom:1132.950450px;}
.y123{bottom:1132.950900px;}
.y95{bottom:1135.650450px;}
.y193{bottom:1137.895428px;}
.y93{bottom:1137.899982px;}
.y94{bottom:1137.900450px;}
.y57{bottom:1138.890450px;}
.y24d{bottom:1141.766139px;}
.y1{bottom:1189.740450px;}
.h51{height:12.150000px;}
.h54{height:13.230000px;}
.h50{height:14.310000px;}
.h2e{height:16.740000px;}
.he{height:17.280000px;}
.h2a{height:18.090000px;}
.h17{height:18.270000px;}
.h23{height:18.689799px;}
.h11{height:25.013672px;}
.h25{height:26.147997px;}
.h24{height:26.166385px;}
.hc{height:28.189761px;}
.h43{height:29.181783px;}
.h19{height:29.333333px;}
.h1c{height:29.353961px;}
.h3d{height:31.008904px;}
.h4b{height:31.050305px;}
.h46{height:32.449922px;}
.h39{height:32.807373px;}
.h38{height:32.830444px;}
.h44{height:32.856789px;}
.h55{height:33.244805px;}
.h12{height:33.268184px;}
.h1{height:34.881328px;}
.h4d{height:34.960648px;}
.h3c{height:34.976074px;}
.h57{height:35.427572px;}
.h49{height:37.458063px;}
.h3a{height:37.494141px;}
.h37{height:37.520508px;}
.h48{height:38.669048px;}
.h56{height:39.387584px;}
.h52{height:39.388184px;}
.h53{height:39.388784px;}
.h4c{height:39.921403px;}
.h3b{height:39.972656px;}
.h2f{height:40.505625px;}
.h1f{height:40.873292px;}
.h20{height:40.902761px;}
.h4a{height:41.562422px;}
.h5{height:41.743477px;}
.h4{height:41.772832px;}
.h9{height:41.781328px;}
.h8{height:41.783452px;}
.h13{height:41.789932px;}
.h1b{height:41.904701px;}
.h1e{height:41.934170px;}
.h3f{height:41.934180px;}
.h40{height:41.935849px;}
.h42{height:41.939207px;}
.h41{height:41.940886px;}
.h45{height:42.245852px;}
.hf{height:42.932854px;}
.h2c{height:43.754125px;}
.h10{height:43.933665px;}
.h7{height:44.502891px;}
.h14{height:44.505159px;}
.h18{height:44.674773px;}
.h21{height:44.675419px;}
.h30{height:44.814170px;}
.h27{height:44.825912px;}
.h22{height:44.857435px;}
.h4e{height:44.949312px;}
.hd{height:45.374463px;}
.h4f{height:46.520508px;}
.ha{height:47.033785px;}
.h29{height:47.789087px;}
.h32{height:48.796875px;}
.h3{height:49.992188px;}
.h35{height:50.027344px;}
.h28{height:50.506642px;}
.hb{height:50.772832px;}
.h47{height:50.904701px;}
.h31{height:50.934170px;}
.h2d{height:54.185625px;}
.h33{height:56.327755px;}
.h6{height:56.848359px;}
.h1a{height:57.026544px;}
.h1d{height:57.056060px;}
.h34{height:58.992188px;}
.h16{height:59.796663px;}
.h2b{height:59.922601px;}
.h26{height:61.025912px;}
.h3e{height:61.582924px;}
.h36{height:62.267344px;}
.h15{height:80.414769px;}
.h2{height:81.246797px;}
.h0{height:1263.000000px;}
.w5{width:7.470000px;}
.w3{width:8.280000px;}
.w4{width:8.820000px;}
.w2{width:9.990000px;}
.w8{width:11.160000px;}
.w6{width:30.060000px;}
.w7{width:36.630000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x94{left:5.220000px;}
.xa1{left:32.670000px;}
.x1{left:63.810000px;}
.xa{left:74.429604px;}
.xd{left:85.140000px;}
.x3{left:87.928713px;}
.x2{left:89.640000px;}
.x9{left:95.670000px;}
.xbe{left:100.890000px;}
.x16{left:107.730000px;}
.x7f{left:112.229550px;}
.xab{left:115.920567px;}
.xe{left:116.999721px;}
.x7e{left:120.150000px;}
.xbf{left:121.319199px;}
.x17{left:123.660000px;}
.x5c{left:128.520000px;}
.x18{left:131.940000px;}
.x9d{left:133.920000px;}
.x74{left:136.170000px;}
.xb4{left:138.240108px;}
.x7d{left:139.679991px;}
.x9f{left:142.289496px;}
.x9e{left:143.460090px;}
.x9c{left:146.159910px;}
.x73{left:147.419612px;}
.xa0{left:148.589307px;}
.x75{left:152.730000px;}
.x5d{left:155.520000px;}
.x80{left:156.600000px;}
.x21{left:159.570108px;}
.xad{left:162.720000px;}
.xa3{left:164.520000px;}
.x5e{left:166.860000px;}
.xa4{left:168.480000px;}
.x6{left:171.000000px;}
.xae{left:172.620000px;}
.xa5{left:176.040000px;}
.x5a{left:183.780000px;}
.xa2{left:185.220000px;}
.xf{left:190.260000px;}
.x10{left:199.710000px;}
.x59{left:205.650180px;}
.x5{left:208.980000px;}
.xac{left:211.860000px;}
.x7a{left:216.270000px;}
.x11{left:220.410000px;}
.x58{left:224.640000px;}
.x7b{left:225.720000px;}
.x12{left:228.690000px;}
.x1d{left:232.110000px;}
.x70{left:233.640000px;}
.x13{left:237.870000px;}
.xa6{left:243.720000px;}
.x1f{left:245.429553px;}
.x4{left:247.587894px;}
.x71{left:249.750000px;}
.xaf{left:256.319649px;}
.x72{left:258.030000px;}
.xb0{left:260.280000px;}
.xb2{left:263.700000px;}
.x20{left:264.780000px;}
.x7c{left:266.580000px;}
.x14{left:268.020000px;}
.x1c{left:271.080000px;}
.x1e{left:274.590000px;}
.x15{left:276.300000px;}
.x5b{left:279.720000px;}
.x1a{left:280.889952px;}
.xb1{left:282.420000px;}
.x7{left:283.679910px;}
.x1b{left:285.840000px;}
.x19{left:294.300000px;}
.x76{left:318.870000px;}
.xbc{left:322.830000px;}
.x9b{left:327.150450px;}
.x77{left:328.320000px;}
.x57{left:330.660000px;}
.x78{left:338.580000px;}
.x56{left:339.839800px;}
.xa7{left:343.530648px;}
.xbb{left:344.970000px;}
.x79{left:346.860000px;}
.xaa{left:350.280000px;}
.xa8{left:355.050000px;}
.x55{left:360.180000px;}
.x9a{left:363.240000px;}
.xbd{left:365.760000px;}
.xa9{left:369.630000px;}
.x5f{left:392.490000px;}
.x60{left:402.390000px;}
.xb3{left:422.640000px;}
.x8{left:435.869181px;}
.xc{left:448.559370px;}
.x6f{left:459.180082px;}
.x22{left:469.889415px;}
.xb{left:480.419964px;}
.xc0{left:485.632134px;}
.xb8{left:488.610000px;}
.x27{left:491.310000px;}
.x28{left:500.760000px;}
.x38{left:501.841463px;}
.x2e{left:503.820000px;}
.xc1{left:506.061333px;}
.x29{left:507.240000px;}
.x2a{left:515.520000px;}
.xb6{left:522.990108px;}
.x4b{left:531.810000px;}
.x63{left:533.340113px;}
.xb9{left:535.230000px;}
.xba{left:542.790000px;}
.x47{left:544.858821px;}
.x36{left:547.561272px;}
.x34{left:555.660537px;}
.x6e{left:561.959375px;}
.xb7{left:563.040000px;}
.x2d{left:564.480000px;}
.x67{left:569.250113px;}
.x53{left:571.230000px;}
.x6d{left:574.379265px;}
.x97{left:575.640900px;}
.x4d{left:577.170332px;}
.x54{left:579.510000px;}
.x66{left:584.099606px;}
.x3a{left:585.812245px;}
.x93{left:593.730000px;}
.x4a{left:594.810000px;}
.x65{left:597.869438px;}
.x4c{left:600.390000px;}
.x8d{left:602.820000px;}
.x3e{left:605.070000px;}
.x8c{left:607.140000px;}
.x68{left:612.540000px;}
.x23{left:618.570000px;}
.x2b{left:623.700000px;}
.x6c{left:625.049158px;}
.x24{left:628.020000px;}
.x2f{left:632.340000px;}
.x25{left:634.500000px;}
.x30{left:635.670088px;}
.x6b{left:637.469048px;}
.x62{left:640.170000px;}
.x26{left:642.780000px;}
.x61{left:644.130000px;}
.x8e{left:645.750000px;}
.x81{left:647.820000px;}
.x32{left:653.310000px;}
.x82{left:657.270000px;}
.x4f{left:665.280000px;}
.x83{left:668.250000px;}
.x46{left:670.680451px;}
.x85{left:673.740000px;}
.x84{left:676.530000px;}
.x45{left:682.200339px;}
.x3d{left:686.790200px;}
.x96{left:687.870450px;}
.x8a{left:694.080000px;}
.x98{left:701.910900px;}
.x44{left:703.710219px;}
.x43{left:705.240116px;}
.x6a{left:709.650900px;}
.x99{left:710.730450px;}
.x86{left:719.190000px;}
.x69{left:721.979100px;}
.x87{left:725.760000px;}
.x49{left:728.640000px;}
.x95{left:730.080000px;}
.x50{left:737.460000px;}
.x64{left:742.499325px;}
.x51{left:746.909850px;}
.x42{left:750.419618px;}
.x52{left:753.389850px;}
.x41{left:761.939506px;}
.x8b{left:764.999850px;}
.x3c{left:766.619865px;}
.x31{left:771.389403px;}
.x48{left:773.639850px;}
.x2c{left:775.348986px;}
.x33{left:780.659207px;}
.x89{left:781.830000px;}
.x40{left:783.449385px;}
.x3f{left:785.609129px;}
.x3b{left:790.199850px;}
.x8f{left:791.909850px;}
.x35{left:793.170585px;}
.x39{left:796.409850px;}
.x90{left:801.360000px;}
.x4e{left:804.690000px;}
.xb5{left:807.389850px;}
.x37{left:809.910776px;}
.x91{left:813.150000px;}
.x92{left:821.430000px;}
.x88{left:824.670000px;}
@media print{
.v4{vertical-align:-46.720000pt;}
.ve{vertical-align:-42.240533pt;}
.vf{vertical-align:-34.878400pt;}
.v11{vertical-align:-18.560416pt;}
.vd{vertical-align:-14.397675pt;}
.vb{vertical-align:-13.118400pt;}
.v1{vertical-align:-7.990560pt;}
.v10{vertical-align:-5.440000pt;}
.v7{vertical-align:-2.556937pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.920741pt;}
.v9{vertical-align:2.880000pt;}
.vc{vertical-align:4.800768pt;}
.v2{vertical-align:8.000000pt;}
.v8{vertical-align:12.160000pt;}
.v5{vertical-align:13.441680pt;}
.v6{vertical-align:14.400000pt;}
.va{vertical-align:16.958815pt;}
.ls28{letter-spacing:-0.609216pt;}
.ls5b{letter-spacing:-0.193127pt;}
.lsbc{letter-spacing:-0.139481pt;}
.ls92{letter-spacing:-0.128751pt;}
.ls4f{letter-spacing:-0.128256pt;}
.lsb4{letter-spacing:-0.123387pt;}
.lsba{letter-spacing:-0.119168pt;}
.ls9d{letter-spacing:-0.114912pt;}
.ls9b{letter-spacing:-0.110656pt;}
.ls70{letter-spacing:-0.107293pt;}
.ls72{letter-spacing:-0.096564pt;}
.ls9a{letter-spacing:-0.093632pt;}
.ls5e{letter-spacing:-0.091199pt;}
.ls60{letter-spacing:-0.085834pt;}
.ls4d{letter-spacing:-0.085504pt;}
.ls9c{letter-spacing:-0.080864pt;}
.ls53{letter-spacing:-0.080470pt;}
.ls61{letter-spacing:-0.075105pt;}
.ls25{letter-spacing:-0.074816pt;}
.lsa4{letter-spacing:-0.072352pt;}
.ls63{letter-spacing:-0.069740pt;}
.ls21{letter-spacing:-0.069472pt;}
.ls55{letter-spacing:-0.064376pt;}
.ls1e{letter-spacing:-0.064128pt;}
.lsbb{letter-spacing:-0.063840pt;}
.ls5a{letter-spacing:-0.059011pt;}
.ls23{letter-spacing:-0.058784pt;}
.ls5d{letter-spacing:-0.053646pt;}
.ls1f{letter-spacing:-0.053440pt;}
.lsb5{letter-spacing:-0.052192pt;}
.ls58{letter-spacing:-0.048282pt;}
.ls1c{letter-spacing:-0.048096pt;}
.ls66{letter-spacing:-0.046816pt;}
.ls5f{letter-spacing:-0.042917pt;}
.ls26{letter-spacing:-0.042752pt;}
.lsb9{letter-spacing:-0.042560pt;}
.lsa1{letter-spacing:-0.038304pt;}
.ls5c{letter-spacing:-0.037552pt;}
.ls22{letter-spacing:-0.037408pt;}
.ls99{letter-spacing:-0.034048pt;}
.ls59{letter-spacing:-0.032188pt;}
.ls24{letter-spacing:-0.032064pt;}
.lsa2{letter-spacing:-0.029792pt;}
.ls64{letter-spacing:-0.026823pt;}
.lsa3{letter-spacing:-0.025536pt;}
.ls57{letter-spacing:-0.021459pt;}
.ls1b{letter-spacing:-0.021376pt;}
.lsb8{letter-spacing:-0.021280pt;}
.ls19{letter-spacing:-0.019200pt;}
.lsb6{letter-spacing:-0.017024pt;}
.ls62{letter-spacing:-0.016094pt;}
.ls29{letter-spacing:-0.016032pt;}
.ls97{letter-spacing:-0.012768pt;}
.ls71{letter-spacing:-0.010729pt;}
.ls1d{letter-spacing:-0.010688pt;}
.lsb7{letter-spacing:-0.008512pt;}
.ls6f{letter-spacing:-0.005365pt;}
.ls27{letter-spacing:-0.005344pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.004256pt;}
.ls2c{letter-spacing:0.005344pt;}
.ls4a{letter-spacing:0.008320pt;}
.ls0{letter-spacing:0.008512pt;}
.ls7{letter-spacing:0.010688pt;}
.ls42{letter-spacing:0.010729pt;}
.ls82{letter-spacing:0.012768pt;}
.ls36{letter-spacing:0.013824pt;}
.ls8d{letter-spacing:0.014400pt;}
.ls38{letter-spacing:0.015360pt;}
.lsb{letter-spacing:0.016032pt;}
.ls1{letter-spacing:0.017024pt;}
.ls93{letter-spacing:0.021280pt;}
.ls6{letter-spacing:0.021376pt;}
.ls74{letter-spacing:0.021459pt;}
.ls47{letter-spacing:0.022368pt;}
.ls85{letter-spacing:0.025536pt;}
.lsa{letter-spacing:0.026720pt;}
.ls3e{letter-spacing:0.026823pt;}
.ls7d{letter-spacing:0.029792pt;}
.ls51{letter-spacing:0.031104pt;}
.ls18{letter-spacing:0.031968pt;}
.ls13{letter-spacing:0.032064pt;}
.ls56{letter-spacing:0.032188pt;}
.ls67{letter-spacing:0.034048pt;}
.ls2b{letter-spacing:0.037280pt;}
.lsf{letter-spacing:0.037408pt;}
.ls54{letter-spacing:0.037552pt;}
.ls7b{letter-spacing:0.038304pt;}
.ls49{letter-spacing:0.038400pt;}
.ls98{letter-spacing:0.042560pt;}
.ls16{letter-spacing:0.042624pt;}
.ls2e{letter-spacing:0.042752pt;}
.ls35{letter-spacing:0.044320pt;}
.lsc{letter-spacing:0.044736pt;}
.ls37{letter-spacing:0.046720pt;}
.ls88{letter-spacing:0.046816pt;}
.ls95{letter-spacing:0.048000pt;}
.ls2d{letter-spacing:0.048096pt;}
.ls3f{letter-spacing:0.048282pt;}
.ls7e{letter-spacing:0.051072pt;}
.ls39{letter-spacing:0.053344pt;}
.ls31{letter-spacing:0.053440pt;}
.ls45{letter-spacing:0.053646pt;}
.ls40{letter-spacing:0.053965pt;}
.ls86{letter-spacing:0.055328pt;}
.ls43{letter-spacing:0.056266pt;}
.ls6d{letter-spacing:0.056800pt;}
.ls6e{letter-spacing:0.057634pt;}
.ls4{letter-spacing:0.058784pt;}
.ls65{letter-spacing:0.059011pt;}
.ls41{letter-spacing:0.059142pt;}
.lsab{letter-spacing:0.059584pt;}
.ls73{letter-spacing:0.059648pt;}
.ls90{letter-spacing:0.063840pt;}
.ls17{letter-spacing:0.063936pt;}
.ls69{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.064128pt;}
.ls96{letter-spacing:0.067200pt;}
.ls34{letter-spacing:0.068096pt;}
.ls14{letter-spacing:0.069472pt;}
.ls87{letter-spacing:0.072352pt;}
.ls4c{letter-spacing:0.074560pt;}
.ls9{letter-spacing:0.074816pt;}
.ls78{letter-spacing:0.076608pt;}
.ls8{letter-spacing:0.080160pt;}
.ls79{letter-spacing:0.080864pt;}
.ls8e{letter-spacing:0.081600pt;}
.lsa5{letter-spacing:0.082016pt;}
.ls33{letter-spacing:0.085120pt;}
.ls2{letter-spacing:0.085504pt;}
.lsa9{letter-spacing:0.089376pt;}
.ls3{letter-spacing:0.090848pt;}
.ls8b{letter-spacing:0.091200pt;}
.ls7c{letter-spacing:0.093632pt;}
.ls12{letter-spacing:0.096192pt;}
.ls9e{letter-spacing:0.097888pt;}
.ls3b{letter-spacing:0.101536pt;}
.ls7a{letter-spacing:0.102144pt;}
.ls15{letter-spacing:0.106880pt;}
.lsac{letter-spacing:0.110656pt;}
.lse{letter-spacing:0.111840pt;}
.ls10{letter-spacing:0.112224pt;}
.lsad{letter-spacing:0.114912pt;}
.ls8f{letter-spacing:0.119168pt;}
.ls2f{letter-spacing:0.122912pt;}
.lsb1{letter-spacing:0.123424pt;}
.ls83{letter-spacing:0.127680pt;}
.ls7f{letter-spacing:0.128000pt;}
.lsaf{letter-spacing:0.131936pt;}
.ls30{letter-spacing:0.133600pt;}
.ls94{letter-spacing:0.134400pt;}
.ls84{letter-spacing:0.136192pt;}
.lsb0{letter-spacing:0.144704pt;}
.ls20{letter-spacing:0.156576pt;}
.lsaa{letter-spacing:0.157472pt;}
.ls91{letter-spacing:0.160000pt;}
.ls3a{letter-spacing:0.160320pt;}
.ls50{letter-spacing:0.161728pt;}
.lsb2{letter-spacing:0.178752pt;}
.lsa7{letter-spacing:0.195776pt;}
.ls46{letter-spacing:0.209221pt;}
.ls3c{letter-spacing:0.315296pt;}
.ls3d{letter-spacing:2.128047pt;}
.lsae{letter-spacing:4.719904pt;}
.ls76{letter-spacing:5.788447pt;}
.ls52{letter-spacing:6.797568pt;}
.lsa8{letter-spacing:10.886848pt;}
.lsb3{letter-spacing:10.913408pt;}
.ls4e{letter-spacing:17.042016pt;}
.ls48{letter-spacing:20.608000pt;}
.ls68{letter-spacing:36.343680pt;}
.ls11{letter-spacing:36.344544pt;}
.lsd{letter-spacing:36.549312pt;}
.ls9f{letter-spacing:61.358752pt;}
.lsa0{letter-spacing:63.278208pt;}
.ls75{letter-spacing:95.374400pt;}
.ls77{letter-spacing:97.297600pt;}
.ls89{letter-spacing:102.670795pt;}
.lsa6{letter-spacing:102.675902pt;}
.ls8a{letter-spacing:115.680000pt;}
.ls32{letter-spacing:175.218078pt;}
.ls80{letter-spacing:305.840416pt;}
.ls6b{letter-spacing:366.713423pt;}
.ls81{letter-spacing:367.918432pt;}
.ls6c{letter-spacing:416.606018pt;}
.ls8c{letter-spacing:417.596800pt;}
.ls4b{letter-spacing:678.400000pt;}
.ls44{letter-spacing:826.266109pt;}
.ls6a{letter-spacing:880.987073pt;}
.ws6d{word-spacing:-57.386133pt;}
.ws65{word-spacing:-53.646400pt;}
.ws6a{word-spacing:-33.296537pt;}
.ws6b{word-spacing:-31.504987pt;}
.ws5c{word-spacing:-29.913145pt;}
.ws60{word-spacing:-29.451874pt;}
.wse6{word-spacing:-28.020960pt;}
.ws6f{word-spacing:-26.703360pt;}
.wse3{word-spacing:-26.352000pt;}
.ws15d{word-spacing:-23.365440pt;}
.ws5e{word-spacing:-20.616341pt;}
.ws1{word-spacing:-18.796576pt;}
.ws71{word-spacing:-16.000000pt;}
.ws66{word-spacing:-14.346533pt;}
.ws0{word-spacing:-13.424128pt;}
.ws63{word-spacing:-13.411600pt;}
.wse7{word-spacing:-13.379412pt;}
.ws59{word-spacing:-13.360000pt;}
.wse1{word-spacing:-12.000000pt;}
.ws1c9{word-spacing:-10.835776pt;}
.ws1cc{word-spacing:-10.818752pt;}
.ws1ce{word-spacing:-10.767680pt;}
.ws1cd{word-spacing:-10.733632pt;}
.ws1ca{word-spacing:-10.729376pt;}
.ws160{word-spacing:-10.640000pt;}
.ws1cb{word-spacing:-10.520832pt;}
.wse2{word-spacing:-10.500000pt;}
.ws15f{word-spacing:-9.930667pt;}
.ws61{word-spacing:-9.388133pt;}
.ws15a{word-spacing:-9.333067pt;}
.ws5b{word-spacing:-9.022133pt;}
.ws5d{word-spacing:-8.671104pt;}
.ws5a{word-spacing:-8.640000pt;}
.ws68{word-spacing:-8.368667pt;}
.ws15c{word-spacing:-8.000000pt;}
.wsac{word-spacing:-7.387109pt;}
.ws15e{word-spacing:-6.640000pt;}
.ws67{word-spacing:-5.977467pt;}
.ws93{word-spacing:-0.242592pt;}
.ws1e0{word-spacing:-0.238336pt;}
.ws1fe{word-spacing:-0.225568pt;}
.ws18a{word-spacing:-0.217056pt;}
.ws189{word-spacing:-0.208544pt;}
.ws208{word-spacing:-0.204288pt;}
.ws19f{word-spacing:-0.200032pt;}
.ws1f3{word-spacing:-0.195776pt;}
.ws1f2{word-spacing:-0.191520pt;}
.ws16f{word-spacing:-0.183008pt;}
.ws1b0{word-spacing:-0.178752pt;}
.ws171{word-spacing:-0.174496pt;}
.ws1e5{word-spacing:-0.170240pt;}
.ws211{word-spacing:-0.165984pt;}
.ws1b8{word-spacing:-0.164032pt;}
.ws186{word-spacing:-0.161728pt;}
.ws95{word-spacing:-0.148960pt;}
.ws187{word-spacing:-0.131936pt;}
.ws4{word-spacing:-0.127872pt;}
.ws19e{word-spacing:-0.123424pt;}
.ws7a{word-spacing:-0.119296pt;}
.ws18c{word-spacing:-0.119168pt;}
.ws5{word-spacing:-0.117216pt;}
.ws185{word-spacing:-0.110656pt;}
.ws18b{word-spacing:-0.106400pt;}
.wsc2{word-spacing:-0.104384pt;}
.ws193{word-spacing:-0.102144pt;}
.ws188{word-spacing:-0.093632pt;}
.ws1fc{word-spacing:-0.085120pt;}
.ws191{word-spacing:-0.080864pt;}
.ws104{word-spacing:-0.064000pt;}
.ws92{word-spacing:-0.042752pt;}
.wsd3{word-spacing:-0.038400pt;}
.ws39{word-spacing:-0.032064pt;}
.ws2f{word-spacing:-0.026720pt;}
.wsb2{word-spacing:-0.021459pt;}
.ws1fd{word-spacing:-0.017024pt;}
.wsae{word-spacing:-0.010729pt;}
.ws8{word-spacing:-0.010688pt;}
.ws1b7{word-spacing:-0.008512pt;}
.ws7{word-spacing:-0.005344pt;}
.ws3{word-spacing:0.000000pt;}
.ws166{word-spacing:0.005365pt;}
.ws2{word-spacing:0.008512pt;}
.wsab{word-spacing:0.010688pt;}
.ws72{word-spacing:0.012768pt;}
.ws6{word-spacing:0.019200pt;}
.ws9{word-spacing:0.021376pt;}
.ws91{word-spacing:0.026720pt;}
.ws1a0{word-spacing:0.029792pt;}
.ws11a{word-spacing:0.032188pt;}
.ws1a1{word-spacing:0.034048pt;}
.ws151{word-spacing:0.042917pt;}
.ws24{word-spacing:0.048096pt;}
.wsb1{word-spacing:0.048282pt;}
.ws17{word-spacing:0.053440pt;}
.wsf8{word-spacing:0.053646pt;}
.ws83{word-spacing:0.058784pt;}
.ws101{word-spacing:0.059011pt;}
.wsc1{word-spacing:0.064376pt;}
.ws19c{word-spacing:0.067200pt;}
.ws103{word-spacing:0.069740pt;}
.ws143{word-spacing:0.075105pt;}
.ws123{word-spacing:0.080470pt;}
.wsb5{word-spacing:0.085834pt;}
.ws9f{word-spacing:0.090848pt;}
.wsd2{word-spacing:0.091199pt;}
.ws19d{word-spacing:0.091200pt;}
.ws150{word-spacing:0.096564pt;}
.wsad{word-spacing:0.107293pt;}
.ws25{word-spacing:0.112224pt;}
.ws1c6{word-spacing:0.112657pt;}
.ws40{word-spacing:0.122912pt;}
.wsf{word-spacing:0.128256pt;}
.ws1a{word-spacing:0.133600pt;}
.wsb6{word-spacing:0.219950pt;}
.ws127{word-spacing:0.380889pt;}
.ws13a{word-spacing:0.386254pt;}
.wsfe{word-spacing:0.402348pt;}
.ws20{word-spacing:0.432864pt;}
.ws126{word-spacing:0.439900pt;}
.ws20b{word-spacing:0.600096pt;}
.ws46{word-spacing:0.630592pt;}
.wse{word-spacing:0.641280pt;}
.ws1ab{word-spacing:0.686674pt;}
.wsfd{word-spacing:0.692039pt;}
.ws1f{word-spacing:0.705408pt;}
.ws110{word-spacing:0.708132pt;}
.wsd{word-spacing:0.710752pt;}
.ws105{word-spacing:0.724226pt;}
.ws108{word-spacing:0.734956pt;}
.ws1aa{word-spacing:0.767144pt;}
.ws30{word-spacing:0.780224pt;}
.ws207{word-spacing:0.808640pt;}
.ws21b{word-spacing:0.810061pt;}
.ws20a{word-spacing:0.825664pt;}
.ws12{word-spacing:0.956576pt;}
.ws19{word-spacing:0.961920pt;}
.wsee{word-spacing:1.003188pt;}
.ws10f{word-spacing:1.072928pt;}
.ws53{word-spacing:1.084832pt;}
.ws21a{word-spacing:1.123584pt;}
.ws206{word-spacing:1.144864pt;}
.ws219{word-spacing:1.157632pt;}
.ws20f{word-spacing:1.191680pt;}
.ws2e{word-spacing:1.287904pt;}
.ws27{word-spacing:1.298592pt;}
.ws1d5{word-spacing:1.319701pt;}
.ws26{word-spacing:1.325312pt;}
.wsed{word-spacing:1.351889pt;}
.ws2d{word-spacing:1.357376pt;}
.ws14d{word-spacing:1.384077pt;}
.ws10{word-spacing:1.603200pt;}
.ws147{word-spacing:1.657674pt;}
.ws181{word-spacing:1.663038pt;}
.ws1d4{word-spacing:1.668403pt;}
.ws165{word-spacing:1.673768pt;}
.ws148{word-spacing:1.679132pt;}
.ws13e{word-spacing:1.684497pt;}
.ws164{word-spacing:1.711320pt;}
.ws33{word-spacing:1.731456pt;}
.ws22{word-spacing:1.752832pt;}
.ws1f0{word-spacing:1.766240pt;}
.wsc{word-spacing:1.982624pt;}
.ws12f{word-spacing:2.001011pt;}
.ws17e{word-spacing:2.006375pt;}
.ws10e{word-spacing:2.011740pt;}
.ws22c{word-spacing:2.017105pt;}
.ws7f{word-spacing:2.020032pt;}
.ws12c{word-spacing:2.022469pt;}
.ws12b{word-spacing:2.033199pt;}
.ws1ef{word-spacing:2.119488pt;}
.ws1e6{word-spacing:2.170560pt;}
.ws79{word-spacing:2.233792pt;}
.wsb0{word-spacing:2.237055pt;}
.ws96{word-spacing:2.271200pt;}
.ws17d{word-spacing:2.285337pt;}
.ws180{word-spacing:2.296066pt;}
.ws74{word-spacing:2.297920pt;}
.ws1a3{word-spacing:2.301431pt;}
.wsc6{word-spacing:2.312160pt;}
.wsda{word-spacing:2.317524pt;}
.ws1a4{word-spacing:2.333618pt;}
.ws1a9{word-spacing:2.338983pt;}
.ws163{word-spacing:2.344348pt;}
.ws1f7{word-spacing:2.349312pt;}
.ws21{word-spacing:2.527712pt;}
.wsa7{word-spacing:2.559776pt;}
.ws14{word-spacing:2.613216pt;}
.wsb4{word-spacing:2.617944pt;}
.wsa8{word-spacing:2.645280pt;}
.ws17f{word-spacing:2.650132pt;}
.ws15{word-spacing:2.650624pt;}
.wsaf{word-spacing:2.655497pt;}
.ws4d{word-spacing:2.693376pt;}
.ws1f6{word-spacing:2.702560pt;}
.ws1f1{word-spacing:2.719584pt;}
.ws1e4{word-spacing:2.817472pt;}
.wsb3{word-spacing:2.896906pt;}
.ws98{word-spacing:2.901792pt;}
.ws157{word-spacing:2.939823pt;}
.wsdb{word-spacing:2.945187pt;}
.ws99{word-spacing:2.960576pt;}
.ws158{word-spacing:2.961281pt;}
.ws142{word-spacing:2.966646pt;}
.ws11f{word-spacing:2.988104pt;}
.wsbd{word-spacing:2.993469pt;}
.ws1e3{word-spacing:3.051552pt;}
.ws73{word-spacing:3.195712pt;}
.ws116{word-spacing:3.256336pt;}
.wsbc{word-spacing:3.272430pt;}
.wscb{word-spacing:3.277795pt;}
.ws117{word-spacing:3.283160pt;}
.ws12d{word-spacing:3.293889pt;}
.ws9b{word-spacing:3.302592pt;}
.ws12e{word-spacing:3.304618pt;}
.wsf9{word-spacing:3.309983pt;}
.ws1da{word-spacing:3.352900pt;}
.ws1d9{word-spacing:3.567486pt;}
.ws10b{word-spacing:3.572850pt;}
.ws100{word-spacing:3.578215pt;}
.wse0{word-spacing:3.594309pt;}
.ws11e{word-spacing:3.605038pt;}
.ws19b{word-spacing:3.610403pt;}
.ws183{word-spacing:3.615767pt;}
.ws1be{word-spacing:3.621132pt;}
.ws56{word-spacing:3.660640pt;}
.ws1e9{word-spacing:3.685696pt;}
.ws132{word-spacing:3.894729pt;}
.ws176{word-spacing:3.900093pt;}
.ws1d8{word-spacing:3.916187pt;}
.ws19a{word-spacing:3.926916pt;}
.ws177{word-spacing:3.948375pt;}
.ws1c2{word-spacing:3.953740pt;}
.ws1b6{word-spacing:4.107040pt;}
.ws3f{word-spacing:4.152288pt;}
.ws1a6{word-spacing:4.216607pt;}
.ws14b{word-spacing:4.221972pt;}
.ws107{word-spacing:4.238066pt;}
.ws196{word-spacing:4.254160pt;}
.ws172{word-spacing:4.270253pt;}
.ws1b5{word-spacing:4.379424pt;}
.ws58{word-spacing:4.467584pt;}
.ws86{word-spacing:4.478272pt;}
.ws32{word-spacing:4.494304pt;}
.ws9a{word-spacing:4.499648pt;}
.ws106{word-spacing:4.522392pt;}
.ws11{word-spacing:4.537056pt;}
.wsf6{word-spacing:4.543850pt;}
.ws115{word-spacing:4.559944pt;}
.ws45{word-spacing:4.563776pt;}
.ws1ac{word-spacing:4.565309pt;}
.ws8f{word-spacing:4.574464pt;}
.ws8e{word-spacing:4.595840pt;}
.ws90{word-spacing:4.627904pt;}
.ws1f5{word-spacing:4.664576pt;}
.ws8d{word-spacing:4.745472pt;}
.ws85{word-spacing:4.804256pt;}
.ws1c5{word-spacing:4.860364pt;}
.wsbf{word-spacing:4.865728pt;}
.wsc0{word-spacing:4.871093pt;}
.ws13f{word-spacing:4.881822pt;}
.wsca{word-spacing:4.887187pt;}
.wsf5{word-spacing:4.892552pt;}
.ws230{word-spacing:4.903281pt;}
.ws22f{word-spacing:4.914010pt;}
.ws1fa{word-spacing:4.979520pt;}
.ws75{word-spacing:5.103520pt;}
.ws87{word-spacing:5.124896pt;}
.ws7e{word-spacing:5.151616pt;}
.ws3d{word-spacing:5.167648pt;}
.ws1c4{word-spacing:5.176878pt;}
.ws3c{word-spacing:5.199712pt;}
.wsea{word-spacing:5.209065pt;}
.ws1bc{word-spacing:5.214430pt;}
.wsbe{word-spacing:5.225159pt;}
.ws145{word-spacing:5.246618pt;}
.ws1f9{word-spacing:5.320000pt;}
.wsa6{word-spacing:5.440192pt;}
.ws1d7{word-spacing:5.477297pt;}
.ws1d6{word-spacing:5.493391pt;}
.ws1dc{word-spacing:5.509485pt;}
.ws10d{word-spacing:5.514850pt;}
.ws7d{word-spacing:5.515008pt;}
.ws17b{word-spacing:5.520215pt;}
.ws178{word-spacing:5.530944pt;}
.ws112{word-spacing:5.541673pt;}
.ws209{word-spacing:5.681760pt;}
.wsa2{word-spacing:5.760832pt;}
.ws29{word-spacing:5.782208pt;}
.wsa1{word-spacing:5.792896pt;}
.ws169{word-spacing:5.809905pt;}
.ws1db{word-spacing:5.820634pt;}
.ws10c{word-spacing:5.836728pt;}
.ws1d0{word-spacing:5.842093pt;}
.ws111{word-spacing:5.847458pt;}
.ws12a{word-spacing:5.852822pt;}
.ws36{word-spacing:6.081472pt;}
.ws1cf{word-spacing:6.126419pt;}
.ws168{word-spacing:6.137148pt;}
.ws167{word-spacing:6.169336pt;}
.ws129{word-spacing:6.174701pt;}
.ws50{word-spacing:6.204384pt;}
.ws1af{word-spacing:6.256320pt;}
.ws1ae{word-spacing:6.286112pt;}
.ws7b{word-spacing:6.412800pt;}
.ws78{word-spacing:6.418144pt;}
.wsa5{word-spacing:6.428832pt;}
.ws197{word-spacing:6.464391pt;}
.ws195{word-spacing:6.480485pt;}
.ws141{word-spacing:6.485850pt;}
.wsdf{word-spacing:6.491214pt;}
.ws122{word-spacing:6.496579pt;}
.ws128{word-spacing:6.512673pt;}
.wsa4{word-spacing:6.722752pt;}
.ws1dd{word-spacing:6.780905pt;}
.ws9d{word-spacing:6.781536pt;}
.wsef{word-spacing:6.786270pt;}
.wsf0{word-spacing:6.791634pt;}
.ws130{word-spacing:6.796999pt;}
.wsc5{word-spacing:6.802364pt;}
.ws140{word-spacing:6.807728pt;}
.ws139{word-spacing:6.813093pt;}
.ws204{word-spacing:6.886208pt;}
.ws1ff{word-spacing:6.996864pt;}
.ws1f8{word-spacing:7.005376pt;}
.ws76{word-spacing:7.032704pt;}
.ws149{word-spacing:7.102783pt;}
.ws1a7{word-spacing:7.113513pt;}
.ws119{word-spacing:7.134971pt;}
.ws21d{word-spacing:7.140336pt;}
.ws133{word-spacing:7.145700pt;}
.ws134{word-spacing:7.161794pt;}
.ws41{word-spacing:7.166304pt;}
.ws210{word-spacing:7.222432pt;}
.ws215{word-spacing:7.294784pt;}
.ws1ec{word-spacing:7.307552pt;}
.wsaa{word-spacing:7.353344pt;}
.ws31{word-spacing:7.364032pt;}
.ws1b{word-spacing:7.401440pt;}
.ws1a2{word-spacing:7.408568pt;}
.wsbb{word-spacing:7.419297pt;}
.wsa0{word-spacing:7.422816pt;}
.wsd9{word-spacing:7.424662pt;}
.wsfa{word-spacing:7.440756pt;}
.ws159{word-spacing:7.446120pt;}
.wsba{word-spacing:7.478308pt;}
.wsa9{word-spacing:7.508320pt;}
.ws1ea{word-spacing:7.520352pt;}
.ws7c{word-spacing:7.524352pt;}
.ws1eb{word-spacing:7.601216pt;}
.ws3b{word-spacing:7.695360pt;}
.ws144{word-spacing:7.719717pt;}
.wsec{word-spacing:7.735811pt;}
.ws174{word-spacing:7.741176pt;}
.ws175{word-spacing:7.757269pt;}
.ws16c{word-spacing:7.767999pt;}
.ws1e8{word-spacing:7.890624pt;}
.wseb{word-spacing:8.068419pt;}
.ws1bf{word-spacing:8.073783pt;}
.ws1d3{word-spacing:8.089877pt;}
.ws16b{word-spacing:8.095242pt;}
.ws1c0{word-spacing:8.122065pt;}
.ws94{word-spacing:8.154496pt;}
.ws212{word-spacing:8.184288pt;}
.ws1e7{word-spacing:8.235360pt;}
.ws81{word-spacing:8.315264pt;}
.wsff{word-spacing:8.374203pt;}
.ws57{word-spacing:8.422144pt;}
.ws20e{word-spacing:8.482208pt;}
.ws20d{word-spacing:8.529024pt;}
.ws80{word-spacing:8.625216pt;}
.ws88{word-spacing:8.641248pt;}
.ws225{word-spacing:8.690717pt;}
.ws223{word-spacing:8.701446pt;}
.ws109{word-spacing:8.717540pt;}
.wscf{word-spacing:8.728269pt;}
.ws1a8{word-spacing:8.738999pt;}
.ws1e{word-spacing:8.780192pt;}
.ws201{word-spacing:8.788640pt;}
.ws1fb{word-spacing:8.869504pt;}
.wsce{word-spacing:9.017960pt;}
.ws113{word-spacing:9.023324pt;}
.ws1c8{word-spacing:9.039418pt;}
.ws17c{word-spacing:9.071606pt;}
.ws48{word-spacing:9.111520pt;}
.ws200{word-spacing:9.171680pt;}
.wsb{word-spacing:9.335968pt;}
.ws37{word-spacing:9.608512pt;}
.wsf1{word-spacing:9.693904pt;}
.ws52{word-spacing:9.694016pt;}
.ws18{word-spacing:9.742112pt;}
.ws28{word-spacing:9.918464pt;}
.ws2b{word-spacing:9.923808pt;}
.wsf4{word-spacing:9.999689pt;}
.wsdc{word-spacing:10.010418pt;}
.ws16a{word-spacing:10.015783pt;}
.ws97{word-spacing:10.046720pt;}
.ws9c{word-spacing:10.249792pt;}
.ws2a{word-spacing:10.292544pt;}
.wsd1{word-spacing:10.316203pt;}
.wsc4{word-spacing:10.343026pt;}
.ws1c{word-spacing:10.388736pt;}
.ws1b4{word-spacing:10.414432pt;}
.ws34{word-spacing:10.559744pt;}
.ws135{word-spacing:10.579070pt;}
.ws3e{word-spacing:10.581120pt;}
.ws138{word-spacing:10.627352pt;}
.ws14a{word-spacing:10.638081pt;}
.ws136{word-spacing:10.654175pt;}
.ws205{word-spacing:10.729376pt;}
.ws137{word-spacing:10.922407pt;}
.ws4c{word-spacing:10.928480pt;}
.wsf3{word-spacing:10.949230pt;}
.wsf2{word-spacing:10.954595pt;}
.wsd0{word-spacing:10.959960pt;}
.ws22b{word-spacing:10.970689pt;}
.ws118{word-spacing:10.976053pt;}
.ws22a{word-spacing:10.992147pt;}
.ws1ee{word-spacing:11.057088pt;}
.ws17a{word-spacing:11.260379pt;}
.wsc7{word-spacing:11.271109pt;}
.ws14c{word-spacing:11.276473pt;}
.wsb9{word-spacing:11.281838pt;}
.ws51{word-spacing:11.350656pt;}
.ws1ed{word-spacing:11.393312pt;}
.ws218{word-spacing:11.427360pt;}
.ws23{word-spacing:11.505632pt;}
.ws4b{word-spacing:11.569760pt;}
.wsb8{word-spacing:11.598352pt;}
.ws179{word-spacing:11.603716pt;}
.ws14f{word-spacing:11.619810pt;}
.ws152{word-spacing:11.630540pt;}
.ws1e1{word-spacing:11.793376pt;}
.ws9e{word-spacing:11.842304pt;}
.ws47{word-spacing:11.847648pt;}
.wsc9{word-spacing:11.882678pt;}
.ws1a5{word-spacing:11.920230pt;}
.ws14e{word-spacing:11.925595pt;}
.ws1c7{word-spacing:12.209921pt;}
.ws146{word-spacing:12.236744pt;}
.wsc8{word-spacing:12.242108pt;}
.wsa{word-spacing:12.579776pt;}
.ws1ad{word-spacing:12.596175pt;}
.ws77{word-spacing:12.793536pt;}
.wse8{word-spacing:12.832219pt;}
.ws16{word-spacing:12.863008pt;}
.wse9{word-spacing:12.901959pt;}
.ws192{word-spacing:12.993568pt;}
.ws1ba{word-spacing:13.175556pt;}
.ws1bb{word-spacing:13.191650pt;}
.ws16d{word-spacing:13.213108pt;}
.wsfc{word-spacing:13.229202pt;}
.wsd6{word-spacing:13.234567pt;}
.ws217{word-spacing:13.282976pt;}
.ws43{word-spacing:13.429472pt;}
.ws38{word-spacing:13.450848pt;}
.ws1d1{word-spacing:13.492070pt;}
.ws42{word-spacing:13.498944pt;}
.wsfb{word-spacing:13.508164pt;}
.wsd5{word-spacing:13.540351pt;}
.ws214{word-spacing:13.606432pt;}
.ws216{word-spacing:13.627712pt;}
.ws190{word-spacing:13.631968pt;}
.ws35{word-spacing:13.750112pt;}
.wsa3{word-spacing:13.760800pt;}
.ws3a{word-spacing:13.771488pt;}
.ws1d2{word-spacing:13.830042pt;}
.ws229{word-spacing:13.840771pt;}
.ws199{word-spacing:13.846136pt;}
.ws198{word-spacing:13.883688pt;}
.ws20c{word-spacing:13.921376pt;}
.ws18f{word-spacing:13.925632pt;}
.ws213{word-spacing:13.951168pt;}
.ws173{word-spacing:14.157285pt;}
.ws228{word-spacing:14.216296pt;}
.ws8b{word-spacing:14.391392pt;}
.ws224{word-spacing:14.479163pt;}
.ws10a{word-spacing:14.489893pt;}
.ws8c{word-spacing:14.514304pt;}
.ws120{word-spacing:14.801042pt;}
.wsde{word-spacing:14.806406pt;}
.ws121{word-spacing:14.854688pt;}
.ws44{word-spacing:14.856320pt;}
.ws13c{word-spacing:15.058544pt;}
.wsdd{word-spacing:15.085368pt;}
.ws13b{word-spacing:15.090732pt;}
.ws13d{word-spacing:15.117556pt;}
.ws222{word-spacing:15.139014pt;}
.ws4f{word-spacing:15.353312pt;}
.ws89{word-spacing:15.460192pt;}
.ws21f{word-spacing:15.471622pt;}
.ws220{word-spacing:15.476986pt;}
.ws8a{word-spacing:15.492256pt;}
.ws221{word-spacing:15.525268pt;}
.wsb7{word-spacing:15.745218pt;}
.wsc3{word-spacing:15.750583pt;}
.ws11d{word-spacing:15.788136pt;}
.ws1d{word-spacing:15.796864pt;}
.ws1c1{word-spacing:16.110014pt;}
.ws2c{word-spacing:16.336608pt;}
.ws231{word-spacing:16.394340pt;}
.ws1e2{word-spacing:16.500512pt;}
.ws84{word-spacing:16.678624pt;}
.ws154{word-spacing:16.694760pt;}
.wscc{word-spacing:17.027367pt;}
.ws153{word-spacing:17.043461pt;}
.ws203{word-spacing:17.087840pt;}
.ws82{word-spacing:17.116832pt;}
.ws202{word-spacing:17.219776pt;}
.ws13{word-spacing:17.271808pt;}
.ws1f4{word-spacing:17.543232pt;}
.ws49{word-spacing:17.907744pt;}
.ws4e{word-spacing:17.929120pt;}
.ws4a{word-spacing:17.982560pt;}
.ws131{word-spacing:18.609936pt;}
.ws55{word-spacing:18.639872pt;}
.ws182{word-spacing:18.647489pt;}
.ws102{word-spacing:18.663583pt;}
.ws54{word-spacing:18.896384pt;}
.ws1c3{word-spacing:18.921085pt;}
.ws1bd{word-spacing:18.958638pt;}
.ws156{word-spacing:18.990826pt;}
.ws233{word-spacing:19.291245pt;}
.ws155{word-spacing:19.296610pt;}
.ws232{word-spacing:19.629218pt;}
.ws16e{word-spacing:20.003200pt;}
.ws170{word-spacing:20.041504pt;}
.ws21c{word-spacing:20.541207pt;}
.ws162{word-spacing:20.551936pt;}
.wsd8{word-spacing:20.557300pt;}
.ws1b9{word-spacing:20.578759pt;}
.ws11c{word-spacing:20.846991pt;}
.wsd7{word-spacing:20.857720pt;}
.ws161{word-spacing:20.906002pt;}
.ws11b{word-spacing:20.911367pt;}
.ws21e{word-spacing:21.163505pt;}
.ws184{word-spacing:21.549759pt;}
.wsf7{word-spacing:21.817991pt;}
.ws22e{word-spacing:23.164516pt;}
.ws22d{word-spacing:23.416654pt;}
.ws194{word-spacing:23.475665pt;}
.ws18e{word-spacing:25.778592pt;}
.ws114{word-spacing:25.980952pt;}
.ws18d{word-spacing:26.106304pt;}
.wscd{word-spacing:28.877857pt;}
.ws227{word-spacing:29.854222pt;}
.ws226{word-spacing:29.870316pt;}
.ws1de{word-spacing:35.090720pt;}
.ws1df{word-spacing:41.853504pt;}
.ws234{word-spacing:59.595786pt;}
.wsd4{word-spacing:60.867205pt;}
.ws1b3{word-spacing:67.278848pt;}
.ws124{word-spacing:89.573394pt;}
.ws1b2{word-spacing:100.428832pt;}
.ws15b{word-spacing:129.513877pt;}
.ws69{word-spacing:144.764083pt;}
.ws6c{word-spacing:263.723697pt;}
.ws1b1{word-spacing:272.920256pt;}
.ws125{word-spacing:283.172522pt;}
.wse5{word-spacing:345.055920pt;}
.ws6e{word-spacing:348.544128pt;}
.ws70{word-spacing:416.318720pt;}
.wse4{word-spacing:417.495689pt;}
.ws5f{word-spacing:827.244697pt;}
.ws62{word-spacing:909.934464pt;}
.ws64{word-spacing:947.197331pt;}
._2a{margin-left:-721.442152pt;}
._f{margin-left:-565.894146pt;}
._21{margin-left:-563.096482pt;}
._12{margin-left:-559.054499pt;}
._24{margin-left:-471.235342pt;}
._26{margin-left:-403.072226pt;}
._18{margin-left:-393.160003pt;}
._1d{margin-left:-383.367783pt;}
._5d{margin-left:-380.592000pt;}
._32{margin-left:-374.352702pt;}
._5e{margin-left:-369.710400pt;}
._3e{margin-left:-346.382701pt;}
._52{margin-left:-319.905600pt;}
._3d{margin-left:-315.342541pt;}
._5c{margin-left:-294.912000pt;}
._37{margin-left:-293.465708pt;}
._11{margin-left:-253.130538pt;}
._66{margin-left:-246.982560pt;}
._1e{margin-left:-240.389518pt;}
._5f{margin-left:-228.912000pt;}
._22{margin-left:-227.414387pt;}
._65{margin-left:-223.090736pt;}
._35{margin-left:-216.114112pt;}
._3b{margin-left:-214.905192pt;}
._36{margin-left:-209.695354pt;}
._25{margin-left:-205.063364pt;}
._4e{margin-left:-202.862400pt;}
._56{margin-left:-200.172000pt;}
._39{margin-left:-196.340917pt;}
._2b{margin-left:-194.146200pt;}
._5b{margin-left:-189.950400pt;}
._67{margin-left:-188.620528pt;}
._1f{margin-left:-186.700201pt;}
._19{margin-left:-184.352897pt;}
._1a{margin-left:-180.868838pt;}
._59{margin-left:-179.409600pt;}
._53{margin-left:-177.508800pt;}
._61{margin-left:-174.498740pt;}
._10{margin-left:-171.014237pt;}
._e{margin-left:-169.414499pt;}
._20{margin-left:-167.897377pt;}
._2d{margin-left:-164.709680pt;}
._3c{margin-left:-162.388850pt;}
._3f{margin-left:-160.401535pt;}
._15{margin-left:-159.237762pt;}
._3a{margin-left:-157.755233pt;}
._50{margin-left:-150.705600pt;}
._58{margin-left:-149.630400pt;}
._2e{margin-left:-147.746339pt;}
._1c{margin-left:-144.067407pt;}
._62{margin-left:-140.259560pt;}
._8{margin-left:-135.769717pt;}
._34{margin-left:-134.312245pt;}
._28{margin-left:-128.585056pt;}
._48{margin-left:-127.237376pt;}
._57{margin-left:-124.032000pt;}
._17{margin-left:-123.078428pt;}
._47{margin-left:-115.661056pt;}
._46{margin-left:-111.502336pt;}
._55{margin-left:-110.598600pt;}
._31{margin-left:-107.248945pt;}
._7{margin-left:-105.392953pt;}
._43{margin-left:-104.382723pt;}
._44{margin-left:-102.782492pt;}
._45{margin-left:-101.505712pt;}
._64{margin-left:-98.569141pt;}
._1b{margin-left:-93.827554pt;}
._38{margin-left:-90.386312pt;}
._40{margin-left:-87.232661pt;}
._16{margin-left:-85.319356pt;}
._30{margin-left:-81.847122pt;}
._c{margin-left:-78.856565pt;}
._33{margin-left:-74.234009pt;}
._13{margin-left:-72.239808pt;}
._27{margin-left:-69.633027pt;}
._23{margin-left:-68.104105pt;}
._d{margin-left:-65.416513pt;}
._29{margin-left:-64.263023pt;}
._4f{margin-left:-63.345600pt;}
._5a{margin-left:-62.376000pt;}
._51{margin-left:-57.506400pt;}
._14{margin-left:-53.794004pt;}
._60{margin-left:-51.940340pt;}
._2f{margin-left:-43.091248pt;}
._54{margin-left:-34.465200pt;}
._63{margin-left:-31.777929pt;}
._4c{margin-left:-28.802752pt;}
._4d{margin-left:-25.921940pt;}
._4{margin-left:-17.918432pt;}
._6{margin-left:-16.144416pt;}
._72{margin-left:-13.462816pt;}
._4a{margin-left:-11.523247pt;}
._b{margin-left:-6.821280pt;}
._3{margin-left:-4.478272pt;}
._41{margin-left:-2.237055pt;}
._1{margin-left:-1.242752pt;}
._2{width:0.903136pt;}
._2c{width:2.121669pt;}
._42{width:3.020292pt;}
._4b{width:4.833541pt;}
._68{width:6.362463pt;}
._a{width:7.545728pt;}
._69{width:14.690021pt;}
._74{width:16.913344pt;}
._70{width:21.194880pt;}
._73{width:42.047679pt;}
._0{width:56.000448pt;}
._71{width:106.544704pt;}
._6a{width:140.436368pt;}
._6f{width:149.942387pt;}
._6e{width:181.531168pt;}
._6d{width:232.007328pt;}
._49{width:294.097745pt;}
._6c{width:367.233216pt;}
._9{width:414.721120pt;}
._6b{width:519.827840pt;}
._5{width:1562.062656pt;}
.fsf{font-size:23.909867pt;}
.fs1d{font-size:26.560000pt;}
.fsa{font-size:32.000000pt;}
.fs10{font-size:33.474667pt;}
.fs13{font-size:34.047467pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:36.088533pt;}
.fs19{font-size:37.332267pt;}
.fsc{font-size:37.552533pt;}
.fs1a{font-size:39.455118pt;}
.fs17{font-size:39.697600pt;}
.fs1e{font-size:39.722667pt;}
.fs20{font-size:41.981475pt;}
.fs16{font-size:42.000000pt;}
.fs0{font-size:42.560000pt;}
.fs1c{font-size:44.980424pt;}
.fs15{font-size:48.000000pt;}
.fs12{font-size:48.640000pt;}
.fs1b{font-size:50.729701pt;}
.fs18{font-size:51.040000pt;}
.fs1f{font-size:51.071467pt;}
.fs9{font-size:51.554667pt;}
.fs3{font-size:53.440000pt;}
.fsd{font-size:53.646400pt;}
.fs21{font-size:53.976073pt;}
.fs8{font-size:54.486603pt;}
.fs6{font-size:56.479151pt;}
.fse{font-size:57.386133pt;}
.fs11{font-size:60.649430pt;}
.fs2{font-size:64.000000pt;}
.fs14{font-size:67.639544pt;}
.fs4{font-size:74.560000pt;}
.fsb{font-size:96.563733pt;}
.fs1{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y1d7{bottom:1.280400pt;}
.y1c0{bottom:2.000400pt;}
.y1e9{bottom:2.240400pt;}
.yb7{bottom:2.720400pt;}
.y78{bottom:2.800400pt;}
.y9c{bottom:2.880400pt;}
.yb0{bottom:3.120400pt;}
.y56{bottom:98.160811pt;}
.y2c{bottom:98.660475pt;}
.y120{bottom:109.298007pt;}
.y15a{bottom:109.463709pt;}
.y224{bottom:112.820704pt;}
.y55{bottom:113.761283pt;}
.y2b{bottom:114.260947pt;}
.y92{bottom:114.746123pt;}
.yde{bottom:114.823316pt;}
.y1ff{bottom:114.826547pt;}
.y11f{bottom:124.898380pt;}
.y192{bottom:124.902197pt;}
.y159{bottom:125.064082pt;}
.y1bb{bottom:125.147122pt;}
.y1fe{bottom:127.387067pt;}
.y223{bottom:128.421077pt;}
.y2a{bottom:129.861419pt;}
.y91{bottom:130.346595pt;}
.ydd{bottom:130.423689pt;}
.y54{bottom:134.721787pt;}
.y11e{bottom:140.498753pt;}
.y191{bottom:140.502570pt;}
.y158{bottom:140.664455pt;}
.y1ba{bottom:141.147161pt;}
.y222{bottom:144.021450pt;}
.y29{bottom:145.461891pt;}
.y1fd{bottom:145.627067pt;}
.y90{bottom:145.946563pt;}
.ydc{bottom:146.024062pt;}
.y53{bottom:150.322259pt;}
.y1b9{bottom:155.147200pt;}
.y11d{bottom:156.099126pt;}
.y190{bottom:156.102943pt;}
.y157{bottom:156.264828pt;}
.y1b7{bottom:157.147161pt;}
.y1b8{bottom:157.147200pt;}
.y221{bottom:159.621824pt;}
.y28{bottom:161.062363pt;}
.ydb{bottom:161.624435pt;}
.y8f{bottom:162.426123pt;}
.y52{bottom:165.922731pt;}
.y18f{bottom:171.703316pt;}
.y156{bottom:171.865201pt;}
.y1b1{bottom:173.146911pt;}
.y1b6{bottom:173.147200pt;}
.y1b5{bottom:173.626486pt;}
.y1b3{bottom:173.627067pt;}
.y1b4{bottom:174.667067pt;}
.y1b2{bottom:176.587398pt;}
.y27{bottom:176.662835pt;}
.y11c{bottom:177.058775pt;}
.y8e{bottom:178.026595pt;}
.y51{bottom:181.523203pt;}
.y220{bottom:183.222216pt;}
.yda{bottom:185.224828pt;}
.y18e{bottom:187.303689pt;}
.y155{bottom:187.465574pt;}
.y1b0{bottom:189.146950pt;}
.y26{bottom:192.263307pt;}
.y11b{bottom:192.659148pt;}
.y8d{bottom:193.623267pt;}
.y50{bottom:197.123675pt;}
.y21f{bottom:198.822589pt;}
.yd9{bottom:200.825201pt;}
.y18d{bottom:202.904062pt;}
.y154{bottom:203.065947pt;}
.y1af{bottom:205.146989pt;}
.y25{bottom:207.863779pt;}
.y11a{bottom:208.259521pt;}
.y4f{bottom:212.724147pt;}
.y21e{bottom:214.422962pt;}
.yd8{bottom:216.425574pt;}
.y8c{bottom:217.462851pt;}
.y18c{bottom:218.504435pt;}
.y153{bottom:218.666320pt;}
.y27c{bottom:219.057899pt;}
.y1ae{bottom:221.147028pt;}
.y119{bottom:223.859894pt;}
.y4e{bottom:228.324619pt;}
.y21d{bottom:230.023335pt;}
.y24{bottom:231.464219pt;}
.yd7{bottom:232.025947pt;}
.y8b{bottom:233.063323pt;}
.y152{bottom:234.266694pt;}
.y1ad{bottom:237.147067pt;}
.y118{bottom:239.460267pt;}
.y18b{bottom:242.104828pt;}
.y27b{bottom:242.658291pt;}
.y4d{bottom:243.925091pt;}
.y21c{bottom:245.623709pt;}
.yd6{bottom:247.626320pt;}
.y8a{bottom:248.663795pt;}
.y151{bottom:249.867067pt;}
.y23{bottom:253.303811pt;}
.y18a{bottom:257.705201pt;}
.y4c{bottom:259.525563pt;}
.y1ac{bottom:260.506547pt;}
.y21b{bottom:261.224082pt;}
.y117{bottom:261.700724pt;}
.yd5{bottom:263.226694pt;}
.y27a{bottom:266.258684pt;}
.y24c{bottom:268.823243pt;}
.y22{bottom:268.904283pt;}
.y89{bottom:272.264235pt;}
.y1ab{bottom:273.067067pt;}
.y189{bottom:273.305574pt;}
.y150{bottom:274.427067pt;}
.y4b{bottom:275.126035pt;}
.y21a{bottom:276.824455pt;}
.y116{bottom:277.301097pt;}
.yd4{bottom:278.827067pt;}
.y24b{bottom:281.383763pt;}
.y279{bottom:281.859057pt;}
.y88{bottom:287.864707pt;}
.y1aa{bottom:288.667200pt;}
.y188{bottom:288.905947pt;}
.y4a{bottom:290.726507pt;}
.y21{bottom:292.023763pt;}
.y219{bottom:292.424828pt;}
.y115{bottom:292.901470pt;}
.y24a{bottom:293.944283pt;}
.y1c4{bottom:296.027067pt;}
.y278{bottom:297.459430pt;}
.yd3{bottom:302.827067pt;}
.y87{bottom:303.465179pt;}
.y187{bottom:304.506320pt;}
.y49{bottom:306.326979pt;}
.y249{bottom:306.504803pt;}
.y1c3{bottom:306.507067pt;}
.y20{bottom:307.624235pt;}
.y218{bottom:308.025201pt;}
.y114{bottom:308.501843pt;}
.y1c2{bottom:308.507067pt;}
.y277{bottom:313.059803pt;}
.y86{bottom:319.065651pt;}
.y186{bottom:320.106694pt;}
.y48{bottom:321.927451pt;}
.y1f{bottom:323.224707pt;}
.y217{bottom:323.625574pt;}
.y113{bottom:324.102216pt;}
.y248{bottom:327.064475pt;}
.y1c9{bottom:327.148667pt;}
.y14f{bottom:327.302749pt;}
.y276{bottom:328.660176pt;}
.y85{bottom:334.666123pt;}
.y185{bottom:335.707067pt;}
.y47{bottom:337.527923pt;}
.y1e{bottom:338.825179pt;}
.y216{bottom:339.225947pt;}
.y247{bottom:339.624995pt;}
.y112{bottom:339.702589pt;}
.y1c8{bottom:341.228267pt;}
.y14e{bottom:342.903123pt;}
.y275{bottom:344.260550pt;}
.yd2{bottom:345.142216pt;}
.y84{bottom:350.266595pt;}
.y1d{bottom:354.425651pt;}
.y215{bottom:354.826320pt;}
.y111{bottom:355.302962pt;}
.y1c7{bottom:355.307867pt;}
.y46{bottom:358.488427pt;}
.y14d{bottom:358.503496pt;}
.y184{bottom:358.827611pt;}
.y274{bottom:359.860923pt;}
.y246{bottom:360.184667pt;}
.yd1{bottom:360.742589pt;}
.y83{bottom:365.867067pt;}
.y1c6{bottom:369.387467pt;}
.y1c{bottom:370.026123pt;}
.y214{bottom:370.426694pt;}
.y110{bottom:370.903335pt;}
.y183{bottom:371.387067pt;}
.y245{bottom:372.745187pt;}
.y45{bottom:374.088899pt;}
.y14c{bottom:374.103869pt;}
.y273{bottom:375.461296pt;}
.yd0{bottom:376.342962pt;}
.y244{bottom:385.305707pt;}
.y1b{bottom:385.626595pt;}
.y213{bottom:386.027067pt;}
.y10f{bottom:386.503709pt;}
.y44{bottom:389.689371pt;}
.y14b{bottom:389.704242pt;}
.y272{bottom:391.061669pt;}
.ycf{bottom:391.943335pt;}
.y1c5{bottom:392.186667pt;}
.y1ee{bottom:392.987200pt;}
.y82{bottom:394.346680pt;}
.y1ec{bottom:394.346795pt;}
.y1ed{bottom:394.347067pt;}
.y1f2{bottom:400.507067pt;}
.y182{bottom:400.663927pt;}
.y1a{bottom:401.227067pt;}
.y10e{bottom:402.104082pt;}
.y1bf{bottom:404.266667pt;}
.y43{bottom:405.289843pt;}
.y14a{bottom:405.304615pt;}
.y243{bottom:405.865379pt;}
.y1c1{bottom:406.267067pt;}
.y1be{bottom:406.267467pt;}
.y271{bottom:406.662042pt;}
.y81{bottom:406.907200pt;}
.yce{bottom:407.543709pt;}
.y212{bottom:410.587067pt;}
.y10d{bottom:417.704455pt;}
.y242{bottom:418.425899pt;}
.y42{bottom:420.890315pt;}
.y270{bottom:422.262415pt;}
.ycd{bottom:423.144082pt;}
.y181{bottom:424.264319pt;}
.y19{bottom:425.787067pt;}
.ye8{bottom:427.547067pt;}
.y80{bottom:428.185307pt;}
.y149{bottom:428.905008pt;}
.y1bd{bottom:428.907200pt;}
.ye7{bottom:429.547067pt;}
.y1f1{bottom:430.667611pt;}
.y1bc{bottom:430.907200pt;}
.y241{bottom:430.986419pt;}
.y10c{bottom:433.304828pt;}
.y41{bottom:436.490787pt;}
.ycc{bottom:438.744455pt;}
.y1f0{bottom:443.227067pt;}
.y240{bottom:443.546939pt;}
.y148{bottom:444.505381pt;}
.y26f{bottom:446.102875pt;}
.y180{bottom:447.864712pt;}
.y10b{bottom:448.905201pt;}
.y7f{bottom:451.785747pt;}
.y40{bottom:452.091259pt;}
.ycb{bottom:454.344828pt;}
.y1fc{bottom:458.507611pt;}
.y147{bottom:460.105754pt;}
.y26e{bottom:461.703248pt;}
.y1a9{bottom:462.667200pt;}
.y1a8{bottom:462.667283pt;}
.y211{bottom:462.987091pt;}
.y23f{bottom:464.106611pt;}
.y10a{bottom:464.505574pt;}
.y3f{bottom:467.691731pt;}
.yca{bottom:469.945201pt;}
.ye4{bottom:470.827067pt;}
.y1ef{bottom:470.987067pt;}
.y1fb{bottom:471.067067pt;}
.ye1{bottom:471.307067pt;}
.y17f{bottom:471.465104pt;}
.y7e{bottom:475.386187pt;}
.y210{bottom:475.546547pt;}
.y146{bottom:475.706127pt;}
.y1a7{bottom:475.947067pt;}
.y1a6{bottom:475.947283pt;}
.y23e{bottom:476.667131pt;}
.ye2{bottom:476.987067pt;}
.y26d{bottom:477.303622pt;}
.ydf{bottom:477.467067pt;}
.y18{bottom:478.666123pt;}
.y109{bottom:480.105947pt;}
.y3e{bottom:483.292203pt;}
.ye3{bottom:483.707619pt;}
.ye0{bottom:484.187619pt;}
.yc9{bottom:485.545574pt;}
.y20f{bottom:488.107067pt;}
.y1eb{bottom:489.147067pt;}
.y1a5{bottom:489.227067pt;}
.y23d{bottom:489.227651pt;}
.y1fa{bottom:489.307067pt;}
.y1e3{bottom:491.546483pt;}
.y26c{bottom:492.903995pt;}
.y17{bottom:494.266595pt;}
.y17e{bottom:495.065497pt;}
.y108{bottom:495.706320pt;}
.y7d{bottom:498.986627pt;}
.y145{bottom:499.306519pt;}
.yc8{bottom:501.145947pt;}
.y23c{bottom:501.788171pt;}
.y1e2{bottom:504.107003pt;}
.yea{bottom:504.827067pt;}
.y3d{bottom:505.532595pt;}
.yec{bottom:505.547067pt;}
.ye9{bottom:506.827067pt;}
.y1a4{bottom:507.467067pt;}
.yeb{bottom:507.547067pt;}
.y26b{bottom:508.504368pt;}
.y20e{bottom:509.307067pt;}
.y16{bottom:509.867067pt;}
.y107{bottom:511.306694pt;}
.y23b{bottom:514.348691pt;}
.y144{bottom:514.906893pt;}
.y1e1{bottom:516.667523pt;}
.yc7{bottom:516.746320pt;}
.y17d{bottom:518.665889pt;}
.y20d{bottom:520.987067pt;}
.y3c{bottom:521.133067pt;}
.y7c{bottom:522.587067pt;}
.y26a{bottom:524.104741pt;}
.y1e5{bottom:524.747067pt;}
.ye6{bottom:524.827067pt;}
.ye5{bottom:526.827067pt;}
.y106{bottom:526.907067pt;}
.y20c{bottom:530.987067pt;}
.y143{bottom:531.385754pt;}
.yc6{bottom:532.346694pt;}
.y15{bottom:534.427067pt;}
.y23a{bottom:534.908363pt;}
.y3b{bottom:536.733539pt;}
.y17c{bottom:542.266282pt;}
.y7b{bottom:545.067067pt;}
.y239{bottom:547.467819pt;}
.y269{bottom:547.945201pt;}
.yc5{bottom:547.947067pt;}
.y1e8{bottom:549.866667pt;}
.y105{bottom:550.907067pt;}
.y1e7{bottom:552.106547pt;}
.y1ea{bottom:552.107067pt;}
.y3a{bottom:552.334011pt;}
.y20b{bottom:552.667067pt;}
.y74{bottom:555.387067pt;}
.y142{bottom:555.865947pt;}
.y76{bottom:558.587067pt;}
.y238{bottom:560.027275pt;}
.y268{bottom:563.545574pt;}
.y20a{bottom:564.347067pt;}
.y1e6{bottom:564.667067pt;}
.y17b{bottom:565.866674pt;}
.y1e4{bottom:565.867067pt;}
.y7a{bottom:566.746882pt;}
.y79{bottom:566.747067pt;}
.y73{bottom:567.226987pt;}
.y39{bottom:567.934483pt;}
.y141{bottom:571.466320pt;}
.y75{bottom:571.626907pt;}
.y77{bottom:572.026667pt;}
.yc4{bottom:572.507067pt;}
.y237{bottom:572.586731pt;}
.y209{bottom:574.347067pt;}
.y267{bottom:579.145947pt;}
.y38{bottom:583.534955pt;}
.y236{bottom:585.147251pt;}
.y140{bottom:587.066694pt;}
.y17a{bottom:589.467067pt;}
.y104{bottom:593.226694pt;}
.y266{bottom:594.746320pt;}
.y14{bottom:595.301443pt;}
.y208{bottom:596.027067pt;}
.y72{bottom:598.426595pt;}
.y13f{bottom:602.665947pt;}
.y37{bottom:604.495459pt;}
.y179{bottom:604.586875pt;}
.y235{bottom:605.706923pt;}
.y207{bottom:607.707067pt;}
.y103{bottom:608.826809pt;}
.y265{bottom:610.346694pt;}
.y13{bottom:610.901915pt;}
.y71{bottom:612.027067pt;}
.y70{bottom:614.027067pt;}
.y6f{bottom:614.027507pt;}
.y178{bottom:617.147395pt;}
.y206{bottom:617.707067pt;}
.y13e{bottom:618.266320pt;}
.y234{bottom:618.266379pt;}
.y36{bottom:620.095931pt;}
.yc3{bottom:625.386253pt;}
.y264{bottom:625.947067pt;}
.y12{bottom:626.502387pt;}
.y6e{bottom:630.507067pt;}
.y6d{bottom:630.507507pt;}
.y233{bottom:630.826899pt;}
.y102{bottom:631.946436pt;}
.y13d{bottom:633.866694pt;}
.y35{bottom:635.696403pt;}
.y177{bottom:637.707067pt;}
.yc2{bottom:640.986626pt;}
.y11{bottom:642.102859pt;}
.y232{bottom:643.387419pt;}
.y205{bottom:644.266547pt;}
.y6c{bottom:646.987067pt;}
.y6b{bottom:646.987507pt;}
.y13c{bottom:649.465574pt;}
.y263{bottom:650.747067pt;}
.y34{bottom:651.296875pt;}
.yc1{bottom:654.827067pt;}
.y101{bottom:655.066694pt;}
.ybf{bottom:656.826345pt;}
.yc0{bottom:656.827067pt;}
.y10{bottom:657.703331pt;}
.y176{bottom:658.984643pt;}
.y1d6{bottom:660.746667pt;}
.y204{bottom:660.827067pt;}
.y1d5{bottom:662.026571pt;}
.y1d8{bottom:662.027067pt;}
.y6a{bottom:663.465179pt;}
.y231{bottom:663.947091pt;}
.y13b{bottom:665.065947pt;}
.y33{bottom:666.897347pt;}
.y100{bottom:670.666436pt;}
.yf{bottom:673.303803pt;}
.ybe{bottom:673.306519pt;}
.y1d4{bottom:674.586027pt;}
.y230{bottom:676.507611pt;}
.y69{bottom:679.065651pt;}
.y13a{bottom:680.666320pt;}
.y203{bottom:681.387067pt;}
.y32{bottom:682.497819pt;}
.y175{bottom:682.585036pt;}
.y1d3{bottom:687.146547pt;}
.ye{bottom:688.904275pt;}
.ybd{bottom:688.906893pt;}
.y22f{bottom:689.067067pt;}
.y202{bottom:691.466547pt;}
.yff{bottom:693.786694pt;}
.y68{bottom:694.666123pt;}
.y139{bottom:696.266694pt;}
.y1df{bottom:699.627067pt;}
.y1d2{bottom:699.707067pt;}
.y1dd{bottom:700.986931pt;}
.y1de{bottom:700.987200pt;}
.y262{bottom:703.147443pt;}
.ybc{bottom:703.387067pt;}
.y201{bottom:704.027067pt;}
.yd{bottom:704.504747pt;}
.y31{bottom:704.738211pt;}
.yba{bottom:705.386827pt;}
.ybb{bottom:705.387067pt;}
.y174{bottom:706.185428pt;}
.y1e0{bottom:706.667067pt;}
.yfe{bottom:709.380364pt;}
.y67{bottom:710.266595pt;}
.y138{bottom:711.864261pt;}
.y261{bottom:715.707963pt;}
.y22e{bottom:719.067067pt;}
.yc{bottom:720.105219pt;}
.y30{bottom:720.338683pt;}
.yb9{bottom:721.867001pt;}
.y200{bottom:722.267067pt;}
.y1da{bottom:723.387067pt;}
.y1d9{bottom:724.747067pt;}
.y66{bottom:725.864707pt;}
.y260{bottom:728.267419pt;}
.y173{bottom:729.785821pt;}
.yfd{bottom:732.500621pt;}
.yb{bottom:735.705691pt;}
.y2f{bottom:735.939155pt;}
.y137{bottom:736.344455pt;}
.y65{bottom:741.465179pt;}
.yb5{bottom:745.387067pt;}
.yb6{bottom:745.706667pt;}
.yfc{bottom:748.100994pt;}
.yb8{bottom:748.427067pt;}
.y25f{bottom:748.827091pt;}
.yb4{bottom:749.066301pt;}
.ya{bottom:751.306163pt;}
.y1d1{bottom:751.306547pt;}
.y2e{bottom:751.539627pt;}
.y136{bottom:751.944828pt;}
.y1ca{bottom:752.107067pt;}
.y172{bottom:753.386213pt;}
.y64{bottom:757.065651pt;}
.y1cd{bottom:760.986027pt;}
.y25e{bottom:761.386547pt;}
.yfb{bottom:763.701367pt;}
.y1d0{bottom:763.867067pt;}
.y9{bottom:766.906635pt;}
.y2d{bottom:767.140099pt;}
.y135{bottom:767.545201pt;}
.y63{bottom:772.666123pt;}
.yb3{bottom:772.666694pt;}
.y1dc{bottom:773.066547pt;}
.y1cc{bottom:773.546547pt;}
.y25d{bottom:773.941283pt;}
.y171{bottom:776.986606pt;}
.yfa{bottom:779.301740pt;}
.y1cf{bottom:781.626547pt;}
.y8{bottom:782.746251pt;}
.y134{bottom:783.145574pt;}
.y1db{bottom:785.627067pt;}
.y1cb{bottom:786.107067pt;}
.y62{bottom:788.266595pt;}
.yb2{bottom:788.267706pt;}
.y1ce{bottom:794.187067pt;}
.y25c{bottom:794.500955pt;}
.yf9{bottom:794.902114pt;}
.y133{bottom:798.745947pt;}
.y22d{bottom:800.106950pt;}
.y170{bottom:800.586999pt;}
.y1a3{bottom:802.667067pt;}
.y61{bottom:803.867067pt;}
.y25b{bottom:807.061475pt;}
.y1f9{bottom:809.542216pt;}
.yac{bottom:811.787067pt;}
.y132{bottom:814.346320pt;}
.y7{bottom:814.346659pt;}
.ya8{bottom:815.387067pt;}
.y22c{bottom:816.106989pt;}
.yf8{bottom:818.502506pt;}
.y25a{bottom:819.621995pt;}
.yab{bottom:819.866969pt;}
.yaa{bottom:819.947067pt;}
.yae{bottom:821.946628pt;}
.yad{bottom:822.026967pt;}
.y1a2{bottom:822.747067pt;}
.y1a1{bottom:824.107067pt;}
.y16f{bottom:824.346989pt;}
.y1a0{bottom:824.827067pt;}
.y1f8{bottom:825.142589pt;}
.y60{bottom:828.426579pt;}
.ya7{bottom:828.826477pt;}
.yb1{bottom:828.827067pt;}
.y131{bottom:829.946694pt;}
.y22b{bottom:832.107028pt;}
.yf7{bottom:834.102879pt;}
.yaf{bottom:835.786667pt;}
.y19f{bottom:838.027067pt;}
.ya9{bottom:838.906773pt;}
.y259{bottom:840.181667pt;}
.y16e{bottom:840.347028pt;}
.y1f7{bottom:840.742962pt;}
.y130{bottom:845.546127pt;}
.y6{bottom:845.947067pt;}
.y225{bottom:848.103248pt;}
.y22a{bottom:848.107067pt;}
.y229{bottom:848.586486pt;}
.y227{bottom:848.587067pt;}
.y228{bottom:849.627067pt;}
.yf6{bottom:849.703252pt;}
.y5f{bottom:850.267067pt;}
.y19e{bottom:851.547067pt;}
.y226{bottom:851.547398pt;}
.y258{bottom:852.742187pt;}
.y1f6{bottom:856.343335pt;}
.y16d{bottom:856.346667pt;}
.y169{bottom:856.346950pt;}
.y16b{bottom:856.347067pt;}
.y16c{bottom:857.387067pt;}
.y16a{bottom:859.227251pt;}
.ya6{bottom:862.906694pt;}
.y257{bottom:865.302707pt;}
.yf5{bottom:865.303625pt;}
.y19d{bottom:866.267067pt;}
.y12f{bottom:870.026320pt;}
.y1f5{bottom:871.943709pt;}
.y168{bottom:872.346989pt;}
.y5{bottom:878.027067pt;}
.ya5{bottom:878.506923pt;}
.y19c{bottom:880.667067pt;}
.yf4{bottom:880.903999pt;}
.y12e{bottom:885.626694pt;}
.y256{bottom:885.862379pt;}
.y1f4{bottom:887.544082pt;}
.y167{bottom:888.347028pt;}
.y19b{bottom:893.867067pt;}
.ya4{bottom:894.987097pt;}
.yf3{bottom:896.504372pt;}
.y255{bottom:898.422899pt;}
.y12d{bottom:901.226694pt;}
.y5e{bottom:903.143763pt;}
.y1f3{bottom:903.144455pt;}
.y165{bottom:904.346855pt;}
.y166{bottom:904.347067pt;}
.y19a{bottom:906.427067pt;}
.y254{bottom:910.983419pt;}
.y12c{bottom:916.827064pt;}
.y199{bottom:916.985201pt;}
.y5d{bottom:918.744235pt;}
.yf2{bottom:918.744828pt;}
.y164{bottom:920.346894pt;}
.ya1{bottom:921.467067pt;}
.y9e{bottom:921.467077pt;}
.y4{bottom:922.747075pt;}
.y253{bottom:931.543091pt;}
.y198{bottom:932.585574pt;}
.y99{bottom:933.147067pt;}
.y5c{bottom:934.344707pt;}
.yf1{bottom:934.345201pt;}
.y9a{bottom:934.346647pt;}
.y9f{bottom:934.346657pt;}
.y163{bottom:936.346933pt;}
.ya2{bottom:937.707067pt;}
.y12a{bottom:941.627363pt;}
.y252{bottom:944.103611pt;}
.y129{bottom:945.386755pt;}
.y12b{bottom:945.867067pt;}
.ya3{bottom:946.187221pt;}
.y197{bottom:948.185947pt;}
.y5b{bottom:949.945179pt;}
.yf0{bottom:949.945574pt;}
.y3{bottom:953.385739pt;}
.y9d{bottom:953.627067pt;}
.y251{bottom:956.664131pt;}
.y162{bottom:961.787067pt;}
.y15d{bottom:963.786146pt;}
.y196{bottom:963.786320pt;}
.y161{bottom:963.786667pt;}
.y15f{bottom:963.787067pt;}
.y160{bottom:964.827067pt;}
.y5a{bottom:965.545651pt;}
.yef{bottom:965.545947pt;}
.y15e{bottom:966.667251pt;}
.y9b{bottom:967.706667pt;}
.ya0{bottom:970.586945pt;}
.y124{bottom:975.146717pt;}
.y250{bottom:977.223803pt;}
.y195{bottom:979.386694pt;}
.y122{bottom:979.627067pt;}
.y15c{bottom:980.266320pt;}
.y59{bottom:981.146123pt;}
.yee{bottom:981.146320pt;}
.y2{bottom:984.027067pt;}
.y24f{bottom:989.784323pt;}
.y121{bottom:990.897463pt;}
.y128{bottom:990.907067pt;}
.y98{bottom:992.987067pt;}
.y194{bottom:994.986893pt;}
.y97{bottom:994.987067pt;}
.y96{bottom:994.987507pt;}
.y15b{bottom:995.866694pt;}
.y58{bottom:996.746595pt;}
.yed{bottom:996.746694pt;}
.y24e{bottom:1002.343779pt;}
.y126{bottom:1002.506567pt;}
.y125{bottom:1007.066717pt;}
.y127{bottom:1007.067067pt;}
.y123{bottom:1007.067467pt;}
.y95{bottom:1009.467067pt;}
.y193{bottom:1011.462603pt;}
.y93{bottom:1011.466651pt;}
.y94{bottom:1011.467067pt;}
.y57{bottom:1012.347067pt;}
.y24d{bottom:1014.903235pt;}
.y1{bottom:1057.547067pt;}
.h51{height:10.800000pt;}
.h54{height:11.760000pt;}
.h50{height:12.720000pt;}
.h2e{height:14.880000pt;}
.he{height:15.360000pt;}
.h2a{height:16.080000pt;}
.h17{height:16.240000pt;}
.h23{height:16.613154pt;}
.h11{height:22.234375pt;}
.h25{height:23.242664pt;}
.h24{height:23.259009pt;}
.hc{height:25.057566pt;}
.h43{height:25.939363pt;}
.h19{height:26.074073pt;}
.h1c{height:26.092410pt;}
.h3d{height:27.563470pt;}
.h4b{height:27.600271pt;}
.h46{height:28.844375pt;}
.h39{height:29.162109pt;}
.h38{height:29.182617pt;}
.h44{height:29.206035pt;}
.h55{height:29.550937pt;}
.h12{height:29.571719pt;}
.h1{height:31.005625pt;}
.h4d{height:31.076131pt;}
.h3c{height:31.089844pt;}
.h57{height:31.491175pt;}
.h49{height:33.296056pt;}
.h3a{height:33.328125pt;}
.h37{height:33.351562pt;}
.h48{height:34.372487pt;}
.h56{height:35.011185pt;}
.h52{height:35.011719pt;}
.h53{height:35.012252pt;}
.h4c{height:35.485692pt;}
.h3b{height:35.531250pt;}
.h2f{height:36.005000pt;}
.h1f{height:36.331815pt;}
.h20{height:36.358009pt;}
.h4a{height:36.944375pt;}
.h5{height:37.105312pt;}
.h4{height:37.131406pt;}
.h9{height:37.138958pt;}
.h8{height:37.140846pt;}
.h13{height:37.146606pt;}
.h1b{height:37.248623pt;}
.h1e{height:37.274818pt;}
.h3f{height:37.274827pt;}
.h40{height:37.276310pt;}
.h42{height:37.279295pt;}
.h41{height:37.280788pt;}
.h45{height:37.551869pt;}
.hf{height:38.162536pt;}
.h2c{height:38.892555pt;}
.h10{height:39.052147pt;}
.h7{height:39.558125pt;}
.h14{height:39.560141pt;}
.h18{height:39.710909pt;}
.h21{height:39.711484pt;}
.h30{height:39.834818pt;}
.h27{height:39.845255pt;}
.h22{height:39.873275pt;}
.h4e{height:39.954944pt;}
.hd{height:40.332856pt;}
.h4f{height:41.351562pt;}
.ha{height:41.807809pt;}
.h29{height:42.479189pt;}
.h32{height:43.375000pt;}
.h3{height:44.437500pt;}
.h35{height:44.468750pt;}
.h28{height:44.894793pt;}
.hb{height:45.131406pt;}
.h47{height:45.248623pt;}
.h31{height:45.274818pt;}
.h2d{height:48.165000pt;}
.h33{height:50.069115pt;}
.h6{height:50.531875pt;}
.h1a{height:50.690261pt;}
.h1d{height:50.716497pt;}
.h34{height:52.437500pt;}
.h16{height:53.152589pt;}
.h2b{height:53.264535pt;}
.h26{height:54.245255pt;}
.h3e{height:54.740377pt;}
.h36{height:55.348750pt;}
.h15{height:71.479795pt;}
.h2{height:72.219375pt;}
.h0{height:1122.666667pt;}
.w5{width:6.640000pt;}
.w3{width:7.360000pt;}
.w4{width:7.840000pt;}
.w2{width:8.880000pt;}
.w8{width:9.920000pt;}
.w6{width:26.720000pt;}
.w7{width:32.560000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x94{left:4.640000pt;}
.xa1{left:29.040000pt;}
.x1{left:56.720000pt;}
.xa{left:66.159648pt;}
.xd{left:75.680000pt;}
.x3{left:78.158856pt;}
.x2{left:79.680000pt;}
.x9{left:85.040000pt;}
.xbe{left:89.680000pt;}
.x16{left:95.760000pt;}
.x7f{left:99.759600pt;}
.xab{left:103.040504pt;}
.xe{left:103.999752pt;}
.x7e{left:106.800000pt;}
.xbf{left:107.839288pt;}
.x17{left:109.920000pt;}
.x5c{left:114.240000pt;}
.x18{left:117.280000pt;}
.x9d{left:119.040000pt;}
.x74{left:121.040000pt;}
.xb4{left:122.880096pt;}
.x7d{left:124.159992pt;}
.x9f{left:126.479552pt;}
.x9e{left:127.520080pt;}
.x9c{left:129.919920pt;}
.x73{left:131.039655pt;}
.xa0{left:132.079384pt;}
.x75{left:135.760000pt;}
.x5d{left:138.240000pt;}
.x80{left:139.200000pt;}
.x21{left:141.840096pt;}
.xad{left:144.640000pt;}
.xa3{left:146.240000pt;}
.x5e{left:148.320000pt;}
.xa4{left:149.760000pt;}
.x6{left:152.000000pt;}
.xae{left:153.440000pt;}
.xa5{left:156.480000pt;}
.x5a{left:163.360000pt;}
.xa2{left:164.640000pt;}
.xf{left:169.120000pt;}
.x10{left:177.520000pt;}
.x59{left:182.800160pt;}
.x5{left:185.760000pt;}
.xac{left:188.320000pt;}
.x7a{left:192.240000pt;}
.x11{left:195.920000pt;}
.x58{left:199.680000pt;}
.x7b{left:200.640000pt;}
.x12{left:203.280000pt;}
.x1d{left:206.320000pt;}
.x70{left:207.680000pt;}
.x13{left:211.440000pt;}
.xa6{left:216.640000pt;}
.x1f{left:218.159602pt;}
.x4{left:220.078128pt;}
.x71{left:222.000000pt;}
.xaf{left:227.839688pt;}
.x72{left:229.360000pt;}
.xb0{left:231.360000pt;}
.xb2{left:234.400000pt;}
.x20{left:235.360000pt;}
.x7c{left:236.960000pt;}
.x14{left:238.240000pt;}
.x1c{left:240.960000pt;}
.x1e{left:244.080000pt;}
.x15{left:245.600000pt;}
.x5b{left:248.640000pt;}
.x1a{left:249.679957pt;}
.xb1{left:251.040000pt;}
.x7{left:252.159920pt;}
.x1b{left:254.080000pt;}
.x19{left:261.600000pt;}
.x76{left:283.440000pt;}
.xbc{left:286.960000pt;}
.x9b{left:290.800400pt;}
.x77{left:291.840000pt;}
.x57{left:293.920000pt;}
.x78{left:300.960000pt;}
.x56{left:302.079822pt;}
.xa7{left:305.360576pt;}
.xbb{left:306.640000pt;}
.x79{left:308.320000pt;}
.xaa{left:311.360000pt;}
.xa8{left:315.600000pt;}
.x55{left:320.160000pt;}
.x9a{left:322.880000pt;}
.xbd{left:325.120000pt;}
.xa9{left:328.560000pt;}
.x5f{left:348.880000pt;}
.x60{left:357.680000pt;}
.xb3{left:375.680000pt;}
.x8{left:387.439272pt;}
.xc{left:398.719440pt;}
.x6f{left:408.160073pt;}
.x22{left:417.679480pt;}
.xb{left:427.039968pt;}
.xc0{left:431.673008pt;}
.xb8{left:434.320000pt;}
.x27{left:436.720000pt;}
.x28{left:445.120000pt;}
.x38{left:446.081300pt;}
.x2e{left:447.840000pt;}
.xc1{left:449.832296pt;}
.x29{left:450.880000pt;}
.x2a{left:458.240000pt;}
.xb6{left:464.880096pt;}
.x4b{left:472.720000pt;}
.x63{left:474.080100pt;}
.xb9{left:475.760000pt;}
.xba{left:482.480000pt;}
.x47{left:484.318952pt;}
.x36{left:486.721130pt;}
.x34{left:493.920477pt;}
.x6e{left:499.519444pt;}
.xb7{left:500.480000pt;}
.x2d{left:501.760000pt;}
.x67{left:506.000100pt;}
.x53{left:507.760000pt;}
.x6d{left:510.559347pt;}
.x97{left:511.680800pt;}
.x4d{left:513.040295pt;}
.x54{left:515.120000pt;}
.x66{left:519.199650pt;}
.x3a{left:520.721996pt;}
.x93{left:527.760000pt;}
.x4a{left:528.720000pt;}
.x65{left:531.439500pt;}
.x4c{left:533.680000pt;}
.x8d{left:535.840000pt;}
.x3e{left:537.840000pt;}
.x8c{left:539.680000pt;}
.x68{left:544.480000pt;}
.x23{left:549.840000pt;}
.x2b{left:554.400000pt;}
.x6c{left:555.599251pt;}
.x24{left:558.240000pt;}
.x2f{left:562.080000pt;}
.x25{left:564.000000pt;}
.x30{left:565.040078pt;}
.x6b{left:566.639154pt;}
.x62{left:569.040000pt;}
.x26{left:571.360000pt;}
.x61{left:572.560000pt;}
.x8e{left:574.000000pt;}
.x81{left:575.840000pt;}
.x32{left:580.720000pt;}
.x82{left:584.240000pt;}
.x4f{left:591.360000pt;}
.x83{left:594.000000pt;}
.x46{left:596.160401pt;}
.x85{left:598.880000pt;}
.x84{left:601.360000pt;}
.x45{left:606.400302pt;}
.x3d{left:610.480178pt;}
.x96{left:611.440400pt;}
.x8a{left:616.960000pt;}
.x98{left:623.920800pt;}
.x44{left:625.520194pt;}
.x43{left:626.880103pt;}
.x6a{left:630.800800pt;}
.x99{left:631.760400pt;}
.x86{left:639.280000pt;}
.x69{left:641.759200pt;}
.x87{left:645.120000pt;}
.x49{left:647.680000pt;}
.x95{left:648.960000pt;}
.x50{left:655.520000pt;}
.x64{left:659.999400pt;}
.x51{left:663.919867pt;}
.x42{left:667.039660pt;}
.x52{left:669.679867pt;}
.x41{left:677.279561pt;}
.x8b{left:679.999867pt;}
.x3c{left:681.439880pt;}
.x31{left:685.679469pt;}
.x48{left:687.679867pt;}
.x2c{left:689.199099pt;}
.x33{left:693.919295pt;}
.x89{left:694.960000pt;}
.x40{left:696.399454pt;}
.x3f{left:698.319226pt;}
.x3b{left:702.399867pt;}
.x8f{left:703.919867pt;}
.x35{left:705.040520pt;}
.x39{left:707.919867pt;}
.x90{left:712.320000pt;}
.x4e{left:715.280000pt;}
.xb5{left:717.679867pt;}
.x37{left:719.920690pt;}
.x91{left:722.800000pt;}
.x92{left:730.160000pt;}
.x88{left:733.040000pt;}
}




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