
    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_0940ba4d89c6ee8e4f385637.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_6b1e51c62d852f1b17800577.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_f14e4662b981955d0f7ededd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_88d42bb381a657e1fa172fee.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_bd14d1dcc1e21f943c3bf36c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_3b1018f2e4bc884213206a6b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.709473;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_9c761c2927e1c51388009d2f.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);}
.m3{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);}
.m2{transform:matrix(0.236548,0.000000,-0.080900,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080900,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080900,0.236548,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);}
.v2{vertical-align:-27.000000px;}
.v3{vertical-align:-23.399618px;}
.v1{vertical-align:-8.987256px;}
.v6{vertical-align:-6.120000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:6.120600px;}
.v7{vertical-align:9.000000px;}
.v4{vertical-align:19.080000px;}
.ls8f{letter-spacing:-2.689062px;}
.ls88{letter-spacing:-2.603624px;}
.ls89{letter-spacing:-2.574768px;}
.ls8a{letter-spacing:-2.571003px;}
.lsc0{letter-spacing:-1.975896px;}
.lsbe{letter-spacing:-1.849418px;}
.lsb8{letter-spacing:-1.792299px;}
.ls8d{letter-spacing:-1.654808px;}
.ls85{letter-spacing:-1.604298px;}
.lsac{letter-spacing:-1.586634px;}
.lsaa{letter-spacing:-1.530887px;}
.lsbb{letter-spacing:-1.489809px;}
.lsb6{letter-spacing:-1.372372px;}
.ls8e{letter-spacing:-1.335538px;}
.ls8c{letter-spacing:-1.295067px;}
.ls87{letter-spacing:-1.290609px;}
.ls86{letter-spacing:-1.241315px;}
.lsbf{letter-spacing:-1.190477px;}
.lsa7{letter-spacing:-0.880992px;}
.ls79{letter-spacing:-0.746485px;}
.lsb7{letter-spacing:-0.689720px;}
.lsae{letter-spacing:-0.596484px;}
.lsad{letter-spacing:-0.565808px;}
.lscf{letter-spacing:-0.464436px;}
.lsb3{letter-spacing:-0.396191px;}
.ls36{letter-spacing:-0.361584px;}
.lsb4{letter-spacing:-0.339009px;}
.lsaf{letter-spacing:-0.235185px;}
.lsa6{letter-spacing:-0.198916px;}
.ls7a{letter-spacing:-0.120401px;}
.ls9e{letter-spacing:-0.114381px;}
.lsc1{letter-spacing:-0.108674px;}
.ls84{letter-spacing:-0.108361px;}
.lsd8{letter-spacing:-0.105336px;}
.ls22{letter-spacing:-0.102204px;}
.ls9d{letter-spacing:-0.100548px;}
.ls77{letter-spacing:-0.096321px;}
.ls90{letter-spacing:-0.090972px;}
.ls6e{letter-spacing:-0.090301px;}
.ls2f{letter-spacing:-0.090180px;}
.lsd4{letter-spacing:-0.086184px;}
.ls91{letter-spacing:-0.084281px;}
.ls29{letter-spacing:-0.084168px;}
.ls6c{letter-spacing:-0.078261px;}
.ls1e{letter-spacing:-0.078156px;}
.ls72{letter-spacing:-0.072240px;}
.ls31{letter-spacing:-0.072144px;}
.ls74{letter-spacing:-0.071820px;}
.lsc3{letter-spacing:-0.066220px;}
.ls21{letter-spacing:-0.066132px;}
.lsa9{letter-spacing:-0.064323px;}
.ls4d{letter-spacing:-0.060200px;}
.ls25{letter-spacing:-0.060120px;}
.lscd{letter-spacing:-0.058716px;}
.lsd7{letter-spacing:-0.057456px;}
.lsa4{letter-spacing:-0.054180px;}
.ls28{letter-spacing:-0.054108px;}
.lsd1{letter-spacing:-0.052668px;}
.lsd9{letter-spacing:-0.048160px;}
.ls73{letter-spacing:-0.047880px;}
.lsbd{letter-spacing:-0.047092px;}
.lsd2{letter-spacing:-0.043092px;}
.lsa8{letter-spacing:-0.042882px;}
.ls71{letter-spacing:-0.042140px;}
.ls32{letter-spacing:-0.042084px;}
.ls75{letter-spacing:-0.038304px;}
.lsb5{letter-spacing:-0.036760px;}
.ls7b{letter-spacing:-0.036120px;}
.ls6d{letter-spacing:-0.033516px;}
.lsa3{letter-spacing:-0.030100px;}
.ls30{letter-spacing:-0.030060px;}
.ls8b{letter-spacing:-0.028728px;}
.ls6b{letter-spacing:-0.024080px;}
.ls23{letter-spacing:-0.024048px;}
.lsd3{letter-spacing:-0.023940px;}
.lsce{letter-spacing:-0.019152px;}
.ls6f{letter-spacing:-0.018060px;}
.ls24{letter-spacing:-0.018036px;}
.lsba{letter-spacing:-0.012843px;}
.ls4f{letter-spacing:-0.012040px;}
.ls35{letter-spacing:-0.012024px;}
.ls78{letter-spacing:-0.011664px;}
.lsd0{letter-spacing:-0.009576px;}
.ls1b{letter-spacing:-0.007200px;}
.ls70{letter-spacing:-0.006020px;}
.ls1f{letter-spacing:-0.006012px;}
.lsd6{letter-spacing:-0.004788px;}
.ls1d{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.004788px;}
.ls10{letter-spacing:0.006012px;}
.ls4a{letter-spacing:0.006020px;}
.ls4c{letter-spacing:0.007200px;}
.ls2a{letter-spacing:0.009576px;}
.ls69{letter-spacing:0.009675px;}
.ls42{letter-spacing:0.011664px;}
.ls2{letter-spacing:0.012024px;}
.ls4e{letter-spacing:0.012040px;}
.lsab{letter-spacing:0.017153px;}
.ls3e{letter-spacing:0.017280px;}
.ls13{letter-spacing:0.018036px;}
.ls55{letter-spacing:0.018060px;}
.lsb2{letter-spacing:0.019152px;}
.ls76{letter-spacing:0.021600px;}
.ls7c{letter-spacing:0.023328px;}
.ls0{letter-spacing:0.023940px;}
.ls1{letter-spacing:0.024048px;}
.ls5a{letter-spacing:0.024080px;}
.ls3b{letter-spacing:0.028728px;}
.ls26{letter-spacing:0.028800px;}
.ls7{letter-spacing:0.030060px;}
.ls50{letter-spacing:0.030100px;}
.ls96{letter-spacing:0.033516px;}
.ls14{letter-spacing:0.033552px;}
.ls64{letter-spacing:0.035856px;}
.ls27{letter-spacing:0.036072px;}
.ls48{letter-spacing:0.036120px;}
.ls2c{letter-spacing:0.038304px;}
.lsf{letter-spacing:0.042084px;}
.ls43{letter-spacing:0.042140px;}
.ls97{letter-spacing:0.043092px;}
.ls98{letter-spacing:0.047880px;}
.ls19{letter-spacing:0.047952px;}
.ls16{letter-spacing:0.048096px;}
.ls5d{letter-spacing:0.048160px;}
.lsc{letter-spacing:0.050328px;}
.lsbc{letter-spacing:0.051373px;}
.ls95{letter-spacing:0.052668px;}
.lsb{letter-spacing:0.054108px;}
.ls54{letter-spacing:0.054180px;}
.ls58{letter-spacing:0.057456px;}
.ls33{letter-spacing:0.057600px;}
.ls1a{letter-spacing:0.059940px;}
.ls1c{letter-spacing:0.060120px;}
.ls45{letter-spacing:0.060200px;}
.lsa1{letter-spacing:0.062244px;}
.ls5{letter-spacing:0.066132px;}
.ls53{letter-spacing:0.066220px;}
.ls66{letter-spacing:0.067032px;}
.lsc2{letter-spacing:0.067104px;}
.ls7e{letter-spacing:0.071820px;}
.ls4{letter-spacing:0.072144px;}
.ls4b{letter-spacing:0.072240px;}
.ls34{letter-spacing:0.075492px;}
.ls51{letter-spacing:0.076608px;}
.ls6{letter-spacing:0.078156px;}
.ls83{letter-spacing:0.078261px;}
.lsb1{letter-spacing:0.081396px;}
.lsc4{letter-spacing:0.083880px;}
.ls3{letter-spacing:0.084168px;}
.ls46{letter-spacing:0.084281px;}
.ls59{letter-spacing:0.086184px;}
.ls5e{letter-spacing:0.090043px;}
.ls11{letter-spacing:0.090180px;}
.ls49{letter-spacing:0.090301px;}
.ls5b{letter-spacing:0.090614px;}
.ls52{letter-spacing:0.090972px;}
.ls60{letter-spacing:0.091111px;}
.ls5f{letter-spacing:0.091525px;}
.ls82{letter-spacing:0.092268px;}
.lsc7{letter-spacing:0.095760px;}
.ls9{letter-spacing:0.096192px;}
.ls63{letter-spacing:0.096321px;}
.ls65{letter-spacing:0.098604px;}
.ls67{letter-spacing:0.100548px;}
.lsa{letter-spacing:0.102204px;}
.ls7d{letter-spacing:0.102341px;}
.ls68{letter-spacing:0.105336px;}
.ls8{letter-spacing:0.108216px;}
.ls6a{letter-spacing:0.108361px;}
.ls9f{letter-spacing:0.110124px;}
.ls12{letter-spacing:0.114228px;}
.ls61{letter-spacing:0.114381px;}
.ls9a{letter-spacing:0.114912px;}
.ls17{letter-spacing:0.120240px;}
.ls80{letter-spacing:0.121413px;}
.ls81{letter-spacing:0.124488px;}
.lse{letter-spacing:0.125820px;}
.ls37{letter-spacing:0.126252px;}
.ls56{letter-spacing:0.126421px;}
.lscb{letter-spacing:0.129276px;}
.ls99{letter-spacing:0.129360px;}
.ls93{letter-spacing:0.129960px;}
.ls3a{letter-spacing:0.132264px;}
.ls94{letter-spacing:0.134064px;}
.ls3d{letter-spacing:0.138276px;}
.ls62{letter-spacing:0.138461px;}
.ls2d{letter-spacing:0.150300px;}
.ls92{letter-spacing:0.153216px;}
.ls2e{letter-spacing:0.162324px;}
.ls20{letter-spacing:0.176148px;}
.lsc8{letter-spacing:0.177156px;}
.lsd5{letter-spacing:0.179280px;}
.ls39{letter-spacing:0.180360px;}
.ls38{letter-spacing:0.181944px;}
.lsc9{letter-spacing:0.201096px;}
.lsc5{letter-spacing:0.220248px;}
.ls7f{letter-spacing:0.224064px;}
.lsa0{letter-spacing:0.233280px;}
.lsb9{letter-spacing:0.578004px;}
.lsa5{letter-spacing:0.800401px;}
.ls9c{letter-spacing:2.108485px;}
.lscc{letter-spacing:2.970000px;}
.ls9b{letter-spacing:3.429624px;}
.lsca{letter-spacing:8.288028px;}
.ls2b{letter-spacing:10.172304px;}
.lsa2{letter-spacing:21.148596px;}
.ls15{letter-spacing:23.184000px;}
.lsc6{letter-spacing:32.409972px;}
.ls5c{letter-spacing:40.886640px;}
.ls3c{letter-spacing:40.887612px;}
.lsd{letter-spacing:41.117976px;}
.ls3f{letter-spacing:79.281600px;}
.ls40{letter-spacing:123.140083px;}
.ls44{letter-spacing:233.961250px;}
.lsb0{letter-spacing:235.762046px;}
.ls41{letter-spacing:299.460870px;}
.ls47{letter-spacing:320.567675px;}
.ls57{letter-spacing:610.650000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws204{word-spacing:-247.116789px;}
.ws14f{word-spacing:-47.880000px;}
.wsc5{word-spacing:-34.283595px;}
.wsc1{word-spacing:-32.989819px;}
.ws1{word-spacing:-21.146148px;}
.ws2{word-spacing:-18.000000px;}
.ws62{word-spacing:-15.180300px;}
.ws0{word-spacing:-15.102144px;}
.ws61{word-spacing:-15.066072px;}
.wsc2{word-spacing:-15.050100px;}
.ws24b{word-spacing:-15.032040px;}
.wsc0{word-spacing:-15.030000px;}
.wsc6{word-spacing:-15.024450px;}
.ws1c5{word-spacing:-14.995920px;}
.wsef{word-spacing:-14.971839px;}
.wsc4{word-spacing:-14.798700px;}
.ws205{word-spacing:-12.813241px;}
.ws208{word-spacing:-12.542000px;}
.ws243{word-spacing:-12.190248px;}
.ws247{word-spacing:-12.171096px;}
.ws194{word-spacing:-12.151944px;}
.ws24a{word-spacing:-12.070548px;}
.ws245{word-spacing:-12.060972px;}
.ws246{word-spacing:-12.046608px;}
.ws1c8{word-spacing:-11.979576px;}
.ws193{word-spacing:-11.970000px;}
.ws248{word-spacing:-11.883816px;}
.ws209{word-spacing:-11.756581px;}
.ws206{word-spacing:-11.710661px;}
.ws1c6{word-spacing:-11.641334px;}
.ws244{word-spacing:-11.505564px;}
.ws150{word-spacing:-11.205926px;}
.ws14d{word-spacing:-10.853660px;}
.wsf4{word-spacing:-9.743328px;}
.wsc3{word-spacing:-9.731664px;}
.wsf0{word-spacing:-9.720000px;}
.wsf3{word-spacing:-9.708336px;}
.wsf2{word-spacing:-8.405244px;}
.wsf1{word-spacing:-8.342496px;}
.ws249{word-spacing:-7.649280px;}
.ws1ad{word-spacing:-1.948347px;}
.ws211{word-spacing:-1.112294px;}
.ws20f{word-spacing:-0.510555px;}
.ws218{word-spacing:-0.296384px;}
.wsb2{word-spacing:-0.272916px;}
.ws264{word-spacing:-0.268128px;}
.ws1a9{word-spacing:-0.244188px;}
.ws26d{word-spacing:-0.225036px;}
.ws27e{word-spacing:-0.220248px;}
.ws16f{word-spacing:-0.215460px;}
.ws1c4{word-spacing:-0.205884px;}
.ws1cd{word-spacing:-0.201096px;}
.ws129{word-spacing:-0.196308px;}
.ws128{word-spacing:-0.191520px;}
.ws260{word-spacing:-0.186732px;}
.ws17a{word-spacing:-0.184536px;}
.wsf6{word-spacing:-0.181944px;}
.ws25a{word-spacing:-0.177156px;}
.ws215{word-spacing:-0.172368px;}
.wsa2{word-spacing:-0.167760px;}
.ws161{word-spacing:-0.167580px;}
.ws287{word-spacing:-0.162792px;}
.ws21a{word-spacing:-0.159372px;}
.ws126{word-spacing:-0.158004px;}
.ws270{word-spacing:-0.148428px;}
.ws6{word-spacing:-0.143856px;}
.ws295{word-spacing:-0.142596px;}
.ws1af{word-spacing:-0.134064px;}
.ws5{word-spacing:-0.131868px;}
.wsb3{word-spacing:-0.129276px;}
.ws3e{word-spacing:-0.125820px;}
.ws1ac{word-spacing:-0.124488px;}
.wsd7{word-spacing:-0.119700px;}
.wse4{word-spacing:-0.114912px;}
.ws20e{word-spacing:-0.110124px;}
.wse5{word-spacing:-0.090972px;}
.ws163{word-spacing:-0.076182px;}
.ws169{word-spacing:-0.062244px;}
.ws83{word-spacing:-0.057600px;}
.ws100{word-spacing:-0.057456px;}
.wsc9{word-spacing:-0.042084px;}
.ws1e5{word-spacing:-0.036120px;}
.wse1{word-spacing:-0.030060px;}
.ws46{word-spacing:-0.028800px;}
.ws33{word-spacing:-0.024048px;}
.ws12a{word-spacing:-0.021600px;}
.ws15e{word-spacing:-0.018060px;}
.ws82{word-spacing:-0.018036px;}
.ws16b{word-spacing:-0.013490px;}
.wseb{word-spacing:-0.012040px;}
.wsd8{word-spacing:-0.007200px;}
.ws18f{word-spacing:-0.006020px;}
.ws93{word-spacing:-0.006012px;}
.ws3{word-spacing:-0.004788px;}
.wsc{word-spacing:0.000000px;}
.wsb{word-spacing:0.006012px;}
.ws179{word-spacing:0.006020px;}
.ws7{word-spacing:0.007200px;}
.ws63{word-spacing:0.009576px;}
.ws24{word-spacing:0.012024px;}
.ws4{word-spacing:0.014364px;}
.ws58{word-spacing:0.018036px;}
.wsfc{word-spacing:0.018060px;}
.ws135{word-spacing:0.024080px;}
.wsa{word-spacing:0.030060px;}
.wse8{word-spacing:0.030100px;}
.ws12f{word-spacing:0.036120px;}
.wsee{word-spacing:0.042140px;}
.ws141{word-spacing:0.048160px;}
.wsb5{word-spacing:0.054108px;}
.ws173{word-spacing:0.054180px;}
.ws123{word-spacing:0.057456px;}
.ws22{word-spacing:0.060120px;}
.ws8{word-spacing:0.066132px;}
.ws121{word-spacing:0.067032px;}
.wsd6{word-spacing:0.072144px;}
.ws107{word-spacing:0.072240px;}
.ws9{word-spacing:0.078156px;}
.ws116{word-spacing:0.084281px;}
.ws45{word-spacing:0.090180px;}
.ws113{word-spacing:0.090301px;}
.ws122{word-spacing:0.090972px;}
.ws2a5{word-spacing:0.102341px;}
.ws3d{word-spacing:0.108216px;}
.ws49{word-spacing:0.114228px;}
.ws1f2{word-spacing:0.126114px;}
.ws1b2{word-spacing:0.168561px;}
.ws214{word-spacing:0.220248px;}
.ws26f{word-spacing:0.234612px;}
.ws118{word-spacing:0.313042px;}
.ws156{word-spacing:0.325082px;}
.wsba{word-spacing:0.348696px;}
.wsf7{word-spacing:0.361202px;}
.ws183{word-spacing:0.367222px;}
.ws15b{word-spacing:0.379263px;}
.ws1a3{word-spacing:0.391303px;}
.wsf8{word-spacing:0.421403px;}
.ws172{word-spacing:0.439463px;}
.wsd2{word-spacing:0.444888px;}
.ws2a8{word-spacing:0.451503px;}
.ws1f1{word-spacing:0.456736px;}
.ws24c{word-spacing:0.463543px;}
.ws11e{word-spacing:0.499663px;}
.ws21b{word-spacing:0.511703px;}
.ws25c{word-spacing:0.531468px;}
.ws290{word-spacing:0.541044px;}
.ws263{word-spacing:0.555408px;}
.ws213{word-spacing:0.622440px;}
.ws291{word-spacing:0.641592px;}
.ws25d{word-spacing:0.651168px;}
.ws26e{word-spacing:0.665532px;}
.ws148{word-spacing:0.680265px;}
.wsd5{word-spacing:0.703404px;}
.ws296{word-spacing:0.709416px;}
.ws297{word-spacing:0.710365px;}
.ws117{word-spacing:0.728425px;}
.wsb8{word-spacing:0.739476px;}
.ws110{word-spacing:0.740465px;}
.ws147{word-spacing:0.746485px;}
.ws146{word-spacing:0.752505px;}
.ws1fc{word-spacing:0.776585px;}
.ws199{word-spacing:0.782605px;}
.ws1ec{word-spacing:0.790020px;}
.ws19a{word-spacing:0.806685px;}
.ws139{word-spacing:0.818725px;}
.ws210{word-spacing:0.825057px;}
.ws1f0{word-spacing:0.831911px;}
.ws294{word-spacing:0.933660px;}
.ws25b{word-spacing:1.010268px;}
.wsa8{word-spacing:1.070136px;}
.ws1d5{word-spacing:1.077587px;}
.ws84{word-spacing:1.088172px;}
.ws1a0{word-spacing:1.101667px;}
.ws29a{word-spacing:1.113707px;}
.ws217{word-spacing:1.117357px;}
.ws1b0{word-spacing:1.137788px;}
.ws13{word-spacing:1.142280px;}
.ws299{word-spacing:1.161868px;}
.ws221{word-spacing:1.179928px;}
.ws32{word-spacing:1.238472px;}
.ws292{word-spacing:1.259244px;}
.ws293{word-spacing:1.264032px;}
.ws16a{word-spacing:1.353525px;}
.ws283{word-spacing:1.407672px;}
.ws74{word-spacing:1.412820px;}
.ws2c{word-spacing:1.436868px;}
.ws133{word-spacing:1.444810px;}
.ws13c{word-spacing:1.456850px;}
.ws134{word-spacing:1.468890px;}
.ws165{word-spacing:1.471833px;}
.ws164{word-spacing:1.475598px;}
.ws216{word-spacing:1.476966px;}
.ws1e1{word-spacing:1.486950px;}
.ws1ef{word-spacing:1.496582px;}
.ws12{word-spacing:1.503000px;}
.wsf9{word-spacing:1.523070px;}
.ws220{word-spacing:1.529090px;}
.wsfa{word-spacing:1.535110px;}
.ws282{word-spacing:1.618344px;}
.ws289{word-spacing:1.623132px;}
.ws162{word-spacing:1.671517px;}
.ws28a{word-spacing:1.733256px;}
.ws6f{word-spacing:1.803600px;}
.ws86{word-spacing:1.821636px;}
.ws1d6{word-spacing:1.836112px;}
.ws19d{word-spacing:1.842132px;}
.ws85{word-spacing:1.845684px;}
.ws21c{word-spacing:1.854172px;}
.ws11a{word-spacing:1.878252px;}
.ws12c{word-spacing:1.896313px;}
.wsda{word-spacing:1.947888px;}
.ws167{word-spacing:1.977444px;}
.ws288{word-spacing:2.116296px;}
.ws3f{word-spacing:2.152296px;}
.ws119{word-spacing:2.155174px;}
.ws9f{word-spacing:2.158308px;}
.ws1e0{word-spacing:2.161194px;}
.ws108{word-spacing:2.167214px;}
.ws114{word-spacing:2.173234px;}
.ws1d{word-spacing:2.176344px;}
.wsf{word-spacing:2.182356px;}
.ws44{word-spacing:2.194380px;}
.ws188{word-spacing:2.197315px;}
.ws15c{word-spacing:2.215375px;}
.wse3{word-spacing:2.224440px;}
.ws1f4{word-spacing:2.312604px;}
.ws27b{word-spacing:2.336544px;}
.ws166{word-spacing:2.346120px;}
.ws274{word-spacing:2.355696px;}
.ws8b{word-spacing:2.513016px;}
.ws105{word-spacing:2.522397px;}
.wse2{word-spacing:2.549088px;}
.ws228{word-spacing:2.558517px;}
.ws21f{word-spacing:2.564537px;}
.ws57{word-spacing:2.573136px;}
.ws1bd{word-spacing:2.576577px;}
.ws298{word-spacing:2.606677px;}
.wsb7{word-spacing:2.615220px;}
.ws67{word-spacing:2.633256px;}
.ws27c{word-spacing:2.657340px;}
.ws12b{word-spacing:2.684938px;}
.ws27d{word-spacing:2.686068px;}
.ws1be{word-spacing:2.702998px;}
.ws273{word-spacing:2.705220px;}
.ws35{word-spacing:2.711412px;}
.wsbf{word-spacing:2.849688px;}
.ws51{word-spacing:2.861712px;}
.wsad{word-spacing:2.867724px;}
.ws23{word-spacing:2.873736px;}
.wsb6{word-spacing:2.885760px;}
.ws1bb{word-spacing:2.901659px;}
.ws13a{word-spacing:2.919719px;}
.ws66{word-spacing:2.927844px;}
.ws1d1{word-spacing:2.931759px;}
.ws2a4{word-spacing:2.955840px;}
.ws56{word-spacing:2.963916px;}
.ws34{word-spacing:2.975940px;}
.wse7{word-spacing:3.010020px;}
.ws4d{word-spacing:3.036060px;}
.ws268{word-spacing:3.093048px;}
.ws276{word-spacing:3.121776px;}
.ws275{word-spacing:3.131352px;}
.wsbe{word-spacing:3.168324px;}
.ws8f{word-spacing:3.228444px;}
.ws159{word-spacing:3.244802px;}
.ws3a{word-spacing:3.246480px;}
.ws11b{word-spacing:3.262862px;}
.ws17{word-spacing:3.264516px;}
.ws231{word-spacing:3.305002px;}
.ws1d0{word-spacing:3.341122px;}
.wsbd{word-spacing:3.511008px;}
.wsdd{word-spacing:3.589164px;}
.wsbc{word-spacing:3.595176px;}
.ws73{word-spacing:3.607200px;}
.wse{word-spacing:3.613212px;}
.ws145{word-spacing:3.624064px;}
.wsd{word-spacing:3.625236px;}
.ws6b{word-spacing:3.661308px;}
.wscb{word-spacing:3.667320px;}
.wscd{word-spacing:3.679344px;}
.wscc{word-spacing:3.685356px;}
.ws42{word-spacing:3.691368px;}
.ws279{word-spacing:3.796884px;}
.ws272{word-spacing:3.835188px;}
.ws14{word-spacing:3.943872px;}
.ws175{word-spacing:3.955166px;}
.ws158{word-spacing:3.979246px;}
.ws19c{word-spacing:3.985266px;}
.ws69{word-spacing:3.985956px;}
.ws1a2{word-spacing:3.991287px;}
.ws14b{word-spacing:3.997307px;}
.ws1b9{word-spacing:4.009347px;}
.ws178{word-spacing:4.027407px;}
.ws1fb{word-spacing:4.033427px;}
.ws22e{word-spacing:4.045467px;}
.ws99{word-spacing:4.052088px;}
.ws41{word-spacing:4.070124px;}
.ws259{word-spacing:4.074588px;}
.ws22d{word-spacing:4.117707px;}
.ws258{word-spacing:4.132044px;}
.ws278{word-spacing:4.165560px;}
.ws266{word-spacing:4.194288px;}
.ws1d3{word-spacing:4.274228px;}
.ws14c{word-spacing:4.340449px;}
.ws71{word-spacing:4.358700px;}
.ws103{word-spacing:4.364529px;}
.ws1d4{word-spacing:4.376569px;}
.ws157{word-spacing:4.394629px;}
.ws75{word-spacing:4.394772px;}
.ws72{word-spacing:4.442868px;}
.ws23f{word-spacing:4.460850px;}
.ws59{word-spacing:4.466916px;}
.ws102{word-spacing:4.478910px;}
.ws257{word-spacing:4.510296px;}
.ws265{word-spacing:4.629996px;}
.wsa1{word-spacing:4.683348px;}
.ws1da{word-spacing:4.707671px;}
.ws140{word-spacing:4.713691px;}
.ws235{word-spacing:4.719711px;}
.wscf{word-spacing:4.725432px;}
.ws20a{word-spacing:4.725731px;}
.ws101{word-spacing:4.737771px;}
.ws22b{word-spacing:4.803992px;}
.ws28f{word-spacing:4.893336px;}
.wsbb{word-spacing:5.020020px;}
.ws7b{word-spacing:5.032044px;}
.ws47{word-spacing:5.044068px;}
.ws10e{word-spacing:5.044794px;}
.ws77{word-spacing:5.056092px;}
.ws132{word-spacing:5.056834px;}
.ws1a6{word-spacing:5.074894px;}
.wsfb{word-spacing:5.080914px;}
.ws10f{word-spacing:5.086934px;}
.ws18b{word-spacing:5.104994px;}
.wsce{word-spacing:5.110200px;}
.ws17c{word-spacing:5.123054px;}
.ws22a{word-spacing:5.141114px;}
.ws7d{word-spacing:5.200380px;}
.ws28e{word-spacing:5.209344px;}
.wsf5{word-spacing:5.233284px;}
.ws89{word-spacing:5.398776px;}
.ws21e{word-spacing:5.418036px;}
.ws15a{word-spacing:5.424056px;}
.ws23e{word-spacing:5.430076px;}
.ws30{word-spacing:5.458896px;}
.ws182{word-spacing:5.466196px;}
.ws1a5{word-spacing:5.472216px;}
.ws1e4{word-spacing:5.478236px;}
.ws1e7{word-spacing:5.496297px;}
.ws1c9{word-spacing:5.592384px;}
.ws3c{word-spacing:5.741460px;}
.wsd0{word-spacing:5.801580px;}
.ws237{word-spacing:5.815359px;}
.ws1a4{word-spacing:5.827399px;}
.wsb1{word-spacing:5.843664px;}
.ws17e{word-spacing:5.905659px;}
.ws1ab{word-spacing:5.937120px;}
.ws1aa{word-spacing:5.975424px;}
.wsb0{word-spacing:6.102180px;}
.ws2f{word-spacing:6.126228px;}
.ws136{word-spacing:6.140441px;}
.ws137{word-spacing:6.146461px;}
.ws1ea{word-spacing:6.152481px;}
.wsc8{word-spacing:6.168312px;}
.ws1f5{word-spacing:6.176561px;}
.ws12d{word-spacing:6.182581px;}
.ws28b{word-spacing:6.324948px;}
.wsaf{word-spacing:6.444864px;}
.ws28c{word-spacing:6.449436px;}
.ws186{word-spacing:6.501643px;}
.ws6d{word-spacing:6.504984px;}
.ws198{word-spacing:6.525723px;}
.ws187{word-spacing:6.628064px;}
.ws10{word-spacing:6.649272px;}
.ws1b{word-spacing:6.829632px;}
.wsae{word-spacing:6.841656px;}
.ws4b{word-spacing:6.847668px;}
.ws24e{word-spacing:6.856826px;}
.ws241{word-spacing:6.880906px;}
.ws171{word-spacing:6.886926px;}
.ws2ac{word-spacing:6.892946px;}
.ws13f{word-spacing:6.947126px;}
.ws19f{word-spacing:7.007327px;}
.ws1eb{word-spacing:7.047936px;}
.ws94{word-spacing:7.178328px;}
.ws18{word-spacing:7.196364px;}
.ws9a{word-spacing:7.214400px;}
.ws1dd{word-spacing:7.218028px;}
.ws19b{word-spacing:7.224048px;}
.ws1b3{word-spacing:7.230068px;}
.ws2a6{word-spacing:7.232436px;}
.ws23c{word-spacing:7.236088px;}
.ws2a7{word-spacing:7.254148px;}
.ws18c{word-spacing:7.362509px;}
.ws13e{word-spacing:7.368529px;}
.ws252{word-spacing:7.603311px;}
.ws192{word-spacing:7.621371px;}
.ws1df{word-spacing:7.639431px;}
.ws222{word-spacing:7.651471px;}
.ws68{word-spacing:7.725420px;}
.ws2b{word-spacing:7.917804px;}
.ws2a0{word-spacing:7.946453px;}
.ws1e8{word-spacing:7.958493px;}
.ws152{word-spacing:7.982573px;}
.ws240{word-spacing:8.000633px;}
.ws21{word-spacing:8.001972px;}
.ws4c{word-spacing:8.068104px;}
.ws153{word-spacing:8.096954px;}
.ws1a7{word-spacing:8.106084px;}
.ws1ae{word-spacing:8.115660px;}
.ws9c{word-spacing:8.278524px;}
.ws6c{word-spacing:8.284536px;}
.ws1e2{word-spacing:8.301635px;}
.ws149{word-spacing:8.307655px;}
.ws1e3{word-spacing:8.313675px;}
.ws20{word-spacing:8.314596px;}
.ws203{word-spacing:8.331735px;}
.ws5b{word-spacing:8.609184px;}
.wsca{word-spacing:8.633232px;}
.ws18a{word-spacing:8.662838px;}
.ws2a3{word-spacing:8.674878px;}
.wsa6{word-spacing:8.705376px;}
.ws37{word-spacing:8.711388px;}
.ws154{word-spacing:8.717018px;}
.wsa7{word-spacing:8.723412px;}
.ws189{word-spacing:8.729058px;}
.ws155{word-spacing:8.771198px;}
.ws286{word-spacing:8.824284px;}
.ws7a{word-spacing:8.981928px;}
.ws7c{word-spacing:8.987940px;}
.ws95{word-spacing:8.999964px;}
.ws5a{word-spacing:9.024012px;}
.ws236{word-spacing:9.024040px;}
.ws81{word-spacing:9.042048px;}
.ws115{word-spacing:9.048120px;}
.ws21d{word-spacing:9.072200px;}
.ws1f{word-spacing:9.090144px;}
.ws16e{word-spacing:9.169020px;}
.wse0{word-spacing:9.174312px;}
.ws285{word-spacing:9.192960px;}
.ws284{word-spacing:9.303084px;}
.ws79{word-spacing:9.342648px;}
.ws54{word-spacing:9.354672px;}
.wsed{word-spacing:9.355142px;}
.wsd9{word-spacing:9.378720px;}
.ws96{word-spacing:9.384732px;}
.ws196{word-spacing:9.391262px;}
.wsdf{word-spacing:9.420804px;}
.ws190{word-spacing:9.433403px;}
.ws2a{word-spacing:9.444852px;}
.ws1e{word-spacing:9.456876px;}
.ws31{word-spacing:9.516996px;}
.ws16d{word-spacing:9.523332px;}
.ws26b{word-spacing:9.542484px;}
.ws26c{word-spacing:9.681336px;}
.ws8a{word-spacing:9.709380px;}
.ws29{word-spacing:9.727416px;}
.ws181{word-spacing:9.740425px;}
.ws200{word-spacing:9.746445px;}
.ws22f{word-spacing:9.752465px;}
.ws97{word-spacing:9.769500px;}
.ws170{word-spacing:9.794605px;}
.ws29d{word-spacing:9.830725px;}
.ws280{word-spacing:9.887220px;}
.ws26a{word-spacing:9.920736px;}
.ws27a{word-spacing:10.011708px;}
.ws55{word-spacing:10.058076px;}
.ws9b{word-spacing:10.076112px;}
.wsb4{word-spacing:10.088136px;}
.ws224{word-spacing:10.131727px;}
.ws19e{word-spacing:10.155807px;}
.ws269{word-spacing:10.322928px;}
.ws281{word-spacing:10.356444px;}
.ws27f{word-spacing:10.375596px;}
.ws13d{word-spacing:10.426709px;}
.ws78{word-spacing:10.442844px;}
.ws1a{word-spacing:10.448856px;}
.ws1b7{word-spacing:10.468850px;}
.ws1f8{word-spacing:10.474870px;}
.ws1d2{word-spacing:10.589250px;}
.ws1d8{word-spacing:10.601290px;}
.ws25f{word-spacing:10.643724px;}
.ws25e{word-spacing:10.739484px;}
.ws50{word-spacing:10.785528px;}
.ws88{word-spacing:10.791540px;}
.wsdc{word-spacing:10.809576px;}
.ws19{word-spacing:10.821600px;}
.ws23b{word-spacing:10.824032px;}
.ws1de{word-spacing:10.836072px;}
.ws1cf{word-spacing:10.842092px;}
.ws177{word-spacing:10.854132px;}
.ws1d7{word-spacing:10.878212px;}
.ws1cc{word-spacing:11.065068px;}
.wsa0{word-spacing:11.146248px;}
.ws11{word-spacing:11.164284px;}
.ws8c{word-spacing:11.182320px;}
.ws109{word-spacing:11.185234px;}
.ws1e9{word-spacing:11.203294px;}
.ws2d{word-spacing:11.206368px;}
.ws52{word-spacing:11.531016px;}
.ws112{word-spacing:11.576537px;}
.ws2a2{word-spacing:11.636737px;}
.ws15f{word-spacing:11.716236px;}
.ws202{word-spacing:11.895599px;}
.ws239{word-spacing:11.901619px;}
.ws2a1{word-spacing:11.913659px;}
.ws1fd{word-spacing:11.925699px;}
.ws111{word-spacing:11.967840px;}
.ws1ff{word-spacing:12.034060px;}
.ws1c3{word-spacing:12.128004px;}
.ws43{word-spacing:12.228408px;}
.ws142{word-spacing:12.280882px;}
.ws233{word-spacing:12.317002px;}
.ws1fe{word-spacing:12.335062px;}
.ws1c2{word-spacing:12.357828px;}
.ws234{word-spacing:12.377202px;}
.ws256{word-spacing:12.549348px;}
.ws138{word-spacing:12.599944px;}
.ws18e{word-spacing:12.611984px;}
.ws27{word-spacing:12.619188px;}
.ws253{word-spacing:12.624024px;}
.ws130{word-spacing:12.636064px;}
.ws176{word-spacing:12.642084px;}
.ws1b4{word-spacing:12.654124px;}
.ws254{word-spacing:12.690244px;}
.ws1c1{word-spacing:12.827052px;}
.ws6e{word-spacing:12.949848px;}
.ws17d{word-spacing:12.955126px;}
.ws1e6{word-spacing:12.961146px;}
.wse6{word-spacing:12.973896px;}
.ws12e{word-spacing:12.979206px;}
.ws104{word-spacing:12.997266px;}
.ws4e{word-spacing:13.003956px;}
.ws144{word-spacing:13.027367px;}
.ws22c{word-spacing:13.111647px;}
.ws191{word-spacing:13.328369px;}
.wsd3{word-spacing:13.334616px;}
.ws143{word-spacing:13.388569px;}
.ws6a{word-spacing:13.388724px;}
.ws1ee{word-spacing:13.502160px;}
.ws219{word-spacing:13.516524px;}
.ws262{word-spacing:13.545252px;}
.ws261{word-spacing:13.597920px;}
.ws131{word-spacing:13.683551px;}
.ws20b{word-spacing:13.713651px;}
.ws2a9{word-spacing:13.719671px;}
.ws91{word-spacing:13.725396px;}
.ws90{word-spacing:13.773492px;}
.ws184{word-spacing:13.834052px;}
.ws24f{word-spacing:13.840072px;}
.wsff{word-spacing:13.861260px;}
.ws267{word-spacing:13.866048px;}
.ws5c{word-spacing:14.019984px;}
.ws5d{word-spacing:14.025996px;}
.ws1dc{word-spacing:14.074854px;}
.ws1ce{word-spacing:14.080874px;}
.ws120{word-spacing:14.086894px;}
.ws65{word-spacing:14.218380px;}
.ws8d{word-spacing:14.380704px;}
.wsb9{word-spacing:14.386716px;}
.ws1a1{word-spacing:14.448096px;}
.ws242{word-spacing:14.454116px;}
.ws11c{word-spacing:14.460136px;}
.ws1ed{word-spacing:14.469336px;}
.ws11d{word-spacing:14.514316px;}
.ws1bf{word-spacing:14.761138px;}
.ws9d{word-spacing:14.765472px;}
.ws11f{word-spacing:14.767158px;}
.ws9e{word-spacing:14.795532px;}
.ws226{word-spacing:14.857459px;}
.ws60{word-spacing:14.873688px;}
.ws5f{word-spacing:14.933808px;}
.wsdb{word-spacing:15.114168px;}
.ws48{word-spacing:15.120180px;}
.ws4a{word-spacing:15.132204px;}
.ws1db{word-spacing:15.194581px;}
.ws5e{word-spacing:15.228396px;}
.ws18d{word-spacing:15.513643px;}
.ws40{word-spacing:15.631200px;}
.ws76{word-spacing:15.835608px;}
.ws1f7{word-spacing:15.838725px;}
.ws14a{word-spacing:15.892906px;}
.ws197{word-spacing:15.898926px;}
.ws2e{word-spacing:15.907752px;}
.wsa9{word-spacing:16.190316px;}
.ws2ad{word-spacing:16.224008px;}
.ws8e{word-spacing:16.226388px;}
.ws29f{word-spacing:16.278188px;}
.ws29e{word-spacing:16.304544px;}
.wsea{word-spacing:16.567150px;}
.ws195{word-spacing:16.573170px;}
.ws201{word-spacing:16.597250px;}
.ws251{word-spacing:16.603270px;}
.ws17b{word-spacing:16.633371px;}
.ws3b{word-spacing:16.671276px;}
.ws38{word-spacing:16.917768px;}
.ws92{word-spacing:16.923780px;}
.ws250{word-spacing:16.982533px;}
.ws39{word-spacing:16.983900px;}
.ws227{word-spacing:17.018653px;}
.ws2aa{word-spacing:17.072833px;}
.ws1b5{word-spacing:17.301595px;}
.ws10a{word-spacing:17.307615px;}
.ws232{word-spacing:17.313635px;}
.ws10b{word-spacing:17.349755px;}
.wsa5{word-spacing:17.386704px;}
.ws7e{word-spacing:17.410752px;}
.ws1c{word-spacing:17.446824px;}
.ws16{word-spacing:17.675280px;}
.ws106{word-spacing:17.680857px;}
.ws1b8{word-spacing:17.716978px;}
.wsa4{word-spacing:17.747424px;}
.ws28d{word-spacing:17.955000px;}
.ws64{word-spacing:18.011952px;}
.ws26{word-spacing:18.042012px;}
.ws1fa{word-spacing:18.060120px;}
.ws15{word-spacing:18.078084px;}
.ws25{word-spacing:18.408744px;}
.ws225{word-spacing:18.427342px;}
.ws1b1{word-spacing:18.722324px;}
.wsde{word-spacing:19.076076px;}
.wsfe{word-spacing:19.290852px;}
.wsfd{word-spacing:19.348308px;}
.wsa3{word-spacing:19.791504px;}
.ws238{word-spacing:19.830012px;}
.ws229{word-spacing:19.836032px;}
.ws185{word-spacing:19.848072px;}
.ws1ba{word-spacing:19.854092px;}
.wsab{word-spacing:20.134188px;}
.ws4f{word-spacing:20.146212px;}
.ws1bc{word-spacing:20.161114px;}
.ws80{word-spacing:20.218356px;}
.ws223{word-spacing:20.311615px;}
.ws36{word-spacing:20.524968px;}
.ws180{word-spacing:20.600577px;}
.wsaa{word-spacing:20.621160px;}
.ws1f3{word-spacing:20.741616px;}
.ws151{word-spacing:20.959398px;}
.ws53{word-spacing:21.252420px;}
.ws1f9{word-spacing:21.298902px;}
.ws29c{word-spacing:21.611944px;}
.ws98{word-spacing:21.985884px;}
.ws29b{word-spacing:22.057427px;}
.ws70{word-spacing:22.118148px;}
.ws277{word-spacing:22.168440px;}
.ws15d{word-spacing:22.316288px;}
.ws10d{word-spacing:22.719631px;}
.ws1a8{word-spacing:22.881852px;}
.wsac{word-spacing:23.031972px;}
.ws212{word-spacing:23.236164px;}
.ws10c{word-spacing:23.423976px;}
.ws2af{word-spacing:23.478156px;}
.ws87{word-spacing:23.747400px;}
.ws1d9{word-spacing:24.212601px;}
.ws2ab{word-spacing:24.519623px;}
.ws23a{word-spacing:24.646044px;}
.ws1f6{word-spacing:25.229988px;}
.wsd1{word-spacing:25.563024px;}
.ws2ae{word-spacing:25.651390px;}
.ws127{word-spacing:25.745076px;}
.ws14e{word-spacing:26.040718px;}
.ws174{word-spacing:26.307575px;}
.ws16c{word-spacing:26.841528px;}
.ws271{word-spacing:27.200628px;}
.ws20d{word-spacing:27.234144px;}
.ws20c{word-spacing:27.574092px;}
.wse9{word-spacing:27.800545px;}
.ws7f{word-spacing:27.889668px;}
.wsec{word-spacing:28.113587px;}
.ws28{word-spacing:28.430748px;}
.ws168{word-spacing:29.360016px;}
.ws24d{word-spacing:30.256721px;}
.ws23d{word-spacing:30.322941px;}
.ws255{word-spacing:30.629964px;}
.ws17f{word-spacing:30.654044px;}
.ws230{word-spacing:31.707551px;}
.ws1cb{word-spacing:33.334056px;}
.ws1ca{word-spacing:33.597396px;}
.ws1b6{word-spacing:34.223927px;}
.ws160{word-spacing:37.245852px;}
.wsd4{word-spacing:37.947744px;}
.ws1c0{word-spacing:48.823236px;}
.ws13b{word-spacing:59.074653px;}
.ws1c7{word-spacing:109.036061px;}
.wsc7{word-spacing:162.372535px;}
.ws207{word-spacing:218.834944px;}
.ws125{word-spacing:267.127308px;}
.ws124{word-spacing:280.447524px;}
._f{margin-left:-292.135406px;}
._29{margin-left:-236.158236px;}
._9{margin-left:-207.589039px;}
._d{margin-left:-180.359508px;}
._c{margin-left:-110.345628px;}
._a{margin-left:-94.020985px;}
._e{margin-left:-82.748661px;}
._b{margin-left:-81.724341px;}
._1a{margin-left:-30.959208px;}
._8{margin-left:-25.785468px;}
._2d{margin-left:-24.116280px;}
._4{margin-left:-23.037984px;}
._19{margin-left:-17.638992px;}
._1e{margin-left:-13.316328px;}
._1b{margin-left:-10.543176px;}
._1f{margin-left:-4.063527px;}
._6{margin-left:-2.879748px;}
._1{margin-left:-1.244484px;}
._2{width:1.034064px;}
._15{width:2.299655px;}
._1d{width:4.667203px;}
._1c{width:6.360415px;}
._10{width:9.371538px;}
._14{width:11.247012px;}
._16{width:13.773852px;}
._22{width:18.826416px;}
._2c{width:22.005648px;}
._5{width:24.225348px;}
._11{width:25.285428px;}
._7{width:30.686292px;}
._26{width:33.601392px;}
._24{width:36.143927px;}
._25{width:49.046161px;}
._23{width:54.129381px;}
._17{width:121.318344px;}
._28{width:122.942694px;}
._18{width:135.368352px;}
._27{width:140.352786px;}
._2b{width:189.360612px;}
._0{width:215.996256px;}
._2a{width:228.531545px;}
._21{width:301.018423px;}
._12{width:612.040274px;}
._13{width:614.155319px;}
._20{width:735.398607px;}
._3{width:1677.427920px;}
.fc2{color:rgb(255,1,1);}
.fc1{color:rgb(1,1,255);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:29.880000px;}
.fs18{font-size:34.084800px;}
.fs8{font-size:34.530600px;}
.fsb{font-size:35.056200px;}
.fs7{font-size:35.116800px;}
.fse{font-size:36.000000px;}
.fs12{font-size:37.642800px;}
.fs5{font-size:38.880000px;}
.fs19{font-size:40.844400px;}
.fs1b{font-size:42.810600px;}
.fs17{font-size:42.882000px;}
.fs15{font-size:44.482800px;}
.fs11{font-size:44.812800px;}
.fs13{font-size:44.967600px;}
.fs16{font-size:47.361000px;}
.fs0{font-size:47.880000px;}
.fs1a{font-size:48.571800px;}
.fs1c{font-size:49.397400px;}
.fs14{font-size:50.602976px;}
.fs9{font-size:59.194800px;}
.fsc{font-size:60.097800px;}
.fs3{font-size:60.120000px;}
.fs6{font-size:60.200400px;}
.fsa{font-size:62.561304px;}
.fsd{font-size:63.515321px;}
.fs10{font-size:63.539045px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.fs1{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y207{bottom:1.530450px;}
.y206{bottom:1.710450px;}
.y1bf{bottom:2.430450px;}
.yd7{bottom:3.240450px;}
.yf1{bottom:123.600209px;}
.yaf{bottom:124.135671px;}
.y8a{bottom:124.219557px;}
.yc9{bottom:124.769919px;}
.y2b2{bottom:125.309322px;}
.y2d{bottom:125.842521px;}
.y2e8{bottom:126.211384px;}
.y54{bottom:127.097778px;}
.y17e{bottom:138.810477px;}
.y14b{bottom:139.980842px;}
.yf0{bottom:141.150130px;}
.yae{bottom:141.686202px;}
.y89{bottom:141.770088px;}
.yc8{bottom:142.320450px;}
.y1a0{bottom:143.310450px;}
.y2c{bottom:143.393052px;}
.y2e7{bottom:143.761306px;}
.y2b1{bottom:143.939430px;}
.y111{bottom:144.210607px;}
.y53{bottom:144.648309px;}
.y17d{bottom:152.939865px;}
.y1bc{bottom:153.301062px;}
.y1db{bottom:155.459280px;}
.y14a{bottom:157.530764px;}
.y2b0{bottom:158.070015px;}
.yef{bottom:158.700052px;}
.yad{bottom:159.236733px;}
.y88{bottom:159.320619px;}
.yc7{bottom:159.870981px;}
.y2b{bottom:160.943583px;}
.y203{bottom:160.952530px;}
.y2e6{bottom:161.311227px;}
.y110{bottom:161.760528px;}
.y52{bottom:162.198840px;}
.y233{bottom:162.212091px;}
.y19f{bottom:163.830450px;}
.y17c{bottom:167.070450px;}
.y1bb{bottom:167.430450px;}
.y1da{bottom:169.589865px;}
.y2af{bottom:172.200600px;}
.y149{bottom:175.080685px;}
.yac{bottom:176.787264px;}
.y87{bottom:176.871150px;}
.y2a{bottom:178.494114px;}
.y202{bottom:178.502452px;}
.y2e5{bottom:178.861149px;}
.y10f{bottom:179.310350px;}
.y51{bottom:179.749371px;}
.y232{bottom:179.762013px;}
.y257{bottom:180.210477px;}
.y1d9{bottom:182.190450px;}
.y1d8{bottom:183.720450px;}
.y1d7{bottom:183.720693px;}
.y289{bottom:183.901541px;}
.yeb{bottom:185.160913px;}
.y2ae{bottom:186.329109px;}
.yc6{bottom:187.408857px;}
.y17b{bottom:187.590450px;}
.y1ba{bottom:187.950600px;}
.yed{bottom:188.940450px;}
.yea{bottom:188.940911px;}
.y148{bottom:192.630607px;}
.yab{bottom:194.337795px;}
.y256{bottom:194.339865px;}
.y175{bottom:194.610471px;}
.y29{bottom:196.044645px;}
.y201{bottom:196.052374px;}
.y2e4{bottom:196.411070px;}
.ye8{bottom:196.860450px;}
.y50{bottom:197.299902px;}
.y1d6{bottom:198.660450px;}
.ye9{bottom:200.640450px;}
.y288{bottom:201.451462px;}
.y86{bottom:203.421645px;}
.yee{bottom:204.330450px;}
.yc5{bottom:204.959388px;}
.y231{bottom:206.311894px;}
.y10e{bottom:206.850528px;}
.y255{bottom:208.470450px;}
.y2ad{bottom:209.458740px;}
.yec{bottom:210.000450px;}
.y147{bottom:210.180528px;}
.yaa{bottom:211.888326px;}
.y174{bottom:211.890396px;}
.y200{bottom:213.602295px;}
.y2e3{bottom:213.960992px;}
.y4f{bottom:214.850433px;}
.y287{bottom:219.001384px;}
.y1d5{bottom:219.180450px;}
.y85{bottom:220.972176px;}
.yc4{bottom:222.509919px;}
.y28{bottom:222.595140px;}
.y2ac{bottom:223.588128px;}
.y230{bottom:223.861816px;}
.y10d{bottom:224.400678px;}
.y146{bottom:227.730545px;}
.y16d{bottom:228.990450px;}
.ya9{bottom:229.438857px;}
.y1ff{bottom:231.152217px;}
.y2e2{bottom:231.510914px;}
.y4e{bottom:232.400964px;}
.y286{bottom:236.551306px;}
.ye7{bottom:236.820229px;}
.y2ab{bottom:237.718713px;}
.y84{bottom:238.522707px;}
.y27{bottom:240.145671px;}
.y22f{bottom:241.411738px;}
.y10c{bottom:241.950586px;}
.y17a{bottom:243.390450px;}
.y145{bottom:246.270764px;}
.ya8{bottom:246.989388px;}
.y1fe{bottom:248.702138px;}
.y249{bottom:249.060811px;}
.y2e1{bottom:249.060835px;}
.yc3{bottom:250.049388px;}
.y16e{bottom:253.920487px;}
.y285{bottom:254.101227px;}
.ye6{bottom:254.370150px;}
.y83{bottom:256.073238px;}
.y26{bottom:257.696202px;}
.y4d{bottom:258.951459px;}
.y22e{bottom:258.961659px;}
.y179{bottom:259.140450px;}
.y2aa{bottom:260.848344px;}
.y248{bottom:263.190450px;}
.y144{bottom:263.820685px;}
.ya7{bottom:264.539919px;}
.y1fd{bottom:266.252060px;}
.y2e0{bottom:266.610757px;}
.yc2{bottom:267.599919px;}
.y10b{bottom:269.490764px;}
.y284{bottom:271.651149px;}
.ye5{bottom:271.920072px;}
.y82{bottom:273.623769px;}
.y2a9{bottom:274.978929px;}
.y178{bottom:275.070450px;}
.y25{bottom:275.246733px;}
.y24a{bottom:276.420450px;}
.y4c{bottom:276.501990px;}
.y22d{bottom:276.511581px;}
.y16f{bottom:279.120330px;}
.y176{bottom:281.370450px;}
.y143{bottom:281.370607px;}
.ya6{bottom:282.090450px;}
.y1fc{bottom:283.801982px;}
.y2df{bottom:284.160678px;}
.yc1{bottom:285.150450px;}
.y10a{bottom:287.040685px;}
.y283{bottom:289.201070px;}
.y177{bottom:290.820450px;}
.y81{bottom:291.174300px;}
.y24{bottom:292.797264px;}
.y4b{bottom:294.052521px;}
.y22c{bottom:294.061502px;}
.y2a8{bottom:298.108560px;}
.y142{bottom:298.920528px;}
.ydd{bottom:300.810450px;}
.y2de{bottom:301.710600px;}
.y170{bottom:304.050368px;}
.ye2{bottom:304.500450px;}
.y109{bottom:304.590607px;}
.y24b{bottom:305.850597px;}
.y282{bottom:306.750992px;}
.ya5{bottom:308.100450px;}
.y23{bottom:310.347795px;}
.y1fb{bottom:310.351863px;}
.y4a{bottom:311.603052px;}
.y22b{bottom:311.611424px;}
.yc0{bottom:312.150600px;}
.y2a7{bottom:312.239145px;}
.ydf{bottom:313.590225px;}
.y141{bottom:314.220450px;}
.y13f{bottom:316.470389px;}
.y140{bottom:316.470450px;}
.ye1{bottom:317.280000px;}
.ye4{bottom:317.280450px;}
.y80{bottom:317.724795px;}
.y108{bottom:322.140528px;}
.yde{bottom:323.040387px;}
.ye3{bottom:323.490000px;}
.y281{bottom:324.300914px;}
.ye0{bottom:326.730450px;}
.y22{bottom:327.898326px;}
.y1fa{bottom:327.901785px;}
.y2dd{bottom:328.530528px;}
.ya4{bottom:328.620450px;}
.y49{bottom:329.153583px;}
.y171{bottom:329.250211px;}
.ybf{bottom:333.210600px;}
.y24c{bottom:334.921135px;}
.y13e{bottom:335.010607px;}
.y7f{bottom:335.275326px;}
.y2a6{bottom:335.368776px;}
.y22a{bottom:338.161306px;}
.y107{bottom:339.690933px;}
.y280{bottom:341.850835px;}
.y21{bottom:345.448857px;}
.y1f9{bottom:345.451706px;}
.y2dc{bottom:346.080842px;}
.y48{bottom:346.704114px;}
.y2a5{bottom:349.499361px;}
.y251{bottom:350.130450px;}
.y13d{bottom:352.560528px;}
.y7e{bottom:352.825857px;}
.ydc{bottom:353.101000px;}
.y172{bottom:354.180248px;}
.y229{bottom:355.711227px;}
.y27f{bottom:359.400757px;}
.y20{bottom:362.999388px;}
.y1f8{bottom:363.001628px;}
.y2a4{bottom:363.629946px;}
.y2db{bottom:363.630764px;}
.y47{bottom:364.254645px;}
.y24d{bottom:364.351282px;}
.y106{bottom:367.231111px;}
.y13b{bottom:370.110232px;}
.y13c{bottom:370.110450px;}
.y7d{bottom:370.376388px;}
.ydb{bottom:370.650921px;}
.y228{bottom:373.261149px;}
.y27e{bottom:376.950678px;}
.y173{bottom:379.380091px;}
.ybe{bottom:380.280450px;}
.y1f{bottom:380.549919px;}
.y1f7{bottom:380.551549px;}
.y2da{bottom:381.180685px;}
.y46{bottom:381.805176px;}
.y105{bottom:384.781032px;}
.y13a{bottom:386.400450px;}
.y2a3{bottom:386.759577px;}
.y7c{bottom:387.926919px;}
.y138{bottom:388.650232px;}
.y139{bottom:388.650450px;}
.y19e{bottom:389.012490px;}
.y227{bottom:390.811070px;}
.y24e{bottom:393.781429px;}
.y27d{bottom:394.500600px;}
.yd5{bottom:397.110502px;}
.y1e{bottom:398.100450px;}
.y1f6{bottom:398.101471px;}
.y2d9{bottom:398.730607px;}
.y45{bottom:399.355707px;}
.yd8{bottom:405.030450px;}
.y7b{bottom:405.477450px;}
.y254{bottom:406.110600px;}
.y19d{bottom:406.562412px;}
.y137{bottom:407.190528px;}
.y2a2{bottom:408.359442px;}
.y226{bottom:408.360992px;}
.yd3{bottom:408.810450px;}
.ybd{bottom:409.800450px;}
.y104{bottom:411.330914px;}
.yd9{bottom:414.660354px;}
.yd6{bottom:415.110000px;}
.yd4{bottom:415.560450px;}
.y1f5{bottom:415.651393px;}
.y2d8{bottom:416.280528px;}
.y44{bottom:416.906238px;}
.yda{bottom:418.350708px;}
.y16c{bottom:419.161674px;}
.y27c{bottom:422.130450px;}
.y24f{bottom:422.941869px;}
.y19c{bottom:424.112333px;}
.y136{bottom:424.740678px;}
.y1d{bottom:425.730450px;}
.y225{bottom:425.910914px;}
.y253{bottom:428.160600px;}
.y103{bottom:428.880835px;}
.y2a1{bottom:429.959307px;}
.y7a{bottom:432.027945px;}
.y16b{bottom:433.291062px;}
.y2d7{bottom:433.830450px;}
.y43{bottom:434.456769px;}
.y19b{bottom:441.662255px;}
.y1f4{bottom:442.201274px;}
.y135{bottom:442.291156px;}
.y224{bottom:443.460835px;}
.yd2{bottom:445.079919px;}
.y102{bottom:446.430757px;}
.y16a{bottom:447.420450px;}
.y79{bottom:449.578476px;}
.y252{bottom:450.300450px;}
.y2a0{bottom:451.559172px;}
.y42{bottom:452.007300px;}
.y250{bottom:452.012407px;}
.y1f3{bottom:459.751196px;}
.y134{bottom:459.841077px;}
.y2d6{bottom:460.650842px;}
.y223{bottom:461.010757px;}
.yd1{bottom:462.630450px;}
.y101{bottom:463.980678px;}
.y78{bottom:467.129007px;}
.y169{bottom:467.940600px;}
.y19a{bottom:468.212136px;}
.y41{bottom:469.557831px;}
.y29f{bottom:473.159037px;}
.y164{bottom:474.872069px;}
.y1f2{bottom:477.301117px;}
.y133{bottom:477.390999px;}
.y2d5{bottom:478.200764px;}
.y222{bottom:478.560678px;}
.y100{bottom:481.530600px;}
.y27b{bottom:481.623236px;}
.y77{bottom:484.679538px;}
.y1c{bottom:485.220069px;}
.y199{bottom:485.762058px;}
.y40{bottom:487.108362px;}
.yd0{bottom:488.640450px;}
.y163{bottom:490.531902px;}
.y29e{bottom:494.758902px;}
.y1f1{bottom:494.851039px;}
.y132{bottom:494.940920px;}
.y2d4{bottom:495.750685px;}
.y221{bottom:496.110600px;}
.y247{bottom:497.640477px;}
.y27a{bottom:499.173157px;}
.y76{bottom:502.230069px;}
.y1b{bottom:502.770600px;}
.y198{bottom:503.311980px;}
.y3f{bottom:504.658893px;}
.y15c{bottom:507.540600px;}
.yff{bottom:507.541674px;}
.ycf{bottom:509.160450px;}
.y246{bottom:511.771062px;}
.y1f0{bottom:512.400961px;}
.y131{bottom:512.490842px;}
.y2d3{bottom:513.300607px;}
.y1b9{bottom:513.660450px;}
.y1b7{bottom:515.190108px;}
.y1b8{bottom:515.190600px;}
.y29d{bottom:516.358767px;}
.y279{bottom:516.723079px;}
.y75{bottom:519.780600px;}
.y197{bottom:520.861901px;}
.yfe{bottom:521.671062px;}
.y220{bottom:523.110600px;}
.y245{bottom:525.900450px;}
.y1d4{bottom:527.971783px;}
.y1ef{bottom:529.950882px;}
.y130{bottom:530.040764px;}
.y1b6{bottom:530.129865px;}
.y1a{bottom:530.400450px;}
.y2d2{bottom:530.850528px;}
.y3e{bottom:531.209388px;}
.y278{bottom:534.273001px;}
.y15d{bottom:534.901055px;}
.yfd{bottom:535.800450px;}
.y29c{bottom:537.958632px;}
.y196{bottom:538.411823px;}
.y244{bottom:541.920450px;}
.y1b5{bottom:544.260450px;}
.y1d3{bottom:545.521704px;}
.y74{bottom:546.780450px;}
.y1ee{bottom:547.500804px;}
.y12f{bottom:547.590685px;}
.y2d1{bottom:548.400450px;}
.y3d{bottom:548.759919px;}
.y195{bottom:555.961744px;}
.ybc{bottom:558.566103px;}
.y29b{bottom:559.558497px;}
.yfc{bottom:559.740339px;}
.y277{bottom:560.822882px;}
.y238{bottom:560.910187px;}
.y15e{bottom:562.440761px;}
.y1d2{bottom:563.071626px;}
.y1b4{bottom:564.780450px;}
.y1ed{bottom:565.050725px;}
.y12e{bottom:565.140607px;}
.y165{bottom:565.950450px;}
.y3c{bottom:566.310450px;}
.y21f{bottom:570.179280px;}
.y194{bottom:573.511666px;}
.y237{bottom:574.950450px;}
.ybb{bottom:576.116634px;}
.y2d0{bottom:576.300450px;}
.y276{bottom:578.372804px;}
.y1d1{bottom:580.621547px;}
.y29a{bottom:581.158362px;}
.y12d{bottom:582.690528px;}
.y21e{bottom:584.309865px;}
.y239{bottom:588.090450px;}
.y15f{bottom:589.801216px;}
.y193{bottom:591.061588px;}
.y1ec{bottom:591.600607px;}
.y3b{bottom:593.310450px;}
.yba{bottom:593.667165px;}
.y73{bottom:594.374592px;}
.y275{bottom:595.922725px;}
.y1d0{bottom:598.171469px;}
.y21d{bottom:598.440450px;}
.y19{bottom:598.880937px;}
.y12c{bottom:600.240450px;}
.y299{bottom:602.758227px;}
.y243{bottom:603.120450px;}
.y192{bottom:608.611509px;}
.y1eb{bottom:609.150528px;}
.yb9{bottom:611.217696px;}
.y72{bottom:611.925123px;}
.y274{bottom:613.472647px;}
.y1cf{bottom:615.721391px;}
.y18{bottom:616.431468px;}
.y298{bottom:616.887615px;}
.y160{bottom:617.161671px;}
.y23a{bottom:617.700598px;}
.y242{bottom:625.260450px;}
.ya3{bottom:626.158326px;}
.y191{bottom:626.161431px;}
.y1ea{bottom:626.700327px;}
.y12b{bottom:627.240450px;}
.y21c{bottom:627.960450px;}
.yb8{bottom:628.768227px;}
.y71{bottom:629.475654px;}
.y297{bottom:631.018200px;}
.y273{bottom:631.022569px;}
.y168{bottom:632.370450px;}
.y1ce{bottom:633.271312px;}
.y17{bottom:633.981999px;}
.y2cf{bottom:635.246994px;}
.y3a{bottom:640.917795px;}
.ya2{bottom:643.708857px;}
.y190{bottom:643.711352px;}
.y161{bottom:644.701378px;}
.y1e9{bottom:645.240545px;}
.yb7{bottom:646.318758px;}
.y70{bottom:647.026185px;}
.y167{bottom:647.130450px;}
.y241{bottom:647.490450px;}
.y23b{bottom:647.580319px;}
.y272{bottom:648.572490px;}
.y2ce{bottom:649.376382px;}
.y1cd{bottom:650.821234px;}
.y16{bottom:651.532530px;}
.y296{bottom:654.147831px;}
.y20f{bottom:654.690831px;}
.y39{bottom:658.468326px;}
.ya1{bottom:661.259388px;}
.y18f{bottom:661.261274px;}
.y166{bottom:661.890450px;}
.y1e8{bottom:662.790467px;}
.y2cd{bottom:663.506967px;}
.y240{bottom:663.600450px;}
.yb6{bottom:663.869289px;}
.y6f{bottom:664.576716px;}
.y271{bottom:666.122412px;}
.y295{bottom:668.278416px;}
.y1cc{bottom:668.371156px;}
.y20e{bottom:668.820450px;}
.y15{bottom:669.083061px;}
.yfb{bottom:669.720339px;}
.y162{bottom:672.061833px;}
.y12a{bottom:674.309865px;}
.y38{bottom:676.018857px;}
.y23c{bottom:677.460039px;}
.y2cc{bottom:677.637552px;}
.ya0{bottom:678.809919px;}
.y18e{bottom:678.811196px;}
.y1e7{bottom:681.330685px;}
.yb5{bottom:681.419820px;}
.y210{bottom:682.050450px;}
.y6e{bottom:682.127247px;}
.y270{bottom:683.672333px;}
.y1cb{bottom:685.921077px;}
.y14{bottom:686.633592px;}
.y129{bottom:688.440450px;}
.y294{bottom:691.408047px;}
.y37{bottom:693.569388px;}
.y9f{bottom:696.357264px;}
.y18d{bottom:696.361117px;}
.y1e6{bottom:698.880607px;}
.yb4{bottom:698.970351px;}
.y6d{bottom:699.677778px;}
.y2cb{bottom:700.767183px;}
.y1ca{bottom:703.470999px;}
.y13{bottom:704.184123px;}
.y293{bottom:705.538632px;}
.y23d{bottom:707.429618px;}
.y26f{bottom:710.222215px;}
.y36{bottom:711.119919px;}
.y211{bottom:711.480367px;}
.y9e{bottom:713.907795px;}
.y18c{bottom:713.911039px;}
.y2ca{bottom:714.897768px;}
.y15b{bottom:715.259280px;}
.y1e5{bottom:716.430528px;}
.yb3{bottom:716.520882px;}
.y128{bottom:716.880450px;}
.y6c{bottom:717.228309px;}
.y292{bottom:719.669217px;}
.y1c9{bottom:721.020920px;}
.y12{bottom:721.734654px;}
.y26e{bottom:727.772136px;}
.y35{bottom:728.670450px;}
.y2c9{bottom:729.028353px;}
.y15a{bottom:729.389865px;}
.y9d{bottom:731.458326px;}
.y1e4{bottom:733.980450px;}
.yb2{bottom:734.340450px;}
.y6b{bottom:734.778840px;}
.y23e{bottom:736.949908px;}
.y127{bottom:738.480450px;}
.y1c8{bottom:738.570842px;}
.y11{bottom:739.285185px;}
.y18b{bottom:740.460920px;}
.y212{bottom:740.640127px;}
.y291{bottom:742.798848px;}
.y2c8{bottom:743.158938px;}
.y159{bottom:743.520450px;}
.y26d{bottom:745.322058px;}
.y9c{bottom:749.008857px;}
.y6a{bottom:752.329371px;}
.y217{bottom:755.850450px;}
.y1c7{bottom:756.120764px;}
.y34{bottom:756.300450px;}
.y10{bottom:756.835716px;}
.y290{bottom:756.929433px;}
.y18a{bottom:758.010842px;}
.y126{bottom:760.080450px;}
.yb1{bottom:760.350450px;}
.y1e3{bottom:760.980450px;}
.y26c{bottom:762.871980px;}
.y2c7{bottom:766.288569px;}
.y9b{bottom:766.559388px;}
.y23f{bottom:766.919487px;}
.y158{bottom:767.461507px;}
.y69{bottom:769.879902px;}
.y213{bottom:770.160095px;}
.y1c6{bottom:773.670685px;}
.yf{bottom:774.386247px;}
.y189{bottom:775.560764px;}
.yce{bottom:779.520450px;}
.yfa{bottom:779.700653px;}
.y28f{bottom:780.059064px;}
.y2c6{bottom:780.419154px;}
.y26b{bottom:780.421901px;}
.y125{bottom:781.680450px;}
.y9a{bottom:784.109919px;}
.yb0{bottom:789.870450px;}
.y1c5{bottom:791.220607px;}
.ye{bottom:791.936778px;}
.y188{bottom:793.110685px;}
.y28e{bottom:794.189649px;}
.y68{bottom:796.430397px;}
.y21b{bottom:797.160450px;}
.y26a{bottom:797.971823px;}
.y214{bottom:799.590012px;}
.ycd{bottom:800.040600px;}
.y124{bottom:800.490450px;}
.y1b3{bottom:801.481823px;}
.y99{bottom:801.660450px;}
.y2c5{bottom:803.548785px;}
.y236{bottom:807.059865px;}
.y1e2{bottom:808.049280px;}
.y1c4{bottom:808.770528px;}
.yd{bottom:809.487309px;}
.y33{bottom:809.749605px;}
.y187{bottom:810.660607px;}
.y123{bottom:811.829865px;}
.y67{bottom:813.980928px;}
.y21a{bottom:814.710450px;}
.y269{bottom:815.521744px;}
.y28d{bottom:817.319280px;}
.y2c4{bottom:817.679370px;}
.y1b2{bottom:819.031744px;}
.y235{bottom:821.190450px;}
.y1e1{bottom:822.179865px;}
.y122{bottom:825.960450px;}
.y1c3{bottom:826.320450px;}
.yc{bottom:827.037840px;}
.y32{bottom:827.300136px;}
.y186{bottom:828.210528px;}
.y98{bottom:828.660450px;}
.y215{bottom:828.839824px;}
.y28c{bottom:831.449865px;}
.y66{bottom:831.531459px;}
.y219{bottom:832.530450px;}
.y268{bottom:833.071666px;}
.y1e0{bottom:834.780450px;}
.y1df{bottom:836.310450px;}
.y1de{bottom:836.310843px;}
.y1b1{bottom:836.581666px;}
.y2c3{bottom:840.809001px;}
.y234{bottom:841.710450px;}
.yb{bottom:844.588371px;}
.y31{bottom:844.850667px;}
.y28b{bottom:845.580450px;}
.y185{bottom:845.760450px;}
.y218{bottom:850.350450px;}
.y1dd{bottom:851.250600px;}
.y1b0{bottom:854.131588px;}
.y121{bottom:854.490450px;}
.y216{bottom:857.999584px;}
.y65{bottom:858.081954px;}
.y267{bottom:859.621547px;}
.y1c2{bottom:861.329865px;}
.ya{bottom:862.138902px;}
.y30{bottom:862.401198px;}
.y2c2{bottom:863.938632px;}
.y28a{bottom:870.330450px;}
.y1af{bottom:871.681509px;}
.y1dc{bottom:871.770450px;}
.y184{bottom:872.760450px;}
.y1c1{bottom:875.460450px;}
.y64{bottom:875.632485px;}
.y120{bottom:876.180600px;}
.y266{bottom:877.171469px;}
.y97{bottom:877.350450px;}
.y2c1{bottom:878.069217px;}
.y9{bottom:879.689433px;}
.y2f{bottom:879.951729px;}
.y1ae{bottom:889.231431px;}
.yf9{bottom:889.680764px;}
.y63{bottom:893.183016px;}
.y265{bottom:894.721391px;}
.y1c0{bottom:895.980450px;}
.y8{bottom:897.239964px;}
.y2e{bottom:897.502260px;}
.y11f{bottom:897.870450px;}
.y2c0{bottom:901.198848px;}
.y20d{bottom:903.629865px;}
.y1ad{bottom:906.781352px;}
.yf8{bottom:907.230685px;}
.y62{bottom:910.733547px;}
.y264{bottom:912.271312px;}
.y183{bottom:912.450450px;}
.y7{bottom:915.059532px;}
.y2bf{bottom:915.329433px;}
.y20c{bottom:916.230450px;}
.y20b{bottom:917.760450px;}
.y20a{bottom:917.760693px;}
.y1ac{bottom:924.331274px;}
.yf7{bottom:924.780607px;}
.y11e{bottom:926.130450px;}
.y61{bottom:928.284078px;}
.y157{bottom:928.291391px;}
.y2be{bottom:929.460018px;}
.y263{bottom:929.821234px;}
.y209{bottom:932.700450px;}
.y96{bottom:936.824022px;}
.y1ab{bottom:941.881196px;}
.yf6{bottom:942.330528px;}
.y60{bottom:945.834609px;}
.y156{bottom:945.841312px;}
.y262{bottom:947.371156px;}
.y6{bottom:950.609991px;}
.y11d{bottom:951.510450px;}
.y2bd{bottom:952.589649px;}
.y208{bottom:953.220450px;}
.y95{bottom:954.374553px;}
.y1aa{bottom:959.431117px;}
.yf5{bottom:959.880450px;}
.y5f{bottom:963.385140px;}
.y155{bottom:963.391234px;}
.y11c{bottom:963.393570px;}
.y205{bottom:964.650000px;}
.y261{bottom:964.921077px;}
.y204{bottom:966.180450px;}
.y2bc{bottom:966.720234px;}
.y94{bottom:971.925084px;}
.y182{bottom:971.941196px;}
.y1a9{bottom:976.981039px;}
.y5e{bottom:980.935671px;}
.y154{bottom:980.941156px;}
.y11b{bottom:980.943491px;}
.y260{bottom:982.470999px;}
.yf4{bottom:985.889865px;}
.y5{bottom:986.160450px;}
.y93{bottom:989.475615px;}
.y181{bottom:989.491117px;}
.y2bb{bottom:989.849865px;}
.y1a8{bottom:994.530961px;}
.y5d{bottom:998.486202px;}
.y153{bottom:998.491077px;}
.y11a{bottom:998.493413px;}
.yf3{bottom:1000.020450px;}
.y25f{bottom:1000.020920px;}
.y2ba{bottom:1003.979142px;}
.y92{bottom:1007.026146px;}
.y180{bottom:1007.041039px;}
.y1a7{bottom:1012.080882px;}
.y5c{bottom:1016.036733px;}
.y152{bottom:1016.040999px;}
.y119{bottom:1016.043335px;}
.y25e{bottom:1017.570842px;}
.y2b9{bottom:1018.109727px;}
.yf2{bottom:1020.540450px;}
.y4{bottom:1022.250450px;}
.y91{bottom:1024.576677px;}
.y17f{bottom:1024.590961px;}
.y1be{bottom:1026.300000px;}
.y1bd{bottom:1028.640450px;}
.y1a6{bottom:1029.630804px;}
.y2b8{bottom:1032.240312px;}
.y5b{bottom:1033.587264px;}
.y151{bottom:1033.590920px;}
.y118{bottom:1033.593256px;}
.y25d{bottom:1035.120764px;}
.y90{bottom:1042.127208px;}
.y1a5{bottom:1047.180725px;}
.y5a{bottom:1051.137795px;}
.y150{bottom:1051.140842px;}
.y117{bottom:1051.143178px;}
.y25c{bottom:1052.670685px;}
.y2b7{bottom:1055.369943px;}
.y8f{bottom:1068.677703px;}
.y59{bottom:1068.688326px;}
.y14f{bottom:1068.690764px;}
.y116{bottom:1068.693099px;}
.y25b{bottom:1070.220607px;}
.y3{bottom:1072.558956px;}
.y1a4{bottom:1073.730607px;}
.ycc{bottom:1076.249919px;}
.y2b6{bottom:1076.969808px;}
.y8e{bottom:1086.228234px;}
.y58{bottom:1086.238857px;}
.y14e{bottom:1086.240685px;}
.y115{bottom:1086.243021px;}
.y25a{bottom:1087.770528px;}
.y1a3{bottom:1091.280528px;}
.ycb{bottom:1093.800450px;}
.y2b5{bottom:1098.569673px;}
.y8d{bottom:1103.778765px;}
.y57{bottom:1103.789388px;}
.y14d{bottom:1103.790607px;}
.y114{bottom:1103.792943px;}
.y259{bottom:1105.320450px;}
.y2{bottom:1107.030450px;}
.y1a2{bottom:1108.830450px;}
.y2b4{bottom:1120.169538px;}
.y8c{bottom:1121.329296px;}
.y56{bottom:1121.339919px;}
.y14c{bottom:1121.340528px;}
.y113{bottom:1121.342864px;}
.y258{bottom:1132.950450px;}
.y1a1{bottom:1135.830450px;}
.y8b{bottom:1138.879827px;}
.y55{bottom:1138.890450px;}
.yca{bottom:1138.890612px;}
.y112{bottom:1138.892786px;}
.y2b3{bottom:1141.769403px;}
.y1{bottom:1189.740450px;}
.h37{height:12.150000px;}
.h31{height:13.229850px;}
.h1a{height:17.190000px;}
.h12{height:17.550000px;}
.h1f{height:24.357897px;}
.h10{height:24.400003px;}
.h27{height:25.013672px;}
.h32{height:30.886007px;}
.h30{height:30.907727px;}
.h36{height:32.884444px;}
.h35{height:32.907570px;}
.h22{height:33.268184px;}
.h16{height:33.873035px;}
.h1d{height:34.388626px;}
.h13{height:34.448072px;}
.h2e{height:35.135465px;}
.h39{height:35.549381px;}
.h14{height:35.654388px;}
.h2b{height:39.260264px;}
.h33{height:39.388184px;}
.h2f{height:39.388784px;}
.h1b{height:41.101077px;}
.h19{height:41.129981px;}
.h20{height:41.757407px;}
.h4{height:41.772832px;}
.ha{height:41.785576px;}
.hc{height:41.790220px;}
.h11{height:41.799301px;}
.hf{height:41.828696px;}
.h23{height:41.829139px;}
.h34{height:41.829187px;}
.h3a{height:42.599433px;}
.h18{height:43.438562px;}
.h21{height:44.100970px;}
.h28{height:44.117442px;}
.h3c{height:44.650118px;}
.h38{height:44.724586px;}
.h2a{height:46.738350px;}
.h2c{height:46.899802px;}
.h2d{height:46.968223px;}
.h3e{height:46.973455px;}
.hb{height:48.254063px;}
.h1{height:49.937344px;}
.h3b{height:50.658870px;}
.h29{height:50.828696px;}
.h3d{height:51.519945px;}
.h17{height:58.067555px;}
.h1e{height:58.953359px;}
.h6{height:58.975137px;}
.h15{height:59.054006px;}
.h3f{height:60.588120px;}
.h5{height:60.589687px;}
.h24{height:60.590131px;}
.h1c{height:60.908696px;}
.h25{height:62.701351px;}
.he{height:62.703281px;}
.h26{height:62.703680px;}
.h3{height:70.628906px;}
.hd{height:72.562500px;}
.h9{height:75.093750px;}
.h7{height:84.535312px;}
.h8{height:87.484219px;}
.h2{height:120.816562px;}
.h0{height:1263.000000px;}
.w2{width:3.690000px;}
.w1{width:7.380000px;}
.w4{width:9.360000px;}
.w3{width:10.080000px;}
.w5{width:23.220000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x55{left:17.280000px;}
.x1{left:63.810000px;}
.x15{left:74.429604px;}
.xb{left:85.140000px;}
.x68{left:89.279766px;}
.x12{left:91.080000px;}
.x8{left:95.670000px;}
.x2e{left:99.989934px;}
.x14{left:103.320000px;}
.x2c{left:106.470000px;}
.x38{left:111.780000px;}
.xc{left:117.000000px;}
.x5{left:119.160000px;}
.x39{left:120.780651px;}
.x66{left:123.300371px;}
.x37{left:127.620333px;}
.x65{left:129.240342px;}
.x3a{left:131.310539px;}
.x3e{left:132.930414px;}
.x3f{left:136.260265px;}
.x60{left:139.590000px;}
.x63{left:142.020000px;}
.x40{left:146.880488px;}
.x2d{left:148.950333px;}
.x2{left:151.830000px;}
.x61{left:168.030000px;}
.x3{left:186.298497px;}
.x3b{left:216.900746px;}
.x42{left:221.580000px;}
.x41{left:225.540062px;}
.x64{left:240.659903px;}
.x6{left:243.180045px;}
.x4{left:245.160000px;}
.x46{left:288.810000px;}
.x50{left:292.860000px;}
.x47{left:294.030000px;}
.x51{left:298.080000px;}
.x3c{left:310.230000px;}
.x67{left:358.200000px;}
.x2b{left:366.570000px;}
.x43{left:383.670000px;}
.x3d{left:394.380000px;}
.x45{left:414.990000px;}
.x11{left:416.430000px;}
.x48{left:419.490000px;}
.x13{left:422.730000px;}
.x5f{left:425.700000px;}
.x7{left:435.870657px;}
.x4f{left:438.660000px;}
.x62{left:444.420000px;}
.x9{left:448.560873px;}
.x16{left:459.179649px;}
.xd{left:469.889370px;}
.x69{left:474.029316px;}
.xa{left:480.420000px;}
.x49{left:481.860000px;}
.x1c{left:483.660000px;}
.x23{left:485.369457px;}
.x1b{left:487.529993px;}
.x20{left:490.770498px;}
.x5b{left:492.660173px;}
.x1f{left:494.639878px;}
.x4a{left:496.890000px;}
.x1e{left:500.579870px;}
.xe{left:501.749964px;}
.x59{left:505.440000px;}
.x4b{left:506.880000px;}
.x2f{left:508.680000px;}
.x10{left:512.640000px;}
.x18{left:516.060000px;}
.x29{left:519.480000px;}
.x28{left:524.970000px;}
.x1a{left:529.110000px;}
.x24{left:532.440000px;}
.x30{left:533.699136px;}
.x22{left:537.930000px;}
.x27{left:539.280192px;}
.x52{left:543.330000px;}
.x1d{left:544.590000px;}
.x21{left:546.570000px;}
.x54{left:552.600000px;}
.x53{left:555.480000px;}
.x19{left:564.480000px;}
.x26{left:585.090000px;}
.x25{left:595.170000px;}
.x2a{left:601.650000px;}
.x5a{left:604.080754px;}
.x33{left:610.650000px;}
.x34{left:617.220000px;}
.x57{left:621.090000px;}
.x58{left:626.310000px;}
.x35{left:681.120000px;}
.x36{left:688.500000px;}
.x5c{left:703.260000px;}
.x5d{left:749.249850px;}
.x4e{left:779.580000px;}
.x31{left:782.010000px;}
.x44{left:785.069850px;}
.x32{left:788.580000px;}
.x56{left:800.909850px;}
.x17{left:803.159850px;}
.x5e{left:807.839850px;}
.xf{left:828.810000px;}
.x4c{left:836.190000px;}
.x4d{left:851.400000px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v3{vertical-align:-20.799660pt;}
.v1{vertical-align:-7.988672pt;}
.v6{vertical-align:-5.440000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:5.440533pt;}
.v7{vertical-align:8.000000pt;}
.v4{vertical-align:16.960000pt;}
.ls8f{letter-spacing:-2.390278pt;}
.ls88{letter-spacing:-2.314332pt;}
.ls89{letter-spacing:-2.288682pt;}
.ls8a{letter-spacing:-2.285336pt;}
.lsc0{letter-spacing:-1.756352pt;}
.lsbe{letter-spacing:-1.643927pt;}
.lsb8{letter-spacing:-1.593155pt;}
.ls8d{letter-spacing:-1.470940pt;}
.ls85{letter-spacing:-1.426043pt;}
.lsac{letter-spacing:-1.410341pt;}
.lsaa{letter-spacing:-1.360789pt;}
.lsbb{letter-spacing:-1.324275pt;}
.lsb6{letter-spacing:-1.219886pt;}
.ls8e{letter-spacing:-1.187145pt;}
.ls8c{letter-spacing:-1.151171pt;}
.ls87{letter-spacing:-1.147208pt;}
.ls86{letter-spacing:-1.103391pt;}
.lsbf{letter-spacing:-1.058202pt;}
.lsa7{letter-spacing:-0.783104pt;}
.ls79{letter-spacing:-0.663542pt;}
.lsb7{letter-spacing:-0.613084pt;}
.lsae{letter-spacing:-0.530208pt;}
.lsad{letter-spacing:-0.502940pt;}
.lscf{letter-spacing:-0.412832pt;}
.lsb3{letter-spacing:-0.352169pt;}
.ls36{letter-spacing:-0.321408pt;}
.lsb4{letter-spacing:-0.301341pt;}
.lsaf{letter-spacing:-0.209053pt;}
.lsa6{letter-spacing:-0.176814pt;}
.ls7a{letter-spacing:-0.107023pt;}
.ls9e{letter-spacing:-0.101672pt;}
.lsc1{letter-spacing:-0.096599pt;}
.ls84{letter-spacing:-0.096321pt;}
.lsd8{letter-spacing:-0.093632pt;}
.ls22{letter-spacing:-0.090848pt;}
.ls9d{letter-spacing:-0.089376pt;}
.ls77{letter-spacing:-0.085618pt;}
.ls90{letter-spacing:-0.080864pt;}
.ls6e{letter-spacing:-0.080267pt;}
.ls2f{letter-spacing:-0.080160pt;}
.lsd4{letter-spacing:-0.076608pt;}
.ls91{letter-spacing:-0.074916pt;}
.ls29{letter-spacing:-0.074816pt;}
.ls6c{letter-spacing:-0.069565pt;}
.ls1e{letter-spacing:-0.069472pt;}
.ls72{letter-spacing:-0.064214pt;}
.ls31{letter-spacing:-0.064128pt;}
.ls74{letter-spacing:-0.063840pt;}
.lsc3{letter-spacing:-0.058863pt;}
.ls21{letter-spacing:-0.058784pt;}
.lsa9{letter-spacing:-0.057176pt;}
.ls4d{letter-spacing:-0.053511pt;}
.ls25{letter-spacing:-0.053440pt;}
.lscd{letter-spacing:-0.052192pt;}
.lsd7{letter-spacing:-0.051072pt;}
.lsa4{letter-spacing:-0.048160pt;}
.ls28{letter-spacing:-0.048096pt;}
.lsd1{letter-spacing:-0.046816pt;}
.lsd9{letter-spacing:-0.042809pt;}
.ls73{letter-spacing:-0.042560pt;}
.lsbd{letter-spacing:-0.041859pt;}
.lsd2{letter-spacing:-0.038304pt;}
.lsa8{letter-spacing:-0.038117pt;}
.ls71{letter-spacing:-0.037458pt;}
.ls32{letter-spacing:-0.037408pt;}
.ls75{letter-spacing:-0.034048pt;}
.lsb5{letter-spacing:-0.032676pt;}
.ls7b{letter-spacing:-0.032107pt;}
.ls6d{letter-spacing:-0.029792pt;}
.lsa3{letter-spacing:-0.026756pt;}
.ls30{letter-spacing:-0.026720pt;}
.ls8b{letter-spacing:-0.025536pt;}
.ls6b{letter-spacing:-0.021405pt;}
.ls23{letter-spacing:-0.021376pt;}
.lsd3{letter-spacing:-0.021280pt;}
.lsce{letter-spacing:-0.017024pt;}
.ls6f{letter-spacing:-0.016053pt;}
.ls24{letter-spacing:-0.016032pt;}
.lsba{letter-spacing:-0.011416pt;}
.ls4f{letter-spacing:-0.010702pt;}
.ls35{letter-spacing:-0.010688pt;}
.ls78{letter-spacing:-0.010368pt;}
.lsd0{letter-spacing:-0.008512pt;}
.ls1b{letter-spacing:-0.006400pt;}
.ls70{letter-spacing:-0.005351pt;}
.ls1f{letter-spacing:-0.005344pt;}
.lsd6{letter-spacing:-0.004256pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.004256pt;}
.ls10{letter-spacing:0.005344pt;}
.ls4a{letter-spacing:0.005351pt;}
.ls4c{letter-spacing:0.006400pt;}
.ls2a{letter-spacing:0.008512pt;}
.ls69{letter-spacing:0.008600pt;}
.ls42{letter-spacing:0.010368pt;}
.ls2{letter-spacing:0.010688pt;}
.ls4e{letter-spacing:0.010702pt;}
.lsab{letter-spacing:0.015247pt;}
.ls3e{letter-spacing:0.015360pt;}
.ls13{letter-spacing:0.016032pt;}
.ls55{letter-spacing:0.016053pt;}
.lsb2{letter-spacing:0.017024pt;}
.ls76{letter-spacing:0.019200pt;}
.ls7c{letter-spacing:0.020736pt;}
.ls0{letter-spacing:0.021280pt;}
.ls1{letter-spacing:0.021376pt;}
.ls5a{letter-spacing:0.021405pt;}
.ls3b{letter-spacing:0.025536pt;}
.ls26{letter-spacing:0.025600pt;}
.ls7{letter-spacing:0.026720pt;}
.ls50{letter-spacing:0.026756pt;}
.ls96{letter-spacing:0.029792pt;}
.ls14{letter-spacing:0.029824pt;}
.ls64{letter-spacing:0.031872pt;}
.ls27{letter-spacing:0.032064pt;}
.ls48{letter-spacing:0.032107pt;}
.ls2c{letter-spacing:0.034048pt;}
.lsf{letter-spacing:0.037408pt;}
.ls43{letter-spacing:0.037458pt;}
.ls97{letter-spacing:0.038304pt;}
.ls98{letter-spacing:0.042560pt;}
.ls19{letter-spacing:0.042624pt;}
.ls16{letter-spacing:0.042752pt;}
.ls5d{letter-spacing:0.042809pt;}
.lsc{letter-spacing:0.044736pt;}
.lsbc{letter-spacing:0.045665pt;}
.ls95{letter-spacing:0.046816pt;}
.lsb{letter-spacing:0.048096pt;}
.ls54{letter-spacing:0.048160pt;}
.ls58{letter-spacing:0.051072pt;}
.ls33{letter-spacing:0.051200pt;}
.ls1a{letter-spacing:0.053280pt;}
.ls1c{letter-spacing:0.053440pt;}
.ls45{letter-spacing:0.053511pt;}
.lsa1{letter-spacing:0.055328pt;}
.ls5{letter-spacing:0.058784pt;}
.ls53{letter-spacing:0.058863pt;}
.ls66{letter-spacing:0.059584pt;}
.lsc2{letter-spacing:0.059648pt;}
.ls7e{letter-spacing:0.063840pt;}
.ls4{letter-spacing:0.064128pt;}
.ls4b{letter-spacing:0.064214pt;}
.ls34{letter-spacing:0.067104pt;}
.ls51{letter-spacing:0.068096pt;}
.ls6{letter-spacing:0.069472pt;}
.ls83{letter-spacing:0.069565pt;}
.lsb1{letter-spacing:0.072352pt;}
.lsc4{letter-spacing:0.074560pt;}
.ls3{letter-spacing:0.074816pt;}
.ls46{letter-spacing:0.074916pt;}
.ls59{letter-spacing:0.076608pt;}
.ls5e{letter-spacing:0.080039pt;}
.ls11{letter-spacing:0.080160pt;}
.ls49{letter-spacing:0.080267pt;}
.ls5b{letter-spacing:0.080546pt;}
.ls52{letter-spacing:0.080864pt;}
.ls60{letter-spacing:0.080987pt;}
.ls5f{letter-spacing:0.081356pt;}
.ls82{letter-spacing:0.082016pt;}
.lsc7{letter-spacing:0.085120pt;}
.ls9{letter-spacing:0.085504pt;}
.ls63{letter-spacing:0.085618pt;}
.ls65{letter-spacing:0.087648pt;}
.ls67{letter-spacing:0.089376pt;}
.lsa{letter-spacing:0.090848pt;}
.ls7d{letter-spacing:0.090969pt;}
.ls68{letter-spacing:0.093632pt;}
.ls8{letter-spacing:0.096192pt;}
.ls6a{letter-spacing:0.096321pt;}
.ls9f{letter-spacing:0.097888pt;}
.ls12{letter-spacing:0.101536pt;}
.ls61{letter-spacing:0.101672pt;}
.ls9a{letter-spacing:0.102144pt;}
.ls17{letter-spacing:0.106880pt;}
.ls80{letter-spacing:0.107922pt;}
.ls81{letter-spacing:0.110656pt;}
.lse{letter-spacing:0.111840pt;}
.ls37{letter-spacing:0.112224pt;}
.ls56{letter-spacing:0.112374pt;}
.lscb{letter-spacing:0.114912pt;}
.ls99{letter-spacing:0.114987pt;}
.ls93{letter-spacing:0.115520pt;}
.ls3a{letter-spacing:0.117568pt;}
.ls94{letter-spacing:0.119168pt;}
.ls3d{letter-spacing:0.122912pt;}
.ls62{letter-spacing:0.123076pt;}
.ls2d{letter-spacing:0.133600pt;}
.ls92{letter-spacing:0.136192pt;}
.ls2e{letter-spacing:0.144288pt;}
.ls20{letter-spacing:0.156576pt;}
.lsc8{letter-spacing:0.157472pt;}
.lsd5{letter-spacing:0.159360pt;}
.ls39{letter-spacing:0.160320pt;}
.ls38{letter-spacing:0.161728pt;}
.lsc9{letter-spacing:0.178752pt;}
.lsc5{letter-spacing:0.195776pt;}
.ls7f{letter-spacing:0.199168pt;}
.lsa0{letter-spacing:0.207360pt;}
.lsb9{letter-spacing:0.513782pt;}
.lsa5{letter-spacing:0.711467pt;}
.ls9c{letter-spacing:1.874209pt;}
.lscc{letter-spacing:2.640000pt;}
.ls9b{letter-spacing:3.048555pt;}
.lsca{letter-spacing:7.367136pt;}
.ls2b{letter-spacing:9.042048pt;}
.lsa2{letter-spacing:18.798752pt;}
.ls15{letter-spacing:20.608000pt;}
.lsc6{letter-spacing:28.808864pt;}
.ls5c{letter-spacing:36.343680pt;}
.ls3c{letter-spacing:36.344544pt;}
.lsd{letter-spacing:36.549312pt;}
.ls3f{letter-spacing:70.472533pt;}
.ls40{letter-spacing:109.457852pt;}
.ls44{letter-spacing:207.965555pt;}
.lsb0{letter-spacing:209.566263pt;}
.ls41{letter-spacing:266.187440pt;}
.ls47{letter-spacing:284.949044pt;}
.ls57{letter-spacing:542.800000pt;}
.ws204{word-spacing:-219.659368pt;}
.ws14f{word-spacing:-42.560000pt;}
.wsc5{word-spacing:-30.474306pt;}
.wsc1{word-spacing:-29.324284pt;}
.ws1{word-spacing:-18.796576pt;}
.ws2{word-spacing:-16.000000pt;}
.ws62{word-spacing:-13.493600pt;}
.ws0{word-spacing:-13.424128pt;}
.ws61{word-spacing:-13.392064pt;}
.wsc2{word-spacing:-13.377867pt;}
.ws24b{word-spacing:-13.361813pt;}
.wsc0{word-spacing:-13.360000pt;}
.wsc6{word-spacing:-13.355067pt;}
.ws1c5{word-spacing:-13.329706pt;}
.wsef{word-spacing:-13.308302pt;}
.wsc4{word-spacing:-13.154400pt;}
.ws205{word-spacing:-11.389547pt;}
.ws208{word-spacing:-11.148444pt;}
.ws243{word-spacing:-10.835776pt;}
.ws247{word-spacing:-10.818752pt;}
.ws194{word-spacing:-10.801728pt;}
.ws24a{word-spacing:-10.729376pt;}
.ws245{word-spacing:-10.720864pt;}
.ws246{word-spacing:-10.708096pt;}
.ws1c8{word-spacing:-10.648512pt;}
.ws193{word-spacing:-10.640000pt;}
.ws248{word-spacing:-10.563392pt;}
.ws209{word-spacing:-10.450294pt;}
.ws206{word-spacing:-10.409476pt;}
.ws1c6{word-spacing:-10.347852pt;}
.ws244{word-spacing:-10.227168pt;}
.ws150{word-spacing:-9.960823pt;}
.ws14d{word-spacing:-9.647698pt;}
.wsf4{word-spacing:-8.660736pt;}
.wsc3{word-spacing:-8.650368pt;}
.wsf0{word-spacing:-8.640000pt;}
.wsf3{word-spacing:-8.629632pt;}
.wsf2{word-spacing:-7.471328pt;}
.wsf1{word-spacing:-7.415552pt;}
.ws249{word-spacing:-6.799360pt;}
.ws1ad{word-spacing:-1.731864pt;}
.ws211{word-spacing:-0.988706pt;}
.ws20f{word-spacing:-0.453827pt;}
.ws218{word-spacing:-0.263453pt;}
.wsb2{word-spacing:-0.242592pt;}
.ws264{word-spacing:-0.238336pt;}
.ws1a9{word-spacing:-0.217056pt;}
.ws26d{word-spacing:-0.200032pt;}
.ws27e{word-spacing:-0.195776pt;}
.ws16f{word-spacing:-0.191520pt;}
.ws1c4{word-spacing:-0.183008pt;}
.ws1cd{word-spacing:-0.178752pt;}
.ws129{word-spacing:-0.174496pt;}
.ws128{word-spacing:-0.170240pt;}
.ws260{word-spacing:-0.165984pt;}
.ws17a{word-spacing:-0.164032pt;}
.wsf6{word-spacing:-0.161728pt;}
.ws25a{word-spacing:-0.157472pt;}
.ws215{word-spacing:-0.153216pt;}
.wsa2{word-spacing:-0.149120pt;}
.ws161{word-spacing:-0.148960pt;}
.ws287{word-spacing:-0.144704pt;}
.ws21a{word-spacing:-0.141664pt;}
.ws126{word-spacing:-0.140448pt;}
.ws270{word-spacing:-0.131936pt;}
.ws6{word-spacing:-0.127872pt;}
.ws295{word-spacing:-0.126752pt;}
.ws1af{word-spacing:-0.119168pt;}
.ws5{word-spacing:-0.117216pt;}
.wsb3{word-spacing:-0.114912pt;}
.ws3e{word-spacing:-0.111840pt;}
.ws1ac{word-spacing:-0.110656pt;}
.wsd7{word-spacing:-0.106400pt;}
.wse4{word-spacing:-0.102144pt;}
.ws20e{word-spacing:-0.097888pt;}
.wse5{word-spacing:-0.080864pt;}
.ws163{word-spacing:-0.067717pt;}
.ws169{word-spacing:-0.055328pt;}
.ws83{word-spacing:-0.051200pt;}
.ws100{word-spacing:-0.051072pt;}
.wsc9{word-spacing:-0.037408pt;}
.ws1e5{word-spacing:-0.032107pt;}
.wse1{word-spacing:-0.026720pt;}
.ws46{word-spacing:-0.025600pt;}
.ws33{word-spacing:-0.021376pt;}
.ws12a{word-spacing:-0.019200pt;}
.ws15e{word-spacing:-0.016053pt;}
.ws82{word-spacing:-0.016032pt;}
.ws16b{word-spacing:-0.011991pt;}
.wseb{word-spacing:-0.010702pt;}
.wsd8{word-spacing:-0.006400pt;}
.ws18f{word-spacing:-0.005351pt;}
.ws93{word-spacing:-0.005344pt;}
.ws3{word-spacing:-0.004256pt;}
.wsc{word-spacing:0.000000pt;}
.wsb{word-spacing:0.005344pt;}
.ws179{word-spacing:0.005351pt;}
.ws7{word-spacing:0.006400pt;}
.ws63{word-spacing:0.008512pt;}
.ws24{word-spacing:0.010688pt;}
.ws4{word-spacing:0.012768pt;}
.ws58{word-spacing:0.016032pt;}
.wsfc{word-spacing:0.016053pt;}
.ws135{word-spacing:0.021405pt;}
.wsa{word-spacing:0.026720pt;}
.wse8{word-spacing:0.026756pt;}
.ws12f{word-spacing:0.032107pt;}
.wsee{word-spacing:0.037458pt;}
.ws141{word-spacing:0.042809pt;}
.wsb5{word-spacing:0.048096pt;}
.ws173{word-spacing:0.048160pt;}
.ws123{word-spacing:0.051072pt;}
.ws22{word-spacing:0.053440pt;}
.ws8{word-spacing:0.058784pt;}
.ws121{word-spacing:0.059584pt;}
.wsd6{word-spacing:0.064128pt;}
.ws107{word-spacing:0.064214pt;}
.ws9{word-spacing:0.069472pt;}
.ws116{word-spacing:0.074916pt;}
.ws45{word-spacing:0.080160pt;}
.ws113{word-spacing:0.080267pt;}
.ws122{word-spacing:0.080864pt;}
.ws2a5{word-spacing:0.090969pt;}
.ws3d{word-spacing:0.096192pt;}
.ws49{word-spacing:0.101536pt;}
.ws1f2{word-spacing:0.112101pt;}
.ws1b2{word-spacing:0.149832pt;}
.ws214{word-spacing:0.195776pt;}
.ws26f{word-spacing:0.208544pt;}
.ws118{word-spacing:0.278260pt;}
.ws156{word-spacing:0.288962pt;}
.wsba{word-spacing:0.309952pt;}
.wsf7{word-spacing:0.321069pt;}
.ws183{word-spacing:0.326420pt;}
.ws15b{word-spacing:0.337122pt;}
.ws1a3{word-spacing:0.347825pt;}
.wsf8{word-spacing:0.374580pt;}
.ws172{word-spacing:0.390634pt;}
.wsd2{word-spacing:0.395456pt;}
.ws2a8{word-spacing:0.401336pt;}
.ws1f1{word-spacing:0.405988pt;}
.ws24c{word-spacing:0.412038pt;}
.ws11e{word-spacing:0.444145pt;}
.ws21b{word-spacing:0.454847pt;}
.ws25c{word-spacing:0.472416pt;}
.ws290{word-spacing:0.480928pt;}
.ws263{word-spacing:0.493696pt;}
.ws213{word-spacing:0.553280pt;}
.ws291{word-spacing:0.570304pt;}
.ws25d{word-spacing:0.578816pt;}
.ws26e{word-spacing:0.591584pt;}
.ws148{word-spacing:0.604680pt;}
.wsd5{word-spacing:0.625248pt;}
.ws296{word-spacing:0.630592pt;}
.ws297{word-spacing:0.631435pt;}
.ws117{word-spacing:0.647489pt;}
.wsb8{word-spacing:0.657312pt;}
.ws110{word-spacing:0.658191pt;}
.ws147{word-spacing:0.663542pt;}
.ws146{word-spacing:0.668893pt;}
.ws1fc{word-spacing:0.690298pt;}
.ws199{word-spacing:0.695649pt;}
.ws1ec{word-spacing:0.702240pt;}
.ws19a{word-spacing:0.717054pt;}
.ws139{word-spacing:0.727756pt;}
.ws210{word-spacing:0.733384pt;}
.ws1f0{word-spacing:0.739476pt;}
.ws294{word-spacing:0.829920pt;}
.ws25b{word-spacing:0.898016pt;}
.wsa8{word-spacing:0.951232pt;}
.ws1d5{word-spacing:0.957855pt;}
.ws84{word-spacing:0.967264pt;}
.ws1a0{word-spacing:0.979260pt;}
.ws29a{word-spacing:0.989962pt;}
.ws217{word-spacing:0.993206pt;}
.ws1b0{word-spacing:1.011367pt;}
.ws13{word-spacing:1.015360pt;}
.ws299{word-spacing:1.032771pt;}
.ws221{word-spacing:1.048825pt;}
.ws32{word-spacing:1.100864pt;}
.ws292{word-spacing:1.119328pt;}
.ws293{word-spacing:1.123584pt;}
.ws16a{word-spacing:1.203133pt;}
.ws283{word-spacing:1.251264pt;}
.ws74{word-spacing:1.255840pt;}
.ws2c{word-spacing:1.277216pt;}
.ws133{word-spacing:1.284275pt;}
.ws13c{word-spacing:1.294977pt;}
.ws134{word-spacing:1.305680pt;}
.ws165{word-spacing:1.308296pt;}
.ws164{word-spacing:1.311642pt;}
.ws216{word-spacing:1.312858pt;}
.ws1e1{word-spacing:1.321733pt;}
.ws1ef{word-spacing:1.330295pt;}
.ws12{word-spacing:1.336000pt;}
.wsf9{word-spacing:1.353840pt;}
.ws220{word-spacing:1.359191pt;}
.wsfa{word-spacing:1.364542pt;}
.ws282{word-spacing:1.438528pt;}
.ws289{word-spacing:1.442784pt;}
.ws162{word-spacing:1.485793pt;}
.ws28a{word-spacing:1.540672pt;}
.ws6f{word-spacing:1.603200pt;}
.ws86{word-spacing:1.619232pt;}
.ws1d6{word-spacing:1.632100pt;}
.ws19d{word-spacing:1.637451pt;}
.ws85{word-spacing:1.640608pt;}
.ws21c{word-spacing:1.648153pt;}
.ws11a{word-spacing:1.669558pt;}
.ws12c{word-spacing:1.685611pt;}
.wsda{word-spacing:1.731456pt;}
.ws167{word-spacing:1.757728pt;}
.ws288{word-spacing:1.881152pt;}
.ws3f{word-spacing:1.913152pt;}
.ws119{word-spacing:1.915711pt;}
.ws9f{word-spacing:1.918496pt;}
.ws1e0{word-spacing:1.921062pt;}
.ws108{word-spacing:1.926413pt;}
.ws114{word-spacing:1.931764pt;}
.ws1d{word-spacing:1.934528pt;}
.wsf{word-spacing:1.939872pt;}
.ws44{word-spacing:1.950560pt;}
.ws188{word-spacing:1.953169pt;}
.ws15c{word-spacing:1.969222pt;}
.wse3{word-spacing:1.977280pt;}
.ws1f4{word-spacing:2.055648pt;}
.ws27b{word-spacing:2.076928pt;}
.ws166{word-spacing:2.085440pt;}
.ws274{word-spacing:2.093952pt;}
.ws8b{word-spacing:2.233792pt;}
.ws105{word-spacing:2.242130pt;}
.wse2{word-spacing:2.265856pt;}
.ws228{word-spacing:2.274237pt;}
.ws21f{word-spacing:2.279588pt;}
.ws57{word-spacing:2.287232pt;}
.ws1bd{word-spacing:2.290291pt;}
.ws298{word-spacing:2.317047pt;}
.wsb7{word-spacing:2.324640pt;}
.ws67{word-spacing:2.340672pt;}
.ws27c{word-spacing:2.362080pt;}
.ws12b{word-spacing:2.386611pt;}
.ws27d{word-spacing:2.387616pt;}
.ws1be{word-spacing:2.402665pt;}
.ws273{word-spacing:2.404640pt;}
.ws35{word-spacing:2.410144pt;}
.wsbf{word-spacing:2.533056pt;}
.ws51{word-spacing:2.543744pt;}
.wsad{word-spacing:2.549088pt;}
.ws23{word-spacing:2.554432pt;}
.wsb6{word-spacing:2.565120pt;}
.ws1bb{word-spacing:2.579253pt;}
.ws13a{word-spacing:2.595306pt;}
.ws66{word-spacing:2.602528pt;}
.ws1d1{word-spacing:2.606008pt;}
.ws2a4{word-spacing:2.627413pt;}
.ws56{word-spacing:2.634592pt;}
.ws34{word-spacing:2.645280pt;}
.wse7{word-spacing:2.675573pt;}
.ws4d{word-spacing:2.698720pt;}
.ws268{word-spacing:2.749376pt;}
.ws276{word-spacing:2.774912pt;}
.ws275{word-spacing:2.783424pt;}
.wsbe{word-spacing:2.816288pt;}
.ws8f{word-spacing:2.869728pt;}
.ws159{word-spacing:2.884268pt;}
.ws3a{word-spacing:2.885760pt;}
.ws11b{word-spacing:2.900321pt;}
.ws17{word-spacing:2.901792pt;}
.ws231{word-spacing:2.937780pt;}
.ws1d0{word-spacing:2.969886pt;}
.wsbd{word-spacing:3.120896pt;}
.wsdd{word-spacing:3.190368pt;}
.wsbc{word-spacing:3.195712pt;}
.ws73{word-spacing:3.206400pt;}
.wse{word-spacing:3.211744pt;}
.ws145{word-spacing:3.221390pt;}
.wsd{word-spacing:3.222432pt;}
.ws6b{word-spacing:3.254496pt;}
.wscb{word-spacing:3.259840pt;}
.wscd{word-spacing:3.270528pt;}
.wscc{word-spacing:3.275872pt;}
.ws42{word-spacing:3.281216pt;}
.ws279{word-spacing:3.375008pt;}
.ws272{word-spacing:3.409056pt;}
.ws14{word-spacing:3.505664pt;}
.ws175{word-spacing:3.515703pt;}
.ws158{word-spacing:3.537108pt;}
.ws19c{word-spacing:3.542459pt;}
.ws69{word-spacing:3.543072pt;}
.ws1a2{word-spacing:3.547810pt;}
.ws14b{word-spacing:3.553161pt;}
.ws1b9{word-spacing:3.563864pt;}
.ws178{word-spacing:3.579917pt;}
.ws1fb{word-spacing:3.585268pt;}
.ws22e{word-spacing:3.595971pt;}
.ws99{word-spacing:3.601856pt;}
.ws41{word-spacing:3.617888pt;}
.ws259{word-spacing:3.621856pt;}
.ws22d{word-spacing:3.660184pt;}
.ws258{word-spacing:3.672928pt;}
.ws278{word-spacing:3.702720pt;}
.ws266{word-spacing:3.728256pt;}
.ws1d3{word-spacing:3.799314pt;}
.ws14c{word-spacing:3.858177pt;}
.ws71{word-spacing:3.874400pt;}
.ws103{word-spacing:3.879581pt;}
.ws1d4{word-spacing:3.890284pt;}
.ws157{word-spacing:3.906337pt;}
.ws75{word-spacing:3.906464pt;}
.ws72{word-spacing:3.949216pt;}
.ws23f{word-spacing:3.965200pt;}
.ws59{word-spacing:3.970592pt;}
.ws102{word-spacing:3.981253pt;}
.ws257{word-spacing:4.009152pt;}
.ws265{word-spacing:4.115552pt;}
.wsa1{word-spacing:4.162976pt;}
.ws1da{word-spacing:4.184597pt;}
.ws140{word-spacing:4.189948pt;}
.ws235{word-spacing:4.195299pt;}
.wscf{word-spacing:4.200384pt;}
.ws20a{word-spacing:4.200650pt;}
.ws101{word-spacing:4.211352pt;}
.ws22b{word-spacing:4.270215pt;}
.ws28f{word-spacing:4.349632pt;}
.wsbb{word-spacing:4.462240pt;}
.ws7b{word-spacing:4.472928pt;}
.ws47{word-spacing:4.483616pt;}
.ws10e{word-spacing:4.484261pt;}
.ws77{word-spacing:4.494304pt;}
.ws132{word-spacing:4.494963pt;}
.ws1a6{word-spacing:4.511017pt;}
.wsfb{word-spacing:4.516368pt;}
.ws10f{word-spacing:4.521719pt;}
.ws18b{word-spacing:4.537772pt;}
.wsce{word-spacing:4.542400pt;}
.ws17c{word-spacing:4.553826pt;}
.ws22a{word-spacing:4.569879pt;}
.ws7d{word-spacing:4.622560pt;}
.ws28e{word-spacing:4.630528pt;}
.wsf5{word-spacing:4.651808pt;}
.ws89{word-spacing:4.798912pt;}
.ws21e{word-spacing:4.816032pt;}
.ws15a{word-spacing:4.821383pt;}
.ws23e{word-spacing:4.826734pt;}
.ws30{word-spacing:4.852352pt;}
.ws182{word-spacing:4.858841pt;}
.ws1a5{word-spacing:4.864192pt;}
.ws1e4{word-spacing:4.869543pt;}
.ws1e7{word-spacing:4.885597pt;}
.ws1c9{word-spacing:4.971008pt;}
.ws3c{word-spacing:5.103520pt;}
.wsd0{word-spacing:5.156960pt;}
.ws237{word-spacing:5.169208pt;}
.ws1a4{word-spacing:5.179910pt;}
.wsb1{word-spacing:5.194368pt;}
.ws17e{word-spacing:5.249475pt;}
.ws1ab{word-spacing:5.277440pt;}
.ws1aa{word-spacing:5.311488pt;}
.wsb0{word-spacing:5.424160pt;}
.ws2f{word-spacing:5.445536pt;}
.ws136{word-spacing:5.458170pt;}
.ws137{word-spacing:5.463521pt;}
.ws1ea{word-spacing:5.468872pt;}
.wsc8{word-spacing:5.482944pt;}
.ws1f5{word-spacing:5.490276pt;}
.ws12d{word-spacing:5.495628pt;}
.ws28b{word-spacing:5.622176pt;}
.wsaf{word-spacing:5.728768pt;}
.ws28c{word-spacing:5.732832pt;}
.ws186{word-spacing:5.779238pt;}
.ws6d{word-spacing:5.782208pt;}
.ws198{word-spacing:5.800643pt;}
.ws187{word-spacing:5.891612pt;}
.ws10{word-spacing:5.910464pt;}
.ws1b{word-spacing:6.070784pt;}
.wsae{word-spacing:6.081472pt;}
.ws4b{word-spacing:6.086816pt;}
.ws24e{word-spacing:6.094956pt;}
.ws241{word-spacing:6.116361pt;}
.ws171{word-spacing:6.121712pt;}
.ws2ac{word-spacing:6.127063pt;}
.ws13f{word-spacing:6.175223pt;}
.ws19f{word-spacing:6.228735pt;}
.ws1eb{word-spacing:6.264832pt;}
.ws94{word-spacing:6.380736pt;}
.ws18{word-spacing:6.396768pt;}
.ws9a{word-spacing:6.412800pt;}
.ws1dd{word-spacing:6.416025pt;}
.ws19b{word-spacing:6.421376pt;}
.ws1b3{word-spacing:6.426727pt;}
.ws2a6{word-spacing:6.428832pt;}
.ws23c{word-spacing:6.432078pt;}
.ws2a7{word-spacing:6.448132pt;}
.ws18c{word-spacing:6.544452pt;}
.ws13e{word-spacing:6.549804pt;}
.ws252{word-spacing:6.758498pt;}
.ws192{word-spacing:6.774552pt;}
.ws1df{word-spacing:6.790605pt;}
.ws222{word-spacing:6.801307pt;}
.ws68{word-spacing:6.867040pt;}
.ws2b{word-spacing:7.038048pt;}
.ws2a0{word-spacing:7.063514pt;}
.ws1e8{word-spacing:7.074216pt;}
.ws152{word-spacing:7.095620pt;}
.ws240{word-spacing:7.111674pt;}
.ws21{word-spacing:7.112864pt;}
.ws4c{word-spacing:7.171648pt;}
.ws153{word-spacing:7.197292pt;}
.ws1a7{word-spacing:7.205408pt;}
.ws1ae{word-spacing:7.213920pt;}
.ws9c{word-spacing:7.358688pt;}
.ws6c{word-spacing:7.364032pt;}
.ws1e2{word-spacing:7.379231pt;}
.ws149{word-spacing:7.384582pt;}
.ws1e3{word-spacing:7.389934pt;}
.ws20{word-spacing:7.390752pt;}
.ws203{word-spacing:7.405987pt;}
.ws5b{word-spacing:7.652608pt;}
.wsca{word-spacing:7.673984pt;}
.ws18a{word-spacing:7.700300pt;}
.ws2a3{word-spacing:7.711002pt;}
.wsa6{word-spacing:7.738112pt;}
.ws37{word-spacing:7.743456pt;}
.ws154{word-spacing:7.748460pt;}
.wsa7{word-spacing:7.754144pt;}
.ws189{word-spacing:7.759163pt;}
.ws155{word-spacing:7.796621pt;}
.ws286{word-spacing:7.843808pt;}
.ws7a{word-spacing:7.983936pt;}
.ws7c{word-spacing:7.989280pt;}
.ws95{word-spacing:7.999968pt;}
.ws5a{word-spacing:8.021344pt;}
.ws236{word-spacing:8.021369pt;}
.ws81{word-spacing:8.037376pt;}
.ws115{word-spacing:8.042773pt;}
.ws21d{word-spacing:8.064178pt;}
.ws1f{word-spacing:8.080128pt;}
.ws16e{word-spacing:8.150240pt;}
.wse0{word-spacing:8.154944pt;}
.ws285{word-spacing:8.171520pt;}
.ws284{word-spacing:8.269408pt;}
.ws79{word-spacing:8.304576pt;}
.ws54{word-spacing:8.315264pt;}
.wsed{word-spacing:8.315682pt;}
.wsd9{word-spacing:8.336640pt;}
.ws96{word-spacing:8.341984pt;}
.ws196{word-spacing:8.347789pt;}
.wsdf{word-spacing:8.374048pt;}
.ws190{word-spacing:8.385247pt;}
.ws2a{word-spacing:8.395424pt;}
.ws1e{word-spacing:8.406112pt;}
.ws31{word-spacing:8.459552pt;}
.ws16d{word-spacing:8.465184pt;}
.ws26b{word-spacing:8.482208pt;}
.ws26c{word-spacing:8.605632pt;}
.ws8a{word-spacing:8.630560pt;}
.ws29{word-spacing:8.646592pt;}
.ws181{word-spacing:8.658155pt;}
.ws200{word-spacing:8.663506pt;}
.ws22f{word-spacing:8.668858pt;}
.ws97{word-spacing:8.684000pt;}
.ws170{word-spacing:8.706316pt;}
.ws29d{word-spacing:8.738423pt;}
.ws280{word-spacing:8.788640pt;}
.ws26a{word-spacing:8.818432pt;}
.ws27a{word-spacing:8.899296pt;}
.ws55{word-spacing:8.940512pt;}
.ws9b{word-spacing:8.956544pt;}
.wsb4{word-spacing:8.967232pt;}
.ws224{word-spacing:9.005980pt;}
.ws19e{word-spacing:9.027384pt;}
.ws269{word-spacing:9.175936pt;}
.ws281{word-spacing:9.205728pt;}
.ws27f{word-spacing:9.222752pt;}
.ws13d{word-spacing:9.268186pt;}
.ws78{word-spacing:9.282528pt;}
.ws1a{word-spacing:9.287872pt;}
.ws1b7{word-spacing:9.305644pt;}
.ws1f8{word-spacing:9.310995pt;}
.ws1d2{word-spacing:9.412667pt;}
.ws1d8{word-spacing:9.423369pt;}
.ws25f{word-spacing:9.461088pt;}
.ws25e{word-spacing:9.546208pt;}
.ws50{word-spacing:9.587136pt;}
.ws88{word-spacing:9.592480pt;}
.wsdc{word-spacing:9.608512pt;}
.ws19{word-spacing:9.619200pt;}
.ws23b{word-spacing:9.621362pt;}
.ws1de{word-spacing:9.632064pt;}
.ws1cf{word-spacing:9.637415pt;}
.ws177{word-spacing:9.648117pt;}
.ws1d7{word-spacing:9.669522pt;}
.ws1cc{word-spacing:9.835616pt;}
.wsa0{word-spacing:9.907776pt;}
.ws11{word-spacing:9.923808pt;}
.ws8c{word-spacing:9.939840pt;}
.ws109{word-spacing:9.942431pt;}
.ws1e9{word-spacing:9.958484pt;}
.ws2d{word-spacing:9.961216pt;}
.ws52{word-spacing:10.249792pt;}
.ws112{word-spacing:10.290255pt;}
.ws2a2{word-spacing:10.343767pt;}
.ws15f{word-spacing:10.414432pt;}
.ws202{word-spacing:10.573866pt;}
.ws239{word-spacing:10.579217pt;}
.ws2a1{word-spacing:10.589919pt;}
.ws1fd{word-spacing:10.600622pt;}
.ws111{word-spacing:10.638080pt;}
.ws1ff{word-spacing:10.696942pt;}
.ws1c3{word-spacing:10.780448pt;}
.ws43{word-spacing:10.869696pt;}
.ws142{word-spacing:10.916339pt;}
.ws233{word-spacing:10.948446pt;}
.ws1fe{word-spacing:10.964500pt;}
.ws1c2{word-spacing:10.984736pt;}
.ws234{word-spacing:11.001958pt;}
.ws256{word-spacing:11.154976pt;}
.ws138{word-spacing:11.199950pt;}
.ws18e{word-spacing:11.210652pt;}
.ws27{word-spacing:11.217056pt;}
.ws253{word-spacing:11.221355pt;}
.ws130{word-spacing:11.232057pt;}
.ws176{word-spacing:11.237408pt;}
.ws1b4{word-spacing:11.248110pt;}
.ws254{word-spacing:11.280217pt;}
.ws1c1{word-spacing:11.401824pt;}
.ws6e{word-spacing:11.510976pt;}
.ws17d{word-spacing:11.515668pt;}
.ws1e6{word-spacing:11.521019pt;}
.wse6{word-spacing:11.532352pt;}
.ws12e{word-spacing:11.537072pt;}
.ws104{word-spacing:11.553126pt;}
.ws4e{word-spacing:11.559072pt;}
.ws144{word-spacing:11.579881pt;}
.ws22c{word-spacing:11.654797pt;}
.ws191{word-spacing:11.847439pt;}
.wsd3{word-spacing:11.852992pt;}
.ws143{word-spacing:11.900950pt;}
.ws6a{word-spacing:11.901088pt;}
.ws1ee{word-spacing:12.001920pt;}
.ws219{word-spacing:12.014688pt;}
.ws262{word-spacing:12.040224pt;}
.ws261{word-spacing:12.087040pt;}
.ws131{word-spacing:12.163156pt;}
.ws20b{word-spacing:12.189912pt;}
.ws2a9{word-spacing:12.195263pt;}
.ws91{word-spacing:12.200352pt;}
.ws90{word-spacing:12.243104pt;}
.ws184{word-spacing:12.296935pt;}
.ws24f{word-spacing:12.302286pt;}
.wsff{word-spacing:12.321120pt;}
.ws267{word-spacing:12.325376pt;}
.ws5c{word-spacing:12.462208pt;}
.ws5d{word-spacing:12.467552pt;}
.ws1dc{word-spacing:12.510981pt;}
.ws1ce{word-spacing:12.516332pt;}
.ws120{word-spacing:12.521683pt;}
.ws65{word-spacing:12.638560pt;}
.ws8d{word-spacing:12.782848pt;}
.wsb9{word-spacing:12.788192pt;}
.ws1a1{word-spacing:12.842752pt;}
.ws242{word-spacing:12.848103pt;}
.ws11c{word-spacing:12.853454pt;}
.ws1ed{word-spacing:12.861632pt;}
.ws11d{word-spacing:12.901615pt;}
.ws1bf{word-spacing:13.121012pt;}
.ws9d{word-spacing:13.124864pt;}
.ws11f{word-spacing:13.126363pt;}
.ws9e{word-spacing:13.151584pt;}
.ws226{word-spacing:13.206630pt;}
.ws60{word-spacing:13.221056pt;}
.ws5f{word-spacing:13.274496pt;}
.wsdb{word-spacing:13.434816pt;}
.ws48{word-spacing:13.440160pt;}
.ws4a{word-spacing:13.450848pt;}
.ws1db{word-spacing:13.506294pt;}
.ws5e{word-spacing:13.536352pt;}
.ws18d{word-spacing:13.789905pt;}
.ws40{word-spacing:13.894400pt;}
.ws76{word-spacing:14.076096pt;}
.ws1f7{word-spacing:14.078867pt;}
.ws14a{word-spacing:14.127027pt;}
.ws197{word-spacing:14.132378pt;}
.ws2e{word-spacing:14.140224pt;}
.wsa9{word-spacing:14.391392pt;}
.ws2ad{word-spacing:14.421340pt;}
.ws8e{word-spacing:14.423456pt;}
.ws29f{word-spacing:14.469501pt;}
.ws29e{word-spacing:14.492928pt;}
.wsea{word-spacing:14.726356pt;}
.ws195{word-spacing:14.731707pt;}
.ws201{word-spacing:14.753111pt;}
.ws251{word-spacing:14.758463pt;}
.ws17b{word-spacing:14.785218pt;}
.ws3b{word-spacing:14.818912pt;}
.ws38{word-spacing:15.038016pt;}
.ws92{word-spacing:15.043360pt;}
.ws250{word-spacing:15.095585pt;}
.ws39{word-spacing:15.096800pt;}
.ws227{word-spacing:15.127692pt;}
.ws2aa{word-spacing:15.175852pt;}
.ws1b5{word-spacing:15.379196pt;}
.ws10a{word-spacing:15.384547pt;}
.ws232{word-spacing:15.389898pt;}
.ws10b{word-spacing:15.422005pt;}
.wsa5{word-spacing:15.454848pt;}
.ws7e{word-spacing:15.476224pt;}
.ws1c{word-spacing:15.508288pt;}
.ws16{word-spacing:15.711360pt;}
.ws106{word-spacing:15.716318pt;}
.ws1b8{word-spacing:15.748425pt;}
.wsa4{word-spacing:15.775488pt;}
.ws28d{word-spacing:15.960000pt;}
.ws64{word-spacing:16.010624pt;}
.ws26{word-spacing:16.037344pt;}
.ws1fa{word-spacing:16.053440pt;}
.ws15{word-spacing:16.069408pt;}
.ws25{word-spacing:16.363328pt;}
.ws225{word-spacing:16.379860pt;}
.ws1b1{word-spacing:16.642066pt;}
.wsde{word-spacing:16.956512pt;}
.wsfe{word-spacing:17.147424pt;}
.wsfd{word-spacing:17.198496pt;}
.wsa3{word-spacing:17.592448pt;}
.ws238{word-spacing:17.626677pt;}
.ws229{word-spacing:17.632028pt;}
.ws185{word-spacing:17.642731pt;}
.ws1ba{word-spacing:17.648082pt;}
.wsab{word-spacing:17.897056pt;}
.ws4f{word-spacing:17.907744pt;}
.ws1bc{word-spacing:17.920990pt;}
.ws80{word-spacing:17.971872pt;}
.ws223{word-spacing:18.054769pt;}
.ws36{word-spacing:18.244416pt;}
.ws180{word-spacing:18.311624pt;}
.wsaa{word-spacing:18.329920pt;}
.ws1f3{word-spacing:18.436992pt;}
.ws151{word-spacing:18.630576pt;}
.ws53{word-spacing:18.891040pt;}
.ws1f9{word-spacing:18.932357pt;}
.ws29c{word-spacing:19.210617pt;}
.ws98{word-spacing:19.543008pt;}
.ws29b{word-spacing:19.606601pt;}
.ws70{word-spacing:19.660576pt;}
.ws277{word-spacing:19.705280pt;}
.ws15d{word-spacing:19.836701pt;}
.ws10d{word-spacing:20.195228pt;}
.ws1a8{word-spacing:20.339424pt;}
.wsac{word-spacing:20.472864pt;}
.ws212{word-spacing:20.654368pt;}
.ws10c{word-spacing:20.821312pt;}
.ws2af{word-spacing:20.869472pt;}
.ws87{word-spacing:21.108800pt;}
.ws1d9{word-spacing:21.522312pt;}
.ws2ab{word-spacing:21.795220pt;}
.ws23a{word-spacing:21.907594pt;}
.ws1f6{word-spacing:22.426656pt;}
.wsd1{word-spacing:22.722688pt;}
.ws2ae{word-spacing:22.801236pt;}
.ws127{word-spacing:22.884512pt;}
.ws14e{word-spacing:23.147305pt;}
.ws174{word-spacing:23.384511pt;}
.ws16c{word-spacing:23.859136pt;}
.ws271{word-spacing:24.178336pt;}
.ws20d{word-spacing:24.208128pt;}
.ws20c{word-spacing:24.510304pt;}
.wse9{word-spacing:24.711595pt;}
.ws7f{word-spacing:24.790816pt;}
.wsec{word-spacing:24.989855pt;}
.ws28{word-spacing:25.271776pt;}
.ws168{word-spacing:26.097792pt;}
.ws24d{word-spacing:26.894863pt;}
.ws23d{word-spacing:26.953726pt;}
.ws255{word-spacing:27.226634pt;}
.ws17f{word-spacing:27.248039pt;}
.ws230{word-spacing:28.184489pt;}
.ws1cb{word-spacing:29.630272pt;}
.ws1ca{word-spacing:29.864352pt;}
.ws1b6{word-spacing:30.421269pt;}
.ws160{word-spacing:33.107424pt;}
.wsd4{word-spacing:33.731328pt;}
.ws1c0{word-spacing:43.398432pt;}
.ws13b{word-spacing:52.510802pt;}
.ws1c7{word-spacing:96.920943pt;}
.wsc7{word-spacing:144.331142pt;}
.ws207{word-spacing:194.519950pt;}
.ws125{word-spacing:237.446496pt;}
.ws124{word-spacing:249.286688pt;}
._f{margin-left:-259.675916pt;}
._29{margin-left:-209.918432pt;}
._9{margin-left:-184.523591pt;}
._d{margin-left:-160.319562pt;}
._c{margin-left:-98.085003pt;}
._a{margin-left:-83.574209pt;}
._e{margin-left:-73.554365pt;}
._b{margin-left:-72.643859pt;}
._1a{margin-left:-27.519296pt;}
._8{margin-left:-22.920416pt;}
._2d{margin-left:-21.436694pt;}
._4{margin-left:-20.478208pt;}
._19{margin-left:-15.679104pt;}
._1e{margin-left:-11.836736pt;}
._1b{margin-left:-9.371712pt;}
._1f{margin-left:-3.612024pt;}
._6{margin-left:-2.559776pt;}
._1{margin-left:-1.106208pt;}
._2{width:0.919168pt;}
._15{width:2.044138pt;}
._1d{width:4.148625pt;}
._1c{width:5.653702pt;}
._10{width:8.330256pt;}
._14{width:9.997344pt;}
._16{width:12.243424pt;}
._22{width:16.734592pt;}
._2c{width:19.560576pt;}
._5{width:21.533643pt;}
._11{width:22.475936pt;}
._7{width:27.276704pt;}
._26{width:29.867904pt;}
._24{width:32.127935pt;}
._25{width:43.596588pt;}
._23{width:48.115005pt;}
._17{width:107.838528pt;}
._28{width:109.282395pt;}
._18{width:120.327424pt;}
._27{width:124.758032pt;}
._2b{width:168.320544pt;}
._0{width:191.996672pt;}
._2a{width:203.139151pt;}
._21{width:267.571931pt;}
._12{width:544.035799pt;}
._13{width:545.915839pt;}
._20{width:653.687650pt;}
._3{width:1491.047040pt;}
.fsf{font-size:26.560000pt;}
.fs18{font-size:30.297600pt;}
.fs8{font-size:30.693867pt;}
.fsb{font-size:31.161067pt;}
.fs7{font-size:31.214933pt;}
.fse{font-size:32.000000pt;}
.fs12{font-size:33.460267pt;}
.fs5{font-size:34.560000pt;}
.fs19{font-size:36.306133pt;}
.fs1b{font-size:38.053867pt;}
.fs17{font-size:38.117333pt;}
.fs15{font-size:39.540267pt;}
.fs11{font-size:39.833600pt;}
.fs13{font-size:39.971200pt;}
.fs16{font-size:42.098667pt;}
.fs0{font-size:42.560000pt;}
.fs1a{font-size:43.174933pt;}
.fs1c{font-size:43.908800pt;}
.fs14{font-size:44.980424pt;}
.fs9{font-size:52.617600pt;}
.fsc{font-size:53.420267pt;}
.fs3{font-size:53.440000pt;}
.fs6{font-size:53.511467pt;}
.fsa{font-size:55.610048pt;}
.fsd{font-size:56.458063pt;}
.fs10{font-size:56.479151pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.fs1{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y207{bottom:1.360400pt;}
.y206{bottom:1.520400pt;}
.y1bf{bottom:2.160400pt;}
.yd7{bottom:2.880400pt;}
.yf1{bottom:109.866852pt;}
.yaf{bottom:110.342819pt;}
.y8a{bottom:110.417384pt;}
.yc9{bottom:110.906595pt;}
.y2b2{bottom:111.386064pt;}
.y2d{bottom:111.860019pt;}
.y2e8{bottom:112.187897pt;}
.y54{bottom:112.975803pt;}
.y17e{bottom:123.387091pt;}
.y14b{bottom:124.427415pt;}
.yf0{bottom:125.466782pt;}
.yae{bottom:125.943291pt;}
.y89{bottom:126.017856pt;}
.yc8{bottom:126.507067pt;}
.y1a0{bottom:127.387067pt;}
.y2c{bottom:127.460491pt;}
.y2e7{bottom:127.787827pt;}
.y2b1{bottom:127.946160pt;}
.y111{bottom:128.187206pt;}
.y53{bottom:128.576275pt;}
.y17d{bottom:135.946547pt;}
.y1bc{bottom:136.267611pt;}
.y1db{bottom:138.186027pt;}
.y14a{bottom:140.027345pt;}
.y2b0{bottom:140.506680pt;}
.yef{bottom:141.066713pt;}
.yad{bottom:141.543763pt;}
.y88{bottom:141.618328pt;}
.yc7{bottom:142.107539pt;}
.y2b{bottom:143.060963pt;}
.y203{bottom:143.068916pt;}
.y2e6{bottom:143.387757pt;}
.y110{bottom:143.787136pt;}
.y52{bottom:144.176747pt;}
.y233{bottom:144.188526pt;}
.y19f{bottom:145.627067pt;}
.y17c{bottom:148.507067pt;}
.y1bb{bottom:148.827067pt;}
.y1da{bottom:150.746547pt;}
.y2af{bottom:153.067200pt;}
.y149{bottom:155.627276pt;}
.yac{bottom:157.144235pt;}
.y87{bottom:157.218800pt;}
.y2a{bottom:158.661435pt;}
.y202{bottom:158.668846pt;}
.y2e5{bottom:158.987688pt;}
.y10f{bottom:159.386978pt;}
.y51{bottom:159.777219pt;}
.y232{bottom:159.788456pt;}
.y257{bottom:160.187091pt;}
.y1d9{bottom:161.947067pt;}
.y1d8{bottom:163.307067pt;}
.y1d7{bottom:163.307283pt;}
.y289{bottom:163.468036pt;}
.yeb{bottom:164.587479pt;}
.y2ae{bottom:165.625875pt;}
.yc6{bottom:166.585651pt;}
.y17b{bottom:166.747067pt;}
.y1ba{bottom:167.067200pt;}
.yed{bottom:167.947067pt;}
.yea{bottom:167.947476pt;}
.y148{bottom:171.227206pt;}
.yab{bottom:172.744707pt;}
.y256{bottom:172.746547pt;}
.y175{bottom:172.987086pt;}
.y29{bottom:174.261907pt;}
.y201{bottom:174.268777pt;}
.y2e4{bottom:174.587618pt;}
.ye8{bottom:174.987067pt;}
.y50{bottom:175.377691pt;}
.y1d6{bottom:176.587067pt;}
.ye9{bottom:178.347067pt;}
.y288{bottom:179.067966pt;}
.y86{bottom:180.819240pt;}
.yee{bottom:181.627067pt;}
.yc5{bottom:182.186123pt;}
.y231{bottom:183.388351pt;}
.y10e{bottom:183.867136pt;}
.y255{bottom:185.307067pt;}
.y2ad{bottom:186.185547pt;}
.yec{bottom:186.667067pt;}
.y147{bottom:186.827136pt;}
.yaa{bottom:188.345179pt;}
.y174{bottom:188.347019pt;}
.y200{bottom:189.868707pt;}
.y2e3{bottom:190.187548pt;}
.y4f{bottom:190.978163pt;}
.y287{bottom:194.667897pt;}
.y1d5{bottom:194.827067pt;}
.y85{bottom:196.419712pt;}
.yc4{bottom:197.786595pt;}
.y28{bottom:197.862347pt;}
.y2ac{bottom:198.745003pt;}
.y230{bottom:198.988281pt;}
.y10d{bottom:199.467270pt;}
.y146{bottom:202.427151pt;}
.y16d{bottom:203.547067pt;}
.ya9{bottom:203.945651pt;}
.y1ff{bottom:205.468637pt;}
.y2e2{bottom:205.787479pt;}
.y4e{bottom:206.578635pt;}
.y286{bottom:210.267827pt;}
.ye7{bottom:210.506870pt;}
.y2ab{bottom:211.305523pt;}
.y84{bottom:212.020184pt;}
.y27{bottom:213.462819pt;}
.y22f{bottom:214.588211pt;}
.y10c{bottom:215.067187pt;}
.y17a{bottom:216.347067pt;}
.y145{bottom:218.907345pt;}
.ya8{bottom:219.546123pt;}
.y1fe{bottom:221.068567pt;}
.y249{bottom:221.387388pt;}
.y2e1{bottom:221.387409pt;}
.yc3{bottom:222.266123pt;}
.y16e{bottom:225.707100pt;}
.y285{bottom:225.867757pt;}
.ye6{bottom:226.106800pt;}
.y83{bottom:227.620656pt;}
.y26{bottom:229.063291pt;}
.y4d{bottom:230.179075pt;}
.y22e{bottom:230.188142pt;}
.y179{bottom:230.347067pt;}
.y2aa{bottom:231.865195pt;}
.y248{bottom:233.947067pt;}
.y144{bottom:234.507276pt;}
.ya7{bottom:235.146595pt;}
.y1fd{bottom:236.668498pt;}
.y2e0{bottom:236.987339pt;}
.yc2{bottom:237.866595pt;}
.y10b{bottom:239.547345pt;}
.y284{bottom:241.467688pt;}
.ye5{bottom:241.706731pt;}
.y82{bottom:243.221128pt;}
.y2a9{bottom:244.425715pt;}
.y178{bottom:244.507067pt;}
.y25{bottom:244.663763pt;}
.y24a{bottom:245.707067pt;}
.y4c{bottom:245.779547pt;}
.y22d{bottom:245.788072pt;}
.y16f{bottom:248.106960pt;}
.y176{bottom:250.107067pt;}
.y143{bottom:250.107206pt;}
.ya6{bottom:250.747067pt;}
.y1fc{bottom:252.268428pt;}
.y2df{bottom:252.587270pt;}
.yc1{bottom:253.467067pt;}
.y10a{bottom:255.147276pt;}
.y283{bottom:257.067618pt;}
.y177{bottom:258.507067pt;}
.y81{bottom:258.821600pt;}
.y24{bottom:260.264235pt;}
.y4b{bottom:261.380019pt;}
.y22c{bottom:261.388002pt;}
.y2a8{bottom:264.985387pt;}
.y142{bottom:265.707136pt;}
.ydd{bottom:267.387067pt;}
.y2de{bottom:268.187200pt;}
.y170{bottom:270.266994pt;}
.ye2{bottom:270.667067pt;}
.y109{bottom:270.747206pt;}
.y24b{bottom:271.867197pt;}
.y282{bottom:272.667548pt;}
.ya5{bottom:273.867067pt;}
.y23{bottom:275.864707pt;}
.y1fb{bottom:275.868323pt;}
.y4a{bottom:276.980491pt;}
.y22b{bottom:276.987933pt;}
.yc0{bottom:277.467200pt;}
.y2a7{bottom:277.545907pt;}
.ydf{bottom:278.746867pt;}
.y141{bottom:279.307067pt;}
.y13f{bottom:281.307012pt;}
.y140{bottom:281.307067pt;}
.ye1{bottom:282.026667pt;}
.ye4{bottom:282.027067pt;}
.y80{bottom:282.422040pt;}
.y108{bottom:286.347136pt;}
.yde{bottom:287.147011pt;}
.ye3{bottom:287.546667pt;}
.y281{bottom:288.267479pt;}
.ye0{bottom:290.427067pt;}
.y22{bottom:291.465179pt;}
.y1fa{bottom:291.468253pt;}
.y2dd{bottom:292.027136pt;}
.ya4{bottom:292.107067pt;}
.y49{bottom:292.580963pt;}
.y171{bottom:292.666854pt;}
.ybf{bottom:296.187200pt;}
.y24c{bottom:297.707675pt;}
.y13e{bottom:297.787206pt;}
.y7f{bottom:298.022512pt;}
.y2a6{bottom:298.105579pt;}
.y22a{bottom:300.587827pt;}
.y107{bottom:301.947496pt;}
.y280{bottom:303.867409pt;}
.y21{bottom:307.065651pt;}
.y1f9{bottom:307.068183pt;}
.y2dc{bottom:307.627415pt;}
.y48{bottom:308.181435pt;}
.y2a5{bottom:310.666099pt;}
.y251{bottom:311.227067pt;}
.y13d{bottom:313.387136pt;}
.y7e{bottom:313.622984pt;}
.ydc{bottom:313.867555pt;}
.y172{bottom:314.826887pt;}
.y229{bottom:316.187757pt;}
.y27f{bottom:319.467339pt;}
.y20{bottom:322.666123pt;}
.y1f8{bottom:322.668114pt;}
.y2a4{bottom:323.226619pt;}
.y2db{bottom:323.227345pt;}
.y47{bottom:323.781907pt;}
.y24d{bottom:323.867806pt;}
.y106{bottom:326.427654pt;}
.y13b{bottom:328.986873pt;}
.y13c{bottom:328.987067pt;}
.y7d{bottom:329.223456pt;}
.ydb{bottom:329.467486pt;}
.y228{bottom:331.787688pt;}
.y27e{bottom:335.067270pt;}
.y173{bottom:337.226748pt;}
.ybe{bottom:338.027067pt;}
.y1f{bottom:338.266595pt;}
.y1f7{bottom:338.268044pt;}
.y2da{bottom:338.827276pt;}
.y46{bottom:339.382379pt;}
.y105{bottom:342.027584pt;}
.y13a{bottom:343.467067pt;}
.y2a3{bottom:343.786291pt;}
.y7c{bottom:344.823928pt;}
.y138{bottom:345.466873pt;}
.y139{bottom:345.467067pt;}
.y19e{bottom:345.788880pt;}
.y227{bottom:347.387618pt;}
.y24e{bottom:350.027937pt;}
.y27d{bottom:350.667200pt;}
.yd5{bottom:352.987113pt;}
.y1e{bottom:353.867067pt;}
.y1f6{bottom:353.867974pt;}
.y2d9{bottom:354.427206pt;}
.y45{bottom:354.982851pt;}
.yd8{bottom:360.027067pt;}
.y7b{bottom:360.424400pt;}
.y254{bottom:360.987200pt;}
.y19d{bottom:361.388810pt;}
.y137{bottom:361.947136pt;}
.y2a2{bottom:362.986171pt;}
.y226{bottom:362.987548pt;}
.yd3{bottom:363.387067pt;}
.ybd{bottom:364.267067pt;}
.y104{bottom:365.627479pt;}
.yd9{bottom:368.586982pt;}
.yd6{bottom:368.986667pt;}
.yd4{bottom:369.387067pt;}
.y1f5{bottom:369.467905pt;}
.y2d8{bottom:370.027136pt;}
.y44{bottom:370.583323pt;}
.yda{bottom:371.867296pt;}
.y16c{bottom:372.588155pt;}
.y27c{bottom:375.227067pt;}
.y24f{bottom:375.948328pt;}
.y19c{bottom:376.988741pt;}
.y136{bottom:377.547270pt;}
.y1d{bottom:378.427067pt;}
.y225{bottom:378.587479pt;}
.y253{bottom:380.587200pt;}
.y103{bottom:381.227409pt;}
.y2a1{bottom:382.186051pt;}
.y7a{bottom:384.024840pt;}
.y16b{bottom:385.147611pt;}
.y2d7{bottom:385.627067pt;}
.y43{bottom:386.183795pt;}
.y19b{bottom:392.588671pt;}
.y1f4{bottom:393.067799pt;}
.y135{bottom:393.147694pt;}
.y224{bottom:394.187409pt;}
.yd2{bottom:395.626595pt;}
.y102{bottom:396.827339pt;}
.y16a{bottom:397.707067pt;}
.y79{bottom:399.625312pt;}
.y252{bottom:400.267067pt;}
.y2a0{bottom:401.385931pt;}
.y42{bottom:401.784267pt;}
.y250{bottom:401.788806pt;}
.y1f3{bottom:408.667730pt;}
.y134{bottom:408.747624pt;}
.y2d6{bottom:409.467415pt;}
.y223{bottom:409.787339pt;}
.yd1{bottom:411.227067pt;}
.y101{bottom:412.427270pt;}
.y78{bottom:415.225784pt;}
.y169{bottom:415.947200pt;}
.y19a{bottom:416.188566pt;}
.y41{bottom:417.384739pt;}
.y29f{bottom:420.585811pt;}
.y164{bottom:422.108506pt;}
.y1f2{bottom:424.267660pt;}
.y133{bottom:424.347554pt;}
.y2d5{bottom:425.067345pt;}
.y222{bottom:425.387270pt;}
.y100{bottom:428.027200pt;}
.y27b{bottom:428.109543pt;}
.y77{bottom:430.826256pt;}
.y1c{bottom:431.306728pt;}
.y199{bottom:431.788496pt;}
.y40{bottom:432.985211pt;}
.yd0{bottom:434.347067pt;}
.y163{bottom:436.028357pt;}
.y29e{bottom:439.785691pt;}
.y1f1{bottom:439.867590pt;}
.y132{bottom:439.947485pt;}
.y2d4{bottom:440.667276pt;}
.y221{bottom:440.987200pt;}
.y247{bottom:442.347091pt;}
.y27a{bottom:443.709473pt;}
.y76{bottom:446.426728pt;}
.y1b{bottom:446.907200pt;}
.y198{bottom:447.388426pt;}
.y3f{bottom:448.585683pt;}
.y15c{bottom:451.147200pt;}
.yff{bottom:451.148155pt;}
.ycf{bottom:452.587067pt;}
.y246{bottom:454.907611pt;}
.y1f0{bottom:455.467520pt;}
.y131{bottom:455.547415pt;}
.y2d3{bottom:456.267206pt;}
.y1b9{bottom:456.587067pt;}
.y1b7{bottom:457.946763pt;}
.y1b8{bottom:457.947200pt;}
.y29d{bottom:458.985571pt;}
.y279{bottom:459.309404pt;}
.y75{bottom:462.027200pt;}
.y197{bottom:462.988357pt;}
.yfe{bottom:463.707611pt;}
.y220{bottom:464.987200pt;}
.y245{bottom:467.467067pt;}
.y1d4{bottom:469.308251pt;}
.y1ef{bottom:471.067451pt;}
.y130{bottom:471.147345pt;}
.y1b6{bottom:471.226547pt;}
.y1a{bottom:471.467067pt;}
.y2d2{bottom:471.867136pt;}
.y3e{bottom:472.186123pt;}
.y278{bottom:474.909334pt;}
.y15d{bottom:475.467604pt;}
.yfd{bottom:476.267067pt;}
.y29c{bottom:478.185451pt;}
.y196{bottom:478.588287pt;}
.y244{bottom:481.707067pt;}
.y1b5{bottom:483.787067pt;}
.y1d3{bottom:484.908182pt;}
.y74{bottom:486.027067pt;}
.y1ee{bottom:486.667381pt;}
.y12f{bottom:486.747276pt;}
.y2d1{bottom:487.467067pt;}
.y3d{bottom:487.786595pt;}
.y195{bottom:494.188217pt;}
.ybc{bottom:496.503203pt;}
.y29b{bottom:497.385331pt;}
.yfc{bottom:497.546968pt;}
.y277{bottom:498.509229pt;}
.y238{bottom:498.586833pt;}
.y15e{bottom:499.947343pt;}
.y1d2{bottom:500.508112pt;}
.y1b4{bottom:502.027067pt;}
.y1ed{bottom:502.267311pt;}
.y12e{bottom:502.347206pt;}
.y165{bottom:503.067067pt;}
.y3c{bottom:503.387067pt;}
.y21f{bottom:506.826027pt;}
.y194{bottom:509.788148pt;}
.y237{bottom:511.067067pt;}
.ybb{bottom:512.103675pt;}
.y2d0{bottom:512.267067pt;}
.y276{bottom:514.109159pt;}
.y1d1{bottom:516.108042pt;}
.y29a{bottom:516.585211pt;}
.y12d{bottom:517.947136pt;}
.y21e{bottom:519.386547pt;}
.y239{bottom:522.747067pt;}
.y15f{bottom:524.267748pt;}
.y193{bottom:525.388078pt;}
.y1ec{bottom:525.867206pt;}
.y3b{bottom:527.387067pt;}
.yba{bottom:527.704147pt;}
.y73{bottom:528.332971pt;}
.y275{bottom:529.709089pt;}
.y1d0{bottom:531.707973pt;}
.y21d{bottom:531.947067pt;}
.y19{bottom:532.338611pt;}
.y12c{bottom:533.547067pt;}
.y299{bottom:535.785091pt;}
.y243{bottom:536.107067pt;}
.y192{bottom:540.988008pt;}
.y1eb{bottom:541.467136pt;}
.yb9{bottom:543.304619pt;}
.y72{bottom:543.933443pt;}
.y274{bottom:545.309019pt;}
.y1cf{bottom:547.307903pt;}
.y18{bottom:547.939083pt;}
.y298{bottom:548.344547pt;}
.y160{bottom:548.588152pt;}
.y23a{bottom:549.067198pt;}
.y242{bottom:555.787067pt;}
.ya3{bottom:556.585179pt;}
.y191{bottom:556.587939pt;}
.y1ea{bottom:557.066957pt;}
.y12b{bottom:557.547067pt;}
.y21c{bottom:558.187067pt;}
.yb8{bottom:558.905091pt;}
.y71{bottom:559.533915pt;}
.y297{bottom:560.905067pt;}
.y273{bottom:560.908950pt;}
.y168{bottom:562.107067pt;}
.y1ce{bottom:562.907833pt;}
.y17{bottom:563.539555pt;}
.y2cf{bottom:564.663995pt;}
.y3a{bottom:569.704707pt;}
.ya2{bottom:572.185651pt;}
.y190{bottom:572.187869pt;}
.y161{bottom:573.067891pt;}
.y1e9{bottom:573.547151pt;}
.yb7{bottom:574.505563pt;}
.y70{bottom:575.134387pt;}
.y167{bottom:575.227067pt;}
.y241{bottom:575.547067pt;}
.y23b{bottom:575.626950pt;}
.y272{bottom:576.508880pt;}
.y2ce{bottom:577.223451pt;}
.y1cd{bottom:578.507763pt;}
.y16{bottom:579.140027pt;}
.y296{bottom:581.464739pt;}
.y20f{bottom:581.947405pt;}
.y39{bottom:585.305179pt;}
.ya1{bottom:587.786123pt;}
.y18f{bottom:587.787799pt;}
.y166{bottom:588.347067pt;}
.y1e8{bottom:589.147082pt;}
.y2cd{bottom:589.783971pt;}
.y240{bottom:589.867067pt;}
.yb6{bottom:590.106035pt;}
.y6f{bottom:590.734859pt;}
.y271{bottom:592.108810pt;}
.y295{bottom:594.025259pt;}
.y1cc{bottom:594.107694pt;}
.y20e{bottom:594.507067pt;}
.y15{bottom:594.740499pt;}
.yfb{bottom:595.306968pt;}
.y162{bottom:597.388296pt;}
.y12a{bottom:599.386547pt;}
.y38{bottom:600.905651pt;}
.y23c{bottom:602.186702pt;}
.y2cc{bottom:602.344491pt;}
.ya0{bottom:603.386595pt;}
.y18e{bottom:603.387730pt;}
.y1e7{bottom:605.627276pt;}
.yb5{bottom:605.706507pt;}
.y210{bottom:606.267067pt;}
.y6e{bottom:606.335331pt;}
.y270{bottom:607.708741pt;}
.y1cb{bottom:609.707624pt;}
.y14{bottom:610.340971pt;}
.y129{bottom:611.947067pt;}
.y294{bottom:614.584931pt;}
.y37{bottom:616.506123pt;}
.y9f{bottom:618.984235pt;}
.y18d{bottom:618.987660pt;}
.y1e6{bottom:621.227206pt;}
.yb4{bottom:621.306979pt;}
.y6d{bottom:621.935803pt;}
.y2cb{bottom:622.904163pt;}
.y1ca{bottom:625.307554pt;}
.y13{bottom:625.941443pt;}
.y293{bottom:627.145451pt;}
.y23d{bottom:628.826327pt;}
.y26f{bottom:631.308635pt;}
.y36{bottom:632.106595pt;}
.y211{bottom:632.426993pt;}
.y9e{bottom:634.584707pt;}
.y18c{bottom:634.587590pt;}
.y2ca{bottom:635.464683pt;}
.y15b{bottom:635.786027pt;}
.y1e5{bottom:636.827136pt;}
.yb3{bottom:636.907451pt;}
.y128{bottom:637.227067pt;}
.y6c{bottom:637.536275pt;}
.y292{bottom:639.705971pt;}
.y1c9{bottom:640.907485pt;}
.y12{bottom:641.541915pt;}
.y26e{bottom:646.908566pt;}
.y35{bottom:647.707067pt;}
.y2c9{bottom:648.025203pt;}
.y15a{bottom:648.346547pt;}
.y9d{bottom:650.185179pt;}
.y1e4{bottom:652.427067pt;}
.yb2{bottom:652.747067pt;}
.y6b{bottom:653.136747pt;}
.y23e{bottom:655.066585pt;}
.y127{bottom:656.427067pt;}
.y1c8{bottom:656.507415pt;}
.y11{bottom:657.142387pt;}
.y18b{bottom:658.187485pt;}
.y212{bottom:658.346779pt;}
.y291{bottom:660.265643pt;}
.y2c8{bottom:660.585723pt;}
.y159{bottom:660.907067pt;}
.y26d{bottom:662.508496pt;}
.y9c{bottom:665.785651pt;}
.y6a{bottom:668.737219pt;}
.y217{bottom:671.867067pt;}
.y1c7{bottom:672.107345pt;}
.y34{bottom:672.267067pt;}
.y10{bottom:672.742859pt;}
.y290{bottom:672.826163pt;}
.y18a{bottom:673.787415pt;}
.y126{bottom:675.627067pt;}
.yb1{bottom:675.867067pt;}
.y1e3{bottom:676.427067pt;}
.y26c{bottom:678.108426pt;}
.y2c7{bottom:681.145395pt;}
.y9b{bottom:681.386123pt;}
.y23f{bottom:681.706210pt;}
.y158{bottom:682.188006pt;}
.y69{bottom:684.337691pt;}
.y213{bottom:684.586751pt;}
.y1c6{bottom:687.707276pt;}
.yf{bottom:688.343331pt;}
.y189{bottom:689.387345pt;}
.yce{bottom:692.907067pt;}
.yfa{bottom:693.067247pt;}
.y28f{bottom:693.385835pt;}
.y2c6{bottom:693.705915pt;}
.y26b{bottom:693.708357pt;}
.y125{bottom:694.827067pt;}
.y9a{bottom:696.986595pt;}
.yb0{bottom:702.107067pt;}
.y1c5{bottom:703.307206pt;}
.ye{bottom:703.943803pt;}
.y188{bottom:704.987276pt;}
.y28e{bottom:705.946355pt;}
.y68{bottom:707.938131pt;}
.y21b{bottom:708.587067pt;}
.y26a{bottom:709.308287pt;}
.y214{bottom:710.746677pt;}
.ycd{bottom:711.147200pt;}
.y124{bottom:711.547067pt;}
.y1b3{bottom:712.428287pt;}
.y99{bottom:712.587067pt;}
.y2c5{bottom:714.265587pt;}
.y236{bottom:717.386547pt;}
.y1e2{bottom:718.266027pt;}
.y1c4{bottom:718.907136pt;}
.yd{bottom:719.544275pt;}
.y33{bottom:719.777427pt;}
.y187{bottom:720.587206pt;}
.y123{bottom:721.626547pt;}
.y67{bottom:723.538603pt;}
.y21a{bottom:724.187067pt;}
.y269{bottom:724.908217pt;}
.y28d{bottom:726.506027pt;}
.y2c4{bottom:726.826107pt;}
.y1b2{bottom:728.028217pt;}
.y235{bottom:729.947067pt;}
.y1e1{bottom:730.826547pt;}
.y122{bottom:734.187067pt;}
.y1c3{bottom:734.507067pt;}
.yc{bottom:735.144747pt;}
.y32{bottom:735.377899pt;}
.y186{bottom:736.187136pt;}
.y98{bottom:736.587067pt;}
.y215{bottom:736.746510pt;}
.y28c{bottom:739.066547pt;}
.y66{bottom:739.139075pt;}
.y219{bottom:740.027067pt;}
.y268{bottom:740.508148pt;}
.y1e0{bottom:742.027067pt;}
.y1df{bottom:743.387067pt;}
.y1de{bottom:743.387416pt;}
.y1b1{bottom:743.628148pt;}
.y2c3{bottom:747.385779pt;}
.y234{bottom:748.187067pt;}
.yb{bottom:750.745219pt;}
.y31{bottom:750.978371pt;}
.y28b{bottom:751.627067pt;}
.y185{bottom:751.787067pt;}
.y218{bottom:755.867067pt;}
.y1dd{bottom:756.667200pt;}
.y1b0{bottom:759.228078pt;}
.y121{bottom:759.547067pt;}
.y216{bottom:762.666297pt;}
.y65{bottom:762.739515pt;}
.y267{bottom:764.108042pt;}
.y1c2{bottom:765.626547pt;}
.ya{bottom:766.345691pt;}
.y30{bottom:766.578843pt;}
.y2c2{bottom:767.945451pt;}
.y28a{bottom:773.627067pt;}
.y1af{bottom:774.828008pt;}
.y1dc{bottom:774.907067pt;}
.y184{bottom:775.787067pt;}
.y1c1{bottom:778.187067pt;}
.y64{bottom:778.339987pt;}
.y120{bottom:778.827200pt;}
.y266{bottom:779.707973pt;}
.y97{bottom:779.867067pt;}
.y2c1{bottom:780.505971pt;}
.y9{bottom:781.946163pt;}
.y2f{bottom:782.179315pt;}
.y1ae{bottom:790.427939pt;}
.yf9{bottom:790.827345pt;}
.y63{bottom:793.940459pt;}
.y265{bottom:795.307903pt;}
.y1c0{bottom:796.427067pt;}
.y8{bottom:797.546635pt;}
.y2e{bottom:797.779787pt;}
.y11f{bottom:798.107067pt;}
.y2c0{bottom:801.065643pt;}
.y20d{bottom:803.226547pt;}
.y1ad{bottom:806.027869pt;}
.yf8{bottom:806.427276pt;}
.y62{bottom:809.540931pt;}
.y264{bottom:810.907833pt;}
.y183{bottom:811.067067pt;}
.y7{bottom:813.386251pt;}
.y2bf{bottom:813.626163pt;}
.y20c{bottom:814.427067pt;}
.y20b{bottom:815.787067pt;}
.y20a{bottom:815.787283pt;}
.y1ac{bottom:821.627799pt;}
.yf7{bottom:822.027206pt;}
.y11e{bottom:823.227067pt;}
.y61{bottom:825.141403pt;}
.y157{bottom:825.147903pt;}
.y2be{bottom:826.186683pt;}
.y263{bottom:826.507763pt;}
.y209{bottom:829.067067pt;}
.y96{bottom:832.732464pt;}
.y1ab{bottom:837.227730pt;}
.yf6{bottom:837.627136pt;}
.y60{bottom:840.741875pt;}
.y156{bottom:840.747833pt;}
.y262{bottom:842.107694pt;}
.y6{bottom:844.986659pt;}
.y11d{bottom:845.787067pt;}
.y2bd{bottom:846.746355pt;}
.y208{bottom:847.307067pt;}
.y95{bottom:848.332936pt;}
.y1aa{bottom:852.827660pt;}
.yf5{bottom:853.227067pt;}
.y5f{bottom:856.342347pt;}
.y155{bottom:856.347763pt;}
.y11c{bottom:856.349840pt;}
.y205{bottom:857.466667pt;}
.y261{bottom:857.707624pt;}
.y204{bottom:858.827067pt;}
.y2bc{bottom:859.306875pt;}
.y94{bottom:863.933408pt;}
.y182{bottom:863.947730pt;}
.y1a9{bottom:868.427590pt;}
.y5e{bottom:871.942819pt;}
.y154{bottom:871.947694pt;}
.y11b{bottom:871.949770pt;}
.y260{bottom:873.307554pt;}
.yf4{bottom:876.346547pt;}
.y5{bottom:876.587067pt;}
.y93{bottom:879.533880pt;}
.y181{bottom:879.547660pt;}
.y2bb{bottom:879.866547pt;}
.y1a8{bottom:884.027520pt;}
.y5d{bottom:887.543291pt;}
.y153{bottom:887.547624pt;}
.y11a{bottom:887.549700pt;}
.yf3{bottom:888.907067pt;}
.y25f{bottom:888.907485pt;}
.y2ba{bottom:892.425904pt;}
.y92{bottom:895.134352pt;}
.y180{bottom:895.147590pt;}
.y1a7{bottom:899.627451pt;}
.y5c{bottom:903.143763pt;}
.y152{bottom:903.147554pt;}
.y119{bottom:903.149631pt;}
.y25e{bottom:904.507415pt;}
.y2b9{bottom:904.986424pt;}
.yf2{bottom:907.147067pt;}
.y4{bottom:908.667067pt;}
.y91{bottom:910.734824pt;}
.y17f{bottom:910.747520pt;}
.y1be{bottom:912.266667pt;}
.y1bd{bottom:914.347067pt;}
.y1a6{bottom:915.227381pt;}
.y2b8{bottom:917.546944pt;}
.y5b{bottom:918.744235pt;}
.y151{bottom:918.747485pt;}
.y118{bottom:918.749561pt;}
.y25d{bottom:920.107345pt;}
.y90{bottom:926.335296pt;}
.y1a5{bottom:930.827311pt;}
.y5a{bottom:934.344707pt;}
.y150{bottom:934.347415pt;}
.y117{bottom:934.349491pt;}
.y25c{bottom:935.707276pt;}
.y2b7{bottom:938.106616pt;}
.y8f{bottom:949.935736pt;}
.y59{bottom:949.945179pt;}
.y14f{bottom:949.947345pt;}
.y116{bottom:949.949422pt;}
.y25b{bottom:951.307206pt;}
.y3{bottom:953.385739pt;}
.y1a4{bottom:954.427206pt;}
.ycc{bottom:956.666595pt;}
.y2b6{bottom:957.306496pt;}
.y8e{bottom:965.536208pt;}
.y58{bottom:965.545651pt;}
.y14e{bottom:965.547276pt;}
.y115{bottom:965.549352pt;}
.y25a{bottom:966.907136pt;}
.y1a3{bottom:970.027136pt;}
.ycb{bottom:972.267067pt;}
.y2b5{bottom:976.506376pt;}
.y8d{bottom:981.136680pt;}
.y57{bottom:981.146123pt;}
.y14d{bottom:981.147206pt;}
.y114{bottom:981.149282pt;}
.y259{bottom:982.507067pt;}
.y2{bottom:984.027067pt;}
.y1a2{bottom:985.627067pt;}
.y2b4{bottom:995.706256pt;}
.y8c{bottom:996.737152pt;}
.y56{bottom:996.746595pt;}
.y14c{bottom:996.747136pt;}
.y113{bottom:996.749213pt;}
.y258{bottom:1007.067067pt;}
.y1a1{bottom:1009.627067pt;}
.y8b{bottom:1012.337624pt;}
.y55{bottom:1012.347067pt;}
.yca{bottom:1012.347211pt;}
.y112{bottom:1012.349143pt;}
.y2b3{bottom:1014.906136pt;}
.y1{bottom:1057.547067pt;}
.h37{height:10.800000pt;}
.h31{height:11.759867pt;}
.h1a{height:15.280000pt;}
.h12{height:15.600000pt;}
.h1f{height:21.651464pt;}
.h10{height:21.688892pt;}
.h27{height:22.234375pt;}
.h32{height:27.454228pt;}
.h30{height:27.473535pt;}
.h36{height:29.230617pt;}
.h35{height:29.251173pt;}
.h22{height:29.571719pt;}
.h16{height:30.109364pt;}
.h1d{height:30.567667pt;}
.h13{height:30.620508pt;}
.h2e{height:31.231525pt;}
.h39{height:31.599450pt;}
.h14{height:31.692789pt;}
.h2b{height:34.898013pt;}
.h33{height:35.011719pt;}
.h2f{height:35.012252pt;}
.h1b{height:36.534291pt;}
.h19{height:36.559983pt;}
.h20{height:37.117695pt;}
.h4{height:37.131406pt;}
.ha{height:37.142734pt;}
.hc{height:37.146862pt;}
.h11{height:37.154934pt;}
.hf{height:37.181063pt;}
.h23{height:37.181457pt;}
.h34{height:37.181500pt;}
.h3a{height:37.866162pt;}
.h18{height:38.612055pt;}
.h21{height:39.200862pt;}
.h28{height:39.215504pt;}
.h3c{height:39.688994pt;}
.h38{height:39.755187pt;}
.h2a{height:41.545200pt;}
.h2c{height:41.688713pt;}
.h2d{height:41.749531pt;}
.h3e{height:41.754182pt;}
.hb{height:42.892500pt;}
.h1{height:44.388750pt;}
.h3b{height:45.030106pt;}
.h29{height:45.181063pt;}
.h3d{height:45.795506pt;}
.h17{height:51.615605pt;}
.h1e{height:52.402986pt;}
.h6{height:52.422344pt;}
.h15{height:52.492449pt;}
.h3f{height:53.856106pt;}
.h5{height:53.857500pt;}
.h24{height:53.857894pt;}
.h1c{height:54.141063pt;}
.h25{height:55.734534pt;}
.he{height:55.736250pt;}
.h26{height:55.736604pt;}
.h3{height:62.781250pt;}
.hd{height:64.500000pt;}
.h9{height:66.750000pt;}
.h7{height:75.142500pt;}
.h8{height:77.763750pt;}
.h2{height:107.392500pt;}
.h0{height:1122.666667pt;}
.w2{width:3.280000pt;}
.w1{width:6.560000pt;}
.w4{width:8.320000pt;}
.w3{width:8.960000pt;}
.w5{width:20.640000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x55{left:15.360000pt;}
.x1{left:56.720000pt;}
.x15{left:66.159648pt;}
.xb{left:75.680000pt;}
.x68{left:79.359792pt;}
.x12{left:80.960000pt;}
.x8{left:85.040000pt;}
.x2e{left:88.879941pt;}
.x14{left:91.840000pt;}
.x2c{left:94.640000pt;}
.x38{left:99.360000pt;}
.xc{left:104.000000pt;}
.x5{left:105.920000pt;}
.x39{left:107.360579pt;}
.x66{left:109.600330pt;}
.x37{left:113.440296pt;}
.x65{left:114.880304pt;}
.x3a{left:116.720479pt;}
.x3e{left:118.160368pt;}
.x3f{left:121.120236pt;}
.x60{left:124.080000pt;}
.x63{left:126.240000pt;}
.x40{left:130.560434pt;}
.x2d{left:132.400296pt;}
.x2{left:134.960000pt;}
.x61{left:149.360000pt;}
.x3{left:165.598664pt;}
.x3b{left:192.800663pt;}
.x42{left:196.960000pt;}
.x41{left:200.480055pt;}
.x64{left:213.919914pt;}
.x6{left:216.160040pt;}
.x4{left:217.920000pt;}
.x46{left:256.720000pt;}
.x50{left:260.320000pt;}
.x47{left:261.360000pt;}
.x51{left:264.960000pt;}
.x3c{left:275.760000pt;}
.x67{left:318.400000pt;}
.x2b{left:325.840000pt;}
.x43{left:341.040000pt;}
.x3d{left:350.560000pt;}
.x45{left:368.880000pt;}
.x11{left:370.160000pt;}
.x48{left:372.880000pt;}
.x13{left:375.760000pt;}
.x5f{left:378.400000pt;}
.x7{left:387.440584pt;}
.x4f{left:389.920000pt;}
.x62{left:395.040000pt;}
.x9{left:398.720776pt;}
.x16{left:408.159688pt;}
.xd{left:417.679440pt;}
.x69{left:421.359392pt;}
.xa{left:427.040000pt;}
.x49{left:428.320000pt;}
.x1c{left:429.920000pt;}
.x23{left:431.439518pt;}
.x1b{left:433.359994pt;}
.x20{left:436.240442pt;}
.x5b{left:437.920154pt;}
.x1f{left:439.679892pt;}
.x4a{left:441.680000pt;}
.x1e{left:444.959885pt;}
.xe{left:445.999968pt;}
.x59{left:449.280000pt;}
.x4b{left:450.560000pt;}
.x2f{left:452.160000pt;}
.x10{left:455.680000pt;}
.x18{left:458.720000pt;}
.x29{left:461.760000pt;}
.x28{left:466.640000pt;}
.x1a{left:470.320000pt;}
.x24{left:473.280000pt;}
.x30{left:474.399232pt;}
.x22{left:478.160000pt;}
.x27{left:479.360171pt;}
.x52{left:482.960000pt;}
.x1d{left:484.080000pt;}
.x21{left:485.840000pt;}
.x54{left:491.200000pt;}
.x53{left:493.760000pt;}
.x19{left:501.760000pt;}
.x26{left:520.080000pt;}
.x25{left:529.040000pt;}
.x2a{left:534.800000pt;}
.x5a{left:536.960670pt;}
.x33{left:542.800000pt;}
.x34{left:548.640000pt;}
.x57{left:552.080000pt;}
.x58{left:556.720000pt;}
.x35{left:605.440000pt;}
.x36{left:612.000000pt;}
.x5c{left:625.120000pt;}
.x5d{left:665.999867pt;}
.x4e{left:692.960000pt;}
.x31{left:695.120000pt;}
.x44{left:697.839867pt;}
.x32{left:700.960000pt;}
.x56{left:711.919867pt;}
.x17{left:713.919867pt;}
.x5e{left:718.079867pt;}
.xf{left:736.720000pt;}
.x4c{left:743.280000pt;}
.x4d{left:756.800000pt;}
}




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