
    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_d6b75a4b44bb9399df52220e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_12072a0105daabac27bcffd4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_fc73ad17946f24100ca932d1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245130,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.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);}
.m5{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.814200px;}
.v1{vertical-align:31.680000px;}
.ls160{letter-spacing:-4.860000px;}
.ls129{letter-spacing:-2.893500px;}
.ls150{letter-spacing:-1.740000px;}
.lsd8{letter-spacing:-1.630200px;}
.ls39{letter-spacing:-1.597200px;}
.ls37{letter-spacing:-1.570800px;}
.ls9e{letter-spacing:-1.564200px;}
.ls132{letter-spacing:-1.560000px;}
.ls2a{letter-spacing:-1.511400px;}
.ls69{letter-spacing:-1.504800px;}
.ls3f{letter-spacing:-1.445400px;}
.lsc7{letter-spacing:-1.392600px;}
.ls7a{letter-spacing:-1.386000px;}
.lse4{letter-spacing:-1.333200px;}
.ls8f{letter-spacing:-1.326600px;}
.ls77{letter-spacing:-1.273800px;}
.ls154{letter-spacing:-1.269000px;}
.ls63{letter-spacing:-1.267200px;}
.ls12d{letter-spacing:-1.266000px;}
.ls12c{letter-spacing:-1.264500px;}
.ls155{letter-spacing:-1.260000px;}
.ls50{letter-spacing:-1.214400px;}
.ls9f{letter-spacing:-1.207800px;}
.ls159{letter-spacing:-1.156500px;}
.ls6b{letter-spacing:-1.148400px;}
.ls15a{letter-spacing:-1.146000px;}
.lsb7{letter-spacing:-1.089000px;}
.ls86{letter-spacing:-1.075800px;}
.ls52{letter-spacing:-1.029600px;}
.lsb{letter-spacing:-1.026000px;}
.ls27{letter-spacing:-1.023000px;}
.ls10c{letter-spacing:-1.020000px;}
.ls7d{letter-spacing:-1.016400px;}
.lsa6{letter-spacing:-0.976800px;}
.lsb6{letter-spacing:-0.970200px;}
.ls110{letter-spacing:-0.967500px;}
.ls111{letter-spacing:-0.966000px;}
.lsab{letter-spacing:-0.963600px;}
.ls115{letter-spacing:-0.963000px;}
.lsa5{letter-spacing:-0.957000px;}
.ls3e{letter-spacing:-0.910800px;}
.ls6a{letter-spacing:-0.904200px;}
.ls6d{letter-spacing:-0.897600px;}
.ls82{letter-spacing:-0.851400px;}
.lsf{letter-spacing:-0.849300px;}
.ls10a{letter-spacing:-0.846000px;}
.ls6f{letter-spacing:-0.844800px;}
.ls10b{letter-spacing:-0.840000px;}
.ls4d{letter-spacing:-0.792000px;}
.ls4c{letter-spacing:-0.785400px;}
.ls70{letter-spacing:-0.778800px;}
.ls84{letter-spacing:-0.739200px;}
.ls9d{letter-spacing:-0.726000px;}
.lsa9{letter-spacing:-0.686400px;}
.ls14e{letter-spacing:-0.684000px;}
.ls10e{letter-spacing:-0.678000px;}
.ls3a{letter-spacing:-0.673200px;}
.ls10f{letter-spacing:-0.672000px;}
.ls6c{letter-spacing:-0.666600px;}
.ls10d{letter-spacing:-0.666000px;}
.ls14f{letter-spacing:-0.661500px;}
.lsc2{letter-spacing:-0.660660px;}
.ls7c{letter-spacing:-0.660000px;}
.lsa1{letter-spacing:-0.633600px;}
.ls158{letter-spacing:-0.618000px;}
.lsa7{letter-spacing:-0.613800px;}
.ls134{letter-spacing:-0.612000px;}
.ls55{letter-spacing:-0.607500px;}
.ls4f{letter-spacing:-0.607200px;}
.ls133{letter-spacing:-0.606000px;}
.ls2d{letter-spacing:-0.604800px;}
.lsb2{letter-spacing:-0.600600px;}
.ls56{letter-spacing:-0.599400px;}
.lsc6{letter-spacing:-0.587400px;}
.ls98{letter-spacing:-0.561000px;}
.lsc3{letter-spacing:-0.554400px;}
.ls126{letter-spacing:-0.549000px;}
.ls4e{letter-spacing:-0.547800px;}
.ls123{letter-spacing:-0.546000px;}
.lsb1{letter-spacing:-0.541200px;}
.ls125{letter-spacing:-0.540000px;}
.ls124{letter-spacing:-0.531000px;}
.lsb0{letter-spacing:-0.521400px;}
.ls130{letter-spacing:-0.498000px;}
.ls83{letter-spacing:-0.488400px;}
.ls12f{letter-spacing:-0.486000px;}
.ls131{letter-spacing:-0.480000px;}
.lscd{letter-spacing:-0.475200px;}
.ls38{letter-spacing:-0.442200px;}
.ls122{letter-spacing:-0.438000px;}
.ls128{letter-spacing:-0.436500px;}
.ls2b{letter-spacing:-0.435600px;}
.ls121{letter-spacing:-0.432000px;}
.ls79{letter-spacing:-0.429000px;}
.ls11f{letter-spacing:-0.427500px;}
.ls120{letter-spacing:-0.426000px;}
.lsa8{letter-spacing:-0.422400px;}
.ls147{letter-spacing:-0.420000px;}
.lsce{letter-spacing:-0.415800px;}
.ls109{letter-spacing:-0.402000px;}
.ls149{letter-spacing:-0.390000px;}
.ls3d{letter-spacing:-0.376200px;}
.ls157{letter-spacing:-0.372000px;}
.ls29{letter-spacing:-0.369600px;}
.ls107{letter-spacing:-0.369000px;}
.lse2{letter-spacing:-0.367200px;}
.ls108{letter-spacing:-0.366000px;}
.ls3c{letter-spacing:-0.363000px;}
.lsd3{letter-spacing:-0.361800px;}
.ls148{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.342000px;}
.lsad{letter-spacing:-0.316800px;}
.ls14c{letter-spacing:-0.312000px;}
.ls161{letter-spacing:-0.310500px;}
.ls51{letter-spacing:-0.310200px;}
.lsc{letter-spacing:-0.307800px;}
.ls41{letter-spacing:-0.303600px;}
.lsd4{letter-spacing:-0.302400px;}
.lsd{letter-spacing:-0.302100px;}
.lsaa{letter-spacing:-0.297000px;}
.ls14d{letter-spacing:-0.276000px;}
.lsa0{letter-spacing:-0.257400px;}
.ls14b{letter-spacing:-0.252000px;}
.ls7b{letter-spacing:-0.250800px;}
.ls12{letter-spacing:-0.248400px;}
.lse{letter-spacing:-0.245100px;}
.ls5f{letter-spacing:-0.244200px;}
.ls14{letter-spacing:-0.243000px;}
.lsd2{letter-spacing:-0.240240px;}
.ls14a{letter-spacing:-0.240000px;}
.ls80{letter-spacing:-0.237600px;}
.ls13{letter-spacing:-0.210600px;}
.ls12e{letter-spacing:-0.210000px;}
.ls12a{letter-spacing:-0.204000px;}
.ls8e{letter-spacing:-0.198000px;}
.ls53{letter-spacing:-0.191400px;}
.lse1{letter-spacing:-0.189000px;}
.ls113{letter-spacing:-0.186000px;}
.ls3b{letter-spacing:-0.184800px;}
.ls12b{letter-spacing:-0.180000px;}
.ls97{letter-spacing:-0.178200px;}
.lsb9{letter-spacing:-0.175560px;}
.ls81{letter-spacing:-0.165000px;}
.ls8d{letter-spacing:-0.138600px;}
.ls62{letter-spacing:-0.132000px;}
.ls102{letter-spacing:-0.130500px;}
.ls103{letter-spacing:-0.126000px;}
.ls40{letter-spacing:-0.125400px;}
.ls127{letter-spacing:-0.121500px;}
.lsac{letter-spacing:-0.085800px;}
.ls153{letter-spacing:-0.078000px;}
.ls96{letter-spacing:-0.072600px;}
.ls152{letter-spacing:-0.072000px;}
.ls28{letter-spacing:-0.066000px;}
.ls88{letter-spacing:-0.064800px;}
.ls112{letter-spacing:-0.063000px;}
.ls89{letter-spacing:-0.060750px;}
.ls85{letter-spacing:-0.060060px;}
.ls151{letter-spacing:-0.060000px;}
.ls99{letter-spacing:-0.059400px;}
.ls78{letter-spacing:-0.052800px;}
.ls156{letter-spacing:-0.048000px;}
.ls87{letter-spacing:-0.043200px;}
.ls91{letter-spacing:-0.036000px;}
.ls92{letter-spacing:-0.030000px;}
.ls2c{letter-spacing:-0.028800px;}
.ls54{letter-spacing:-0.024300px;}
.ls11e{letter-spacing:-0.024000px;}
.ls116{letter-spacing:-0.022500px;}
.ls5d{letter-spacing:-0.019800px;}
.ls90{letter-spacing:-0.018000px;}
.ls57{letter-spacing:-0.016200px;}
.ls105{letter-spacing:-0.013500px;}
.ls26{letter-spacing:-0.013200px;}
.ls58{letter-spacing:-0.012150px;}
.ls60{letter-spacing:-0.012000px;}
.ls2f{letter-spacing:-0.010800px;}
.lse8{letter-spacing:-0.009900px;}
.ls17{letter-spacing:-0.009600px;}
.ls101{letter-spacing:-0.009000px;}
.ls71{letter-spacing:-0.008100px;}
.ls19{letter-spacing:-0.007200px;}
.ls25{letter-spacing:-0.006600px;}
.ls61{letter-spacing:-0.006000px;}
.ls8{letter-spacing:-0.005700px;}
.ls11{letter-spacing:-0.005400px;}
.ls16{letter-spacing:-0.004800px;}
.ls104{letter-spacing:-0.004500px;}
.ls2e{letter-spacing:-0.004050px;}
.ls18{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.004050px;}
.ls4{letter-spacing:0.005400px;}
.ls5e{letter-spacing:0.006600px;}
.lsd1{letter-spacing:0.011400px;}
.ls66{letter-spacing:0.013200px;}
.lsf1{letter-spacing:0.024000px;}
.ls72{letter-spacing:0.026400px;}
.ls5b{letter-spacing:0.033000px;}
.lscb{letter-spacing:0.036000px;}
.ls7f{letter-spacing:0.039600px;}
.lsbd{letter-spacing:0.043200px;}
.ls5a{letter-spacing:0.046200px;}
.lsf0{letter-spacing:0.048000px;}
.ls1{letter-spacing:0.051300px;}
.ls1b{letter-spacing:0.052800px;}
.lsc0{letter-spacing:0.054000px;}
.lsbe{letter-spacing:0.056700px;}
.ls0{letter-spacing:0.057000px;}
.lsef{letter-spacing:0.058500px;}
.lsbf{letter-spacing:0.059400px;}
.ls106{letter-spacing:0.060000px;}
.lscc{letter-spacing:0.060060px;}
.ls162{letter-spacing:0.090000px;}
.ls15c{letter-spacing:0.103500px;}
.ls94{letter-spacing:0.105600px;}
.ls15d{letter-spacing:0.108000px;}
.ls31{letter-spacing:0.112200px;}
.ls4a{letter-spacing:0.113400px;}
.lsf8{letter-spacing:0.114000px;}
.ls11c{letter-spacing:0.117000px;}
.ls34{letter-spacing:0.118800px;}
.lsee{letter-spacing:0.120000px;}
.ls49{letter-spacing:0.125550px;}
.ls117{letter-spacing:0.126000px;}
.ls46{letter-spacing:0.165000px;}
.ls114{letter-spacing:0.166500px;}
.ls13d{letter-spacing:0.168000px;}
.ls2{letter-spacing:0.171000px;}
.ls48{letter-spacing:0.171600px;}
.lsfd{letter-spacing:0.174000px;}
.ls13c{letter-spacing:0.175500px;}
.ls35{letter-spacing:0.178200px;}
.lsfc{letter-spacing:0.180000px;}
.ls143{letter-spacing:0.225000px;}
.ls32{letter-spacing:0.231000px;}
.ls6{letter-spacing:0.232200px;}
.ls144{letter-spacing:0.234000px;}
.ls15{letter-spacing:0.237600px;}
.ls142{letter-spacing:0.240000px;}
.lsde{letter-spacing:0.240240px;}
.ls10{letter-spacing:0.243000px;}
.lse5{letter-spacing:0.244200px;}
.lsc1{letter-spacing:0.270600px;}
.ls13f{letter-spacing:0.276000px;}
.lsba{letter-spacing:0.283800px;}
.ls64{letter-spacing:0.286200px;}
.ls13e{letter-spacing:0.288000px;}
.ls30{letter-spacing:0.290400px;}
.ls5c{letter-spacing:0.291600px;}
.lsff{letter-spacing:0.292500px;}
.ls100{letter-spacing:0.294000px;}
.ls20{letter-spacing:0.297000px;}
.lsfe{letter-spacing:0.300000px;}
.lsae{letter-spacing:0.330000px;}
.lsb3{letter-spacing:0.343200px;}
.ls44{letter-spacing:0.349800px;}
.lsf3{letter-spacing:0.351000px;}
.ls9{letter-spacing:0.353400px;}
.lsf4{letter-spacing:0.354000px;}
.ls1a{letter-spacing:0.356400px;}
.lsf2{letter-spacing:0.360000px;}
.ls11d{letter-spacing:0.396000px;}
.ls95{letter-spacing:0.402600px;}
.lsdd{letter-spacing:0.409050px;}
.ls7e{letter-spacing:0.409200px;}
.ls24{letter-spacing:0.410400px;}
.ls23{letter-spacing:0.413100px;}
.ls11b{letter-spacing:0.414000px;}
.ls1e{letter-spacing:0.415800px;}
.lsdc{letter-spacing:0.417150px;}
.ls11a{letter-spacing:0.418500px;}
.ls119{letter-spacing:0.420000px;}
.ls5{letter-spacing:0.421200px;}
.lsdb{letter-spacing:0.425250px;}
.lsd5{letter-spacing:0.429000px;}
.lse0{letter-spacing:0.429300px;}
.ls9c{letter-spacing:0.462000px;}
.lsfb{letter-spacing:0.468000px;}
.lsaf{letter-spacing:0.468600px;}
.lsec{letter-spacing:0.472500px;}
.lsed{letter-spacing:0.474000px;}
.ls22{letter-spacing:0.475200px;}
.lsfa{letter-spacing:0.477000px;}
.lseb{letter-spacing:0.480000px;}
.ls43{letter-spacing:0.481800px;}
.lsdf{letter-spacing:0.508200px;}
.ls146{letter-spacing:0.526500px;}
.lscf{letter-spacing:0.528000px;}
.lsf6{letter-spacing:0.531000px;}
.lsf7{letter-spacing:0.534000px;}
.lsa3{letter-spacing:0.534600px;}
.lsf5{letter-spacing:0.540000px;}
.lsd0{letter-spacing:0.541200px;}
.ls76{letter-spacing:0.577800px;}
.ls73{letter-spacing:0.580800px;}
.ls75{letter-spacing:0.587400px;}
.ls1d{letter-spacing:0.594000px;}
.ls145{letter-spacing:0.600000px;}
.ls74{letter-spacing:0.607200px;}
.lsd9{letter-spacing:0.633600px;}
.ls1f{letter-spacing:0.646800px;}
.ls118{letter-spacing:0.648000px;}
.ls140{letter-spacing:0.652500px;}
.ls36{letter-spacing:0.653400px;}
.ls141{letter-spacing:0.654000px;}
.lsb8{letter-spacing:0.660000px;}
.ls15b{letter-spacing:0.661500px;}
.ls1c{letter-spacing:0.712800px;}
.lsb4{letter-spacing:0.719400px;}
.ls137{letter-spacing:0.756000px;}
.lse7{letter-spacing:0.765600px;}
.ls138{letter-spacing:0.768000px;}
.ls6e{letter-spacing:0.772200px;}
.ls136{letter-spacing:0.774000px;}
.ls9b{letter-spacing:0.778800px;}
.ls135{letter-spacing:0.780000px;}
.ls7{letter-spacing:0.783000px;}
.lsc9{letter-spacing:0.818400px;}
.ls67{letter-spacing:0.831600px;}
.ls3{letter-spacing:0.832200px;}
.ls15f{letter-spacing:0.834000px;}
.ls15e{letter-spacing:0.846000px;}
.ls13b{letter-spacing:0.876000px;}
.ls68{letter-spacing:0.884400px;}
.lsd7{letter-spacing:0.891000px;}
.ls13a{letter-spacing:0.894000px;}
.lsbb{letter-spacing:0.904200px;}
.ls8a{letter-spacing:0.943800px;}
.lsea{letter-spacing:0.950400px;}
.lsa4{letter-spacing:0.957000px;}
.ls139{letter-spacing:0.960000px;}
.lsbc{letter-spacing:0.963600px;}
.lse3{letter-spacing:1.009800px;}
.lsc8{letter-spacing:1.016400px;}
.ls33{letter-spacing:1.036200px;}
.lse9{letter-spacing:1.062600px;}
.ls45{letter-spacing:1.075800px;}
.lsb5{letter-spacing:1.135200px;}
.ls93{letter-spacing:1.194600px;}
.lsca{letter-spacing:1.227600px;}
.lsda{letter-spacing:1.240800px;}
.ls8c{letter-spacing:1.254000px;}
.lsa2{letter-spacing:1.372800px;}
.ls9a{letter-spacing:1.425600px;}
.lsd6{letter-spacing:1.432200px;}
.lsc5{letter-spacing:1.551000px;}
.ls8b{letter-spacing:1.610400px;}
.lse6{letter-spacing:1.669800px;}
.lsc4{letter-spacing:1.676400px;}
.ls4b{letter-spacing:12.828000px;}
.lsf9{letter-spacing:13.560000px;}
.ls47{letter-spacing:14.880000px;}
.ls65{letter-spacing:15.060000px;}
.ls42{letter-spacing:15.120000px;}
.ls59{letter-spacing:15.960000px;}
.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;}
}
.wsb3{word-spacing:-17.107200px;}
.ws110{word-spacing:-17.080800px;}
.wse7{word-spacing:-16.962000px;}
.wsf1{word-spacing:-16.849800px;}
.ws16c{word-spacing:-16.816800px;}
.wse6{word-spacing:-16.671600px;}
.ws164{word-spacing:-16.665000px;}
.wsef{word-spacing:-16.612200px;}
.ws129{word-spacing:-16.559400px;}
.ws9a{word-spacing:-16.500000px;}
.ws3c{word-spacing:-16.493400px;}
.ws1f{word-spacing:-16.486800px;}
.ws122{word-spacing:-16.480200px;}
.ws123{word-spacing:-16.434000px;}
.ws102{word-spacing:-16.374600px;}
.ws12b{word-spacing:-16.368000px;}
.wsc1{word-spacing:-16.335000px;}
.wse5{word-spacing:-16.315200px;}
.ws85{word-spacing:-16.308600px;}
.ws163{word-spacing:-16.249200px;}
.ws121{word-spacing:-16.189800px;}
.ws9d{word-spacing:-16.137000px;}
.ws10e{word-spacing:-16.011600px;}
.ws100{word-spacing:-15.978600px;}
.ws5b{word-spacing:-15.892800px;}
.ws101{word-spacing:-15.886200px;}
.wsb5{word-spacing:-15.840000px;}
.wse4{word-spacing:-15.774000px;}
.ws1d6{word-spacing:-15.654000px;}
.ws1a5{word-spacing:-15.648000px;}
.ws128{word-spacing:-15.536400px;}
.wsec{word-spacing:-15.523200px;}
.ws13f{word-spacing:-15.470400px;}
.ws1ac{word-spacing:-15.414000px;}
.wsd2{word-spacing:-15.288000px;}
.ws5c{word-spacing:-15.285600px;}
.wsd7{word-spacing:-15.264000px;}
.ws174{word-spacing:-15.048000px;}
.wsd4{word-spacing:-15.000000px;}
.ws9b{word-spacing:-14.995200px;}
.wsd3{word-spacing:-14.994000px;}
.wsd6{word-spacing:-14.988000px;}
.wsd5{word-spacing:-14.982000px;}
.wsee{word-spacing:-14.929200px;}
.ws1d3{word-spacing:-14.760000px;}
.ws176{word-spacing:-14.598000px;}
.ws1c8{word-spacing:-14.580000px;}
.ws1{word-spacing:-14.529300px;}
.ws1a9{word-spacing:-14.454000px;}
.ws2{word-spacing:-14.244300px;}
.wsb7{word-spacing:-14.077800px;}
.ws17d{word-spacing:-14.034000px;}
.ws17a{word-spacing:-13.980000px;}
.ws8b{word-spacing:-13.791600px;}
.ws21{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.494600px;}
.ws27{word-spacing:-13.489200px;}
.ws1b3{word-spacing:-13.440000px;}
.ws1cb{word-spacing:-13.260000px;}
.ws1cf{word-spacing:-12.141000px;}
.ws1f6{word-spacing:-12.096000px;}
.ws1ce{word-spacing:-12.024000px;}
.ws1f0{word-spacing:-11.911500px;}
.ws1d5{word-spacing:-11.902500px;}
.ws179{word-spacing:-11.781000px;}
.ws1d8{word-spacing:-11.776500px;}
.ws17f{word-spacing:-11.727000px;}
.ws172{word-spacing:-11.722500px;}
.ws180{word-spacing:-11.718000px;}
.ws1a6{word-spacing:-11.668500px;}
.ws177{word-spacing:-11.601000px;}
.ws184{word-spacing:-11.542500px;}
.ws1d1{word-spacing:-11.538000px;}
.ws1d7{word-spacing:-11.475000px;}
.ws1d0{word-spacing:-11.425500px;}
.ws181{word-spacing:-11.421000px;}
.ws182{word-spacing:-11.416500px;}
.ws1aa{word-spacing:-11.367000px;}
.ws1f5{word-spacing:-11.353500px;}
.ws173{word-spacing:-11.308500px;}
.ws171{word-spacing:-11.250000px;}
.ws16f{word-spacing:-11.245500px;}
.ws16d{word-spacing:-11.241000px;}
.ws170{word-spacing:-11.236500px;}
.ws187{word-spacing:-11.227500px;}
.ws17e{word-spacing:-11.187000px;}
.ws1f1{word-spacing:-11.178000px;}
.ws1ab{word-spacing:-11.128500px;}
.ws16e{word-spacing:-11.119500px;}
.ws1b1{word-spacing:-11.061000px;}
.ws1d2{word-spacing:-10.998000px;}
.ws1f3{word-spacing:-10.939500px;}
.ws1c9{word-spacing:-10.890000px;}
.ws175{word-spacing:-10.881000px;}
.ws1a4{word-spacing:-10.822500px;}
.ws1ad{word-spacing:-10.813500px;}
.ws1b2{word-spacing:-10.764000px;}
.ws1af{word-spacing:-10.701000px;}
.ws1ca{word-spacing:-10.588500px;}
.ws17b{word-spacing:-10.584000px;}
.ws15a{word-spacing:-10.554300px;}
.ws157{word-spacing:-10.550250px;}
.ws158{word-spacing:-10.542150px;}
.ws178{word-spacing:-10.404000px;}
.ws183{word-spacing:-10.287000px;}
.ws17c{word-spacing:-10.282500px;}
.ws5e{word-spacing:-10.250550px;}
.ws5f{word-spacing:-10.238400px;}
.ws1f2{word-spacing:-10.140000px;}
.ws3e{word-spacing:-10.120950px;}
.ws65{word-spacing:-10.108800px;}
.ws5d{word-spacing:-10.100700px;}
.ws1d4{word-spacing:-10.093500px;}
.ws1cd{word-spacing:-9.990000px;}
.ws1b0{word-spacing:-9.985500px;}
.ws1cc{word-spacing:-9.981000px;}
.ws1ae{word-spacing:-8.356500px;}
.ws133{word-spacing:-0.851400px;}
.wsba{word-spacing:-0.838200px;}
.wsa9{word-spacing:-0.831600px;}
.wsd1{word-spacing:-0.798600px;}
.ws45{word-spacing:-0.792000px;}
.wse3{word-spacing:-0.785400px;}
.ws2e{word-spacing:-0.778800px;}
.wsdd{word-spacing:-0.772200px;}
.ws127{word-spacing:-0.765600px;}
.wsce{word-spacing:-0.739800px;}
.ws80{word-spacing:-0.723600px;}
.ws1a1{word-spacing:-0.720000px;}
.ws51{word-spacing:-0.719400px;}
.ws1a2{word-spacing:-0.714000px;}
.ws96{word-spacing:-0.712800px;}
.ws1df{word-spacing:-0.708000px;}
.wsc8{word-spacing:-0.706200px;}
.wsfc{word-spacing:-0.699600px;}
.ws89{word-spacing:-0.686400px;}
.wscf{word-spacing:-0.685800px;}
.ws7b{word-spacing:-0.669600px;}
.wse0{word-spacing:-0.666600px;}
.ws9{word-spacing:-0.661200px;}
.ws34{word-spacing:-0.660000px;}
.ws7f{word-spacing:-0.658800px;}
.ws199{word-spacing:-0.654000px;}
.ws7a{word-spacing:-0.653400px;}
.wsd9{word-spacing:-0.646800px;}
.ws118{word-spacing:-0.607200px;}
.ws8e{word-spacing:-0.600600px;}
.ws188{word-spacing:-0.600000px;}
.wsd0{word-spacing:-0.599400px;}
.wsad{word-spacing:-0.594000px;}
.wse8{word-spacing:-0.587400px;}
.ws1c1{word-spacing:-0.582000px;}
.ws167{word-spacing:-0.567600px;}
.wsfa{word-spacing:-0.561000px;}
.ws90{word-spacing:-0.554400px;}
.ws125{word-spacing:-0.547800px;}
.ws56{word-spacing:-0.541200px;}
.ws19a{word-spacing:-0.540000px;}
.ws75{word-spacing:-0.534600px;}
.ws1c3{word-spacing:-0.534000px;}
.ws8f{word-spacing:-0.528000px;}
.ws1c4{word-spacing:-0.510000px;}
.ws1dc{word-spacing:-0.504000px;}
.ws59{word-spacing:-0.502200px;}
.ws11b{word-spacing:-0.488400px;}
.ws4e{word-spacing:-0.481800px;}
.wsa{word-spacing:-0.478800px;}
.ws30{word-spacing:-0.475200px;}
.ws1eb{word-spacing:-0.474000px;}
.wsae{word-spacing:-0.468600px;}
.ws1db{word-spacing:-0.468000px;}
.ws50{word-spacing:-0.462000px;}
.wsc0{word-spacing:-0.442200px;}
.ws18{word-spacing:-0.437400px;}
.ws44{word-spacing:-0.422400px;}
.ws10{word-spacing:-0.421800px;}
.ws17{word-spacing:-0.421200px;}
.ws189{word-spacing:-0.420000px;}
.wsbd{word-spacing:-0.415800px;}
.ws18a{word-spacing:-0.414000px;}
.wse{word-spacing:-0.410400px;}
.ws36{word-spacing:-0.409200px;}
.ws76{word-spacing:-0.402600px;}
.ws1da{word-spacing:-0.390000px;}
.wsf7{word-spacing:-0.363000px;}
.ws83{word-spacing:-0.361800px;}
.ws1b7{word-spacing:-0.360000px;}
.ws11{word-spacing:-0.359100px;}
.ws57{word-spacing:-0.356400px;}
.ws18f{word-spacing:-0.354000px;}
.ws134{word-spacing:-0.349800px;}
.ws1b8{word-spacing:-0.348000px;}
.ws81{word-spacing:-0.345600px;}
.ws107{word-spacing:-0.343200px;}
.ws82{word-spacing:-0.324000px;}
.ws103{word-spacing:-0.303600px;}
.ws149{word-spacing:-0.302400px;}
.ws6f{word-spacing:-0.297000px;}
.ws1bf{word-spacing:-0.294000px;}
.ws1c0{word-spacing:-0.288000px;}
.ws11e{word-spacing:-0.283800px;}
.ws104{word-spacing:-0.244200px;}
.ws161{word-spacing:-0.243000px;}
.ws71{word-spacing:-0.237600px;}
.ws1c6{word-spacing:-0.234000px;}
.ws162{word-spacing:-0.232200px;}
.wscb{word-spacing:-0.231000px;}
.ws1c5{word-spacing:-0.222000px;}
.wse1{word-spacing:-0.217800px;}
.wse9{word-spacing:-0.211200px;}
.ws117{word-spacing:-0.184800px;}
.ws1a{word-spacing:-0.183600px;}
.ws1bd{word-spacing:-0.180000px;}
.ws19{word-spacing:-0.178200px;}
.ws1bc{word-spacing:-0.174000px;}
.wsf9{word-spacing:-0.171600px;}
.ws1e8{word-spacing:-0.168000px;}
.ws4c{word-spacing:-0.165000px;}
.ws165{word-spacing:-0.125400px;}
.ws1de{word-spacing:-0.120000px;}
.ws35{word-spacing:-0.118800px;}
.ws1c7{word-spacing:-0.114000px;}
.ws14b{word-spacing:-0.113400px;}
.wscc{word-spacing:-0.105600px;}
.ws1dd{word-spacing:-0.102000px;}
.wsf8{word-spacing:-0.099000px;}
.ws0{word-spacing:-0.068400px;}
.wsab{word-spacing:-0.066000px;}
.ws38{word-spacing:-0.059400px;}
.ws194{word-spacing:-0.054000px;}
.ws6e{word-spacing:-0.052800px;}
.ws106{word-spacing:-0.046200px;}
.ws195{word-spacing:-0.042000px;}
.wsdb{word-spacing:-0.012000px;}
.ws139{word-spacing:-0.006600px;}
.ws94{word-spacing:-0.006000px;}
.wsb1{word-spacing:-0.005400px;}
.ws4{word-spacing:0.000000px;}
.ws39{word-spacing:0.005400px;}
.wsf{word-spacing:0.005700px;}
.ws95{word-spacing:0.006000px;}
.ws6d{word-spacing:0.006600px;}
.ws14f{word-spacing:0.010800px;}
.ws1a0{word-spacing:0.012000px;}
.ws5a{word-spacing:0.016200px;}
.wsda{word-spacing:0.018000px;}
.ws131{word-spacing:0.021600px;}
.ws1ea{word-spacing:0.030000px;}
.ws1b4{word-spacing:0.036000px;}
.wsdf{word-spacing:0.052800px;}
.ws5{word-spacing:0.057000px;}
.wsa3{word-spacing:0.059400px;}
.ws191{word-spacing:0.060000px;}
.ws52{word-spacing:0.066000px;}
.ws1ed{word-spacing:0.078000px;}
.wsf4{word-spacing:0.105600px;}
.wsf3{word-spacing:0.112200px;}
.wsd8{word-spacing:0.118800px;}
.ws12{word-spacing:0.125400px;}
.wsb2{word-spacing:0.165000px;}
.ws4d{word-spacing:0.171600px;}
.ws198{word-spacing:0.174000px;}
.ws2d{word-spacing:0.178200px;}
.ws197{word-spacing:0.180000px;}
.ws1c{word-spacing:0.183600px;}
.ws77{word-spacing:0.184800px;}
.ws196{word-spacing:0.186000px;}
.wsfb{word-spacing:0.224400px;}
.wscd{word-spacing:0.231000px;}
.wsca{word-spacing:0.237600px;}
.wsc{word-spacing:0.239400px;}
.ws2c{word-spacing:0.244200px;}
.ws19c{word-spacing:0.246000px;}
.wsf6{word-spacing:0.297000px;}
.wsb{word-spacing:0.302100px;}
.ws29{word-spacing:0.303600px;}
.ws108{word-spacing:0.310200px;}
.wsaa{word-spacing:0.356400px;}
.ws1ec{word-spacing:0.360000px;}
.wsa4{word-spacing:0.363000px;}
.ws74{word-spacing:0.369600px;}
.ws138{word-spacing:0.409200px;}
.ws79{word-spacing:0.415800px;}
.ws19f{word-spacing:0.420000px;}
.ws97{word-spacing:0.422400px;}
.wsb8{word-spacing:0.429000px;}
.ws19e{word-spacing:0.432000px;}
.ws6c{word-spacing:0.475200px;}
.ws1e0{word-spacing:0.480000px;}
.ws13b{word-spacing:0.480600px;}
.wsfd{word-spacing:0.481800px;}
.ws1e1{word-spacing:0.486000px;}
.ws46{word-spacing:0.495000px;}
.ws12f{word-spacing:0.502200px;}
.wsf0{word-spacing:0.508200px;}
.ws72{word-spacing:0.534600px;}
.wsc6{word-spacing:0.541200px;}
.ws15{word-spacing:0.541500px;}
.ws1c2{word-spacing:0.546000px;}
.wsb9{word-spacing:0.547800px;}
.ws16a{word-spacing:0.554400px;}
.wsb6{word-spacing:0.572400px;}
.ws111{word-spacing:0.574200px;}
.ws126{word-spacing:0.594000px;}
.ws13d{word-spacing:0.599400px;}
.ws1e4{word-spacing:0.600000px;}
.ws54{word-spacing:0.600600px;}
.ws13c{word-spacing:0.604800px;}
.ws47{word-spacing:0.607200px;}
.ws1e5{word-spacing:0.618000px;}
.wsf2{word-spacing:0.633600px;}
.ws150{word-spacing:0.640200px;}
.wsa2{word-spacing:0.653400px;}
.wsa8{word-spacing:0.660000px;}
.ws132{word-spacing:0.666600px;}
.ws130{word-spacing:0.680400px;}
.wsf5{word-spacing:0.719400px;}
.ws1e2{word-spacing:0.720000px;}
.ws32{word-spacing:0.726000px;}
.ws48{word-spacing:0.732600px;}
.ws1e3{word-spacing:0.738000px;}
.wsbe{word-spacing:0.777600px;}
.ws53{word-spacing:0.778800px;}
.wsa7{word-spacing:0.785400px;}
.ws43{word-spacing:0.792000px;}
.ws136{word-spacing:0.818400px;}
.ws58{word-spacing:0.820800px;}
.ws1f7{word-spacing:0.834000px;}
.ws14e{word-spacing:0.837000px;}
.wsa5{word-spacing:0.838200px;}
.ws1b9{word-spacing:0.840000px;}
.ws1d{word-spacing:0.842400px;}
.ws105{word-spacing:0.844800px;}
.ws1f8{word-spacing:0.846000px;}
.ws11a{word-spacing:0.851400px;}
.wsea{word-spacing:0.891000px;}
.ws3a{word-spacing:0.896400px;}
.ws13a{word-spacing:0.897600px;}
.ws14d{word-spacing:0.901800px;}
.wsff{word-spacing:0.904200px;}
.ws3b{word-spacing:0.907200px;}
.ws10b{word-spacing:0.950400px;}
.ws92{word-spacing:0.957000px;}
.wsd{word-spacing:0.957600px;}
.ws192{word-spacing:0.960000px;}
.ws15f{word-spacing:0.961200px;}
.ws2b{word-spacing:0.963600px;}
.ws160{word-spacing:0.966600px;}
.ws11d{word-spacing:0.970200px;}
.ws15e{word-spacing:0.988200px;}
.ws156{word-spacing:1.003200px;}
.ws16b{word-spacing:1.009800px;}
.ws19b{word-spacing:1.014000px;}
.ws55{word-spacing:1.016400px;}
.ws18b{word-spacing:1.020000px;}
.ws98{word-spacing:1.020600px;}
.wsbc{word-spacing:1.023000px;}
.ws99{word-spacing:1.026000px;}
.wsbb{word-spacing:1.029600px;}
.ws148{word-spacing:1.069200px;}
.ws2f{word-spacing:1.075800px;}
.ws1ba{word-spacing:1.080000px;}
.ws10a{word-spacing:1.082400px;}
.ws6{word-spacing:1.083000px;}
.ws119{word-spacing:1.089000px;}
.ws1be{word-spacing:1.098000px;}
.ws70{word-spacing:1.135200px;}
.ws190{word-spacing:1.140000px;}
.wseb{word-spacing:1.141800px;}
.ws8a{word-spacing:1.144800px;}
.wsdc{word-spacing:1.148400px;}
.ws155{word-spacing:1.174800px;}
.wsed{word-spacing:1.188000px;}
.ws1bb{word-spacing:1.194000px;}
.wsc9{word-spacing:1.194600px;}
.ws7c{word-spacing:1.198800px;}
.ws19d{word-spacing:1.200000px;}
.ws33{word-spacing:1.201200px;}
.ws16{word-spacing:1.202700px;}
.ws7e{word-spacing:1.204200px;}
.wsde{word-spacing:1.207800px;}
.ws1b{word-spacing:1.209600px;}
.ws7d{word-spacing:1.215000px;}
.ws1e9{word-spacing:1.218000px;}
.ws120{word-spacing:1.225800px;}
.ws153{word-spacing:1.247400px;}
.ws14a{word-spacing:1.252800px;}
.wsc5{word-spacing:1.254000px;}
.ws13{word-spacing:1.259700px;}
.ws1b5{word-spacing:1.260000px;}
.ws31{word-spacing:1.260600px;}
.ws152{word-spacing:1.267200px;}
.ws11f{word-spacing:1.301400px;}
.ws37{word-spacing:1.313400px;}
.ws14c{word-spacing:1.317600px;}
.ws28{word-spacing:1.320000px;}
.ws8{word-spacing:1.322400px;}
.ws112{word-spacing:1.323000px;}
.wsc7{word-spacing:1.326600px;}
.wsfe{word-spacing:1.339800px;}
.ws135{word-spacing:1.353000px;}
.wsac{word-spacing:1.366200px;}
.ws1b6{word-spacing:1.368000px;}
.wse2{word-spacing:1.372800px;}
.ws14{word-spacing:1.373700px;}
.ws1e{word-spacing:1.377000px;}
.ws7{word-spacing:1.379400px;}
.ws193{word-spacing:1.380000px;}
.ws4a{word-spacing:1.386000px;}
.ws137{word-spacing:1.412400px;}
.wsaf{word-spacing:1.425600px;}
.ws91{word-spacing:1.432200px;}
.ws18d{word-spacing:1.434000px;}
.ws78{word-spacing:1.438800px;}
.ws18c{word-spacing:1.440000px;}
.ws42{word-spacing:1.445400px;}
.ws109{word-spacing:1.452000px;}
.ws15d{word-spacing:1.465200px;}
.ws18e{word-spacing:1.470000px;}
.wsb0{word-spacing:1.471800px;}
.wsa6{word-spacing:1.491600px;}
.ws1ef{word-spacing:1.494000px;}
.ws4b{word-spacing:1.498200px;}
.ws1e7{word-spacing:1.500000px;}
.ws93{word-spacing:1.504800px;}
.ws1ee{word-spacing:1.506000px;}
.ws11c{word-spacing:1.518000px;}
.ws49{word-spacing:1.531200px;}
.ws1e6{word-spacing:1.542000px;}
.ws10d{word-spacing:1.551000px;}
.ws1a3{word-spacing:1.554000px;}
.ws41{word-spacing:1.557600px;}
.ws73{word-spacing:1.564200px;}
.ws116{word-spacing:1.570800px;}
.ws151{word-spacing:1.577400px;}
.ws115{word-spacing:1.584000px;}
.ws86{word-spacing:1.590600px;}
.ws9c{word-spacing:1.597200px;}
.ws10c{word-spacing:1.610400px;}
.ws4f{word-spacing:1.617000px;}
.ws2a{word-spacing:1.623600px;}
.ws168{word-spacing:1.630200px;}
.wsb4{word-spacing:1.636800px;}
.ws84{word-spacing:1.854600px;}
.wsc4{word-spacing:2.596500px;}
.wsc3{word-spacing:2.652600px;}
.ws62{word-spacing:2.661150px;}
.ws63{word-spacing:2.664300px;}
.ws61{word-spacing:2.709000px;}
.ws64{word-spacing:2.750250px;}
.ws3f{word-spacing:2.838000px;}
.ws124{word-spacing:2.871000px;}
.ws69{word-spacing:2.943300px;}
.ws6a{word-spacing:3.006000px;}
.ws15c{word-spacing:3.150600px;}
.ws15b{word-spacing:3.158400px;}
.ws166{word-spacing:3.240900px;}
.ws169{word-spacing:3.300000px;}
.ws22{word-spacing:3.304650px;}
.ws23{word-spacing:3.321750px;}
.ws26{word-spacing:3.373350px;}
.ws40{word-spacing:3.373500px;}
.ws8c{word-spacing:3.373800px;}
.ws8d{word-spacing:3.377550px;}
.ws66{word-spacing:3.385800px;}
.ws68{word-spacing:3.387150px;}
.ws145{word-spacing:3.388500px;}
.ws143{word-spacing:3.403200px;}
.ws24{word-spacing:3.410100px;}
.ws147{word-spacing:3.427350px;}
.ws1a7{word-spacing:3.429000px;}
.ws60{word-spacing:3.447000px;}
.ws146{word-spacing:3.451200px;}
.ws144{word-spacing:3.454950px;}
.ws6b{word-spacing:3.460050px;}
.ws67{word-spacing:3.468450px;}
.ws1a8{word-spacing:3.477000px;}
.wsa0{word-spacing:3.560700px;}
.ws9f{word-spacing:3.579300px;}
.ws1d9{word-spacing:3.768000px;}
.ws12d{word-spacing:3.865200px;}
.ws12e{word-spacing:3.882000px;}
.ws3d{word-spacing:4.164750px;}
.ws185{word-spacing:4.170000px;}
.wsc2{word-spacing:4.170180px;}
.ws186{word-spacing:4.248000px;}
.ws140{word-spacing:4.277850px;}
.ws142{word-spacing:4.279800px;}
.ws10f{word-spacing:4.336680px;}
.ws13e{word-spacing:4.350720px;}
.ws25{word-spacing:4.353300px;}
.ws141{word-spacing:4.363050px;}
.ws159{word-spacing:4.415250px;}
.ws154{word-spacing:4.469280px;}
.ws114{word-spacing:4.508700px;}
.ws113{word-spacing:4.568100px;}
.ws1f4{word-spacing:5.190000px;}
.wsbf{word-spacing:5.310000px;}
.ws12a{word-spacing:6.509820px;}
.ws12c{word-spacing:9.001800px;}
.wsa1{word-spacing:23.166000px;}
.ws20{word-spacing:35.812800px;}
.ws9e{word-spacing:36.001800px;}
.ws87{word-spacing:331.182000px;}
.ws88{word-spacing:797.706000px;}
._1b{margin-left:-22.539000px;}
._23{margin-left:-10.794000px;}
._c{margin-left:-8.332800px;}
._b{margin-left:-6.389700px;}
._3{margin-left:-4.520100px;}
._1{margin-left:-2.929800px;}
._0{margin-left:-1.140000px;}
._4{width:1.504800px;}
._2{width:2.707500px;}
._1f{width:3.893400px;}
._28{width:5.290200px;}
._5{width:14.079000px;}
._a{width:15.470400px;}
._20{width:16.612200px;}
._26{width:20.981400px;}
._21{width:22.545000px;}
._24{width:23.918400px;}
._1c{width:28.386600px;}
._27{width:30.000000px;}
._25{width:31.798800px;}
._1e{width:38.293200px;}
._1a{width:39.547200px;}
._1d{width:40.814400px;}
._6{width:48.913800px;}
._8{width:50.711400px;}
._15{width:97.278000px;}
._d{width:120.420000px;}
._12{width:130.968000px;}
._e{width:136.968000px;}
._f{width:138.498000px;}
._14{width:153.544800px;}
._11{width:186.078000px;}
._18{width:235.938000px;}
._19{width:282.702000px;}
._16{width:296.166000px;}
._17{width:469.680000px;}
._22{width:493.482000px;}
._9{width:670.915200px;}
._13{width:725.214000px;}
._7{width:1109.267400px;}
._10{width:1363.806000px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:40.500000px;}
.fsb{font-size:45.000000px;}
.fs7{font-size:46.200000px;}
.fs2{font-size:48.000000px;}
.fsa{font-size:49.500000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs4{font-size:67.200000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2d4{bottom:39.982425px;}
.y136{bottom:40.578675px;}
.y1f{bottom:41.404425px;}
.y304{bottom:41.482425px;}
.y261{bottom:41.690625px;}
.y9f{bottom:41.691225px;}
.yfe{bottom:41.691825px;}
.y43{bottom:41.693025px;}
.y226{bottom:41.721075px;}
.y1dd{bottom:42.049425px;}
.y18e{bottom:42.051075px;}
.y1c5{bottom:42.052725px;}
.y25f{bottom:42.054375px;}
.y1a4{bottom:42.059325px;}
.y2a4{bottom:42.064425px;}
.y17f{bottom:42.065925px;}
.y28c{bottom:42.290325px;}
.y1e{bottom:55.655025px;}
.y2d3{bottom:55.657275px;}
.y24b{bottom:55.938825px;}
.y42{bottom:55.941225px;}
.y7b{bottom:55.941825px;}
.yfd{bottom:55.942425px;}
.y225{bottom:55.971675px;}
.y303{bottom:57.307425px;}
.y135{bottom:57.829425px;}
.y1dc{bottom:59.300175px;}
.y18d{bottom:59.301825px;}
.y1c4{bottom:59.303475px;}
.y25e{bottom:59.305125px;}
.y1a3{bottom:59.310075px;}
.y2a3{bottom:59.315175px;}
.y17e{bottom:59.316675px;}
.y28b{bottom:59.541075px;}
.y1d{bottom:69.905625px;}
.y24a{bottom:70.189425px;}
.y41{bottom:70.191825px;}
.ybc{bottom:70.192425px;}
.y224{bottom:70.222275px;}
.y2d2{bottom:71.332275px;}
.y302{bottom:73.132425px;}
.y134{bottom:75.080175px;}
.y1db{bottom:76.550925px;}
.y18c{bottom:76.552575px;}
.y1c3{bottom:76.554225px;}
.y25d{bottom:76.555875px;}
.y1a2{bottom:76.560825px;}
.y2a2{bottom:76.565925px;}
.y17d{bottom:76.567425px;}
.y28a{bottom:76.791825px;}
.y1c{bottom:84.156225px;}
.y249{bottom:84.440025px;}
.y40{bottom:84.441825px;}
.y7a{bottom:84.442425px;}
.y260{bottom:84.443175px;}
.y2d1{bottom:87.007425px;}
.y301{bottom:88.957425px;}
.y133{bottom:92.330925px;}
.y1da{bottom:93.801675px;}
.y18b{bottom:93.803325px;}
.y1c2{bottom:93.804975px;}
.y25c{bottom:93.806625px;}
.y1a1{bottom:93.811575px;}
.y2a1{bottom:93.816675px;}
.y17c{bottom:93.818175px;}
.y289{bottom:94.042575px;}
.y1b{bottom:98.406825px;}
.y248{bottom:98.690625px;}
.y79{bottom:98.691825px;}
.y3f{bottom:98.692425px;}
.y1f8{bottom:102.445725px;}
.y2d0{bottom:102.682425px;}
.y300{bottom:104.782425px;}
.y132{bottom:109.581675px;}
.y1d9{bottom:111.052425px;}
.y18a{bottom:111.054075px;}
.y1c1{bottom:111.055725px;}
.y25b{bottom:111.057375px;}
.y1a0{bottom:111.062325px;}
.y2a0{bottom:111.067425px;}
.y17b{bottom:111.068925px;}
.yfc{bottom:111.070125px;}
.y123{bottom:111.076425px;}
.y20f{bottom:111.081675px;}
.y288{bottom:111.293325px;}
.y1a{bottom:112.657425px;}
.ybb{bottom:112.702125px;}
.y247{bottom:112.941225px;}
.y78{bottom:112.942425px;}
.y9e{bottom:112.943175px;}
.y2cf{bottom:118.357425px;}
.y1f7{bottom:119.696475px;}
.y2ff{bottom:120.607425px;}
.y131{bottom:126.832425px;}
.y246{bottom:127.191825px;}
.y9d{bottom:127.192425px;}
.y1d8{bottom:128.303175px;}
.y189{bottom:128.304825px;}
.y1c0{bottom:128.306475px;}
.y25a{bottom:128.308125px;}
.y19f{bottom:128.313075px;}
.y29f{bottom:128.318175px;}
.y17a{bottom:128.319675px;}
.y223{bottom:128.320425px;}
.yfb{bottom:128.320875px;}
.y122{bottom:128.327175px;}
.ydb{bottom:128.327925px;}
.y20e{bottom:128.332425px;}
.y287{bottom:128.544075px;}
.yba{bottom:129.951225px;}
.y2ce{bottom:134.032425px;}
.y2fe{bottom:136.432425px;}
.y1f6{bottom:136.947225px;}
.y9c{bottom:141.442425px;}
.y130{bottom:144.082425px;}
.y1d7{bottom:145.553925px;}
.y188{bottom:145.555575px;}
.y1bf{bottom:145.557225px;}
.y259{bottom:145.558875px;}
.y19e{bottom:145.563825px;}
.y29e{bottom:145.568925px;}
.y179{bottom:145.570425px;}
.y222{bottom:145.571175px;}
.yfa{bottom:145.571625px;}
.y121{bottom:145.577925px;}
.yda{bottom:145.578675px;}
.y286{bottom:145.794825px;}
.yb9{bottom:147.200325px;}
.y2cd{bottom:149.707425px;}
.y3e{bottom:151.925925px;}
.y2fd{bottom:152.257425px;}
.y1f5{bottom:154.197975px;}
.y12f{bottom:161.324925px;}
.y1d6{bottom:162.804675px;}
.y187{bottom:162.806325px;}
.y1be{bottom:162.807975px;}
.y258{bottom:162.809625px;}
.y19d{bottom:162.814575px;}
.y77{bottom:162.815175px;}
.y29d{bottom:162.819675px;}
.y178{bottom:162.821175px;}
.y221{bottom:162.821925px;}
.yf9{bottom:162.822375px;}
.y120{bottom:162.828675px;}
.yd9{bottom:162.829425px;}
.y285{bottom:163.045575px;}
.y2cc{bottom:165.382425px;}
.y2fc{bottom:168.082425px;}
.y3d{bottom:169.176675px;}
.y1f4{bottom:171.448725px;}
.y12e{bottom:178.575675px;}
.y1d5{bottom:180.055425px;}
.y186{bottom:180.057075px;}
.y1bd{bottom:180.058725px;}
.y257{bottom:180.060375px;}
.y19c{bottom:180.065325px;}
.y76{bottom:180.065925px;}
.y29c{bottom:180.070425px;}
.y177{bottom:180.071925px;}
.y220{bottom:180.072675px;}
.yf8{bottom:180.073125px;}
.y11f{bottom:180.079425px;}
.yd8{bottom:180.080175px;}
.y284{bottom:180.296325px;}
.y2cb{bottom:181.057425px;}
.yb8{bottom:181.700175px;}
.y2fb{bottom:183.907425px;}
.y3c{bottom:186.427425px;}
.y1f3{bottom:188.699475px;}
.y12d{bottom:195.826425px;}
.y2ca{bottom:196.732425px;}
.y1d4{bottom:197.306175px;}
.y185{bottom:197.307825px;}
.y1bc{bottom:197.309475px;}
.y256{bottom:197.311125px;}
.y75{bottom:197.316675px;}
.y29b{bottom:197.321175px;}
.y176{bottom:197.322675px;}
.y21f{bottom:197.323425px;}
.yf7{bottom:197.323875px;}
.y11e{bottom:197.330175px;}
.yd7{bottom:197.330925px;}
.y283{bottom:197.547075px;}
.yb7{bottom:198.950925px;}
.y2fa{bottom:199.732425px;}
.y3b{bottom:203.670675px;}
.y19{bottom:205.147425px;}
.y245{bottom:205.944075px;}
.y9b{bottom:205.948425px;}
.y1f2{bottom:205.950225px;}
.y2c9{bottom:212.407425px;}
.y12c{bottom:213.077175px;}
.y1d3{bottom:214.556925px;}
.y184{bottom:214.558575px;}
.y1bb{bottom:214.560225px;}
.y255{bottom:214.561875px;}
.y19b{bottom:214.565175px;}
.y74{bottom:214.567425px;}
.y29a{bottom:214.571925px;}
.y175{bottom:214.573425px;}
.y21e{bottom:214.574175px;}
.yf6{bottom:214.574625px;}
.y11d{bottom:214.580925px;}
.yd6{bottom:214.581675px;}
.y282{bottom:214.797825px;}
.y2f9{bottom:215.557425px;}
.yb6{bottom:216.201675px;}
.y3a{bottom:220.921425px;}
.y244{bottom:223.194825px;}
.y9a{bottom:223.199175px;}
.y1f1{bottom:223.200975px;}
.y18{bottom:226.150950px;}
.y2c8{bottom:228.082425px;}
.y12b{bottom:230.327925px;}
.y2f8{bottom:231.382425px;}
.y1d2{bottom:231.807675px;}
.y183{bottom:231.809325px;}
.y1ba{bottom:231.810975px;}
.y254{bottom:231.812625px;}
.y19a{bottom:231.815925px;}
.y73{bottom:231.818175px;}
.y299{bottom:231.822675px;}
.y174{bottom:231.824175px;}
.y21d{bottom:231.824925px;}
.yf5{bottom:231.825375px;}
.y11c{bottom:231.831675px;}
.yd5{bottom:231.832425px;}
.y281{bottom:232.048575px;}
.yb5{bottom:233.452425px;}
.y39{bottom:238.172175px;}
.y243{bottom:240.445575px;}
.y99{bottom:240.449925px;}
.y1f0{bottom:240.450075px;}
.y17{bottom:241.150500px;}
.y2c7{bottom:243.757425px;}
.y2f7{bottom:247.207425px;}
.y12a{bottom:247.578675px;}
.y1d1{bottom:249.058425px;}
.y11b{bottom:249.060075px;}
.y1b9{bottom:249.061725px;}
.y253{bottom:249.063375px;}
.y199{bottom:249.066675px;}
.y20d{bottom:249.068175px;}
.y72{bottom:249.068925px;}
.y298{bottom:249.073425px;}
.y173{bottom:249.074925px;}
.y21c{bottom:249.075675px;}
.yf4{bottom:249.076125px;}
.y280{bottom:249.299325px;}
.y38{bottom:255.422925px;}
.y16{bottom:256.150050px;}
.y242{bottom:257.696325px;}
.y1ef{bottom:257.699175px;}
.y98{bottom:257.700675px;}
.yd4{bottom:257.708025px;}
.y2c6{bottom:259.432425px;}
.y2f6{bottom:263.032425px;}
.y129{bottom:264.829425px;}
.y1d0{bottom:266.309175px;}
.y11a{bottom:266.310825px;}
.y1b8{bottom:266.312475px;}
.y252{bottom:266.314125px;}
.y198{bottom:266.317425px;}
.y20c{bottom:266.318925px;}
.y71{bottom:266.319675px;}
.y297{bottom:266.324175px;}
.y172{bottom:266.325675px;}
.y21b{bottom:266.326425px;}
.yf3{bottom:266.326875px;}
.y27f{bottom:266.550075px;}
.y15{bottom:271.149600px;}
.y37{bottom:272.673675px;}
.y241{bottom:274.947075px;}
.y1ee{bottom:274.949925px;}
.y97{bottom:274.951425px;}
.y2c5{bottom:275.107425px;}
.y2f5{bottom:278.857425px;}
.y128{bottom:282.080175px;}
.y1cf{bottom:283.559925px;}
.y119{bottom:283.561575px;}
.y1b7{bottom:283.563225px;}
.y251{bottom:283.564875px;}
.y197{bottom:283.568175px;}
.y20b{bottom:283.569675px;}
.y70{bottom:283.570425px;}
.y296{bottom:283.574925px;}
.y171{bottom:283.576425px;}
.y21a{bottom:283.577175px;}
.yf2{bottom:283.577625px;}
.y27e{bottom:283.800825px;}
.yb4{bottom:285.202425px;}
.y14{bottom:286.149150px;}
.y36{bottom:289.924425px;}
.y2c4{bottom:290.782275px;}
.y240{bottom:292.197825px;}
.y1ed{bottom:292.200675px;}
.y96{bottom:292.202175px;}
.y2f4{bottom:294.682275px;}
.y307{bottom:294.682425px;}
.y127{bottom:299.330925px;}
.y1ce{bottom:300.810675px;}
.y118{bottom:300.812325px;}
.y1b6{bottom:300.813975px;}
.y250{bottom:300.815625px;}
.y196{bottom:300.818925px;}
.y20a{bottom:300.820425px;}
.y6f{bottom:300.821175px;}
.y295{bottom:300.825675px;}
.y219{bottom:300.827925px;}
.yf1{bottom:300.828375px;}
.yd3{bottom:300.832425px;}
.yb3{bottom:300.952425px;}
.y27d{bottom:301.051575px;}
.y13{bottom:301.148700px;}
.y2c3{bottom:306.457275px;}
.y35{bottom:307.175175px;}
.y23f{bottom:309.448575px;}
.y1ec{bottom:309.451425px;}
.y95{bottom:309.452925px;}
.y2f3{bottom:310.507275px;}
.y306{bottom:310.507425px;}
.y12{bottom:316.148250px;}
.y126{bottom:316.581675px;}
.yb2{bottom:316.702425px;}
.y1cd{bottom:318.061425px;}
.y117{bottom:318.063075px;}
.y1b5{bottom:318.064725px;}
.y24f{bottom:318.066375px;}
.y195{bottom:318.069675px;}
.y209{bottom:318.071175px;}
.y6e{bottom:318.071925px;}
.y170{bottom:318.076275px;}
.y294{bottom:318.076425px;}
.y218{bottom:318.078675px;}
.yf0{bottom:318.079125px;}
.yd2{bottom:318.081525px;}
.y27c{bottom:318.302325px;}
.y2c2{bottom:322.132425px;}
.y34{bottom:324.425925px;}
.y2f2{bottom:326.332425px;}
.y23e{bottom:326.699325px;}
.y1eb{bottom:326.702175px;}
.y94{bottom:326.703675px;}
.y11{bottom:331.147800px;}
.y125{bottom:333.832425px;}
.y1cc{bottom:335.312175px;}
.y116{bottom:335.313825px;}
.y1b4{bottom:335.315475px;}
.y24e{bottom:335.317125px;}
.y194{bottom:335.320425px;}
.y208{bottom:335.321925px;}
.y6d{bottom:335.322675px;}
.y16f{bottom:335.325375px;}
.y293{bottom:335.327175px;}
.y217{bottom:335.329425px;}
.yef{bottom:335.329875px;}
.yd1{bottom:335.330625px;}
.y27b{bottom:335.553075px;}
.yb1{bottom:336.952425px;}
.y2c1{bottom:337.807425px;}
.y33{bottom:341.676675px;}
.y2f1{bottom:342.157425px;}
.y23d{bottom:343.950075px;}
.y1ea{bottom:343.952925px;}
.y93{bottom:343.954425px;}
.y10{bottom:346.147350px;}
.y1cb{bottom:352.562925px;}
.y115{bottom:352.564575px;}
.y1b3{bottom:352.566225px;}
.y24d{bottom:352.567875px;}
.y193{bottom:352.571175px;}
.y207{bottom:352.572675px;}
.y6c{bottom:352.573425px;}
.y16e{bottom:352.574475px;}
.y292{bottom:352.577925px;}
.yd0{bottom:352.579725px;}
.y216{bottom:352.580175px;}
.yee{bottom:352.580625px;}
.yb0{bottom:352.702425px;}
.y27a{bottom:352.803825px;}
.y2c0{bottom:353.482425px;}
.y2f0{bottom:357.982425px;}
.y32{bottom:358.927425px;}
.yf{bottom:361.146900px;}
.y23c{bottom:361.200825px;}
.y1e9{bottom:361.203675px;}
.y92{bottom:361.205175px;}
.y2bf{bottom:369.157425px;}
.y1ca{bottom:369.813675px;}
.y114{bottom:369.815325px;}
.y1b2{bottom:369.816975px;}
.y192{bottom:369.821925px;}
.y206{bottom:369.823425px;}
.y16d{bottom:369.823575px;}
.y6b{bottom:369.824175px;}
.y291{bottom:369.828675px;}
.ycf{bottom:369.828825px;}
.y215{bottom:369.830925px;}
.yed{bottom:369.831375px;}
.y279{bottom:370.054575px;}
.yaf{bottom:372.952425px;}
.y2ef{bottom:373.807425px;}
.y31{bottom:376.168875px;}
.y24c{bottom:378.443175px;}
.y23b{bottom:378.451575px;}
.y1e8{bottom:378.454425px;}
.y91{bottom:378.455925px;}
.y2be{bottom:384.832425px;}
.y1c9{bottom:387.064425px;}
.y113{bottom:387.066075px;}
.y1b1{bottom:387.067725px;}
.y191{bottom:387.071025px;}
.y16c{bottom:387.072675px;}
.y205{bottom:387.074175px;}
.y6a{bottom:387.074925px;}
.yce{bottom:387.077925px;}
.y290{bottom:387.079425px;}
.y214{bottom:387.081675px;}
.yec{bottom:387.082125px;}
.y278{bottom:387.305325px;}
.yae{bottom:388.702425px;}
.y2ee{bottom:389.632425px;}
.ye{bottom:391.147425px;}
.y30{bottom:393.419625px;}
.y155{bottom:394.357425px;}
.y23a{bottom:395.702325px;}
.y1e7{bottom:395.705175px;}
.y90{bottom:395.706675px;}
.y2bd{bottom:400.507425px;}
.y1c8{bottom:404.315175px;}
.y112{bottom:404.316825px;}
.y1b0{bottom:404.318475px;}
.y190{bottom:404.320125px;}
.y16b{bottom:404.321775px;}
.y204{bottom:404.324925px;}
.y69{bottom:404.325675px;}
.ycd{bottom:404.327025px;}
.y28f{bottom:404.330175px;}
.y213{bottom:404.332425px;}
.yad{bottom:404.452425px;}
.y277{bottom:404.556075px;}
.y2ed{bottom:405.457425px;}
.y154{bottom:410.107425px;}
.y2f{bottom:410.670375px;}
.y8f{bottom:412.947675px;}
.y239{bottom:412.953075px;}
.y1e6{bottom:412.955925px;}
.yeb{bottom:412.957425px;}
.y14c{bottom:413.587425px;}
.y2bc{bottom:416.182425px;}
.y2ec{bottom:421.282425px;}
.y1c7{bottom:421.565925px;}
.y111{bottom:421.567575px;}
.y18f{bottom:421.569225px;}
.y16a{bottom:421.570875px;}
.y203{bottom:421.575675px;}
.ycc{bottom:421.576125px;}
.y68{bottom:421.576425px;}
.y28e{bottom:421.580925px;}
.y276{bottom:421.806825px;}
.yac{bottom:424.702425px;}
.y153{bottom:425.857425px;}
.yd{bottom:427.151175px;}
.y2e{bottom:427.921125px;}
.y14b{bottom:429.337425px;}
.y8e{bottom:430.198425px;}
.y238{bottom:430.203825px;}
.y1e5{bottom:430.206675px;}
.y2bb{bottom:431.857425px;}
.y2eb{bottom:437.107425px;}
.y1c6{bottom:438.816675px;}
.y110{bottom:438.818325px;}
.y169{bottom:438.819975px;}
.ycb{bottom:438.825225px;}
.y202{bottom:438.826425px;}
.y67{bottom:438.827175px;}
.y28d{bottom:438.831675px;}
.y275{bottom:439.057575px;}
.y15d{bottom:439.447425px;}
.yab{bottom:440.452425px;}
.y152{bottom:441.607425px;}
.y14a{bottom:445.087425px;}
.y2d{bottom:445.171875px;}
.y1e4{bottom:447.446175px;}
.y8d{bottom:447.449175px;}
.y237{bottom:447.454575px;}
.y2ba{bottom:447.532425px;}
.yc{bottom:448.151400px;}
.y2ea{bottom:452.932425px;}
.y15c{bottom:455.197425px;}
.y182{bottom:456.067425px;}
.y10f{bottom:456.069075px;}
.y1af{bottom:456.070725px;}
.yea{bottom:456.072375px;}
.yca{bottom:456.075975px;}
.y201{bottom:456.077175px;}
.y66{bottom:456.077925px;}
.y274{bottom:456.308325px;}
.y151{bottom:457.357425px;}
.yaa{bottom:460.702425px;}
.y149{bottom:460.837425px;}
.y2c{bottom:462.422625px;}
.yb{bottom:463.150950px;}
.y2b9{bottom:463.207425px;}
.y168{bottom:464.695275px;}
.y1e3{bottom:464.696925px;}
.y8c{bottom:464.699925px;}
.y236{bottom:464.705325px;}
.y2e9{bottom:468.757425px;}
.y15b{bottom:470.947425px;}
.y150{bottom:473.107425px;}
.y181{bottom:473.318175px;}
.y10e{bottom:473.319825px;}
.y1ae{bottom:473.321475px;}
.ye9{bottom:473.323125px;}
.yc9{bottom:473.326725px;}
.y200{bottom:473.327925px;}
.y65{bottom:473.328675px;}
.y273{bottom:473.559075px;}
.ya9{bottom:476.452425px;}
.y148{bottom:476.587425px;}
.ya{bottom:478.150500px;}
.y2b8{bottom:478.882425px;}
.y2b{bottom:479.673375px;}
.y1e2{bottom:481.947675px;}
.y8b{bottom:481.950675px;}
.y235{bottom:481.956075px;}
.y2e8{bottom:484.582425px;}
.y15a{bottom:486.697425px;}
.y14f{bottom:488.857425px;}
.y180{bottom:490.568925px;}
.y10d{bottom:490.570575px;}
.y1ad{bottom:490.572225px;}
.ye8{bottom:490.573875px;}
.yc8{bottom:490.577475px;}
.y1ff{bottom:490.578675px;}
.y64{bottom:490.579425px;}
.y272{bottom:490.809825px;}
.y147{bottom:492.337425px;}
.y9{bottom:493.150050px;}
.y2b7{bottom:494.557425px;}
.y2a{bottom:496.924125px;}
.y1e1{bottom:499.198425px;}
.y8a{bottom:499.201425px;}
.y234{bottom:499.205175px;}
.y2e7{bottom:500.407425px;}
.ya8{bottom:500.707425px;}
.y14e{bottom:504.607425px;}
.y167{bottom:507.819675px;}
.y10c{bottom:507.821325px;}
.y1ac{bottom:507.822975px;}
.ye7{bottom:507.824625px;}
.yc7{bottom:507.828225px;}
.y1fe{bottom:507.829425px;}
.y63{bottom:507.830175px;}
.y271{bottom:508.060575px;}
.y146{bottom:508.087425px;}
.y8{bottom:508.149600px;}
.y2b6{bottom:510.232425px;}
.y29{bottom:514.174875px;}
.y2e6{bottom:516.232425px;}
.y1e0{bottom:516.449175px;}
.y89{bottom:516.452175px;}
.y233{bottom:516.455925px;}
.y14d{bottom:520.357425px;}
.y7{bottom:523.149150px;}
.y145{bottom:523.837425px;}
.y166{bottom:525.070425px;}
.y10b{bottom:525.072075px;}
.y1ab{bottom:525.073725px;}
.ye6{bottom:525.075375px;}
.y1fd{bottom:525.080175px;}
.y62{bottom:525.080925px;}
.y270{bottom:525.311325px;}
.y2b5{bottom:525.907275px;}
.y28{bottom:531.425625px;}
.y2e5{bottom:532.057425px;}
.y1df{bottom:533.699925px;}
.y88{bottom:533.702925px;}
.y232{bottom:533.706675px;}
.y143{bottom:536.107425px;}
.y6{bottom:538.148700px;}
.y144{bottom:539.587425px;}
.y2b4{bottom:541.582275px;}
.y165{bottom:542.321175px;}
.y10a{bottom:542.322825px;}
.y1aa{bottom:542.324475px;}
.ye5{bottom:542.326125px;}
.yc6{bottom:542.328075px;}
.y1fc{bottom:542.330925px;}
.y61{bottom:542.331675px;}
.y26f{bottom:542.562075px;}
.y2e4{bottom:547.882425px;}
.y27{bottom:548.676375px;}
.ya7{bottom:550.950675px;}
.y231{bottom:550.952175px;}
.y87{bottom:550.953675px;}
.y5{bottom:553.148250px;}
.y2b3{bottom:557.257275px;}
.y164{bottom:559.571925px;}
.y109{bottom:559.573575px;}
.y1a9{bottom:559.575225px;}
.ye4{bottom:559.576875px;}
.yc5{bottom:559.578825px;}
.y1fb{bottom:559.581675px;}
.y60{bottom:559.582425px;}
.y26e{bottom:559.812825px;}
.y2e3{bottom:563.707425px;}
.y26{bottom:565.927125px;}
.y142{bottom:567.607425px;}
.y4{bottom:568.147800px;}
.ya6{bottom:568.201425px;}
.y230{bottom:568.202925px;}
.y86{bottom:568.204425px;}
.y2b2{bottom:572.932275px;}
.y163{bottom:576.822675px;}
.y108{bottom:576.824325px;}
.y1a8{bottom:576.825975px;}
.ye3{bottom:576.827625px;}
.y5f{bottom:576.828675px;}
.yc4{bottom:576.829575px;}
.y1fa{bottom:576.832425px;}
.y26d{bottom:577.063575px;}
.y2e2{bottom:579.532425px;}
.y3{bottom:583.147350px;}
.y141{bottom:583.357425px;}
.ya5{bottom:585.452175px;}
.y22f{bottom:585.453675px;}
.y85{bottom:585.455175px;}
.y2b1{bottom:588.607425px;}
.y25{bottom:591.802425px;}
.y162{bottom:594.073425px;}
.y107{bottom:594.075075px;}
.y1a7{bottom:594.076725px;}
.ye2{bottom:594.078375px;}
.y5e{bottom:594.079425px;}
.y212{bottom:594.080175px;}
.yc3{bottom:594.080325px;}
.y26c{bottom:594.314325px;}
.y2e1{bottom:595.357425px;}
.y2{bottom:598.146900px;}
.y140{bottom:599.107425px;}
.y1f9{bottom:602.701275px;}
.ya4{bottom:602.702925px;}
.y22e{bottom:602.704425px;}
.y84{bottom:602.705925px;}
.y2b0{bottom:604.282425px;}
.y2e0{bottom:611.182425px;}
.y161{bottom:611.324175px;}
.y106{bottom:611.325825px;}
.y1a6{bottom:611.327475px;}
.ye1{bottom:611.329125px;}
.y5d{bottom:611.330175px;}
.y211{bottom:611.330925px;}
.y26b{bottom:611.565075px;}
.y13f{bottom:614.857425px;}
.y1de{bottom:619.952025px;}
.ya3{bottom:619.953675px;}
.y22d{bottom:619.955175px;}
.y83{bottom:619.956675px;}
.y2af{bottom:619.957425px;}
.y159{bottom:624.142425px;}
.y2df{bottom:627.007425px;}
.y1{bottom:628.147425px;}
.y160{bottom:628.574925px;}
.y105{bottom:628.576575px;}
.ye0{bottom:628.579875px;}
.yc2{bottom:628.580175px;}
.y5c{bottom:628.580925px;}
.y210{bottom:628.581675px;}
.y26a{bottom:628.815825px;}
.y13e{bottom:630.607425px;}
.y2ae{bottom:635.632425px;}
.y1a5{bottom:637.202775px;}
.y82{bottom:637.204425px;}
.y158{bottom:639.892425px;}
.y305{bottom:642.832275px;}
.y2de{bottom:642.832425px;}
.y15f{bottom:645.825675px;}
.y104{bottom:645.827325px;}
.yc1{bottom:645.830925px;}
.y5b{bottom:645.831675px;}
.y269{bottom:646.066575px;}
.y13d{bottom:646.357425px;}
.y2ad{bottom:651.307425px;}
.y22c{bottom:654.455025px;}
.y81{bottom:654.455175px;}
.y157{bottom:655.642425px;}
.y4c{bottom:658.612575px;}
.y2dd{bottom:658.657425px;}
.y13c{bottom:662.107425px;}
.y15e{bottom:663.076425px;}
.y103{bottom:663.078075px;}
.ydf{bottom:663.079725px;}
.y58{bottom:663.080175px;}
.yc0{bottom:663.081675px;}
.y5a{bottom:663.082425px;}
.y268{bottom:663.317325px;}
.y2ac{bottom:666.982425px;}
.y59{bottom:668.527425px;}
.y156{bottom:671.392425px;}
.y80{bottom:671.705925px;}
.y4b{bottom:673.612425px;}
.y2dc{bottom:674.482425px;}
.y13b{bottom:677.857425px;}
.ybf{bottom:680.327175px;}
.y102{bottom:680.328825px;}
.yde{bottom:680.330475px;}
.y57{bottom:680.330925px;}
.y267{bottom:680.568075px;}
.y2ab{bottom:682.657425px;}
.ya2{bottom:688.956675px;}
.y2db{bottom:690.307425px;}
.y13a{bottom:693.607425px;}
.y4a{bottom:694.613025px;}
.y24{bottom:695.541825px;}
.ybe{bottom:697.577925px;}
.y22b{bottom:697.579425px;}
.y101{bottom:697.579575px;}
.y7f{bottom:697.581225px;}
.y56{bottom:697.581675px;}
.y266{bottom:697.818825px;}
.y2aa{bottom:698.332425px;}
.y4f{bottom:702.908775px;}
.y2da{bottom:706.132425px;}
.ya1{bottom:706.204125px;}
.y139{bottom:709.357425px;}
.y49{bottom:709.612875px;}
.y23{bottom:709.792425px;}
.y2a9{bottom:714.007425px;}
.ybd{bottom:714.828675px;}
.y22a{bottom:714.830175px;}
.ydd{bottom:714.830325px;}
.y55{bottom:714.832425px;}
.y265{bottom:715.069575px;}
.y2d9{bottom:721.957425px;}
.ya0{bottom:723.454875px;}
.y138{bottom:725.107425px;}
.y4e{bottom:727.268175px;}
.y22{bottom:728.287425px;}
.y2a8{bottom:729.682425px;}
.y48{bottom:730.612125px;}
.y54{bottom:732.079425px;}
.y229{bottom:732.080925px;}
.ydc{bottom:732.081075px;}
.y264{bottom:732.320325px;}
.y2d8{bottom:737.782425px;}
.y7e{bottom:740.705625px;}
.y4d{bottom:742.268025px;}
.y2a7{bottom:745.357425px;}
.y47{bottom:745.611975px;}
.y53{bottom:749.330175px;}
.y228{bottom:749.331675px;}
.y100{bottom:749.331825px;}
.y137{bottom:749.362425px;}
.y263{bottom:749.571075px;}
.y2d7{bottom:753.607425px;}
.y7d{bottom:757.956375px;}
.y2a6{bottom:761.032425px;}
.y52{bottom:766.580925px;}
.y227{bottom:766.582425px;}
.yff{bottom:766.582575px;}
.y46{bottom:766.612575px;}
.y262{bottom:766.821825px;}
.y2d6{bottom:769.432425px;}
.y7c{bottom:775.207125px;}
.y124{bottom:775.582425px;}
.y2a5{bottom:776.707425px;}
.y45{bottom:781.612425px;}
.y51{bottom:783.831675px;}
.y2d5{bottom:785.257425px;}
.y21{bottom:797.287425px;}
.y50{bottom:801.082425px;}
.y44{bottom:806.137425px;}
.y20{bottom:848.287425px;}
.he{height:49.295400px;}
.h6{height:51.216000px;}
.h4{height:57.618000px;}
.h10{height:57.619800px;}
.hc{height:57.620400px;}
.hd{height:57.622200px;}
.h13{height:57.622800px;}
.h1e{height:57.631800px;}
.h5{height:58.536000px;}
.h2{height:60.819000px;}
.h3{height:61.788000px;}
.h15{height:64.020000px;}
.h21{height:64.020600px;}
.h1f{height:65.039400px;}
.h1a{height:65.040000px;}
.h20{height:65.040600px;}
.h9{height:70.422000px;}
.h18{height:71.075400px;}
.h1d{height:71.078400px;}
.h11{height:71.087400px;}
.h1c{height:71.090400px;}
.h16{height:71.096400px;}
.hb{height:71.102400px;}
.ha{height:71.109600px;}
.h12{height:71.114400px;}
.h17{height:71.115600px;}
.h1b{height:71.120400px;}
.h19{height:71.164800px;}
.hf{height:71.544000px;}
.h14{height:71.557200px;}
.h8{height:76.824000px;}
.h7{height:103.382400px;}
.h1{height:894.750000px;}
.h0{height:894.826770px;}
.w0{width:581.896020px;}
.w1{width:582.000000px;}
.x0{left:0.000000px;}
.x1{left:48.842115px;}
.xb{left:68.221665px;}
.x2{left:71.342115px;}
.x5{left:87.887115px;}
.x17{left:93.845865px;}
.x7{left:96.691815px;}
.xe{left:105.617115px;}
.x9{left:109.997415px;}
.xf{left:115.442115px;}
.x13{left:127.607115px;}
.xa{left:146.327265px;}
.x11{left:147.542115px;}
.x8{left:156.047265px;}
.xc{left:170.087265px;}
.x12{left:176.432115px;}
.x6{left:213.226515px;}
.x14{left:231.527415px;}
.x4{left:267.362115px;}
.x10{left:278.447415px;}
.xd{left:304.517565px;}
.x15{left:335.447715px;}
.x3{left:406.412115px;}
.x16{left:439.368015px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.390400pt;}
.v1{vertical-align:28.160000pt;}
.ls160{letter-spacing:-4.320000pt;}
.ls129{letter-spacing:-2.572000pt;}
.ls150{letter-spacing:-1.546667pt;}
.lsd8{letter-spacing:-1.449067pt;}
.ls39{letter-spacing:-1.419733pt;}
.ls37{letter-spacing:-1.396267pt;}
.ls9e{letter-spacing:-1.390400pt;}
.ls132{letter-spacing:-1.386667pt;}
.ls2a{letter-spacing:-1.343467pt;}
.ls69{letter-spacing:-1.337600pt;}
.ls3f{letter-spacing:-1.284800pt;}
.lsc7{letter-spacing:-1.237867pt;}
.ls7a{letter-spacing:-1.232000pt;}
.lse4{letter-spacing:-1.185067pt;}
.ls8f{letter-spacing:-1.179200pt;}
.ls77{letter-spacing:-1.132267pt;}
.ls154{letter-spacing:-1.128000pt;}
.ls63{letter-spacing:-1.126400pt;}
.ls12d{letter-spacing:-1.125333pt;}
.ls12c{letter-spacing:-1.124000pt;}
.ls155{letter-spacing:-1.120000pt;}
.ls50{letter-spacing:-1.079467pt;}
.ls9f{letter-spacing:-1.073600pt;}
.ls159{letter-spacing:-1.028000pt;}
.ls6b{letter-spacing:-1.020800pt;}
.ls15a{letter-spacing:-1.018667pt;}
.lsb7{letter-spacing:-0.968000pt;}
.ls86{letter-spacing:-0.956267pt;}
.ls52{letter-spacing:-0.915200pt;}
.lsb{letter-spacing:-0.912000pt;}
.ls27{letter-spacing:-0.909333pt;}
.ls10c{letter-spacing:-0.906667pt;}
.ls7d{letter-spacing:-0.903467pt;}
.lsa6{letter-spacing:-0.868267pt;}
.lsb6{letter-spacing:-0.862400pt;}
.ls110{letter-spacing:-0.860000pt;}
.ls111{letter-spacing:-0.858667pt;}
.lsab{letter-spacing:-0.856533pt;}
.ls115{letter-spacing:-0.856000pt;}
.lsa5{letter-spacing:-0.850667pt;}
.ls3e{letter-spacing:-0.809600pt;}
.ls6a{letter-spacing:-0.803733pt;}
.ls6d{letter-spacing:-0.797867pt;}
.ls82{letter-spacing:-0.756800pt;}
.lsf{letter-spacing:-0.754933pt;}
.ls10a{letter-spacing:-0.752000pt;}
.ls6f{letter-spacing:-0.750933pt;}
.ls10b{letter-spacing:-0.746667pt;}
.ls4d{letter-spacing:-0.704000pt;}
.ls4c{letter-spacing:-0.698133pt;}
.ls70{letter-spacing:-0.692267pt;}
.ls84{letter-spacing:-0.657067pt;}
.ls9d{letter-spacing:-0.645333pt;}
.lsa9{letter-spacing:-0.610133pt;}
.ls14e{letter-spacing:-0.608000pt;}
.ls10e{letter-spacing:-0.602667pt;}
.ls3a{letter-spacing:-0.598400pt;}
.ls10f{letter-spacing:-0.597333pt;}
.ls6c{letter-spacing:-0.592533pt;}
.ls10d{letter-spacing:-0.592000pt;}
.ls14f{letter-spacing:-0.588000pt;}
.lsc2{letter-spacing:-0.587253pt;}
.ls7c{letter-spacing:-0.586667pt;}
.lsa1{letter-spacing:-0.563200pt;}
.ls158{letter-spacing:-0.549333pt;}
.lsa7{letter-spacing:-0.545600pt;}
.ls134{letter-spacing:-0.544000pt;}
.ls55{letter-spacing:-0.540000pt;}
.ls4f{letter-spacing:-0.539733pt;}
.ls133{letter-spacing:-0.538667pt;}
.ls2d{letter-spacing:-0.537600pt;}
.lsb2{letter-spacing:-0.533867pt;}
.ls56{letter-spacing:-0.532800pt;}
.lsc6{letter-spacing:-0.522133pt;}
.ls98{letter-spacing:-0.498667pt;}
.lsc3{letter-spacing:-0.492800pt;}
.ls126{letter-spacing:-0.488000pt;}
.ls4e{letter-spacing:-0.486933pt;}
.ls123{letter-spacing:-0.485333pt;}
.lsb1{letter-spacing:-0.481067pt;}
.ls125{letter-spacing:-0.480000pt;}
.ls124{letter-spacing:-0.472000pt;}
.lsb0{letter-spacing:-0.463467pt;}
.ls130{letter-spacing:-0.442667pt;}
.ls83{letter-spacing:-0.434133pt;}
.ls12f{letter-spacing:-0.432000pt;}
.ls131{letter-spacing:-0.426667pt;}
.lscd{letter-spacing:-0.422400pt;}
.ls38{letter-spacing:-0.393067pt;}
.ls122{letter-spacing:-0.389333pt;}
.ls128{letter-spacing:-0.388000pt;}
.ls2b{letter-spacing:-0.387200pt;}
.ls121{letter-spacing:-0.384000pt;}
.ls79{letter-spacing:-0.381333pt;}
.ls11f{letter-spacing:-0.380000pt;}
.ls120{letter-spacing:-0.378667pt;}
.lsa8{letter-spacing:-0.375467pt;}
.ls147{letter-spacing:-0.373333pt;}
.lsce{letter-spacing:-0.369600pt;}
.ls109{letter-spacing:-0.357333pt;}
.ls149{letter-spacing:-0.346667pt;}
.ls3d{letter-spacing:-0.334400pt;}
.ls157{letter-spacing:-0.330667pt;}
.ls29{letter-spacing:-0.328533pt;}
.ls107{letter-spacing:-0.328000pt;}
.lse2{letter-spacing:-0.326400pt;}
.ls108{letter-spacing:-0.325333pt;}
.ls3c{letter-spacing:-0.322667pt;}
.lsd3{letter-spacing:-0.321600pt;}
.ls148{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.304000pt;}
.lsad{letter-spacing:-0.281600pt;}
.ls14c{letter-spacing:-0.277333pt;}
.ls161{letter-spacing:-0.276000pt;}
.ls51{letter-spacing:-0.275733pt;}
.lsc{letter-spacing:-0.273600pt;}
.ls41{letter-spacing:-0.269867pt;}
.lsd4{letter-spacing:-0.268800pt;}
.lsd{letter-spacing:-0.268533pt;}
.lsaa{letter-spacing:-0.264000pt;}
.ls14d{letter-spacing:-0.245333pt;}
.lsa0{letter-spacing:-0.228800pt;}
.ls14b{letter-spacing:-0.224000pt;}
.ls7b{letter-spacing:-0.222933pt;}
.ls12{letter-spacing:-0.220800pt;}
.lse{letter-spacing:-0.217867pt;}
.ls5f{letter-spacing:-0.217067pt;}
.ls14{letter-spacing:-0.216000pt;}
.lsd2{letter-spacing:-0.213547pt;}
.ls14a{letter-spacing:-0.213333pt;}
.ls80{letter-spacing:-0.211200pt;}
.ls13{letter-spacing:-0.187200pt;}
.ls12e{letter-spacing:-0.186667pt;}
.ls12a{letter-spacing:-0.181333pt;}
.ls8e{letter-spacing:-0.176000pt;}
.ls53{letter-spacing:-0.170133pt;}
.lse1{letter-spacing:-0.168000pt;}
.ls113{letter-spacing:-0.165333pt;}
.ls3b{letter-spacing:-0.164267pt;}
.ls12b{letter-spacing:-0.160000pt;}
.ls97{letter-spacing:-0.158400pt;}
.lsb9{letter-spacing:-0.156053pt;}
.ls81{letter-spacing:-0.146667pt;}
.ls8d{letter-spacing:-0.123200pt;}
.ls62{letter-spacing:-0.117333pt;}
.ls102{letter-spacing:-0.116000pt;}
.ls103{letter-spacing:-0.112000pt;}
.ls40{letter-spacing:-0.111467pt;}
.ls127{letter-spacing:-0.108000pt;}
.lsac{letter-spacing:-0.076267pt;}
.ls153{letter-spacing:-0.069333pt;}
.ls96{letter-spacing:-0.064533pt;}
.ls152{letter-spacing:-0.064000pt;}
.ls28{letter-spacing:-0.058667pt;}
.ls88{letter-spacing:-0.057600pt;}
.ls112{letter-spacing:-0.056000pt;}
.ls89{letter-spacing:-0.054000pt;}
.ls85{letter-spacing:-0.053387pt;}
.ls151{letter-spacing:-0.053333pt;}
.ls99{letter-spacing:-0.052800pt;}
.ls78{letter-spacing:-0.046933pt;}
.ls156{letter-spacing:-0.042667pt;}
.ls87{letter-spacing:-0.038400pt;}
.ls91{letter-spacing:-0.032000pt;}
.ls92{letter-spacing:-0.026667pt;}
.ls2c{letter-spacing:-0.025600pt;}
.ls54{letter-spacing:-0.021600pt;}
.ls11e{letter-spacing:-0.021333pt;}
.ls116{letter-spacing:-0.020000pt;}
.ls5d{letter-spacing:-0.017600pt;}
.ls90{letter-spacing:-0.016000pt;}
.ls57{letter-spacing:-0.014400pt;}
.ls105{letter-spacing:-0.012000pt;}
.ls26{letter-spacing:-0.011733pt;}
.ls58{letter-spacing:-0.010800pt;}
.ls60{letter-spacing:-0.010667pt;}
.ls2f{letter-spacing:-0.009600pt;}
.lse8{letter-spacing:-0.008800pt;}
.ls17{letter-spacing:-0.008533pt;}
.ls101{letter-spacing:-0.008000pt;}
.ls71{letter-spacing:-0.007200pt;}
.ls19{letter-spacing:-0.006400pt;}
.ls25{letter-spacing:-0.005867pt;}
.ls61{letter-spacing:-0.005333pt;}
.ls8{letter-spacing:-0.005067pt;}
.ls11{letter-spacing:-0.004800pt;}
.ls16{letter-spacing:-0.004267pt;}
.ls104{letter-spacing:-0.004000pt;}
.ls2e{letter-spacing:-0.003600pt;}
.ls18{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.003600pt;}
.ls4{letter-spacing:0.004800pt;}
.ls5e{letter-spacing:0.005867pt;}
.lsd1{letter-spacing:0.010133pt;}
.ls66{letter-spacing:0.011733pt;}
.lsf1{letter-spacing:0.021333pt;}
.ls72{letter-spacing:0.023467pt;}
.ls5b{letter-spacing:0.029333pt;}
.lscb{letter-spacing:0.032000pt;}
.ls7f{letter-spacing:0.035200pt;}
.lsbd{letter-spacing:0.038400pt;}
.ls5a{letter-spacing:0.041067pt;}
.lsf0{letter-spacing:0.042667pt;}
.ls1{letter-spacing:0.045600pt;}
.ls1b{letter-spacing:0.046933pt;}
.lsc0{letter-spacing:0.048000pt;}
.lsbe{letter-spacing:0.050400pt;}
.ls0{letter-spacing:0.050667pt;}
.lsef{letter-spacing:0.052000pt;}
.lsbf{letter-spacing:0.052800pt;}
.ls106{letter-spacing:0.053333pt;}
.lscc{letter-spacing:0.053387pt;}
.ls162{letter-spacing:0.080000pt;}
.ls15c{letter-spacing:0.092000pt;}
.ls94{letter-spacing:0.093867pt;}
.ls15d{letter-spacing:0.096000pt;}
.ls31{letter-spacing:0.099733pt;}
.ls4a{letter-spacing:0.100800pt;}
.lsf8{letter-spacing:0.101333pt;}
.ls11c{letter-spacing:0.104000pt;}
.ls34{letter-spacing:0.105600pt;}
.lsee{letter-spacing:0.106667pt;}
.ls49{letter-spacing:0.111600pt;}
.ls117{letter-spacing:0.112000pt;}
.ls46{letter-spacing:0.146667pt;}
.ls114{letter-spacing:0.148000pt;}
.ls13d{letter-spacing:0.149333pt;}
.ls2{letter-spacing:0.152000pt;}
.ls48{letter-spacing:0.152533pt;}
.lsfd{letter-spacing:0.154667pt;}
.ls13c{letter-spacing:0.156000pt;}
.ls35{letter-spacing:0.158400pt;}
.lsfc{letter-spacing:0.160000pt;}
.ls143{letter-spacing:0.200000pt;}
.ls32{letter-spacing:0.205333pt;}
.ls6{letter-spacing:0.206400pt;}
.ls144{letter-spacing:0.208000pt;}
.ls15{letter-spacing:0.211200pt;}
.ls142{letter-spacing:0.213333pt;}
.lsde{letter-spacing:0.213547pt;}
.ls10{letter-spacing:0.216000pt;}
.lse5{letter-spacing:0.217067pt;}
.lsc1{letter-spacing:0.240533pt;}
.ls13f{letter-spacing:0.245333pt;}
.lsba{letter-spacing:0.252267pt;}
.ls64{letter-spacing:0.254400pt;}
.ls13e{letter-spacing:0.256000pt;}
.ls30{letter-spacing:0.258133pt;}
.ls5c{letter-spacing:0.259200pt;}
.lsff{letter-spacing:0.260000pt;}
.ls100{letter-spacing:0.261333pt;}
.ls20{letter-spacing:0.264000pt;}
.lsfe{letter-spacing:0.266667pt;}
.lsae{letter-spacing:0.293333pt;}
.lsb3{letter-spacing:0.305067pt;}
.ls44{letter-spacing:0.310933pt;}
.lsf3{letter-spacing:0.312000pt;}
.ls9{letter-spacing:0.314133pt;}
.lsf4{letter-spacing:0.314667pt;}
.ls1a{letter-spacing:0.316800pt;}
.lsf2{letter-spacing:0.320000pt;}
.ls11d{letter-spacing:0.352000pt;}
.ls95{letter-spacing:0.357867pt;}
.lsdd{letter-spacing:0.363600pt;}
.ls7e{letter-spacing:0.363733pt;}
.ls24{letter-spacing:0.364800pt;}
.ls23{letter-spacing:0.367200pt;}
.ls11b{letter-spacing:0.368000pt;}
.ls1e{letter-spacing:0.369600pt;}
.lsdc{letter-spacing:0.370800pt;}
.ls11a{letter-spacing:0.372000pt;}
.ls119{letter-spacing:0.373333pt;}
.ls5{letter-spacing:0.374400pt;}
.lsdb{letter-spacing:0.378000pt;}
.lsd5{letter-spacing:0.381333pt;}
.lse0{letter-spacing:0.381600pt;}
.ls9c{letter-spacing:0.410667pt;}
.lsfb{letter-spacing:0.416000pt;}
.lsaf{letter-spacing:0.416533pt;}
.lsec{letter-spacing:0.420000pt;}
.lsed{letter-spacing:0.421333pt;}
.ls22{letter-spacing:0.422400pt;}
.lsfa{letter-spacing:0.424000pt;}
.lseb{letter-spacing:0.426667pt;}
.ls43{letter-spacing:0.428267pt;}
.lsdf{letter-spacing:0.451733pt;}
.ls146{letter-spacing:0.468000pt;}
.lscf{letter-spacing:0.469333pt;}
.lsf6{letter-spacing:0.472000pt;}
.lsf7{letter-spacing:0.474667pt;}
.lsa3{letter-spacing:0.475200pt;}
.lsf5{letter-spacing:0.480000pt;}
.lsd0{letter-spacing:0.481067pt;}
.ls76{letter-spacing:0.513600pt;}
.ls73{letter-spacing:0.516267pt;}
.ls75{letter-spacing:0.522133pt;}
.ls1d{letter-spacing:0.528000pt;}
.ls145{letter-spacing:0.533333pt;}
.ls74{letter-spacing:0.539733pt;}
.lsd9{letter-spacing:0.563200pt;}
.ls1f{letter-spacing:0.574933pt;}
.ls118{letter-spacing:0.576000pt;}
.ls140{letter-spacing:0.580000pt;}
.ls36{letter-spacing:0.580800pt;}
.ls141{letter-spacing:0.581333pt;}
.lsb8{letter-spacing:0.586667pt;}
.ls15b{letter-spacing:0.588000pt;}
.ls1c{letter-spacing:0.633600pt;}
.lsb4{letter-spacing:0.639467pt;}
.ls137{letter-spacing:0.672000pt;}
.lse7{letter-spacing:0.680533pt;}
.ls138{letter-spacing:0.682667pt;}
.ls6e{letter-spacing:0.686400pt;}
.ls136{letter-spacing:0.688000pt;}
.ls9b{letter-spacing:0.692267pt;}
.ls135{letter-spacing:0.693333pt;}
.ls7{letter-spacing:0.696000pt;}
.lsc9{letter-spacing:0.727467pt;}
.ls67{letter-spacing:0.739200pt;}
.ls3{letter-spacing:0.739733pt;}
.ls15f{letter-spacing:0.741333pt;}
.ls15e{letter-spacing:0.752000pt;}
.ls13b{letter-spacing:0.778667pt;}
.ls68{letter-spacing:0.786133pt;}
.lsd7{letter-spacing:0.792000pt;}
.ls13a{letter-spacing:0.794667pt;}
.lsbb{letter-spacing:0.803733pt;}
.ls8a{letter-spacing:0.838933pt;}
.lsea{letter-spacing:0.844800pt;}
.lsa4{letter-spacing:0.850667pt;}
.ls139{letter-spacing:0.853333pt;}
.lsbc{letter-spacing:0.856533pt;}
.lse3{letter-spacing:0.897600pt;}
.lsc8{letter-spacing:0.903467pt;}
.ls33{letter-spacing:0.921067pt;}
.lse9{letter-spacing:0.944533pt;}
.ls45{letter-spacing:0.956267pt;}
.lsb5{letter-spacing:1.009067pt;}
.ls93{letter-spacing:1.061867pt;}
.lsca{letter-spacing:1.091200pt;}
.lsda{letter-spacing:1.102933pt;}
.ls8c{letter-spacing:1.114667pt;}
.lsa2{letter-spacing:1.220267pt;}
.ls9a{letter-spacing:1.267200pt;}
.lsd6{letter-spacing:1.273067pt;}
.lsc5{letter-spacing:1.378667pt;}
.ls8b{letter-spacing:1.431467pt;}
.lse6{letter-spacing:1.484267pt;}
.lsc4{letter-spacing:1.490133pt;}
.ls4b{letter-spacing:11.402667pt;}
.lsf9{letter-spacing:12.053333pt;}
.ls47{letter-spacing:13.226667pt;}
.ls65{letter-spacing:13.386667pt;}
.ls42{letter-spacing:13.440000pt;}
.ls59{letter-spacing:14.186667pt;}
.wsb3{word-spacing:-15.206400pt;}
.ws110{word-spacing:-15.182933pt;}
.wse7{word-spacing:-15.077333pt;}
.wsf1{word-spacing:-14.977600pt;}
.ws16c{word-spacing:-14.948267pt;}
.wse6{word-spacing:-14.819200pt;}
.ws164{word-spacing:-14.813333pt;}
.wsef{word-spacing:-14.766400pt;}
.ws129{word-spacing:-14.719467pt;}
.ws9a{word-spacing:-14.666667pt;}
.ws3c{word-spacing:-14.660800pt;}
.ws1f{word-spacing:-14.654933pt;}
.ws122{word-spacing:-14.649067pt;}
.ws123{word-spacing:-14.608000pt;}
.ws102{word-spacing:-14.555200pt;}
.ws12b{word-spacing:-14.549333pt;}
.wsc1{word-spacing:-14.520000pt;}
.wse5{word-spacing:-14.502400pt;}
.ws85{word-spacing:-14.496533pt;}
.ws163{word-spacing:-14.443733pt;}
.ws121{word-spacing:-14.390933pt;}
.ws9d{word-spacing:-14.344000pt;}
.ws10e{word-spacing:-14.232533pt;}
.ws100{word-spacing:-14.203200pt;}
.ws5b{word-spacing:-14.126933pt;}
.ws101{word-spacing:-14.121067pt;}
.wsb5{word-spacing:-14.080000pt;}
.wse4{word-spacing:-14.021333pt;}
.ws1d6{word-spacing:-13.914667pt;}
.ws1a5{word-spacing:-13.909333pt;}
.ws128{word-spacing:-13.810133pt;}
.wsec{word-spacing:-13.798400pt;}
.ws13f{word-spacing:-13.751467pt;}
.ws1ac{word-spacing:-13.701333pt;}
.wsd2{word-spacing:-13.589333pt;}
.ws5c{word-spacing:-13.587200pt;}
.wsd7{word-spacing:-13.568000pt;}
.ws174{word-spacing:-13.376000pt;}
.wsd4{word-spacing:-13.333333pt;}
.ws9b{word-spacing:-13.329067pt;}
.wsd3{word-spacing:-13.328000pt;}
.wsd6{word-spacing:-13.322667pt;}
.wsd5{word-spacing:-13.317333pt;}
.wsee{word-spacing:-13.270400pt;}
.ws1d3{word-spacing:-13.120000pt;}
.ws176{word-spacing:-12.976000pt;}
.ws1c8{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.914933pt;}
.ws1a9{word-spacing:-12.848000pt;}
.ws2{word-spacing:-12.661600pt;}
.wsb7{word-spacing:-12.513600pt;}
.ws17d{word-spacing:-12.474667pt;}
.ws17a{word-spacing:-12.426667pt;}
.ws8b{word-spacing:-12.259200pt;}
.ws21{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.995200pt;}
.ws27{word-spacing:-11.990400pt;}
.ws1b3{word-spacing:-11.946667pt;}
.ws1cb{word-spacing:-11.786667pt;}
.ws1cf{word-spacing:-10.792000pt;}
.ws1f6{word-spacing:-10.752000pt;}
.ws1ce{word-spacing:-10.688000pt;}
.ws1f0{word-spacing:-10.588000pt;}
.ws1d5{word-spacing:-10.580000pt;}
.ws179{word-spacing:-10.472000pt;}
.ws1d8{word-spacing:-10.468000pt;}
.ws17f{word-spacing:-10.424000pt;}
.ws172{word-spacing:-10.420000pt;}
.ws180{word-spacing:-10.416000pt;}
.ws1a6{word-spacing:-10.372000pt;}
.ws177{word-spacing:-10.312000pt;}
.ws184{word-spacing:-10.260000pt;}
.ws1d1{word-spacing:-10.256000pt;}
.ws1d7{word-spacing:-10.200000pt;}
.ws1d0{word-spacing:-10.156000pt;}
.ws181{word-spacing:-10.152000pt;}
.ws182{word-spacing:-10.148000pt;}
.ws1aa{word-spacing:-10.104000pt;}
.ws1f5{word-spacing:-10.092000pt;}
.ws173{word-spacing:-10.052000pt;}
.ws171{word-spacing:-10.000000pt;}
.ws16f{word-spacing:-9.996000pt;}
.ws16d{word-spacing:-9.992000pt;}
.ws170{word-spacing:-9.988000pt;}
.ws187{word-spacing:-9.980000pt;}
.ws17e{word-spacing:-9.944000pt;}
.ws1f1{word-spacing:-9.936000pt;}
.ws1ab{word-spacing:-9.892000pt;}
.ws16e{word-spacing:-9.884000pt;}
.ws1b1{word-spacing:-9.832000pt;}
.ws1d2{word-spacing:-9.776000pt;}
.ws1f3{word-spacing:-9.724000pt;}
.ws1c9{word-spacing:-9.680000pt;}
.ws175{word-spacing:-9.672000pt;}
.ws1a4{word-spacing:-9.620000pt;}
.ws1ad{word-spacing:-9.612000pt;}
.ws1b2{word-spacing:-9.568000pt;}
.ws1af{word-spacing:-9.512000pt;}
.ws1ca{word-spacing:-9.412000pt;}
.ws17b{word-spacing:-9.408000pt;}
.ws15a{word-spacing:-9.381600pt;}
.ws157{word-spacing:-9.378000pt;}
.ws158{word-spacing:-9.370800pt;}
.ws178{word-spacing:-9.248000pt;}
.ws183{word-spacing:-9.144000pt;}
.ws17c{word-spacing:-9.140000pt;}
.ws5e{word-spacing:-9.111600pt;}
.ws5f{word-spacing:-9.100800pt;}
.ws1f2{word-spacing:-9.013333pt;}
.ws3e{word-spacing:-8.996400pt;}
.ws65{word-spacing:-8.985600pt;}
.ws5d{word-spacing:-8.978400pt;}
.ws1d4{word-spacing:-8.972000pt;}
.ws1cd{word-spacing:-8.880000pt;}
.ws1b0{word-spacing:-8.876000pt;}
.ws1cc{word-spacing:-8.872000pt;}
.ws1ae{word-spacing:-7.428000pt;}
.ws133{word-spacing:-0.756800pt;}
.wsba{word-spacing:-0.745067pt;}
.wsa9{word-spacing:-0.739200pt;}
.wsd1{word-spacing:-0.709867pt;}
.ws45{word-spacing:-0.704000pt;}
.wse3{word-spacing:-0.698133pt;}
.ws2e{word-spacing:-0.692267pt;}
.wsdd{word-spacing:-0.686400pt;}
.ws127{word-spacing:-0.680533pt;}
.wsce{word-spacing:-0.657600pt;}
.ws80{word-spacing:-0.643200pt;}
.ws1a1{word-spacing:-0.640000pt;}
.ws51{word-spacing:-0.639467pt;}
.ws1a2{word-spacing:-0.634667pt;}
.ws96{word-spacing:-0.633600pt;}
.ws1df{word-spacing:-0.629333pt;}
.wsc8{word-spacing:-0.627733pt;}
.wsfc{word-spacing:-0.621867pt;}
.ws89{word-spacing:-0.610133pt;}
.wscf{word-spacing:-0.609600pt;}
.ws7b{word-spacing:-0.595200pt;}
.wse0{word-spacing:-0.592533pt;}
.ws9{word-spacing:-0.587733pt;}
.ws34{word-spacing:-0.586667pt;}
.ws7f{word-spacing:-0.585600pt;}
.ws199{word-spacing:-0.581333pt;}
.ws7a{word-spacing:-0.580800pt;}
.wsd9{word-spacing:-0.574933pt;}
.ws118{word-spacing:-0.539733pt;}
.ws8e{word-spacing:-0.533867pt;}
.ws188{word-spacing:-0.533333pt;}
.wsd0{word-spacing:-0.532800pt;}
.wsad{word-spacing:-0.528000pt;}
.wse8{word-spacing:-0.522133pt;}
.ws1c1{word-spacing:-0.517333pt;}
.ws167{word-spacing:-0.504533pt;}
.wsfa{word-spacing:-0.498667pt;}
.ws90{word-spacing:-0.492800pt;}
.ws125{word-spacing:-0.486933pt;}
.ws56{word-spacing:-0.481067pt;}
.ws19a{word-spacing:-0.480000pt;}
.ws75{word-spacing:-0.475200pt;}
.ws1c3{word-spacing:-0.474667pt;}
.ws8f{word-spacing:-0.469333pt;}
.ws1c4{word-spacing:-0.453333pt;}
.ws1dc{word-spacing:-0.448000pt;}
.ws59{word-spacing:-0.446400pt;}
.ws11b{word-spacing:-0.434133pt;}
.ws4e{word-spacing:-0.428267pt;}
.wsa{word-spacing:-0.425600pt;}
.ws30{word-spacing:-0.422400pt;}
.ws1eb{word-spacing:-0.421333pt;}
.wsae{word-spacing:-0.416533pt;}
.ws1db{word-spacing:-0.416000pt;}
.ws50{word-spacing:-0.410667pt;}
.wsc0{word-spacing:-0.393067pt;}
.ws18{word-spacing:-0.388800pt;}
.ws44{word-spacing:-0.375467pt;}
.ws10{word-spacing:-0.374933pt;}
.ws17{word-spacing:-0.374400pt;}
.ws189{word-spacing:-0.373333pt;}
.wsbd{word-spacing:-0.369600pt;}
.ws18a{word-spacing:-0.368000pt;}
.wse{word-spacing:-0.364800pt;}
.ws36{word-spacing:-0.363733pt;}
.ws76{word-spacing:-0.357867pt;}
.ws1da{word-spacing:-0.346667pt;}
.wsf7{word-spacing:-0.322667pt;}
.ws83{word-spacing:-0.321600pt;}
.ws1b7{word-spacing:-0.320000pt;}
.ws11{word-spacing:-0.319200pt;}
.ws57{word-spacing:-0.316800pt;}
.ws18f{word-spacing:-0.314667pt;}
.ws134{word-spacing:-0.310933pt;}
.ws1b8{word-spacing:-0.309333pt;}
.ws81{word-spacing:-0.307200pt;}
.ws107{word-spacing:-0.305067pt;}
.ws82{word-spacing:-0.288000pt;}
.ws103{word-spacing:-0.269867pt;}
.ws149{word-spacing:-0.268800pt;}
.ws6f{word-spacing:-0.264000pt;}
.ws1bf{word-spacing:-0.261333pt;}
.ws1c0{word-spacing:-0.256000pt;}
.ws11e{word-spacing:-0.252267pt;}
.ws104{word-spacing:-0.217067pt;}
.ws161{word-spacing:-0.216000pt;}
.ws71{word-spacing:-0.211200pt;}
.ws1c6{word-spacing:-0.208000pt;}
.ws162{word-spacing:-0.206400pt;}
.wscb{word-spacing:-0.205333pt;}
.ws1c5{word-spacing:-0.197333pt;}
.wse1{word-spacing:-0.193600pt;}
.wse9{word-spacing:-0.187733pt;}
.ws117{word-spacing:-0.164267pt;}
.ws1a{word-spacing:-0.163200pt;}
.ws1bd{word-spacing:-0.160000pt;}
.ws19{word-spacing:-0.158400pt;}
.ws1bc{word-spacing:-0.154667pt;}
.wsf9{word-spacing:-0.152533pt;}
.ws1e8{word-spacing:-0.149333pt;}
.ws4c{word-spacing:-0.146667pt;}
.ws165{word-spacing:-0.111467pt;}
.ws1de{word-spacing:-0.106667pt;}
.ws35{word-spacing:-0.105600pt;}
.ws1c7{word-spacing:-0.101333pt;}
.ws14b{word-spacing:-0.100800pt;}
.wscc{word-spacing:-0.093867pt;}
.ws1dd{word-spacing:-0.090667pt;}
.wsf8{word-spacing:-0.088000pt;}
.ws0{word-spacing:-0.060800pt;}
.wsab{word-spacing:-0.058667pt;}
.ws38{word-spacing:-0.052800pt;}
.ws194{word-spacing:-0.048000pt;}
.ws6e{word-spacing:-0.046933pt;}
.ws106{word-spacing:-0.041067pt;}
.ws195{word-spacing:-0.037333pt;}
.wsdb{word-spacing:-0.010667pt;}
.ws139{word-spacing:-0.005867pt;}
.ws94{word-spacing:-0.005333pt;}
.wsb1{word-spacing:-0.004800pt;}
.ws4{word-spacing:0.000000pt;}
.ws39{word-spacing:0.004800pt;}
.wsf{word-spacing:0.005067pt;}
.ws95{word-spacing:0.005333pt;}
.ws6d{word-spacing:0.005867pt;}
.ws14f{word-spacing:0.009600pt;}
.ws1a0{word-spacing:0.010667pt;}
.ws5a{word-spacing:0.014400pt;}
.wsda{word-spacing:0.016000pt;}
.ws131{word-spacing:0.019200pt;}
.ws1ea{word-spacing:0.026667pt;}
.ws1b4{word-spacing:0.032000pt;}
.wsdf{word-spacing:0.046933pt;}
.ws5{word-spacing:0.050667pt;}
.wsa3{word-spacing:0.052800pt;}
.ws191{word-spacing:0.053333pt;}
.ws52{word-spacing:0.058667pt;}
.ws1ed{word-spacing:0.069333pt;}
.wsf4{word-spacing:0.093867pt;}
.wsf3{word-spacing:0.099733pt;}
.wsd8{word-spacing:0.105600pt;}
.ws12{word-spacing:0.111467pt;}
.wsb2{word-spacing:0.146667pt;}
.ws4d{word-spacing:0.152533pt;}
.ws198{word-spacing:0.154667pt;}
.ws2d{word-spacing:0.158400pt;}
.ws197{word-spacing:0.160000pt;}
.ws1c{word-spacing:0.163200pt;}
.ws77{word-spacing:0.164267pt;}
.ws196{word-spacing:0.165333pt;}
.wsfb{word-spacing:0.199467pt;}
.wscd{word-spacing:0.205333pt;}
.wsca{word-spacing:0.211200pt;}
.wsc{word-spacing:0.212800pt;}
.ws2c{word-spacing:0.217067pt;}
.ws19c{word-spacing:0.218667pt;}
.wsf6{word-spacing:0.264000pt;}
.wsb{word-spacing:0.268533pt;}
.ws29{word-spacing:0.269867pt;}
.ws108{word-spacing:0.275733pt;}
.wsaa{word-spacing:0.316800pt;}
.ws1ec{word-spacing:0.320000pt;}
.wsa4{word-spacing:0.322667pt;}
.ws74{word-spacing:0.328533pt;}
.ws138{word-spacing:0.363733pt;}
.ws79{word-spacing:0.369600pt;}
.ws19f{word-spacing:0.373333pt;}
.ws97{word-spacing:0.375467pt;}
.wsb8{word-spacing:0.381333pt;}
.ws19e{word-spacing:0.384000pt;}
.ws6c{word-spacing:0.422400pt;}
.ws1e0{word-spacing:0.426667pt;}
.ws13b{word-spacing:0.427200pt;}
.wsfd{word-spacing:0.428267pt;}
.ws1e1{word-spacing:0.432000pt;}
.ws46{word-spacing:0.440000pt;}
.ws12f{word-spacing:0.446400pt;}
.wsf0{word-spacing:0.451733pt;}
.ws72{word-spacing:0.475200pt;}
.wsc6{word-spacing:0.481067pt;}
.ws15{word-spacing:0.481333pt;}
.ws1c2{word-spacing:0.485333pt;}
.wsb9{word-spacing:0.486933pt;}
.ws16a{word-spacing:0.492800pt;}
.wsb6{word-spacing:0.508800pt;}
.ws111{word-spacing:0.510400pt;}
.ws126{word-spacing:0.528000pt;}
.ws13d{word-spacing:0.532800pt;}
.ws1e4{word-spacing:0.533333pt;}
.ws54{word-spacing:0.533867pt;}
.ws13c{word-spacing:0.537600pt;}
.ws47{word-spacing:0.539733pt;}
.ws1e5{word-spacing:0.549333pt;}
.wsf2{word-spacing:0.563200pt;}
.ws150{word-spacing:0.569067pt;}
.wsa2{word-spacing:0.580800pt;}
.wsa8{word-spacing:0.586667pt;}
.ws132{word-spacing:0.592533pt;}
.ws130{word-spacing:0.604800pt;}
.wsf5{word-spacing:0.639467pt;}
.ws1e2{word-spacing:0.640000pt;}
.ws32{word-spacing:0.645333pt;}
.ws48{word-spacing:0.651200pt;}
.ws1e3{word-spacing:0.656000pt;}
.wsbe{word-spacing:0.691200pt;}
.ws53{word-spacing:0.692267pt;}
.wsa7{word-spacing:0.698133pt;}
.ws43{word-spacing:0.704000pt;}
.ws136{word-spacing:0.727467pt;}
.ws58{word-spacing:0.729600pt;}
.ws1f7{word-spacing:0.741333pt;}
.ws14e{word-spacing:0.744000pt;}
.wsa5{word-spacing:0.745067pt;}
.ws1b9{word-spacing:0.746667pt;}
.ws1d{word-spacing:0.748800pt;}
.ws105{word-spacing:0.750933pt;}
.ws1f8{word-spacing:0.752000pt;}
.ws11a{word-spacing:0.756800pt;}
.wsea{word-spacing:0.792000pt;}
.ws3a{word-spacing:0.796800pt;}
.ws13a{word-spacing:0.797867pt;}
.ws14d{word-spacing:0.801600pt;}
.wsff{word-spacing:0.803733pt;}
.ws3b{word-spacing:0.806400pt;}
.ws10b{word-spacing:0.844800pt;}
.ws92{word-spacing:0.850667pt;}
.wsd{word-spacing:0.851200pt;}
.ws192{word-spacing:0.853333pt;}
.ws15f{word-spacing:0.854400pt;}
.ws2b{word-spacing:0.856533pt;}
.ws160{word-spacing:0.859200pt;}
.ws11d{word-spacing:0.862400pt;}
.ws15e{word-spacing:0.878400pt;}
.ws156{word-spacing:0.891733pt;}
.ws16b{word-spacing:0.897600pt;}
.ws19b{word-spacing:0.901333pt;}
.ws55{word-spacing:0.903467pt;}
.ws18b{word-spacing:0.906667pt;}
.ws98{word-spacing:0.907200pt;}
.wsbc{word-spacing:0.909333pt;}
.ws99{word-spacing:0.912000pt;}
.wsbb{word-spacing:0.915200pt;}
.ws148{word-spacing:0.950400pt;}
.ws2f{word-spacing:0.956267pt;}
.ws1ba{word-spacing:0.960000pt;}
.ws10a{word-spacing:0.962133pt;}
.ws6{word-spacing:0.962667pt;}
.ws119{word-spacing:0.968000pt;}
.ws1be{word-spacing:0.976000pt;}
.ws70{word-spacing:1.009067pt;}
.ws190{word-spacing:1.013333pt;}
.wseb{word-spacing:1.014933pt;}
.ws8a{word-spacing:1.017600pt;}
.wsdc{word-spacing:1.020800pt;}
.ws155{word-spacing:1.044267pt;}
.wsed{word-spacing:1.056000pt;}
.ws1bb{word-spacing:1.061333pt;}
.wsc9{word-spacing:1.061867pt;}
.ws7c{word-spacing:1.065600pt;}
.ws19d{word-spacing:1.066667pt;}
.ws33{word-spacing:1.067733pt;}
.ws16{word-spacing:1.069067pt;}
.ws7e{word-spacing:1.070400pt;}
.wsde{word-spacing:1.073600pt;}
.ws1b{word-spacing:1.075200pt;}
.ws7d{word-spacing:1.080000pt;}
.ws1e9{word-spacing:1.082667pt;}
.ws120{word-spacing:1.089600pt;}
.ws153{word-spacing:1.108800pt;}
.ws14a{word-spacing:1.113600pt;}
.wsc5{word-spacing:1.114667pt;}
.ws13{word-spacing:1.119733pt;}
.ws1b5{word-spacing:1.120000pt;}
.ws31{word-spacing:1.120533pt;}
.ws152{word-spacing:1.126400pt;}
.ws11f{word-spacing:1.156800pt;}
.ws37{word-spacing:1.167467pt;}
.ws14c{word-spacing:1.171200pt;}
.ws28{word-spacing:1.173333pt;}
.ws8{word-spacing:1.175467pt;}
.ws112{word-spacing:1.176000pt;}
.wsc7{word-spacing:1.179200pt;}
.wsfe{word-spacing:1.190933pt;}
.ws135{word-spacing:1.202667pt;}
.wsac{word-spacing:1.214400pt;}
.ws1b6{word-spacing:1.216000pt;}
.wse2{word-spacing:1.220267pt;}
.ws14{word-spacing:1.221067pt;}
.ws1e{word-spacing:1.224000pt;}
.ws7{word-spacing:1.226133pt;}
.ws193{word-spacing:1.226667pt;}
.ws4a{word-spacing:1.232000pt;}
.ws137{word-spacing:1.255467pt;}
.wsaf{word-spacing:1.267200pt;}
.ws91{word-spacing:1.273067pt;}
.ws18d{word-spacing:1.274667pt;}
.ws78{word-spacing:1.278933pt;}
.ws18c{word-spacing:1.280000pt;}
.ws42{word-spacing:1.284800pt;}
.ws109{word-spacing:1.290667pt;}
.ws15d{word-spacing:1.302400pt;}
.ws18e{word-spacing:1.306667pt;}
.wsb0{word-spacing:1.308267pt;}
.wsa6{word-spacing:1.325867pt;}
.ws1ef{word-spacing:1.328000pt;}
.ws4b{word-spacing:1.331733pt;}
.ws1e7{word-spacing:1.333333pt;}
.ws93{word-spacing:1.337600pt;}
.ws1ee{word-spacing:1.338667pt;}
.ws11c{word-spacing:1.349333pt;}
.ws49{word-spacing:1.361067pt;}
.ws1e6{word-spacing:1.370667pt;}
.ws10d{word-spacing:1.378667pt;}
.ws1a3{word-spacing:1.381333pt;}
.ws41{word-spacing:1.384533pt;}
.ws73{word-spacing:1.390400pt;}
.ws116{word-spacing:1.396267pt;}
.ws151{word-spacing:1.402133pt;}
.ws115{word-spacing:1.408000pt;}
.ws86{word-spacing:1.413867pt;}
.ws9c{word-spacing:1.419733pt;}
.ws10c{word-spacing:1.431467pt;}
.ws4f{word-spacing:1.437333pt;}
.ws2a{word-spacing:1.443200pt;}
.ws168{word-spacing:1.449067pt;}
.wsb4{word-spacing:1.454933pt;}
.ws84{word-spacing:1.648533pt;}
.wsc4{word-spacing:2.308000pt;}
.wsc3{word-spacing:2.357867pt;}
.ws62{word-spacing:2.365467pt;}
.ws63{word-spacing:2.368267pt;}
.ws61{word-spacing:2.408000pt;}
.ws64{word-spacing:2.444667pt;}
.ws3f{word-spacing:2.522667pt;}
.ws124{word-spacing:2.552000pt;}
.ws69{word-spacing:2.616267pt;}
.ws6a{word-spacing:2.672000pt;}
.ws15c{word-spacing:2.800533pt;}
.ws15b{word-spacing:2.807467pt;}
.ws166{word-spacing:2.880800pt;}
.ws169{word-spacing:2.933333pt;}
.ws22{word-spacing:2.937467pt;}
.ws23{word-spacing:2.952667pt;}
.ws26{word-spacing:2.998533pt;}
.ws40{word-spacing:2.998667pt;}
.ws8c{word-spacing:2.998933pt;}
.ws8d{word-spacing:3.002267pt;}
.ws66{word-spacing:3.009600pt;}
.ws68{word-spacing:3.010800pt;}
.ws145{word-spacing:3.012000pt;}
.ws143{word-spacing:3.025067pt;}
.ws24{word-spacing:3.031200pt;}
.ws147{word-spacing:3.046533pt;}
.ws1a7{word-spacing:3.048000pt;}
.ws60{word-spacing:3.064000pt;}
.ws146{word-spacing:3.067733pt;}
.ws144{word-spacing:3.071067pt;}
.ws6b{word-spacing:3.075600pt;}
.ws67{word-spacing:3.083067pt;}
.ws1a8{word-spacing:3.090667pt;}
.wsa0{word-spacing:3.165067pt;}
.ws9f{word-spacing:3.181600pt;}
.ws1d9{word-spacing:3.349333pt;}
.ws12d{word-spacing:3.435733pt;}
.ws12e{word-spacing:3.450667pt;}
.ws3d{word-spacing:3.702000pt;}
.ws185{word-spacing:3.706667pt;}
.wsc2{word-spacing:3.706827pt;}
.ws186{word-spacing:3.776000pt;}
.ws140{word-spacing:3.802533pt;}
.ws142{word-spacing:3.804267pt;}
.ws10f{word-spacing:3.854827pt;}
.ws13e{word-spacing:3.867307pt;}
.ws25{word-spacing:3.869600pt;}
.ws141{word-spacing:3.878267pt;}
.ws159{word-spacing:3.924667pt;}
.ws154{word-spacing:3.972693pt;}
.ws114{word-spacing:4.007733pt;}
.ws113{word-spacing:4.060533pt;}
.ws1f4{word-spacing:4.613333pt;}
.wsbf{word-spacing:4.720000pt;}
.ws12a{word-spacing:5.786507pt;}
.ws12c{word-spacing:8.001600pt;}
.wsa1{word-spacing:20.592000pt;}
.ws20{word-spacing:31.833600pt;}
.ws9e{word-spacing:32.001600pt;}
.ws87{word-spacing:294.384000pt;}
.ws88{word-spacing:709.072000pt;}
._1b{margin-left:-20.034667pt;}
._23{margin-left:-9.594667pt;}
._c{margin-left:-7.406933pt;}
._b{margin-left:-5.679733pt;}
._3{margin-left:-4.017867pt;}
._1{margin-left:-2.604267pt;}
._0{margin-left:-1.013333pt;}
._4{width:1.337600pt;}
._2{width:2.406667pt;}
._1f{width:3.460800pt;}
._28{width:4.702400pt;}
._5{width:12.514667pt;}
._a{width:13.751467pt;}
._20{width:14.766400pt;}
._26{width:18.650133pt;}
._21{width:20.040000pt;}
._24{width:21.260800pt;}
._1c{width:25.232533pt;}
._27{width:26.666667pt;}
._25{width:28.265600pt;}
._1e{width:34.038400pt;}
._1a{width:35.153067pt;}
._1d{width:36.279467pt;}
._6{width:43.478933pt;}
._8{width:45.076800pt;}
._15{width:86.469333pt;}
._d{width:107.040000pt;}
._12{width:116.416000pt;}
._e{width:121.749333pt;}
._f{width:123.109333pt;}
._14{width:136.484267pt;}
._11{width:165.402667pt;}
._18{width:209.722667pt;}
._19{width:251.290667pt;}
._16{width:263.258667pt;}
._17{width:417.493333pt;}
._22{width:438.650667pt;}
._9{width:596.369067pt;}
._13{width:644.634667pt;}
._7{width:986.015467pt;}
._10{width:1212.272000pt;}
.fs8{font-size:36.000000pt;}
.fsb{font-size:40.000000pt;}
.fs7{font-size:41.066667pt;}
.fs2{font-size:42.666667pt;}
.fsa{font-size:44.000000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs4{font-size:59.733333pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2d4{bottom:35.539933pt;}
.y136{bottom:36.069933pt;}
.y1f{bottom:36.803933pt;}
.y304{bottom:36.873267pt;}
.y261{bottom:37.058333pt;}
.y9f{bottom:37.058867pt;}
.yfe{bottom:37.059400pt;}
.y43{bottom:37.060467pt;}
.y226{bottom:37.085400pt;}
.y1dd{bottom:37.377267pt;}
.y18e{bottom:37.378733pt;}
.y1c5{bottom:37.380200pt;}
.y25f{bottom:37.381667pt;}
.y1a4{bottom:37.386067pt;}
.y2a4{bottom:37.390600pt;}
.y17f{bottom:37.391933pt;}
.y28c{bottom:37.591400pt;}
.y1e{bottom:49.471133pt;}
.y2d3{bottom:49.473133pt;}
.y24b{bottom:49.723400pt;}
.y42{bottom:49.725533pt;}
.y7b{bottom:49.726067pt;}
.yfd{bottom:49.726600pt;}
.y225{bottom:49.752600pt;}
.y303{bottom:50.939933pt;}
.y135{bottom:51.403933pt;}
.y1dc{bottom:52.711267pt;}
.y18d{bottom:52.712733pt;}
.y1c4{bottom:52.714200pt;}
.y25e{bottom:52.715667pt;}
.y1a3{bottom:52.720067pt;}
.y2a3{bottom:52.724600pt;}
.y17e{bottom:52.725933pt;}
.y28b{bottom:52.925400pt;}
.y1d{bottom:62.138333pt;}
.y24a{bottom:62.390600pt;}
.y41{bottom:62.392733pt;}
.ybc{bottom:62.393267pt;}
.y224{bottom:62.419800pt;}
.y2d2{bottom:63.406467pt;}
.y302{bottom:65.006600pt;}
.y134{bottom:66.737933pt;}
.y1db{bottom:68.045267pt;}
.y18c{bottom:68.046733pt;}
.y1c3{bottom:68.048200pt;}
.y25d{bottom:68.049667pt;}
.y1a2{bottom:68.054067pt;}
.y2a2{bottom:68.058600pt;}
.y17d{bottom:68.059933pt;}
.y28a{bottom:68.259400pt;}
.y1c{bottom:74.805533pt;}
.y249{bottom:75.057800pt;}
.y40{bottom:75.059400pt;}
.y7a{bottom:75.059933pt;}
.y260{bottom:75.060600pt;}
.y2d1{bottom:77.339933pt;}
.y301{bottom:79.073267pt;}
.y133{bottom:82.071933pt;}
.y1da{bottom:83.379267pt;}
.y18b{bottom:83.380733pt;}
.y1c2{bottom:83.382200pt;}
.y25c{bottom:83.383667pt;}
.y1a1{bottom:83.388067pt;}
.y2a1{bottom:83.392600pt;}
.y17c{bottom:83.393933pt;}
.y289{bottom:83.593400pt;}
.y1b{bottom:87.472733pt;}
.y248{bottom:87.725000pt;}
.y79{bottom:87.726067pt;}
.y3f{bottom:87.726600pt;}
.y1f8{bottom:91.062867pt;}
.y2d0{bottom:91.273267pt;}
.y300{bottom:93.139933pt;}
.y132{bottom:97.405933pt;}
.y1d9{bottom:98.713267pt;}
.y18a{bottom:98.714733pt;}
.y1c1{bottom:98.716200pt;}
.y25b{bottom:98.717667pt;}
.y1a0{bottom:98.722067pt;}
.y2a0{bottom:98.726600pt;}
.y17b{bottom:98.727933pt;}
.yfc{bottom:98.729000pt;}
.y123{bottom:98.734600pt;}
.y20f{bottom:98.739267pt;}
.y288{bottom:98.927400pt;}
.y1a{bottom:100.139933pt;}
.ybb{bottom:100.179667pt;}
.y247{bottom:100.392200pt;}
.y78{bottom:100.393267pt;}
.y9e{bottom:100.393933pt;}
.y2cf{bottom:105.206600pt;}
.y1f7{bottom:106.396867pt;}
.y2ff{bottom:107.206600pt;}
.y131{bottom:112.739933pt;}
.y246{bottom:113.059400pt;}
.y9d{bottom:113.059933pt;}
.y1d8{bottom:114.047267pt;}
.y189{bottom:114.048733pt;}
.y1c0{bottom:114.050200pt;}
.y25a{bottom:114.051667pt;}
.y19f{bottom:114.056067pt;}
.y29f{bottom:114.060600pt;}
.y17a{bottom:114.061933pt;}
.y223{bottom:114.062600pt;}
.yfb{bottom:114.063000pt;}
.y122{bottom:114.068600pt;}
.ydb{bottom:114.069267pt;}
.y20e{bottom:114.073267pt;}
.y287{bottom:114.261400pt;}
.yba{bottom:115.512200pt;}
.y2ce{bottom:119.139933pt;}
.y2fe{bottom:121.273267pt;}
.y1f6{bottom:121.730867pt;}
.y9c{bottom:125.726600pt;}
.y130{bottom:128.073267pt;}
.y1d7{bottom:129.381267pt;}
.y188{bottom:129.382733pt;}
.y1bf{bottom:129.384200pt;}
.y259{bottom:129.385667pt;}
.y19e{bottom:129.390067pt;}
.y29e{bottom:129.394600pt;}
.y179{bottom:129.395933pt;}
.y222{bottom:129.396600pt;}
.yfa{bottom:129.397000pt;}
.y121{bottom:129.402600pt;}
.yda{bottom:129.403267pt;}
.y286{bottom:129.595400pt;}
.yb9{bottom:130.844733pt;}
.y2cd{bottom:133.073267pt;}
.y3e{bottom:135.045267pt;}
.y2fd{bottom:135.339933pt;}
.y1f5{bottom:137.064867pt;}
.y12f{bottom:143.399933pt;}
.y1d6{bottom:144.715267pt;}
.y187{bottom:144.716733pt;}
.y1be{bottom:144.718200pt;}
.y258{bottom:144.719667pt;}
.y19d{bottom:144.724067pt;}
.y77{bottom:144.724600pt;}
.y29d{bottom:144.728600pt;}
.y178{bottom:144.729933pt;}
.y221{bottom:144.730600pt;}
.yf9{bottom:144.731000pt;}
.y120{bottom:144.736600pt;}
.yd9{bottom:144.737267pt;}
.y285{bottom:144.929400pt;}
.y2cc{bottom:147.006600pt;}
.y2fc{bottom:149.406600pt;}
.y3d{bottom:150.379267pt;}
.y1f4{bottom:152.398867pt;}
.y12e{bottom:158.733933pt;}
.y1d5{bottom:160.049267pt;}
.y186{bottom:160.050733pt;}
.y1bd{bottom:160.052200pt;}
.y257{bottom:160.053667pt;}
.y19c{bottom:160.058067pt;}
.y76{bottom:160.058600pt;}
.y29c{bottom:160.062600pt;}
.y177{bottom:160.063933pt;}
.y220{bottom:160.064600pt;}
.yf8{bottom:160.065000pt;}
.y11f{bottom:160.070600pt;}
.yd8{bottom:160.071267pt;}
.y284{bottom:160.263400pt;}
.y2cb{bottom:160.939933pt;}
.yb8{bottom:161.511267pt;}
.y2fb{bottom:163.473267pt;}
.y3c{bottom:165.713267pt;}
.y1f3{bottom:167.732867pt;}
.y12d{bottom:174.067933pt;}
.y2ca{bottom:174.873267pt;}
.y1d4{bottom:175.383267pt;}
.y185{bottom:175.384733pt;}
.y1bc{bottom:175.386200pt;}
.y256{bottom:175.387667pt;}
.y75{bottom:175.392600pt;}
.y29b{bottom:175.396600pt;}
.y176{bottom:175.397933pt;}
.y21f{bottom:175.398600pt;}
.yf7{bottom:175.399000pt;}
.y11e{bottom:175.404600pt;}
.yd7{bottom:175.405267pt;}
.y283{bottom:175.597400pt;}
.yb7{bottom:176.845267pt;}
.y2fa{bottom:177.539933pt;}
.y3b{bottom:181.040600pt;}
.y19{bottom:182.353267pt;}
.y245{bottom:183.061400pt;}
.y9b{bottom:183.065267pt;}
.y1f2{bottom:183.066867pt;}
.y2c9{bottom:188.806600pt;}
.y12c{bottom:189.401933pt;}
.y1d3{bottom:190.717267pt;}
.y184{bottom:190.718733pt;}
.y1bb{bottom:190.720200pt;}
.y255{bottom:190.721667pt;}
.y19b{bottom:190.724600pt;}
.y74{bottom:190.726600pt;}
.y29a{bottom:190.730600pt;}
.y175{bottom:190.731933pt;}
.y21e{bottom:190.732600pt;}
.yf6{bottom:190.733000pt;}
.y11d{bottom:190.738600pt;}
.yd6{bottom:190.739267pt;}
.y282{bottom:190.931400pt;}
.y2f9{bottom:191.606600pt;}
.yb6{bottom:192.179267pt;}
.y3a{bottom:196.374600pt;}
.y244{bottom:198.395400pt;}
.y9a{bottom:198.399267pt;}
.y1f1{bottom:198.400867pt;}
.y18{bottom:201.023067pt;}
.y2c8{bottom:202.739933pt;}
.y12b{bottom:204.735933pt;}
.y2f8{bottom:205.673267pt;}
.y1d2{bottom:206.051267pt;}
.y183{bottom:206.052733pt;}
.y1ba{bottom:206.054200pt;}
.y254{bottom:206.055667pt;}
.y19a{bottom:206.058600pt;}
.y73{bottom:206.060600pt;}
.y299{bottom:206.064600pt;}
.y174{bottom:206.065933pt;}
.y21d{bottom:206.066600pt;}
.yf5{bottom:206.067000pt;}
.y11c{bottom:206.072600pt;}
.yd5{bottom:206.073267pt;}
.y281{bottom:206.265400pt;}
.yb5{bottom:207.513267pt;}
.y39{bottom:211.708600pt;}
.y243{bottom:213.729400pt;}
.y99{bottom:213.733267pt;}
.y1f0{bottom:213.733400pt;}
.y17{bottom:214.356000pt;}
.y2c7{bottom:216.673267pt;}
.y2f7{bottom:219.739933pt;}
.y12a{bottom:220.069933pt;}
.y1d1{bottom:221.385267pt;}
.y11b{bottom:221.386733pt;}
.y1b9{bottom:221.388200pt;}
.y253{bottom:221.389667pt;}
.y199{bottom:221.392600pt;}
.y20d{bottom:221.393933pt;}
.y72{bottom:221.394600pt;}
.y298{bottom:221.398600pt;}
.y173{bottom:221.399933pt;}
.y21c{bottom:221.400600pt;}
.yf4{bottom:221.401000pt;}
.y280{bottom:221.599400pt;}
.y38{bottom:227.042600pt;}
.y16{bottom:227.688933pt;}
.y242{bottom:229.063400pt;}
.y1ef{bottom:229.065933pt;}
.y98{bottom:229.067267pt;}
.yd4{bottom:229.073800pt;}
.y2c6{bottom:230.606600pt;}
.y2f6{bottom:233.806600pt;}
.y129{bottom:235.403933pt;}
.y1d0{bottom:236.719267pt;}
.y11a{bottom:236.720733pt;}
.y1b8{bottom:236.722200pt;}
.y252{bottom:236.723667pt;}
.y198{bottom:236.726600pt;}
.y20c{bottom:236.727933pt;}
.y71{bottom:236.728600pt;}
.y297{bottom:236.732600pt;}
.y172{bottom:236.733933pt;}
.y21b{bottom:236.734600pt;}
.yf3{bottom:236.735000pt;}
.y27f{bottom:236.933400pt;}
.y15{bottom:241.021867pt;}
.y37{bottom:242.376600pt;}
.y241{bottom:244.397400pt;}
.y1ee{bottom:244.399933pt;}
.y97{bottom:244.401267pt;}
.y2c5{bottom:244.539933pt;}
.y2f5{bottom:247.873267pt;}
.y128{bottom:250.737933pt;}
.y1cf{bottom:252.053267pt;}
.y119{bottom:252.054733pt;}
.y1b7{bottom:252.056200pt;}
.y251{bottom:252.057667pt;}
.y197{bottom:252.060600pt;}
.y20b{bottom:252.061933pt;}
.y70{bottom:252.062600pt;}
.y296{bottom:252.066600pt;}
.y171{bottom:252.067933pt;}
.y21a{bottom:252.068600pt;}
.yf2{bottom:252.069000pt;}
.y27e{bottom:252.267400pt;}
.yb4{bottom:253.513267pt;}
.y14{bottom:254.354800pt;}
.y36{bottom:257.710600pt;}
.y2c4{bottom:258.473133pt;}
.y240{bottom:259.731400pt;}
.y1ed{bottom:259.733933pt;}
.y96{bottom:259.735267pt;}
.y2f4{bottom:261.939800pt;}
.y307{bottom:261.939933pt;}
.y127{bottom:266.071933pt;}
.y1ce{bottom:267.387267pt;}
.y118{bottom:267.388733pt;}
.y1b6{bottom:267.390200pt;}
.y250{bottom:267.391667pt;}
.y196{bottom:267.394600pt;}
.y20a{bottom:267.395933pt;}
.y6f{bottom:267.396600pt;}
.y295{bottom:267.400600pt;}
.y219{bottom:267.402600pt;}
.yf1{bottom:267.403000pt;}
.yd3{bottom:267.406600pt;}
.yb3{bottom:267.513267pt;}
.y27d{bottom:267.601400pt;}
.y13{bottom:267.687733pt;}
.y2c3{bottom:272.406467pt;}
.y35{bottom:273.044600pt;}
.y23f{bottom:275.065400pt;}
.y1ec{bottom:275.067933pt;}
.y95{bottom:275.069267pt;}
.y2f3{bottom:276.006467pt;}
.y306{bottom:276.006600pt;}
.y12{bottom:281.020667pt;}
.y126{bottom:281.405933pt;}
.yb2{bottom:281.513267pt;}
.y1cd{bottom:282.721267pt;}
.y117{bottom:282.722733pt;}
.y1b5{bottom:282.724200pt;}
.y24f{bottom:282.725667pt;}
.y195{bottom:282.728600pt;}
.y209{bottom:282.729933pt;}
.y6e{bottom:282.730600pt;}
.y170{bottom:282.734467pt;}
.y294{bottom:282.734600pt;}
.y218{bottom:282.736600pt;}
.yf0{bottom:282.737000pt;}
.yd2{bottom:282.739133pt;}
.y27c{bottom:282.935400pt;}
.y2c2{bottom:286.339933pt;}
.y34{bottom:288.378600pt;}
.y2f2{bottom:290.073267pt;}
.y23e{bottom:290.399400pt;}
.y1eb{bottom:290.401933pt;}
.y94{bottom:290.403267pt;}
.y11{bottom:294.353600pt;}
.y125{bottom:296.739933pt;}
.y1cc{bottom:298.055267pt;}
.y116{bottom:298.056733pt;}
.y1b4{bottom:298.058200pt;}
.y24e{bottom:298.059667pt;}
.y194{bottom:298.062600pt;}
.y208{bottom:298.063933pt;}
.y6d{bottom:298.064600pt;}
.y16f{bottom:298.067000pt;}
.y293{bottom:298.068600pt;}
.y217{bottom:298.070600pt;}
.yef{bottom:298.071000pt;}
.yd1{bottom:298.071667pt;}
.y27b{bottom:298.269400pt;}
.yb1{bottom:299.513267pt;}
.y2c1{bottom:300.273267pt;}
.y33{bottom:303.712600pt;}
.y2f1{bottom:304.139933pt;}
.y23d{bottom:305.733400pt;}
.y1ea{bottom:305.735933pt;}
.y93{bottom:305.737267pt;}
.y10{bottom:307.686533pt;}
.y1cb{bottom:313.389267pt;}
.y115{bottom:313.390733pt;}
.y1b3{bottom:313.392200pt;}
.y24d{bottom:313.393667pt;}
.y193{bottom:313.396600pt;}
.y207{bottom:313.397933pt;}
.y6c{bottom:313.398600pt;}
.y16e{bottom:313.399533pt;}
.y292{bottom:313.402600pt;}
.yd0{bottom:313.404200pt;}
.y216{bottom:313.404600pt;}
.yee{bottom:313.405000pt;}
.yb0{bottom:313.513267pt;}
.y27a{bottom:313.603400pt;}
.y2c0{bottom:314.206600pt;}
.y2f0{bottom:318.206600pt;}
.y32{bottom:319.046600pt;}
.yf{bottom:321.019467pt;}
.y23c{bottom:321.067400pt;}
.y1e9{bottom:321.069933pt;}
.y92{bottom:321.071267pt;}
.y2bf{bottom:328.139933pt;}
.y1ca{bottom:328.723267pt;}
.y114{bottom:328.724733pt;}
.y1b2{bottom:328.726200pt;}
.y192{bottom:328.730600pt;}
.y206{bottom:328.731933pt;}
.y16d{bottom:328.732067pt;}
.y6b{bottom:328.732600pt;}
.y291{bottom:328.736600pt;}
.ycf{bottom:328.736733pt;}
.y215{bottom:328.738600pt;}
.yed{bottom:328.739000pt;}
.y279{bottom:328.937400pt;}
.yaf{bottom:331.513267pt;}
.y2ef{bottom:332.273267pt;}
.y31{bottom:334.372333pt;}
.y24c{bottom:336.393933pt;}
.y23b{bottom:336.401400pt;}
.y1e8{bottom:336.403933pt;}
.y91{bottom:336.405267pt;}
.y2be{bottom:342.073267pt;}
.y1c9{bottom:344.057267pt;}
.y113{bottom:344.058733pt;}
.y1b1{bottom:344.060200pt;}
.y191{bottom:344.063133pt;}
.y16c{bottom:344.064600pt;}
.y205{bottom:344.065933pt;}
.y6a{bottom:344.066600pt;}
.yce{bottom:344.069267pt;}
.y290{bottom:344.070600pt;}
.y214{bottom:344.072600pt;}
.yec{bottom:344.073000pt;}
.y278{bottom:344.271400pt;}
.yae{bottom:345.513267pt;}
.y2ee{bottom:346.339933pt;}
.ye{bottom:347.686600pt;}
.y30{bottom:349.706333pt;}
.y155{bottom:350.539933pt;}
.y23a{bottom:351.735400pt;}
.y1e7{bottom:351.737933pt;}
.y90{bottom:351.739267pt;}
.y2bd{bottom:356.006600pt;}
.y1c8{bottom:359.391267pt;}
.y112{bottom:359.392733pt;}
.y1b0{bottom:359.394200pt;}
.y190{bottom:359.395667pt;}
.y16b{bottom:359.397133pt;}
.y204{bottom:359.399933pt;}
.y69{bottom:359.400600pt;}
.ycd{bottom:359.401800pt;}
.y28f{bottom:359.404600pt;}
.y213{bottom:359.406600pt;}
.yad{bottom:359.513267pt;}
.y277{bottom:359.605400pt;}
.y2ed{bottom:360.406600pt;}
.y154{bottom:364.539933pt;}
.y2f{bottom:365.040333pt;}
.y8f{bottom:367.064600pt;}
.y239{bottom:367.069400pt;}
.y1e6{bottom:367.071933pt;}
.yeb{bottom:367.073267pt;}
.y14c{bottom:367.633267pt;}
.y2bc{bottom:369.939933pt;}
.y2ec{bottom:374.473267pt;}
.y1c7{bottom:374.725267pt;}
.y111{bottom:374.726733pt;}
.y18f{bottom:374.728200pt;}
.y16a{bottom:374.729667pt;}
.y203{bottom:374.733933pt;}
.ycc{bottom:374.734333pt;}
.y68{bottom:374.734600pt;}
.y28e{bottom:374.738600pt;}
.y276{bottom:374.939400pt;}
.yac{bottom:377.513267pt;}
.y153{bottom:378.539933pt;}
.yd{bottom:379.689933pt;}
.y2e{bottom:380.374333pt;}
.y14b{bottom:381.633267pt;}
.y8e{bottom:382.398600pt;}
.y238{bottom:382.403400pt;}
.y1e5{bottom:382.405933pt;}
.y2bb{bottom:383.873267pt;}
.y2eb{bottom:388.539933pt;}
.y1c6{bottom:390.059267pt;}
.y110{bottom:390.060733pt;}
.y169{bottom:390.062200pt;}
.ycb{bottom:390.066867pt;}
.y202{bottom:390.067933pt;}
.y67{bottom:390.068600pt;}
.y28d{bottom:390.072600pt;}
.y275{bottom:390.273400pt;}
.y15d{bottom:390.619933pt;}
.yab{bottom:391.513267pt;}
.y152{bottom:392.539933pt;}
.y14a{bottom:395.633267pt;}
.y2d{bottom:395.708333pt;}
.y1e4{bottom:397.729933pt;}
.y8d{bottom:397.732600pt;}
.y237{bottom:397.737400pt;}
.y2ba{bottom:397.806600pt;}
.yc{bottom:398.356800pt;}
.y2ea{bottom:402.606600pt;}
.y15c{bottom:404.619933pt;}
.y182{bottom:405.393267pt;}
.y10f{bottom:405.394733pt;}
.y1af{bottom:405.396200pt;}
.yea{bottom:405.397667pt;}
.yca{bottom:405.400867pt;}
.y201{bottom:405.401933pt;}
.y66{bottom:405.402600pt;}
.y274{bottom:405.607400pt;}
.y151{bottom:406.539933pt;}
.yaa{bottom:409.513267pt;}
.y149{bottom:409.633267pt;}
.y2c{bottom:411.042333pt;}
.yb{bottom:411.689733pt;}
.y2b9{bottom:411.739933pt;}
.y168{bottom:413.062467pt;}
.y1e3{bottom:413.063933pt;}
.y8c{bottom:413.066600pt;}
.y236{bottom:413.071400pt;}
.y2e9{bottom:416.673267pt;}
.y15b{bottom:418.619933pt;}
.y150{bottom:420.539933pt;}
.y181{bottom:420.727267pt;}
.y10e{bottom:420.728733pt;}
.y1ae{bottom:420.730200pt;}
.ye9{bottom:420.731667pt;}
.yc9{bottom:420.734867pt;}
.y200{bottom:420.735933pt;}
.y65{bottom:420.736600pt;}
.y273{bottom:420.941400pt;}
.ya9{bottom:423.513267pt;}
.y148{bottom:423.633267pt;}
.ya{bottom:425.022667pt;}
.y2b8{bottom:425.673267pt;}
.y2b{bottom:426.376333pt;}
.y1e2{bottom:428.397933pt;}
.y8b{bottom:428.400600pt;}
.y235{bottom:428.405400pt;}
.y2e8{bottom:430.739933pt;}
.y15a{bottom:432.619933pt;}
.y14f{bottom:434.539933pt;}
.y180{bottom:436.061267pt;}
.y10d{bottom:436.062733pt;}
.y1ad{bottom:436.064200pt;}
.ye8{bottom:436.065667pt;}
.yc8{bottom:436.068867pt;}
.y1ff{bottom:436.069933pt;}
.y64{bottom:436.070600pt;}
.y272{bottom:436.275400pt;}
.y147{bottom:437.633267pt;}
.y9{bottom:438.355600pt;}
.y2b7{bottom:439.606600pt;}
.y2a{bottom:441.710333pt;}
.y1e1{bottom:443.731933pt;}
.y8a{bottom:443.734600pt;}
.y234{bottom:443.737933pt;}
.y2e7{bottom:444.806600pt;}
.ya8{bottom:445.073267pt;}
.y14e{bottom:448.539933pt;}
.y167{bottom:451.395267pt;}
.y10c{bottom:451.396733pt;}
.y1ac{bottom:451.398200pt;}
.ye7{bottom:451.399667pt;}
.yc7{bottom:451.402867pt;}
.y1fe{bottom:451.403933pt;}
.y63{bottom:451.404600pt;}
.y271{bottom:451.609400pt;}
.y146{bottom:451.633267pt;}
.y8{bottom:451.688533pt;}
.y2b6{bottom:453.539933pt;}
.y29{bottom:457.044333pt;}
.y2e6{bottom:458.873267pt;}
.y1e0{bottom:459.065933pt;}
.y89{bottom:459.068600pt;}
.y233{bottom:459.071933pt;}
.y14d{bottom:462.539933pt;}
.y7{bottom:465.021467pt;}
.y145{bottom:465.633267pt;}
.y166{bottom:466.729267pt;}
.y10b{bottom:466.730733pt;}
.y1ab{bottom:466.732200pt;}
.ye6{bottom:466.733667pt;}
.y1fd{bottom:466.737933pt;}
.y62{bottom:466.738600pt;}
.y270{bottom:466.943400pt;}
.y2b5{bottom:467.473133pt;}
.y28{bottom:472.378333pt;}
.y2e5{bottom:472.939933pt;}
.y1df{bottom:474.399933pt;}
.y88{bottom:474.402600pt;}
.y232{bottom:474.405933pt;}
.y143{bottom:476.539933pt;}
.y6{bottom:478.354400pt;}
.y144{bottom:479.633267pt;}
.y2b4{bottom:481.406467pt;}
.y165{bottom:482.063267pt;}
.y10a{bottom:482.064733pt;}
.y1aa{bottom:482.066200pt;}
.ye5{bottom:482.067667pt;}
.yc6{bottom:482.069400pt;}
.y1fc{bottom:482.071933pt;}
.y61{bottom:482.072600pt;}
.y26f{bottom:482.277400pt;}
.y2e4{bottom:487.006600pt;}
.y27{bottom:487.712333pt;}
.ya7{bottom:489.733933pt;}
.y231{bottom:489.735267pt;}
.y87{bottom:489.736600pt;}
.y5{bottom:491.687333pt;}
.y2b3{bottom:495.339800pt;}
.y164{bottom:497.397267pt;}
.y109{bottom:497.398733pt;}
.y1a9{bottom:497.400200pt;}
.ye4{bottom:497.401667pt;}
.yc5{bottom:497.403400pt;}
.y1fb{bottom:497.405933pt;}
.y60{bottom:497.406600pt;}
.y26e{bottom:497.611400pt;}
.y2e3{bottom:501.073267pt;}
.y26{bottom:503.046333pt;}
.y142{bottom:504.539933pt;}
.y4{bottom:505.020267pt;}
.ya6{bottom:505.067933pt;}
.y230{bottom:505.069267pt;}
.y86{bottom:505.070600pt;}
.y2b2{bottom:509.273133pt;}
.y163{bottom:512.731267pt;}
.y108{bottom:512.732733pt;}
.y1a8{bottom:512.734200pt;}
.ye3{bottom:512.735667pt;}
.y5f{bottom:512.736600pt;}
.yc4{bottom:512.737400pt;}
.y1fa{bottom:512.739933pt;}
.y26d{bottom:512.945400pt;}
.y2e2{bottom:515.139933pt;}
.y3{bottom:518.353200pt;}
.y141{bottom:518.539933pt;}
.ya5{bottom:520.401933pt;}
.y22f{bottom:520.403267pt;}
.y85{bottom:520.404600pt;}
.y2b1{bottom:523.206600pt;}
.y25{bottom:526.046600pt;}
.y162{bottom:528.065267pt;}
.y107{bottom:528.066733pt;}
.y1a7{bottom:528.068200pt;}
.ye2{bottom:528.069667pt;}
.y5e{bottom:528.070600pt;}
.y212{bottom:528.071267pt;}
.yc3{bottom:528.071400pt;}
.y26c{bottom:528.279400pt;}
.y2e1{bottom:529.206600pt;}
.y2{bottom:531.686133pt;}
.y140{bottom:532.539933pt;}
.y1f9{bottom:535.734467pt;}
.ya4{bottom:535.735933pt;}
.y22e{bottom:535.737267pt;}
.y84{bottom:535.738600pt;}
.y2b0{bottom:537.139933pt;}
.y2e0{bottom:543.273267pt;}
.y161{bottom:543.399267pt;}
.y106{bottom:543.400733pt;}
.y1a6{bottom:543.402200pt;}
.ye1{bottom:543.403667pt;}
.y5d{bottom:543.404600pt;}
.y211{bottom:543.405267pt;}
.y26b{bottom:543.613400pt;}
.y13f{bottom:546.539933pt;}
.y1de{bottom:551.068467pt;}
.ya3{bottom:551.069933pt;}
.y22d{bottom:551.071267pt;}
.y83{bottom:551.072600pt;}
.y2af{bottom:551.073267pt;}
.y159{bottom:554.793267pt;}
.y2df{bottom:557.339933pt;}
.y1{bottom:558.353267pt;}
.y160{bottom:558.733267pt;}
.y105{bottom:558.734733pt;}
.ye0{bottom:558.737667pt;}
.yc2{bottom:558.737933pt;}
.y5c{bottom:558.738600pt;}
.y210{bottom:558.739267pt;}
.y26a{bottom:558.947400pt;}
.y13e{bottom:560.539933pt;}
.y2ae{bottom:565.006600pt;}
.y1a5{bottom:566.402467pt;}
.y82{bottom:566.403933pt;}
.y158{bottom:568.793267pt;}
.y305{bottom:571.406467pt;}
.y2de{bottom:571.406600pt;}
.y15f{bottom:574.067267pt;}
.y104{bottom:574.068733pt;}
.yc1{bottom:574.071933pt;}
.y5b{bottom:574.072600pt;}
.y269{bottom:574.281400pt;}
.y13d{bottom:574.539933pt;}
.y2ad{bottom:578.939933pt;}
.y22c{bottom:581.737800pt;}
.y81{bottom:581.737933pt;}
.y157{bottom:582.793267pt;}
.y4c{bottom:585.433400pt;}
.y2dd{bottom:585.473267pt;}
.y13c{bottom:588.539933pt;}
.y15e{bottom:589.401267pt;}
.y103{bottom:589.402733pt;}
.ydf{bottom:589.404200pt;}
.y58{bottom:589.404600pt;}
.yc0{bottom:589.405933pt;}
.y5a{bottom:589.406600pt;}
.y268{bottom:589.615400pt;}
.y2ac{bottom:592.873267pt;}
.y59{bottom:594.246600pt;}
.y156{bottom:596.793267pt;}
.y80{bottom:597.071933pt;}
.y4b{bottom:598.766600pt;}
.y2dc{bottom:599.539933pt;}
.y13b{bottom:602.539933pt;}
.ybf{bottom:604.735267pt;}
.y102{bottom:604.736733pt;}
.yde{bottom:604.738200pt;}
.y57{bottom:604.738600pt;}
.y267{bottom:604.949400pt;}
.y2ab{bottom:606.806600pt;}
.ya2{bottom:612.405933pt;}
.y2db{bottom:613.606600pt;}
.y13a{bottom:616.539933pt;}
.y4a{bottom:617.433800pt;}
.y24{bottom:618.259400pt;}
.ybe{bottom:620.069267pt;}
.y22b{bottom:620.070600pt;}
.y101{bottom:620.070733pt;}
.y7f{bottom:620.072200pt;}
.y56{bottom:620.072600pt;}
.y266{bottom:620.283400pt;}
.y2aa{bottom:620.739933pt;}
.y4f{bottom:624.807800pt;}
.y2da{bottom:627.673267pt;}
.ya1{bottom:627.737000pt;}
.y139{bottom:630.539933pt;}
.y49{bottom:630.767000pt;}
.y23{bottom:630.926600pt;}
.y2a9{bottom:634.673267pt;}
.ybd{bottom:635.403267pt;}
.y22a{bottom:635.404600pt;}
.ydd{bottom:635.404733pt;}
.y55{bottom:635.406600pt;}
.y265{bottom:635.617400pt;}
.y2d9{bottom:641.739933pt;}
.ya0{bottom:643.071000pt;}
.y138{bottom:644.539933pt;}
.y4e{bottom:646.460600pt;}
.y22{bottom:647.366600pt;}
.y2a8{bottom:648.606600pt;}
.y48{bottom:649.433000pt;}
.y54{bottom:650.737267pt;}
.y229{bottom:650.738600pt;}
.ydc{bottom:650.738733pt;}
.y264{bottom:650.951400pt;}
.y2d8{bottom:655.806600pt;}
.y7e{bottom:658.405000pt;}
.y4d{bottom:659.793800pt;}
.y2a7{bottom:662.539933pt;}
.y47{bottom:662.766200pt;}
.y53{bottom:666.071267pt;}
.y228{bottom:666.072600pt;}
.y100{bottom:666.072733pt;}
.y137{bottom:666.099933pt;}
.y263{bottom:666.285400pt;}
.y2d7{bottom:669.873267pt;}
.y7d{bottom:673.739000pt;}
.y2a6{bottom:676.473267pt;}
.y52{bottom:681.405267pt;}
.y227{bottom:681.406600pt;}
.yff{bottom:681.406733pt;}
.y46{bottom:681.433400pt;}
.y262{bottom:681.619400pt;}
.y2d6{bottom:683.939933pt;}
.y7c{bottom:689.073000pt;}
.y124{bottom:689.406600pt;}
.y2a5{bottom:690.406600pt;}
.y45{bottom:694.766600pt;}
.y51{bottom:696.739267pt;}
.y2d5{bottom:698.006600pt;}
.y21{bottom:708.699933pt;}
.y50{bottom:712.073267pt;}
.y44{bottom:716.566600pt;}
.y20{bottom:754.033267pt;}
.he{height:43.818133pt;}
.h6{height:45.525333pt;}
.h4{height:51.216000pt;}
.h10{height:51.217600pt;}
.hc{height:51.218133pt;}
.hd{height:51.219733pt;}
.h13{height:51.220267pt;}
.h1e{height:51.228267pt;}
.h5{height:52.032000pt;}
.h2{height:54.061333pt;}
.h3{height:54.922667pt;}
.h15{height:56.906667pt;}
.h21{height:56.907200pt;}
.h1f{height:57.812800pt;}
.h1a{height:57.813333pt;}
.h20{height:57.813867pt;}
.h9{height:62.597333pt;}
.h18{height:63.178133pt;}
.h1d{height:63.180800pt;}
.h11{height:63.188800pt;}
.h1c{height:63.191467pt;}
.h16{height:63.196800pt;}
.hb{height:63.202133pt;}
.ha{height:63.208533pt;}
.h12{height:63.212800pt;}
.h17{height:63.213867pt;}
.h1b{height:63.218133pt;}
.h19{height:63.257600pt;}
.hf{height:63.594667pt;}
.h14{height:63.606400pt;}
.h8{height:68.288000pt;}
.h7{height:91.895467pt;}
.h1{height:795.333333pt;}
.h0{height:795.401573pt;}
.w0{width:517.240907pt;}
.w1{width:517.333333pt;}
.x0{left:0.000000pt;}
.x1{left:43.415213pt;}
.xb{left:60.641480pt;}
.x2{left:63.415213pt;}
.x5{left:78.121880pt;}
.x17{left:83.418547pt;}
.x7{left:85.948280pt;}
.xe{left:93.881880pt;}
.x9{left:97.775480pt;}
.xf{left:102.615213pt;}
.x13{left:113.428547pt;}
.xa{left:130.068680pt;}
.x11{left:131.148547pt;}
.x8{left:138.708680pt;}
.xc{left:151.188680pt;}
.x12{left:156.828547pt;}
.x6{left:189.534680pt;}
.x14{left:205.802147pt;}
.x4{left:237.655213pt;}
.x10{left:247.508813pt;}
.xd{left:270.682280pt;}
.x15{left:298.175747pt;}
.x3{left:361.255213pt;}
.x16{left:390.549347pt;}
}




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