
    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_cbdfedc1cf04086f2a3914fe.woff')format("woff");}.ff1{font-family:ff1;line-height:1.008000;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_4d97308ed4fa8a74dc2a301f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.928000;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_70ce9cdcadc890421608196b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.707000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b806b62a7a428d72c800207c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.962000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2c32dab194011449d3a30298.woff')format("woff");}.ff5{font-family:ff5;line-height:0.972000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_95be8a12a489c4c6ceb08dc8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e2f3bc3a01dc6a5d8e36ef91.woff')format("woff");}.ff7{font-family:ff7;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d936dc87a33fe75d9786a10c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ed515fadaa253fd8f24482a2.woff')format("woff");}.ff9{font-family:ff9;line-height:0.731000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3f953e790b6760ae85ef69ef.woff')format("woff");}.ffa{font-family:ffa;line-height:1.112000;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;}
.m1{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:10.434000px;}
.v3{vertical-align:19.978200px;}
.v2{vertical-align:22.978800px;}
.ls62{letter-spacing:-4.446000px;}
.ls79{letter-spacing:-1.992600px;}
.ls4d{letter-spacing:-1.446900px;}
.ls70{letter-spacing:-1.380000px;}
.ls11{letter-spacing:-1.248000px;}
.ls12{letter-spacing:-1.158000px;}
.lsb{letter-spacing:-1.152000px;}
.ls6c{letter-spacing:-1.080000px;}
.lsf{letter-spacing:-1.038000px;}
.ls78{letter-spacing:-0.841800px;}
.ls51{letter-spacing:-0.752100px;}
.lsb2{letter-spacing:-0.739200px;}
.ls8d{letter-spacing:-0.738300px;}
.ls13{letter-spacing:-0.738000px;}
.ls56{letter-spacing:-0.731400px;}
.ls9b{letter-spacing:-0.724500px;}
.ls55{letter-spacing:-0.696900px;}
.ls8f{letter-spacing:-0.690000px;}
.ls5c{letter-spacing:-0.683100px;}
.ls87{letter-spacing:-0.678000px;}
.ls4e{letter-spacing:-0.669300px;}
.ls6e{letter-spacing:-0.662400px;}
.ls29{letter-spacing:-0.648600px;}
.lsd{letter-spacing:-0.606000px;}
.lsb4{letter-spacing:-0.600600px;}
.ls10{letter-spacing:-0.600000px;}
.lsb3{letter-spacing:-0.595980px;}
.ls8c{letter-spacing:-0.586500px;}
.ls5f{letter-spacing:-0.579600px;}
.lse{letter-spacing:-0.570000px;}
.ls57{letter-spacing:-0.565800px;}
.ls1f{letter-spacing:-0.564000px;}
.lsc{letter-spacing:-0.546000px;}
.ls47{letter-spacing:-0.545100px;}
.ls32{letter-spacing:-0.534600px;}
.ls7f{letter-spacing:-0.496800px;}
.ls7c{letter-spacing:-0.489900px;}
.ls54{letter-spacing:-0.462300px;}
.ls80{letter-spacing:-0.448500px;}
.ls44{letter-spacing:-0.427800px;}
.ls63{letter-spacing:-0.414000px;}
.ls26{letter-spacing:-0.407100px;}
.ls90{letter-spacing:-0.400200px;}
.ls2a{letter-spacing:-0.393300px;}
.ls4f{letter-spacing:-0.386400px;}
.ls52{letter-spacing:-0.379500px;}
.ls85{letter-spacing:-0.365700px;}
.ls3e{letter-spacing:-0.361800px;}
.ls3f{letter-spacing:-0.356400px;}
.ls49{letter-spacing:-0.351900px;}
.ls3d{letter-spacing:-0.351000px;}
.ls81{letter-spacing:-0.338100px;}
.lsad{letter-spacing:-0.336600px;}
.lsac{letter-spacing:-0.332640px;}
.ls48{letter-spacing:-0.310500px;}
.ls88{letter-spacing:-0.300495px;}
.ls36{letter-spacing:-0.296700px;}
.ls7e{letter-spacing:-0.282900px;}
.ls7d{letter-spacing:-0.276000px;}
.ls86{letter-spacing:-0.269100px;}
.ls72{letter-spacing:-0.255300px;}
.ls34{letter-spacing:-0.248400px;}
.ls5d{letter-spacing:-0.241500px;}
.lsaf{letter-spacing:-0.237600px;}
.lsae{letter-spacing:-0.231000px;}
.ls3b{letter-spacing:-0.227700px;}
.lsb0{letter-spacing:-0.224400px;}
.ls3a{letter-spacing:-0.220800px;}
.ls28{letter-spacing:-0.213900px;}
.ls3c{letter-spacing:-0.207000px;}
.ls25{letter-spacing:-0.200100px;}
.ls65{letter-spacing:-0.193200px;}
.ls1e{letter-spacing:-0.192000px;}
.ls77{letter-spacing:-0.186300px;}
.ls91{letter-spacing:-0.172500px;}
.lsb7{letter-spacing:-0.165000px;}
.lsb6{letter-spacing:-0.161700px;}
.ls21{letter-spacing:-0.158700px;}
.ls38{letter-spacing:-0.151800px;}
.ls37{letter-spacing:-0.144900px;}
.ls5e{letter-spacing:-0.138000px;}
.ls4c{letter-spacing:-0.132000px;}
.ls93{letter-spacing:-0.131100px;}
.ls2e{letter-spacing:-0.124200px;}
.ls64{letter-spacing:-0.120000px;}
.ls94{letter-spacing:-0.117300px;}
.ls45{letter-spacing:-0.110400px;}
.ls84{letter-spacing:-0.103500px;}
.ls6f{letter-spacing:-0.089700px;}
.ls6b{letter-spacing:-0.086400px;}
.ls46{letter-spacing:-0.082800px;}
.ls7a{letter-spacing:-0.081000px;}
.ls97{letter-spacing:-0.069000px;}
.ls2d{letter-spacing:-0.062100px;}
.ls8e{letter-spacing:-0.058305px;}
.ls42{letter-spacing:-0.054000px;}
.ls40{letter-spacing:-0.048600px;}
.ls39{letter-spacing:-0.048000px;}
.ls41{letter-spacing:-0.043200px;}
.ls23{letter-spacing:-0.041400px;}
.ls60{letter-spacing:-0.037800px;}
.ls53{letter-spacing:-0.027600px;}
.ls71{letter-spacing:-0.020700px;}
.ls61{letter-spacing:-0.016200px;}
.ls27{letter-spacing:-0.013800px;}
.lsb1{letter-spacing:-0.013200px;}
.ls8{letter-spacing:-0.012600px;}
.ls1d{letter-spacing:-0.012000px;}
.ls4a{letter-spacing:-0.010800px;}
.ls9a{letter-spacing:-0.007500px;}
.ls20{letter-spacing:-0.006900px;}
.lsab{letter-spacing:-0.006600px;}
.ls9{letter-spacing:-0.006300px;}
.ls14{letter-spacing:-0.006000px;}
.ls31{letter-spacing:-0.005400px;}
.ls4{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.003000px;}
.ls2{letter-spacing:0.004410px;}
.ls9d{letter-spacing:0.004620px;}
.ls9e{letter-spacing:0.004800px;}
.ls33{letter-spacing:0.005400px;}
.ls7{letter-spacing:0.005700px;}
.lsa{letter-spacing:0.006000px;}
.ls1{letter-spacing:0.006300px;}
.lsa4{letter-spacing:0.006600px;}
.ls5b{letter-spacing:0.006900px;}
.ls1a{letter-spacing:0.007500px;}
.lsaa{letter-spacing:0.008400px;}
.lsa3{letter-spacing:0.009240px;}
.ls8b{letter-spacing:0.010800px;}
.ls17{letter-spacing:0.012000px;}
.ls35{letter-spacing:0.013800px;}
.ls83{letter-spacing:0.018000px;}
.ls24{letter-spacing:0.020700px;}
.ls59{letter-spacing:0.027600px;}
.ls98{letter-spacing:0.037800px;}
.ls8a{letter-spacing:0.048300px;}
.ls69{letter-spacing:0.053820px;}
.ls68{letter-spacing:0.059400px;}
.ls67{letter-spacing:0.069000px;}
.ls74{letter-spacing:0.070200px;}
.ls6a{letter-spacing:0.075900px;}
.ls4b{letter-spacing:0.078000px;}
.ls75{letter-spacing:0.085215px;}
.ls95{letter-spacing:0.089700px;}
.lsb5{letter-spacing:0.105600px;}
.ls9c{letter-spacing:0.110400px;}
.ls76{letter-spacing:0.124200px;}
.ls73{letter-spacing:0.131100px;}
.ls2c{letter-spacing:0.151800px;}
.ls16{letter-spacing:0.174000px;}
.ls58{letter-spacing:0.179400px;}
.ls96{letter-spacing:0.193200px;}
.ls1c{letter-spacing:0.220800px;}
.ls30{letter-spacing:0.234600px;}
.ls99{letter-spacing:0.248400px;}
.ls82{letter-spacing:0.289800px;}
.ls89{letter-spacing:0.365700px;}
.ls43{letter-spacing:0.393300px;}
.ls6d{letter-spacing:0.427800px;}
.ls1b{letter-spacing:0.462300px;}
.lsa9{letter-spacing:0.475200px;}
.lsa6{letter-spacing:0.480480px;}
.lsa7{letter-spacing:0.481800px;}
.lsa8{letter-spacing:0.485100px;}
.lsa5{letter-spacing:0.485400px;}
.ls7b{letter-spacing:0.510600px;}
.ls15{letter-spacing:0.666000px;}
.ls5a{letter-spacing:0.779700px;}
.ls66{letter-spacing:0.793500px;}
.lsa2{letter-spacing:0.811800px;}
.lsa0{letter-spacing:0.813120px;}
.lsa1{letter-spacing:0.818400px;}
.ls9f{letter-spacing:0.823200px;}
.ls50{letter-spacing:0.834000px;}
.ls92{letter-spacing:0.834900px;}
.ls19{letter-spacing:0.930000px;}
.ls18{letter-spacing:1.266000px;}
.ls2f{letter-spacing:2.042400px;}
.ls3{letter-spacing:3.444000px;}
.ls6{letter-spacing:24.050976px;}
.ls5{letter-spacing:25.917000px;}
.ls0{letter-spacing:260.634600px;}
.ls22{letter-spacing:606.298200px;}
.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;}
}
.ws19{word-spacing:-18.757500px;}
.ws2{word-spacing:-18.444000px;}
.ws166{word-spacing:-17.381100px;}
.ws135{word-spacing:-17.319000px;}
.ws33{word-spacing:-17.250000px;}
.ws6b{word-spacing:-17.243100px;}
.wsb6{word-spacing:-17.236200px;}
.ws18f{word-spacing:-17.091300px;}
.ws8f{word-spacing:-17.022300px;}
.wsb5{word-spacing:-16.704900px;}
.wse7{word-spacing:-16.684200px;}
.ws22e{word-spacing:-16.500000px;}
.ws233{word-spacing:-16.486800px;}
.ws116{word-spacing:-15.006000px;}
.ws190{word-spacing:-14.994000px;}
.ws6c{word-spacing:-13.494600px;}
.ws91{word-spacing:-13.456800px;}
.ws93{word-spacing:-13.451400px;}
.ws92{word-spacing:-13.446000px;}
.ws0{word-spacing:-13.322610px;}
.ws1{word-spacing:-13.318200px;}
.ws90{word-spacing:-13.138200px;}
.ws232{word-spacing:-12.363120px;}
.ws236{word-spacing:-12.035100px;}
.ws235{word-spacing:-12.030480px;}
.ws234{word-spacing:-11.559240px;}
.ws22f{word-spacing:-11.554620px;}
.ws22d{word-spacing:-11.550000px;}
.ws168{word-spacing:-11.507400px;}
.ws249{word-spacing:-11.388300px;}
.ws231{word-spacing:-11.319000px;}
.ws167{word-spacing:-11.297715px;}
.ws136{word-spacing:-11.266320px;}
.ws230{word-spacing:-11.217360px;}
.ws4f{word-spacing:-11.212500px;}
.ws1aa{word-spacing:-11.154195px;}
.ws237{word-spacing:-10.954020px;}
.ws191{word-spacing:-10.912005px;}
.ws18e{word-spacing:-9.750000px;}
.ws169{word-spacing:-8.038500px;}
.ws1a6{word-spacing:-4.347000px;}
.wsaa{word-spacing:-4.326300px;}
.ws7a{word-spacing:-4.319400px;}
.ws30{word-spacing:-4.312500px;}
.ws35{word-spacing:-4.305600px;}
.wsc3{word-spacing:-4.284900px;}
.ws57{word-spacing:-4.222800px;}
.ws1a7{word-spacing:-4.188300px;}
.ws12b{word-spacing:-4.174500px;}
.ws86{word-spacing:-4.146900px;}
.ws23d{word-spacing:-4.138200px;}
.ws24a{word-spacing:-4.131600px;}
.ws23c{word-spacing:-4.125000px;}
.ws247{word-spacing:-4.118400px;}
.ws103{word-spacing:-4.050300px;}
.ws15d{word-spacing:-4.022700px;}
.ws19a{word-spacing:-3.981300px;}
.ws222{word-spacing:-3.974400px;}
.wse2{word-spacing:-3.967500px;}
.ws229{word-spacing:-3.960600px;}
.ws1b3{word-spacing:-3.808800px;}
.ws19b{word-spacing:-3.795000px;}
.ws144{word-spacing:-3.788100px;}
.wse4{word-spacing:-3.781200px;}
.ws21c{word-spacing:-3.767400px;}
.ws9a{word-spacing:-3.760500px;}
.ws18c{word-spacing:-3.753600px;}
.wsc{word-spacing:-3.750000px;}
.ws7{word-spacing:-3.744000px;}
.wsd3{word-spacing:-3.738000px;}
.ws15f{word-spacing:-3.732900px;}
.ws214{word-spacing:-3.712200px;}
.ws1d4{word-spacing:-3.698400px;}
.ws1cc{word-spacing:-3.629400px;}
.ws161{word-spacing:-3.622500px;}
.ws119{word-spacing:-3.601800px;}
.ws171{word-spacing:-3.422400px;}
.ws16a{word-spacing:-3.394800px;}
.ws1ab{word-spacing:-3.387900px;}
.ws14d{word-spacing:-3.375000px;}
.ws68{word-spacing:-3.369600px;}
.wsb3{word-spacing:-3.364200px;}
.ws7b{word-spacing:-3.360300px;}
.ws6f{word-spacing:-3.346500px;}
.ws36{word-spacing:-3.339600px;}
.ws1c9{word-spacing:-3.284400px;}
.ws37{word-spacing:-3.256800px;}
.wsad{word-spacing:-3.207600px;}
.ws104{word-spacing:-3.201600px;}
.ws1f{word-spacing:-3.198000px;}
.ws157{word-spacing:-3.162000px;}
.wsb0{word-spacing:-3.061800px;}
.ws129{word-spacing:-3.056700px;}
.ws1fc{word-spacing:-3.029100px;}
.ws1b1{word-spacing:-3.008400px;}
.ws1a{word-spacing:-2.982000px;}
.wseb{word-spacing:-2.953200px;}
.wsf9{word-spacing:-2.939400px;}
.ws1bd{word-spacing:-2.932500px;}
.ws22c{word-spacing:-2.925600px;}
.ws174{word-spacing:-2.884200px;}
.wsf7{word-spacing:-2.835900px;}
.ws228{word-spacing:-2.829000px;}
.ws124{word-spacing:-2.822100px;}
.ws67{word-spacing:-2.813400px;}
.ws41{word-spacing:-2.808300px;}
.ws61{word-spacing:-2.801400px;}
.wsfb{word-spacing:-2.797200px;}
.ws23{word-spacing:-2.772000px;}
.ws117{word-spacing:-2.746200px;}
.wsd2{word-spacing:-2.736000px;}
.wsd0{word-spacing:-2.718000px;}
.wsaf{word-spacing:-2.710800px;}
.wsae{word-spacing:-2.705400px;}
.ws12{word-spacing:-2.682000px;}
.ws156{word-spacing:-2.670300px;}
.ws106{word-spacing:-2.663400px;}
.ws15b{word-spacing:-2.649600px;}
.ws198{word-spacing:-2.628900px;}
.ws199{word-spacing:-2.622000px;}
.ws1fa{word-spacing:-2.615100px;}
.ws71{word-spacing:-2.608200px;}
.ws110{word-spacing:-2.592000px;}
.wsdc{word-spacing:-2.573700px;}
.ws3d{word-spacing:-2.553000px;}
.wsbd{word-spacing:-2.525400px;}
.ws23a{word-spacing:-2.521200px;}
.wsbe{word-spacing:-2.518500px;}
.wsf3{word-spacing:-2.497800px;}
.ws219{word-spacing:-2.463300px;}
.ws197{word-spacing:-2.428800px;}
.ws54{word-spacing:-2.421900px;}
.wsf0{word-spacing:-2.415000px;}
.ws172{word-spacing:-2.394000px;}
.ws1fd{word-spacing:-2.380500px;}
.ws21f{word-spacing:-2.373600px;}
.wsf6{word-spacing:-2.358000px;}
.ws34{word-spacing:-2.352900px;}
.wsdf{word-spacing:-2.325300px;}
.ws1b5{word-spacing:-2.311500px;}
.ws1b4{word-spacing:-2.304600px;}
.ws21a{word-spacing:-2.283900px;}
.ws1ba{word-spacing:-2.277000px;}
.ws11a{word-spacing:-2.263200px;}
.wsa3{word-spacing:-2.250000px;}
.ws158{word-spacing:-2.249400px;}
.ws240{word-spacing:-2.230800px;}
.wsf4{word-spacing:-2.208000px;}
.ws215{word-spacing:-2.173500px;}
.ws12d{word-spacing:-2.132100px;}
.ws42{word-spacing:-2.090700px;}
.ws164{word-spacing:-2.070000px;}
.ws60{word-spacing:-1.987200px;}
.ws47{word-spacing:-1.911300px;}
.ws18a{word-spacing:-1.883700px;}
.ws22a{word-spacing:-1.876800px;}
.ws46{word-spacing:-1.863000px;}
.ws1e4{word-spacing:-1.856100px;}
.wsc0{word-spacing:-1.849200px;}
.ws210{word-spacing:-1.846800px;}
.ws1ae{word-spacing:-1.821600px;}
.wsa4{word-spacing:-1.782000px;}
.ws20b{word-spacing:-1.766400px;}
.ws11{word-spacing:-1.740000px;}
.wsfc{word-spacing:-1.728000px;}
.ws1d9{word-spacing:-1.718100px;}
.ws19e{word-spacing:-1.711200px;}
.ws19d{word-spacing:-1.697400px;}
.ws38{word-spacing:-1.683600px;}
.ws95{word-spacing:-1.676700px;}
.ws204{word-spacing:-1.662900px;}
.ws1b{word-spacing:-1.650000px;}
.wsc7{word-spacing:-1.642200px;}
.ws31{word-spacing:-1.600800px;}
.ws188{word-spacing:-1.573200px;}
.ws1af{word-spacing:-1.552500px;}
.ws1d7{word-spacing:-1.545600px;}
.wse{word-spacing:-1.500000px;}
.wsdd{word-spacing:-1.455900px;}
.ws1a5{word-spacing:-1.435200px;}
.wsd6{word-spacing:-1.434000px;}
.ws1ad{word-spacing:-1.407600px;}
.ws3c{word-spacing:-1.400700px;}
.wsef{word-spacing:-1.393800px;}
.ws1c8{word-spacing:-1.366200px;}
.ws143{word-spacing:-1.338600px;}
.ws56{word-spacing:-1.311000px;}
.ws115{word-spacing:-1.306800px;}
.wse5{word-spacing:-1.290300px;}
.wsc2{word-spacing:-1.283400px;}
.ws24{word-spacing:-1.272000px;}
.ws109{word-spacing:-1.228200px;}
.ws59{word-spacing:-1.173000px;}
.ws19c{word-spacing:-1.110900px;}
.ws6d{word-spacing:-1.104000px;}
.ws6e{word-spacing:-1.097100px;}
.wsa2{word-spacing:-1.086000px;}
.wsa5{word-spacing:-1.080000px;}
.ws82{word-spacing:-1.035000px;}
.ws225{word-spacing:-1.028100px;}
.ws1a4{word-spacing:-1.014300px;}
.ws16e{word-spacing:-1.007400px;}
.ws137{word-spacing:-1.000500px;}
.ws13a{word-spacing:-0.966000px;}
.ws209{word-spacing:-0.924600px;}
.ws1d0{word-spacing:-0.910800px;}
.ws58{word-spacing:-0.903900px;}
.ws1ce{word-spacing:-0.883200px;}
.ws9b{word-spacing:-0.876300px;}
.ws1cb{word-spacing:-0.841800px;}
.ws22{word-spacing:-0.792000px;}
.ws70{word-spacing:-0.786600px;}
.ws155{word-spacing:-0.772800px;}
.ws2c{word-spacing:-0.752100px;}
.wsb8{word-spacing:-0.745200px;}
.ws17b{word-spacing:-0.739800px;}
.ws10e{word-spacing:-0.718200px;}
.ws160{word-spacing:-0.710700px;}
.wse1{word-spacing:-0.634800px;}
.ws1e2{word-spacing:-0.627900px;}
.ws1e3{word-spacing:-0.621000px;}
.ws13e{word-spacing:-0.586500px;}
.ws39{word-spacing:-0.558900px;}
.ws126{word-spacing:-0.552000px;}
.ws196{word-spacing:-0.524400px;}
.ws81{word-spacing:-0.510600px;}
.ws12f{word-spacing:-0.480600px;}
.ws1c{word-spacing:-0.450000px;}
.ws1a1{word-spacing:-0.441600px;}
.wsf8{word-spacing:-0.365700px;}
.ws1d8{word-spacing:-0.351900px;}
.ws130{word-spacing:-0.318600px;}
.wsee{word-spacing:-0.303600px;}
.ws162{word-spacing:-0.248400px;}
.ws24b{word-spacing:-0.211200px;}
.ws112{word-spacing:-0.210600px;}
.ws165{word-spacing:-0.205200px;}
.ws113{word-spacing:-0.194400px;}
.ws111{word-spacing:-0.172800px;}
.ws100{word-spacing:-0.158700px;}
.ws15e{word-spacing:-0.131100px;}
.ws9c{word-spacing:-0.110400px;}
.ws1e6{word-spacing:-0.086400px;}
.ws179{word-spacing:-0.070200px;}
.ws5{word-spacing:-0.025200px;}
.ws6{word-spacing:-0.012600px;}
.ws1a9{word-spacing:-0.005400px;}
.ws3{word-spacing:0.000000px;}
.wsb2{word-spacing:0.005400px;}
.ws26{word-spacing:0.006000px;}
.ws239{word-spacing:0.006600px;}
.ws2f{word-spacing:0.006900px;}
.ws4{word-spacing:0.010200px;}
.wscd{word-spacing:0.010800px;}
.ws1d3{word-spacing:0.012000px;}
.ws1db{word-spacing:0.013800px;}
.ws21b{word-spacing:0.027600px;}
.wsf5{word-spacing:0.030000px;}
.wsc8{word-spacing:0.048600px;}
.ws53{word-spacing:0.055200px;}
.ws88{word-spacing:0.075600px;}
.ws89{word-spacing:0.081000px;}
.ws7d{word-spacing:0.186300px;}
.ws187{word-spacing:0.193200px;}
.ws10b{word-spacing:0.220800px;}
.ws15a{word-spacing:0.227700px;}
.ws10a{word-spacing:0.234600px;}
.ws1c0{word-spacing:0.237600px;}
.ws193{word-spacing:0.240000px;}
.ws221{word-spacing:0.248400px;}
.ws21{word-spacing:0.252000px;}
.ws1cd{word-spacing:0.255300px;}
.ws192{word-spacing:0.264000px;}
.ws238{word-spacing:0.269100px;}
.wsb{word-spacing:0.288000px;}
.wsfa{word-spacing:0.302400px;}
.ws1e7{word-spacing:0.334800px;}
.wsa{word-spacing:0.336000px;}
.ws22b{word-spacing:0.358800px;}
.ws134{word-spacing:0.361800px;}
.ws1a3{word-spacing:0.372600px;}
.ws101{word-spacing:0.400200px;}
.ws87{word-spacing:0.410400px;}
.ws7e{word-spacing:0.420900px;}
.ws1e8{word-spacing:0.462300px;}
.ws186{word-spacing:0.476100px;}
.ws73{word-spacing:0.483000px;}
.ws108{word-spacing:0.489900px;}
.ws194{word-spacing:0.492000px;}
.wsc9{word-spacing:0.507600px;}
.ws97{word-spacing:0.510600px;}
.ws20{word-spacing:0.516000px;}
.wsd1{word-spacing:0.522000px;}
.ws1e5{word-spacing:0.565800px;}
.ws1c1{word-spacing:0.579600px;}
.wsca{word-spacing:0.599400px;}
.ws140{word-spacing:0.607200px;}
.ws2d{word-spacing:0.614100px;}
.ws133{word-spacing:0.615600px;}
.ws176{word-spacing:0.621000px;}
.wsa6{word-spacing:0.630000px;}
.ws1f1{word-spacing:0.636000px;}
.ws6a{word-spacing:0.685800px;}
.ws128{word-spacing:0.690000px;}
.wsd4{word-spacing:0.696000px;}
.ws1d2{word-spacing:0.708000px;}
.ws217{word-spacing:0.724500px;}
.ws17c{word-spacing:0.777600px;}
.ws246{word-spacing:0.778800px;}
.wsa1{word-spacing:0.792000px;}
.ws173{word-spacing:0.793500px;}
.ws10d{word-spacing:0.799200px;}
.wsc6{word-spacing:0.800400px;}
.ws20c{word-spacing:0.807300px;}
.wsed{word-spacing:0.821100px;}
.ws9d{word-spacing:0.828000px;}
.ws202{word-spacing:0.869400px;}
.ws220{word-spacing:0.883200px;}
.ws127{word-spacing:0.890100px;}
.ws4b{word-spacing:0.897000px;}
.ws1dc{word-spacing:0.906000px;}
.wsd7{word-spacing:0.912000px;}
.ws206{word-spacing:0.917700px;}
.ws153{word-spacing:0.945300px;}
.ws74{word-spacing:0.986700px;}
.ws1b2{word-spacing:1.007400px;}
.ws1b6{word-spacing:1.014300px;}
.ws45{word-spacing:1.028100px;}
.ws181{word-spacing:1.041900px;}
.wsa8{word-spacing:1.104000px;}
.ws118{word-spacing:1.131600px;}
.ws32{word-spacing:1.159200px;}
.ws11d{word-spacing:1.200600px;}
.wsdb{word-spacing:1.207500px;}
.ws1a0{word-spacing:1.255800px;}
.ws227{word-spacing:1.269600px;}
.ws16c{word-spacing:1.283400px;}
.ws96{word-spacing:1.311000px;}
.ws183{word-spacing:1.352400px;}
.wse8{word-spacing:1.359300px;}
.ws20a{word-spacing:1.373100px;}
.ws216{word-spacing:1.386900px;}
.ws1bc{word-spacing:1.407600px;}
.wscc{word-spacing:1.420200px;}
.wsf2{word-spacing:1.442100px;}
.ws1d{word-spacing:1.458000px;}
.ws149{word-spacing:1.463400px;}
.ws17f{word-spacing:1.469700px;}
.ws180{word-spacing:1.476600px;}
.ws18d{word-spacing:1.490400px;}
.wsda{word-spacing:1.504200px;}
.ws14b{word-spacing:1.522800px;}
.ws1f3{word-spacing:1.524000px;}
.ws241{word-spacing:1.544400px;}
.ws178{word-spacing:1.549800px;}
.ws1e{word-spacing:1.566000px;}
.ws66{word-spacing:1.580100px;}
.ws16{word-spacing:1.584000px;}
.ws8e{word-spacing:1.620000px;}
.wsea{word-spacing:1.621500px;}
.wsc1{word-spacing:1.635300px;}
.ws8d{word-spacing:1.636200px;}
.wsb4{word-spacing:1.641600px;}
.ws10c{word-spacing:1.642200px;}
.ws1b8{word-spacing:1.649100px;}
.ws8c{word-spacing:1.657800px;}
.ws11f{word-spacing:1.692000px;}
.ws120{word-spacing:1.698000px;}
.wsbc{word-spacing:1.704300px;}
.ws1b9{word-spacing:1.718100px;}
.ws20f{word-spacing:1.749600px;}
.ws7c{word-spacing:1.759500px;}
.ws13{word-spacing:1.794000px;}
.ws69{word-spacing:1.900800px;}
.ws1ef{word-spacing:1.911300px;}
.ws80{word-spacing:1.925100px;}
.wsa7{word-spacing:1.932000px;}
.ws44{word-spacing:1.938900px;}
.ws28{word-spacing:1.945800px;}
.ws1a8{word-spacing:1.952700px;}
.ws7f{word-spacing:1.959600px;}
.ws14f{word-spacing:1.960200px;}
.ws11c{word-spacing:1.980300px;}
.ws195{word-spacing:2.007900px;}
.ws185{word-spacing:2.056200px;}
.ws9{word-spacing:2.064000px;}
.ws85{word-spacing:2.076900px;}
.ws2e{word-spacing:2.090700px;}
.ws213{word-spacing:2.115000px;}
.wsd5{word-spacing:2.118000px;}
.ws12c{word-spacing:2.132100px;}
.ws145{word-spacing:2.166600px;}
.wsa9{word-spacing:2.173500px;}
.ws207{word-spacing:2.235600px;}
.ws170{word-spacing:2.249400px;}
.wsfd{word-spacing:2.327400px;}
.ws1ff{word-spacing:2.339100px;}
.ws78{word-spacing:2.346000px;}
.ws208{word-spacing:2.373600px;}
.ws1fe{word-spacing:2.394300px;}
.wsa0{word-spacing:2.412000px;}
.ws8b{word-spacing:2.413800px;}
.ws1b0{word-spacing:2.456400px;}
.ws4d{word-spacing:2.477100px;}
.ws175{word-spacing:2.490900px;}
.ws5e{word-spacing:2.497800px;}
.wsd9{word-spacing:2.586000px;}
.ws189{word-spacing:2.594400px;}
.ws150{word-spacing:2.597400px;}
.ws1b7{word-spacing:2.615100px;}
.ws15c{word-spacing:2.642700px;}
.ws23b{word-spacing:2.659800px;}
.ws1be{word-spacing:2.663400px;}
.ws1f4{word-spacing:2.670000px;}
.wsec{word-spacing:2.677200px;}
.ws3a{word-spacing:2.725500px;}
.ws1da{word-spacing:2.732400px;}
.ws114{word-spacing:2.759400px;}
.ws8a{word-spacing:2.797200px;}
.ws1e1{word-spacing:2.801400px;}
.ws63{word-spacing:2.808300px;}
.ws21d{word-spacing:2.835900px;}
.wsff{word-spacing:2.842800px;}
.ws27{word-spacing:2.856600px;}
.ws16b{word-spacing:2.911800px;}
.ws224{word-spacing:2.925600px;}
.ws1dd{word-spacing:2.939400px;}
.ws1c7{word-spacing:2.994600px;}
.ws16f{word-spacing:3.001500px;}
.ws17e{word-spacing:3.008400px;}
.wsce{word-spacing:3.048000px;}
.ws55{word-spacing:3.056700px;}
.ws11e{word-spacing:3.096000px;}
.wsf1{word-spacing:3.132600px;}
.ws25{word-spacing:3.144000px;}
.ws14a{word-spacing:3.180600px;}
.ws1f2{word-spacing:3.222000px;}
.ws177{word-spacing:3.234600px;}
.ws1ec{word-spacing:3.249900px;}
.ws21e{word-spacing:3.277500px;}
.ws11b{word-spacing:3.298200px;}
.ws83{word-spacing:3.312000px;}
.ws159{word-spacing:3.318900px;}
.ws75{word-spacing:3.325800px;}
.wscb{word-spacing:3.358800px;}
.ws1eb{word-spacing:3.360300px;}
.ws1fb{word-spacing:3.381000px;}
.wsd8{word-spacing:3.390000px;}
.wsf{word-spacing:3.408000px;}
.ws14{word-spacing:3.414000px;}
.ws5f{word-spacing:3.450000px;}
.ws1e0{word-spacing:3.456900px;}
.ws5d{word-spacing:3.484500px;}
.ws10{word-spacing:3.486000px;}
.wsb1{word-spacing:3.499200px;}
.ws1ee{word-spacing:3.505200px;}
.ws125{word-spacing:3.608700px;}
.wsbb{word-spacing:3.629400px;}
.wse0{word-spacing:3.670800px;}
.ws1cf{word-spacing:3.684600px;}
.wscf{word-spacing:3.738000px;}
.ws1d1{word-spacing:3.857100px;}
.wsb9{word-spacing:3.870900px;}
.ws84{word-spacing:3.877800px;}
.ws62{word-spacing:3.891600px;}
.ws43{word-spacing:3.898500px;}
.ws14c{word-spacing:3.952800px;}
.ws17a{word-spacing:3.974400px;}
.ws13f{word-spacing:4.015800px;}
.ws122{word-spacing:4.112400px;}
.ws12e{word-spacing:4.152600px;}
.ws147{word-spacing:4.163400px;}
.ws200{word-spacing:4.174500px;}
.ws50{word-spacing:4.188300px;}
.ws107{word-spacing:4.215900px;}
.ws223{word-spacing:4.250400px;}
.ws4e{word-spacing:4.257300px;}
.ws1f5{word-spacing:4.260000px;}
.ws1c5{word-spacing:4.298700px;}
.ws1f8{word-spacing:4.319400px;}
.ws18b{word-spacing:4.347000px;}
.ws1ea{word-spacing:4.402200px;}
.ws131{word-spacing:4.422600px;}
.ws79{word-spacing:4.450500px;}
.ws1f6{word-spacing:4.478100px;}
.ws9e{word-spacing:4.540200px;}
.ws76{word-spacing:4.547100px;}
.ws248{word-spacing:4.547400px;}
.ws132{word-spacing:4.552200px;}
.ws77{word-spacing:4.554000px;}
.ws211{word-spacing:4.563000px;}
.ws1df{word-spacing:4.567800px;}
.ws141{word-spacing:4.574700px;}
.ws99{word-spacing:4.602300px;}
.ws98{word-spacing:4.609200px;}
.ws20e{word-spacing:4.671300px;}
.ws52{word-spacing:4.692000px;}
.ws51{word-spacing:4.698900px;}
.ws13c{word-spacing:4.712700px;}
.ws13b{word-spacing:4.719600px;}
.ws1d5{word-spacing:4.726500px;}
.ws138{word-spacing:4.740300px;}
.ws5a{word-spacing:4.816200px;}
.ws5b{word-spacing:4.823100px;}
.ws184{word-spacing:4.836900px;}
.ws1ca{word-spacing:4.843800px;}
.ws4c{word-spacing:4.850700px;}
.ws1ac{word-spacing:4.892100px;}
.ws121{word-spacing:4.899000px;}
.ws2a{word-spacing:4.940400px;}
.ws154{word-spacing:5.023200px;}
.wsc4{word-spacing:5.030100px;}
.ws1bb{word-spacing:5.037000px;}
.ws12a{word-spacing:5.057700px;}
.ws203{word-spacing:5.071500px;}
.ws1f7{word-spacing:5.092200px;}
.ws182{word-spacing:5.119800px;}
.ws212{word-spacing:5.151600px;}
.ws3f{word-spacing:5.278500px;}
.ws14e{word-spacing:5.308200px;}
.wsc5{word-spacing:5.313000px;}
.ws1d6{word-spacing:5.340600px;}
.ws1f9{word-spacing:5.395800px;}
.ws94{word-spacing:5.416500px;}
.ws205{word-spacing:5.430300px;}
.ws139{word-spacing:5.464800px;}
.ws49{word-spacing:5.499300px;}
.ws48{word-spacing:5.506200px;}
.ws244{word-spacing:5.537400px;}
.ws245{word-spacing:5.544000px;}
.ws1a2{word-spacing:5.561400px;}
.ws1ed{word-spacing:5.582100px;}
.wsd{word-spacing:5.592000px;}
.ws4a{word-spacing:5.595900px;}
.ws13d{word-spacing:5.658000px;}
.ws1c4{word-spacing:5.789100px;}
.ws123{word-spacing:5.796000px;}
.wsfe{word-spacing:5.809800px;}
.ws226{word-spacing:5.996100px;}
.ws15{word-spacing:6.042000px;}
.ws10f{word-spacing:6.064200px;}
.ws218{word-spacing:6.065100px;}
.wsb7{word-spacing:6.147900px;}
.ws64{word-spacing:6.175500px;}
.wse9{word-spacing:6.189300px;}
.ws40{word-spacing:6.265200px;}
.ws201{word-spacing:6.479100px;}
.ws9f{word-spacing:6.570000px;}
.ws65{word-spacing:6.596400px;}
.ws146{word-spacing:6.741300px;}
.ws148{word-spacing:6.750000px;}
.ws17d{word-spacing:6.755400px;}
.ws72{word-spacing:6.851700px;}
.ws142{word-spacing:6.865500px;}
.ws1de{word-spacing:6.872400px;}
.ws1c6{word-spacing:6.920700px;}
.ws163{word-spacing:6.934500px;}
.ws1c2{word-spacing:6.969000px;}
.ws1c3{word-spacing:6.975900px;}
.ws2b{word-spacing:6.982800px;}
.ws20d{word-spacing:7.051800px;}
.ws3b{word-spacing:7.155300px;}
.ws102{word-spacing:7.355400px;}
.ws8{word-spacing:7.500000px;}
.ws17{word-spacing:7.506000px;}
.ws242{word-spacing:7.603200px;}
.ws243{word-spacing:7.609800px;}
.wsde{word-spacing:7.624500px;}
.wse6{word-spacing:7.679700px;}
.ws105{word-spacing:7.693500px;}
.wsba{word-spacing:7.721100px;}
.ws152{word-spacing:7.852200px;}
.wsab{word-spacing:7.928100px;}
.wse3{word-spacing:7.948800px;}
.ws1f0{word-spacing:7.955700px;}
.ws23e{word-spacing:8.250000px;}
.ws23f{word-spacing:8.256600px;}
.ws1e9{word-spacing:8.293800px;}
.ws151{word-spacing:8.438700px;}
.wsbf{word-spacing:8.542200px;}
.ws19f{word-spacing:8.569800px;}
.ws5c{word-spacing:8.583600px;}
.ws3e{word-spacing:8.625000px;}
.ws29{word-spacing:8.631900px;}
.ws16d{word-spacing:8.638800px;}
.ws1bf{word-spacing:10.513800px;}
.wsac{word-spacing:13.500000px;}
.ws18{word-spacing:459.338400px;}
._14{margin-left:-20.842500px;}
._a{margin-left:-19.720200px;}
._7{margin-left:-18.647700px;}
._10{margin-left:-16.912800px;}
._e{margin-left:-14.990400px;}
._4{margin-left:-13.692000px;}
._f{margin-left:-8.873400px;}
._2{margin-left:-7.002300px;}
._5{margin-left:-5.892000px;}
._8{margin-left:-4.452000px;}
._3{margin-left:-2.970000px;}
._0{margin-left:-1.620000px;}
._1{width:1.686300px;}
._13{width:2.911500px;}
._9{width:3.971400px;}
._c{width:5.865000px;}
._6{width:7.464000px;}
._12{width:9.352800px;}
._d{width:10.708200px;}
._11{width:12.079800px;}
._b{width:16.318800px;}
.fc5{color:rgb(32,31,30);}
.fc4{color:transparent;}
.fc3{color:rgb(101,98,99);}
.fc2{color:rgb(189,192,187);}
.fc1{color:rgb(38,61,150);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:25.917000px;}
.fs10{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fs8{font-size:44.100000px;}
.fse{font-size:44.850000px;}
.fs1{font-size:45.000000px;}
.fs12{font-size:46.200000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fsf{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fsa{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs11{font-size:66.000000px;}
.fsd{font-size:69.000000px;}
.fsc{font-size:75.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:92.400000px;}
.fs4{font-size:99.000000px;}
.y7{bottom:-0.002700px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.052800px;}
.y11f{bottom:213.029100px;}
.y1af{bottom:213.029550px;}
.y227{bottom:213.029850px;}
.y13d{bottom:213.030450px;}
.y96{bottom:213.031050px;}
.yda{bottom:213.031350px;}
.yb2{bottom:213.031650px;}
.y19a{bottom:213.032250px;}
.y1d7{bottom:213.032550px;}
.y26c{bottom:215.068950px;}
.y2c1{bottom:215.499750px;}
.y2a{bottom:215.501100px;}
.y1fa{bottom:220.313700px;}
.y2{bottom:224.342250px;}
.y4f{bottom:224.982225px;}
.y74{bottom:226.176600px;}
.y29e{bottom:229.201500px;}
.y1ae{bottom:229.529250px;}
.y226{bottom:229.529550px;}
.y13c{bottom:229.530150px;}
.y95{bottom:229.530750px;}
.yd9{bottom:229.531050px;}
.yb1{bottom:229.531350px;}
.y199{bottom:229.531950px;}
.y1d6{bottom:229.532250px;}
.y2bf{bottom:229.938300px;}
.y26b{bottom:236.069100px;}
.y4e{bottom:245.982375px;}
.y225{bottom:246.029250px;}
.y13b{bottom:246.029850px;}
.y94{bottom:246.030450px;}
.yd8{bottom:246.030750px;}
.yb0{bottom:246.031050px;}
.y198{bottom:246.031650px;}
.y1d5{bottom:246.031950px;}
.y73{bottom:247.176750px;}
.y2be{bottom:250.187850px;}
.y29d{bottom:250.201650px;}
.y28{bottom:253.932750px;}
.y1f9{bottom:254.070225px;}
.y26a{bottom:257.069250px;}
.y13a{bottom:262.529550px;}
.y93{bottom:262.530150px;}
.yd7{bottom:262.530450px;}
.yaf{bottom:262.530750px;}
.y197{bottom:262.531350px;}
.y1d4{bottom:262.531650px;}
.y4d{bottom:266.982525px;}
.y2bd{bottom:270.438300px;}
.y29c{bottom:271.201800px;}
.y27{bottom:272.682750px;}
.y1f8{bottom:275.070375px;}
.y216{bottom:277.380600px;}
.y269{bottom:278.069400px;}
.y139{bottom:279.029250px;}
.y92{bottom:279.029850px;}
.yd6{bottom:279.030150px;}
.yae{bottom:279.030450px;}
.y196{bottom:279.031050px;}
.y1d3{bottom:279.031350px;}
.y224{bottom:285.568950px;}
.y72{bottom:288.576750px;}
.y2bc{bottom:290.686950px;}
.y29b{bottom:292.201950px;}
.y258{bottom:294.579000px;}
.y91{bottom:295.529550px;}
.yd5{bottom:295.529850px;}
.yad{bottom:295.530150px;}
.y195{bottom:295.530750px;}
.y1d2{bottom:295.531050px;}
.y1ad{bottom:296.062875px;}
.y1f7{bottom:296.070525px;}
.y215{bottom:298.380750px;}
.y268{bottom:299.069550px;}
.y242{bottom:300.575250px;}
.y4c{bottom:300.739050px;}
.y11e{bottom:302.138325px;}
.y223{bottom:306.569100px;}
.y26{bottom:308.682750px;}
.y2bb{bottom:310.937400px;}
.y90{bottom:312.029250px;}
.yd4{bottom:312.029550px;}
.yac{bottom:312.029850px;}
.y194{bottom:312.030450px;}
.y1d1{bottom:312.030750px;}
.y29a{bottom:313.202100px;}
.y257{bottom:315.579150px;}
.y1ac{bottom:317.063025px;}
.y1f6{bottom:317.070675px;}
.y241{bottom:319.325250px;}
.y267{bottom:320.069700px;}
.y4b{bottom:321.739200px;}
.y11d{bottom:323.138475px;}
.y25{bottom:326.682750px;}
.y222{bottom:327.569250px;}
.yd3{bottom:328.529250px;}
.yab{bottom:328.529550px;}
.y193{bottom:328.530150px;}
.y1d0{bottom:328.530450px;}
.y2ba{bottom:331.187850px;}
.y299{bottom:334.202250px;}
.y256{bottom:336.579300px;}
.y1f5{bottom:338.070825px;}
.y266{bottom:341.069850px;}
.y4a{bottom:342.739350px;}
.y11c{bottom:344.138625px;}
.y24{bottom:344.682750px;}
.yaa{bottom:345.029250px;}
.y192{bottom:345.029850px;}
.y1cf{bottom:345.030150px;}
.y221{bottom:348.569400px;}
.y71{bottom:350.826600px;}
.y240{bottom:350.827125px;}
.y2b9{bottom:351.438300px;}
.y214{bottom:353.136750px;}
.y1ab{bottom:355.069950px;}
.y298{bottom:355.202400px;}
.y138{bottom:355.320150px;}
.y255{bottom:357.579450px;}
.y1f4{bottom:359.070975px;}
.yfc{bottom:359.074050px;}
.y191{bottom:361.529550px;}
.y1ce{bottom:361.529850px;}
.y265{bottom:362.070000px;}
.y23{bottom:362.682750px;}
.y49{bottom:363.739500px;}
.y11b{bottom:365.138775px;}
.y179{bottom:368.074950px;}
.y220{bottom:369.569550px;}
.y2b8{bottom:371.686950px;}
.y70{bottom:371.826750px;}
.y23f{bottom:371.827275px;}
.y8f{bottom:371.830950px;}
.y213{bottom:371.886750px;}
.yd2{bottom:373.192500px;}
.y1aa{bottom:376.070100px;}
.y297{bottom:376.202550px;}
.y137{bottom:376.320300px;}
.y190{bottom:378.029250px;}
.y1cd{bottom:378.029550px;}
.y254{bottom:378.579600px;}
.y1f3{bottom:380.071125px;}
.yfb{bottom:380.074200px;}
.y22{bottom:380.682750px;}
.y15a{bottom:381.419625px;}
.y264{bottom:383.070150px;}
.y48{bottom:384.739650px;}
.y11a{bottom:386.138925px;}
.y178{bottom:389.075100px;}
.y21f{bottom:390.569700px;}
.y212{bottom:390.636750px;}
.y2b7{bottom:391.937400px;}
.y6f{bottom:392.826900px;}
.y23e{bottom:392.827425px;}
.y8e{bottom:392.831100px;}
.yd1{bottom:394.192650px;}
.y1cc{bottom:394.529250px;}
.y1a9{bottom:397.070250px;}
.y296{bottom:397.202700px;}
.y136{bottom:397.320450px;}
.y21{bottom:398.682750px;}
.y253{bottom:399.579750px;}
.y1f2{bottom:401.071275px;}
.yfa{bottom:401.074350px;}
.y159{bottom:402.419775px;}
.y263{bottom:404.070300px;}
.y47{bottom:405.739800px;}
.y119{bottom:407.139075px;}
.y177{bottom:410.075250px;}
.y2b6{bottom:412.187850px;}
.y6e{bottom:413.827050px;}
.y23d{bottom:413.827575px;}
.y8d{bottom:413.831250px;}
.yd0{bottom:415.192800px;}
.y20{bottom:416.682750px;}
.y1a8{bottom:418.070400px;}
.y295{bottom:418.202850px;}
.y135{bottom:418.320600px;}
.y252{bottom:420.579900px;}
.y1f1{bottom:422.071425px;}
.yf9{bottom:422.074500px;}
.y211{bottom:422.137575px;}
.y158{bottom:423.419925px;}
.y21e{bottom:424.324500px;}
.y262{bottom:425.070450px;}
.y46{bottom:426.739950px;}
.y118{bottom:428.139225px;}
.y176{bottom:431.075400px;}
.y2b5{bottom:432.438300px;}
.y1f{bottom:434.682750px;}
.y6d{bottom:434.827200px;}
.y23c{bottom:434.827725px;}
.ycf{bottom:436.192950px;}
.y1a7{bottom:439.070550px;}
.y294{bottom:439.203000px;}
.y134{bottom:439.320750px;}
.y251{bottom:441.580050px;}
.y1f0{bottom:443.071575px;}
.yf8{bottom:443.074650px;}
.y210{bottom:443.137725px;}
.y157{bottom:444.420075px;}
.y21d{bottom:445.324650px;}
.y261{bottom:446.070600px;}
.y1cb{bottom:447.575700px;}
.ya9{bottom:447.584475px;}
.y8c{bottom:447.586050px;}
.y45{bottom:447.740100px;}
.y117{bottom:449.139375px;}
.y175{bottom:452.075550px;}
.y1e{bottom:452.682750px;}
.y2b4{bottom:452.687850px;}
.y6c{bottom:455.827350px;}
.y23b{bottom:455.827875px;}
.y18f{bottom:455.830200px;}
.yce{bottom:457.193100px;}
.y1a6{bottom:460.070700px;}
.y293{bottom:460.203150px;}
.y250{bottom:462.580200px;}
.y1ef{bottom:464.071725px;}
.yf7{bottom:464.074800px;}
.y20f{bottom:464.137875px;}
.y156{bottom:465.420225px;}
.y21c{bottom:466.324800px;}
.y260{bottom:467.070750px;}
.y1ca{bottom:468.575850px;}
.ya8{bottom:468.584625px;}
.y8b{bottom:468.586200px;}
.y44{bottom:468.740250px;}
.y116{bottom:470.139525px;}
.y1d{bottom:470.682750px;}
.y2b3{bottom:472.938300px;}
.y174{bottom:473.075700px;}
.y6b{bottom:476.827500px;}
.y23a{bottom:476.828025px;}
.y279{bottom:476.829375px;}
.y18e{bottom:476.830350px;}
.ycd{bottom:478.193250px;}
.y1a5{bottom:481.070850px;}
.y292{bottom:481.203300px;}
.y24f{bottom:483.580350px;}
.yf6{bottom:485.074950px;}
.y20e{bottom:485.138025px;}
.y21b{bottom:487.324950px;}
.y1c{bottom:488.682750px;}
.y1c9{bottom:489.576000px;}
.ya7{bottom:489.584775px;}
.y8a{bottom:489.586350px;}
.y115{bottom:491.139675px;}
.y2b2{bottom:493.187850px;}
.y133{bottom:494.075250px;}
.y173{bottom:494.075850px;}
.y6a{bottom:497.827650px;}
.y239{bottom:497.828175px;}
.y1ee{bottom:497.828250px;}
.y278{bottom:497.829525px;}
.y18d{bottom:497.830500px;}
.y155{bottom:499.174725px;}
.y1a4{bottom:502.071000px;}
.y291{bottom:502.203450px;}
.y24e{bottom:504.580500px;}
.yf5{bottom:506.075100px;}
.y20d{bottom:506.138175px;}
.y1b{bottom:506.682750px;}
.y21a{bottom:508.325100px;}
.y43{bottom:510.140250px;}
.y1c8{bottom:510.576150px;}
.ya6{bottom:510.584925px;}
.y89{bottom:510.586500px;}
.y114{bottom:512.139825px;}
.y132{bottom:512.825250px;}
.y2b1{bottom:513.438300px;}
.y172{bottom:515.076000px;}
.y69{bottom:518.827800px;}
.y238{bottom:518.828325px;}
.y1ed{bottom:518.828400px;}
.y277{bottom:518.829675px;}
.y18c{bottom:518.830650px;}
.y154{bottom:520.174875px;}
.y25f{bottom:521.825250px;}
.y1a3{bottom:523.071150px;}
.y290{bottom:523.203600px;}
.y1a{bottom:524.682750px;}
.y24d{bottom:525.580650px;}
.yf4{bottom:527.071425px;}
.y20c{bottom:527.138325px;}
.y219{bottom:529.325250px;}
.y131{bottom:531.575250px;}
.y1c7{bottom:531.576300px;}
.ya5{bottom:531.585075px;}
.y88{bottom:531.586650px;}
.ycc{bottom:532.949250px;}
.y2b0{bottom:533.687850px;}
.y171{bottom:536.076150px;}
.y237{bottom:539.828475px;}
.y1ec{bottom:539.828550px;}
.y276{bottom:539.829825px;}
.y18b{bottom:539.830800px;}
.y25e{bottom:540.575250px;}
.y153{bottom:541.175025px;}
.y19{bottom:542.682750px;}
.y1a2{bottom:544.071300px;}
.y28f{bottom:544.203750px;}
.y113{bottom:545.896350px;}
.y24c{bottom:546.580800px;}
.yf3{bottom:548.071575px;}
.y20b{bottom:548.138475px;}
.y130{bottom:550.325250px;}
.ycb{bottom:551.699250px;}
.y1c6{bottom:552.576450px;}
.y68{bottom:552.584325px;}
.ya4{bottom:552.585225px;}
.y87{bottom:552.586800px;}
.y2af{bottom:553.938300px;}
.y170{bottom:557.076300px;}
.y25d{bottom:559.325250px;}
.y18{bottom:560.682750px;}
.y236{bottom:560.828625px;}
.y1eb{bottom:560.828700px;}
.y275{bottom:560.829975px;}
.y18a{bottom:560.830950px;}
.y152{bottom:562.175175px;}
.y1a1{bottom:565.071450px;}
.y28e{bottom:565.203900px;}
.y112{bottom:566.896500px;}
.y24b{bottom:567.580950px;}
.yf2{bottom:569.071725px;}
.y20a{bottom:569.138625px;}
.yca{bottom:570.449250px;}
.y1c5{bottom:573.576600px;}
.y67{bottom:573.584475px;}
.ya3{bottom:573.585375px;}
.y86{bottom:573.586950px;}
.y2ae{bottom:574.187400px;}
.y25c{bottom:578.075250px;}
.y16f{bottom:578.076450px;}
.y17{bottom:578.682750px;}
.y12f{bottom:581.828100px;}
.y235{bottom:581.828775px;}
.y1ea{bottom:581.828850px;}
.y274{bottom:581.830125px;}
.y189{bottom:581.831100px;}
.y151{bottom:583.175325px;}
.y218{bottom:584.081250px;}
.y1a0{bottom:586.071600px;}
.y28d{bottom:586.204050px;}
.y111{bottom:587.896650px;}
.y24a{bottom:588.581100px;}
.yc9{bottom:589.199250px;}
.yf1{bottom:590.071875px;}
.y209{bottom:590.138775px;}
.y42{bottom:593.395650px;}
.y2ad{bottom:594.437850px;}
.y1c4{bottom:594.576750px;}
.y66{bottom:594.584625px;}
.ya2{bottom:594.585525px;}
.y85{bottom:594.587100px;}
.y16{bottom:596.682750px;}
.y25b{bottom:596.825250px;}
.y16e{bottom:599.076600px;}
.y188{bottom:602.828775px;}
.y234{bottom:602.828925px;}
.y1e9{bottom:602.829000px;}
.y150{bottom:604.175475px;}
.y19f{bottom:607.071750px;}
.y28c{bottom:607.204200px;}
.yc8{bottom:607.949250px;}
.y110{bottom:608.896800px;}
.y249{bottom:609.581250px;}
.y208{bottom:611.138925px;}
.y41{bottom:611.395650px;}
.y15{bottom:614.682750px;}
.y2ac{bottom:614.688300px;}
.y25a{bottom:615.575250px;}
.y12e{bottom:615.584625px;}
.y65{bottom:615.584775px;}
.ya1{bottom:615.585675px;}
.y84{bottom:615.585750px;}
.y273{bottom:615.586650px;}
.y217{bottom:615.587100px;}
.y16d{bottom:620.076750px;}
.yf0{bottom:623.828400px;}
.y187{bottom:623.828925px;}
.y233{bottom:623.829075px;}
.y1e8{bottom:623.829150px;}
.yc7{bottom:626.699250px;}
.y28b{bottom:628.204350px;}
.y10f{bottom:629.896950px;}
.y207{bottom:632.139075px;}
.y14{bottom:632.682750px;}
.y259{bottom:634.325250px;}
.y2ab{bottom:634.937850px;}
.y12d{bottom:636.584775px;}
.y64{bottom:636.584925px;}
.ya0{bottom:636.585825px;}
.y83{bottom:636.585900px;}
.y272{bottom:636.586800px;}
.y14f{bottom:637.932000px;}
.yef{bottom:644.828550px;}
.y186{bottom:644.829075px;}
.y1e7{bottom:644.829300px;}
.yc6{bottom:645.449250px;}
.y40{bottom:647.395650px;}
.y28a{bottom:649.204500px;}
.y1c3{bottom:649.332750px;}
.y10e{bottom:650.897100px;}
.y206{bottom:653.139225px;}
.y2aa{bottom:655.188300px;}
.y12c{bottom:657.584925px;}
.y63{bottom:657.585075px;}
.y232{bottom:657.585600px;}
.y9f{bottom:657.585975px;}
.y82{bottom:657.586050px;}
.y271{bottom:657.586950px;}
.y14e{bottom:658.932150px;}
.y19e{bottom:661.827750px;}
.yc5{bottom:664.199250px;}
.y248{bottom:664.337250px;}
.y3f{bottom:665.395650px;}
.yee{bottom:665.828700px;}
.y185{bottom:665.829225px;}
.y1e6{bottom:665.829450px;}
.y1c2{bottom:668.082750px;}
.y13{bottom:669.432750px;}
.y289{bottom:670.204650px;}
.y10d{bottom:671.897250px;}
.y205{bottom:674.139375px;}
.y16c{bottom:674.832750px;}
.y2a9{bottom:675.437850px;}
.y12b{bottom:678.585075px;}
.y62{bottom:678.585225px;}
.y231{bottom:678.585750px;}
.y9e{bottom:678.586125px;}
.y81{bottom:678.586200px;}
.y270{bottom:678.587100px;}
.y14d{bottom:679.932300px;}
.y19d{bottom:680.577750px;}
.yc4{bottom:682.949250px;}
.y247{bottom:683.087250px;}
.y3e{bottom:683.395650px;}
.yed{bottom:686.828850px;}
.y184{bottom:686.829375px;}
.y1e5{bottom:686.829600px;}
.y288{bottom:691.204800px;}
.y11{bottom:692.846250px;}
.y16b{bottom:693.582750px;}
.y204{bottom:695.139525px;}
.y2a8{bottom:695.688300px;}
.y12a{bottom:699.585225px;}
.y61{bottom:699.585375px;}
.y230{bottom:699.585900px;}
.y9d{bottom:699.586275px;}
.y80{bottom:699.586350px;}
.y26f{bottom:699.586800px;}
.y1c1{bottom:699.588450px;}
.y14c{bottom:700.932450px;}
.y3d{bottom:701.395650px;}
.yc3{bottom:701.699250px;}
.y246{bottom:701.837250px;}
.y183{bottom:707.829525px;}
.y1e4{bottom:707.829750px;}
.y287{bottom:712.204950px;}
.y16a{bottom:712.332750px;}
.y10{bottom:712.346250px;}
.y2a7{bottom:715.937850px;}
.y203{bottom:716.139675px;}
.y19c{bottom:716.336325px;}
.y3c{bottom:719.395650px;}
.yec{bottom:720.585375px;}
.y60{bottom:720.585525px;}
.y22f{bottom:720.586050px;}
.y7f{bottom:720.586500px;}
.y26e{bottom:720.586950px;}
.y1c0{bottom:720.588600px;}
.y14b{bottom:721.932600px;}
.y10c{bottom:726.653700px;}
.y182{bottom:728.829675px;}
.y169{bottom:731.082750px;}
.yf{bottom:731.846250px;}
.yc2{bottom:733.204200px;}
.y286{bottom:733.205100px;}
.y245{bottom:733.342650px;}
.y9c{bottom:733.342800px;}
.y2a6{bottom:736.188300px;}
.y202{bottom:737.139825px;}
.y3b{bottom:737.395650px;}
.yeb{bottom:741.585525px;}
.y5f{bottom:741.585675px;}
.y22e{bottom:741.586200px;}
.y1e3{bottom:741.586275px;}
.y7e{bottom:741.586650px;}
.y26d{bottom:741.587100px;}
.y1bf{bottom:741.588750px;}
.y14a{bottom:742.932750px;}
.y10b{bottom:745.403700px;}
.yc1{bottom:754.204350px;}
.y285{bottom:754.205250px;}
.y19b{bottom:754.341900px;}
.y244{bottom:754.342800px;}
.y9b{bottom:754.342950px;}
.y3a{bottom:755.395650px;}
.y2a5{bottom:756.438750px;}
.yea{bottom:762.585675px;}
.y5e{bottom:762.585825px;}
.y168{bottom:762.585975px;}
.y181{bottom:762.586200px;}
.y22d{bottom:762.586350px;}
.y1e2{bottom:762.586425px;}
.y7d{bottom:762.586800px;}
.y10a{bottom:764.153700px;}
.y201{bottom:770.896350px;}
.y39{bottom:773.395650px;}
.yc0{bottom:775.204500px;}
.y284{bottom:775.205400px;}
.y129{bottom:775.342050px;}
.y243{bottom:775.342950px;}
.y9a{bottom:775.343100px;}
.y1be{bottom:775.343850px;}
.y109{bottom:782.903700px;}
.ye9{bottom:783.585825px;}
.y5d{bottom:783.585975px;}
.y167{bottom:783.586125px;}
.y180{bottom:783.586350px;}
.y22c{bottom:783.586500px;}
.y1e1{bottom:783.586575px;}
.y7c{bottom:783.586950px;}
.y149{bottom:784.332750px;}
.ye{bottom:787.854660px;}
.y38{bottom:791.395650px;}
.y200{bottom:791.896500px;}
.ybf{bottom:796.204650px;}
.y283{bottom:796.205550px;}
.y128{bottom:796.342200px;}
.y99{bottom:796.343100px;}
.y1bd{bottom:796.344000px;}
.y2a4{bottom:797.088750px;}
.y108{bottom:801.653700px;}
.ye8{bottom:804.585975px;}
.y5c{bottom:804.586125px;}
.y166{bottom:804.586275px;}
.y17f{bottom:804.586500px;}
.y22b{bottom:804.586650px;}
.y1e0{bottom:804.586725px;}
.y7b{bottom:804.587100px;}
.y37{bottom:809.395650px;}
.y1ff{bottom:812.896650px;}
.yc{bottom:813.354660px;}
.yd{bottom:813.354750px;}
.ybe{bottom:817.204800px;}
.y282{bottom:817.205700px;}
.y127{bottom:817.342350px;}
.y98{bottom:817.342500px;}
.y1bc{bottom:817.344150px;}
.y107{bottom:820.403700px;}
.y7a{bottom:825.585975px;}
.ye7{bottom:825.586125px;}
.y5b{bottom:825.586275px;}
.y165{bottom:825.586425px;}
.y17e{bottom:825.586650px;}
.y22a{bottom:825.586800px;}
.y1df{bottom:825.586875px;}
.y36{bottom:827.395650px;}
.y1fe{bottom:833.896800px;}
.ybd{bottom:838.204950px;}
.y281{bottom:838.205850px;}
.y126{bottom:838.342500px;}
.y97{bottom:838.342650px;}
.y1bb{bottom:838.344300px;}
.yb{bottom:838.854750px;}
.y106{bottom:839.153700px;}
.y35{bottom:845.395650px;}
.ye6{bottom:846.586275px;}
.y164{bottom:846.586575px;}
.y17d{bottom:846.586800px;}
.y229{bottom:846.586950px;}
.y1de{bottom:846.587025px;}
.y148{bottom:846.588300px;}
.y1fd{bottom:854.896950px;}
.y105{bottom:857.903700px;}
.ybc{bottom:859.205100px;}
.y280{bottom:859.206000px;}
.y79{bottom:859.342500px;}
.y125{bottom:859.342650px;}
.y5a{bottom:859.342800px;}
.y1ba{bottom:859.344450px;}
.y34{bottom:863.395650px;}
.ye5{bottom:867.586425px;}
.y163{bottom:867.586725px;}
.y17c{bottom:867.586950px;}
.y228{bottom:867.587100px;}
.y1dd{bottom:867.587175px;}
.y147{bottom:867.588450px;}
.y2a3{bottom:867.590550px;}
.ya{bottom:868.607400px;}
.y1fc{bottom:875.897100px;}
.y104{bottom:876.653700px;}
.ybb{bottom:880.204650px;}
.y27f{bottom:880.206150px;}
.y78{bottom:880.342650px;}
.y124{bottom:880.342800px;}
.y59{bottom:880.342950px;}
.y1b9{bottom:880.344600px;}
.y33{bottom:881.395650px;}
.ye4{bottom:888.586575px;}
.y17b{bottom:888.587100px;}
.y1dc{bottom:888.587325px;}
.y146{bottom:888.588600px;}
.y2a2{bottom:888.590100px;}
.y9{bottom:894.107325px;}
.y103{bottom:895.403700px;}
.y1fb{bottom:896.897250px;}
.y32{bottom:899.395650px;}
.yba{bottom:901.204800px;}
.y27e{bottom:901.206300px;}
.y77{bottom:901.342800px;}
.y123{bottom:901.342950px;}
.y58{bottom:901.343100px;}
.y162{bottom:901.343250px;}
.y1b8{bottom:901.343700px;}
.ye3{bottom:909.586725px;}
.y17a{bottom:909.587100px;}
.y145{bottom:909.588750px;}
.y2a1{bottom:909.589650px;}
.y102{bottom:914.153700px;}
.y31{bottom:917.395650px;}
.y8{bottom:919.607250px;}
.yb9{bottom:922.204950px;}
.y27d{bottom:922.206450px;}
.y76{bottom:922.342950px;}
.y122{bottom:922.343100px;}
.y57{bottom:922.343250px;}
.y161{bottom:922.343400px;}
.y1b7{bottom:922.343850px;}
.y2c8{bottom:925.846650px;}
.ye2{bottom:930.586875px;}
.y144{bottom:930.588900px;}
.y2a0{bottom:930.589200px;}
.y101{bottom:932.903700px;}
.y30{bottom:935.395650px;}
.yb8{bottom:943.205100px;}
.y27c{bottom:943.206600px;}
.y75{bottom:943.343100px;}
.y121{bottom:943.343250px;}
.y56{bottom:943.343400px;}
.y160{bottom:943.343550px;}
.y1b6{bottom:943.344000px;}
.y2c7{bottom:946.097100px;}
.ye1{bottom:951.587025px;}
.y29f{bottom:951.588750px;}
.y143{bottom:951.589050px;}
.y100{bottom:951.653700px;}
.y2f{bottom:953.395650px;}
.yb7{bottom:964.205250px;}
.y27b{bottom:964.206750px;}
.y120{bottom:964.343400px;}
.y55{bottom:964.343550px;}
.y15f{bottom:964.343700px;}
.y1b5{bottom:964.344150px;}
.y2c6{bottom:966.347550px;}
.yff{bottom:970.403700px;}
.y2e{bottom:971.395650px;}
.ye0{bottom:985.343550px;}
.y54{bottom:985.343700px;}
.y142{bottom:985.343850px;}
.y1b4{bottom:985.344300px;}
.y2c5{bottom:986.596350px;}
.yfe{bottom:989.153700px;}
.y4{bottom:998.541000px;}
.y3{bottom:998.593800px;}
.y6{bottom:998.596500px;}
.yb6{bottom:1005.605700px;}
.y27a{bottom:1005.606450px;}
.ydf{bottom:1006.343700px;}
.y53{bottom:1006.343850px;}
.y141{bottom:1006.344000px;}
.y1b3{bottom:1006.344450px;}
.y2c4{bottom:1006.846800px;}
.yfd{bottom:1007.903700px;}
.y2d{bottom:1008.145650px;}
.y12{bottom:1038.962100px;}
.y2c3{bottom:1048.687500px;}
.yb5{bottom:1048.688100px;}
.y2c{bottom:1048.688400px;}
.y140{bottom:1048.688700px;}
.y1b2{bottom:1048.689000px;}
.ydd{bottom:1048.720500px;}
.y52{bottom:1048.720650px;}
.y15d{bottom:1048.720950px;}
.y1da{bottom:1048.721250px;}
.yde{bottom:1049.984250px;}
.y1{bottom:1049.984400px;}
.y15e{bottom:1049.984550px;}
.y1db{bottom:1049.985000px;}
.ydb{bottom:1051.304100px;}
.y50{bottom:1051.304250px;}
.y15b{bottom:1051.304400px;}
.y1d8{bottom:1051.304850px;}
.y2c0{bottom:1052.615850px;}
.yb3{bottom:1052.616600px;}
.y29{bottom:1052.616750px;}
.y13e{bottom:1052.616900px;}
.y1b0{bottom:1052.617350px;}
.y2c2{bottom:1065.187200px;}
.yb4{bottom:1065.187800px;}
.y2b{bottom:1065.188100px;}
.y13f{bottom:1065.188400px;}
.y1b1{bottom:1065.188700px;}
.ydc{bottom:1065.220200px;}
.y51{bottom:1065.220350px;}
.y15c{bottom:1065.220650px;}
.y1d9{bottom:1065.220950px;}
.h5{height:4.360500px;}
.h4{height:4.455000px;}
.h3{height:18.141900px;}
.hf{height:32.256000px;}
.hd{height:34.560000px;}
.h2{height:36.669000px;}
.h1{height:36.864000px;}
.he{height:43.140000px;}
.ha{height:44.064000px;}
.h20{height:44.993400px;}
.h10{height:44.994000px;}
.h1b{height:44.994600px;}
.h16{height:48.384000px;}
.hc{height:53.760000px;}
.hb{height:53.820000px;}
.h1e{height:54.922200px;}
.h28{height:54.924000px;}
.h9{height:57.834000px;}
.h2e{height:59.136000px;}
.h2f{height:59.139600px;}
.h30{height:59.141400px;}
.h31{height:59.143200px;}
.h8{height:59.808000px;}
.h12{height:61.824000px;}
.h29{height:63.160200px;}
.h17{height:63.162600px;}
.h27{height:63.163200px;}
.h26{height:63.163800px;}
.h13{height:63.164400px;}
.h1f{height:63.165600px;}
.h19{height:63.166200px;}
.h22{height:63.167100px;}
.h2d{height:63.167400px;}
.h21{height:63.167700px;}
.h1c{height:63.168000px;}
.h2b{height:63.168300px;}
.h18{height:63.168600px;}
.h2c{height:63.169200px;}
.h24{height:63.169800px;}
.h2a{height:63.170100px;}
.h14{height:63.170700px;}
.h25{height:63.171000px;}
.h15{height:63.171600px;}
.h23{height:63.175500px;}
.h1a{height:63.176700px;}
.h1d{height:63.180900px;}
.h7{height:65.788800px;}
.h11{height:67.275000px;}
.h6{height:70.488000px;}
.h0{height:1263.000000px;}
.w2{width:13.567500px;}
.w1{width:23.652000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x4{left:20.504100px;}
.x17{left:133.110150px;}
.x16{left:134.475150px;}
.x20{left:135.687600px;}
.x15{left:139.858800px;}
.x1{left:187.081200px;}
.x7{left:197.326950px;}
.x6{left:215.288700px;}
.x1d{left:216.844350px;}
.x9{left:226.224900px;}
.x13{left:229.600200px;}
.x1f{left:250.860600px;}
.x19{left:259.364250px;}
.x18{left:272.119800px;}
.x1e{left:293.379750px;}
.x2{left:342.059250px;}
.x14{left:343.568250px;}
.xc{left:378.157710px;}
.x11{left:401.825250px;}
.xf{left:405.313350px;}
.x8{left:421.472175px;}
.xd{left:430.605750px;}
.xe{left:436.233750px;}
.x12{left:461.504250px;}
.x23{left:466.655400px;}
.x22{left:470.869500px;}
.x21{left:478.797750px;}
.x24{left:499.180200px;}
.x10{left:559.197750px;}
.x3{left:604.869750px;}
.xa{left:609.036750px;}
.xb{left:614.664750px;}
.x5{left:635.008500px;}
.x1c{left:737.411250px;}
.x1b{left:738.776250px;}
.x1a{left:743.109750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.274667pt;}
.v3{vertical-align:17.758400pt;}
.v2{vertical-align:20.425600pt;}
.ls62{letter-spacing:-3.952000pt;}
.ls79{letter-spacing:-1.771200pt;}
.ls4d{letter-spacing:-1.286133pt;}
.ls70{letter-spacing:-1.226667pt;}
.ls11{letter-spacing:-1.109333pt;}
.ls12{letter-spacing:-1.029333pt;}
.lsb{letter-spacing:-1.024000pt;}
.ls6c{letter-spacing:-0.960000pt;}
.lsf{letter-spacing:-0.922667pt;}
.ls78{letter-spacing:-0.748267pt;}
.ls51{letter-spacing:-0.668533pt;}
.lsb2{letter-spacing:-0.657067pt;}
.ls8d{letter-spacing:-0.656267pt;}
.ls13{letter-spacing:-0.656000pt;}
.ls56{letter-spacing:-0.650133pt;}
.ls9b{letter-spacing:-0.644000pt;}
.ls55{letter-spacing:-0.619467pt;}
.ls8f{letter-spacing:-0.613333pt;}
.ls5c{letter-spacing:-0.607200pt;}
.ls87{letter-spacing:-0.602667pt;}
.ls4e{letter-spacing:-0.594933pt;}
.ls6e{letter-spacing:-0.588800pt;}
.ls29{letter-spacing:-0.576533pt;}
.lsd{letter-spacing:-0.538667pt;}
.lsb4{letter-spacing:-0.533867pt;}
.ls10{letter-spacing:-0.533333pt;}
.lsb3{letter-spacing:-0.529760pt;}
.ls8c{letter-spacing:-0.521333pt;}
.ls5f{letter-spacing:-0.515200pt;}
.lse{letter-spacing:-0.506667pt;}
.ls57{letter-spacing:-0.502933pt;}
.ls1f{letter-spacing:-0.501333pt;}
.lsc{letter-spacing:-0.485333pt;}
.ls47{letter-spacing:-0.484533pt;}
.ls32{letter-spacing:-0.475200pt;}
.ls7f{letter-spacing:-0.441600pt;}
.ls7c{letter-spacing:-0.435467pt;}
.ls54{letter-spacing:-0.410933pt;}
.ls80{letter-spacing:-0.398667pt;}
.ls44{letter-spacing:-0.380267pt;}
.ls63{letter-spacing:-0.368000pt;}
.ls26{letter-spacing:-0.361867pt;}
.ls90{letter-spacing:-0.355733pt;}
.ls2a{letter-spacing:-0.349600pt;}
.ls4f{letter-spacing:-0.343467pt;}
.ls52{letter-spacing:-0.337333pt;}
.ls85{letter-spacing:-0.325067pt;}
.ls3e{letter-spacing:-0.321600pt;}
.ls3f{letter-spacing:-0.316800pt;}
.ls49{letter-spacing:-0.312800pt;}
.ls3d{letter-spacing:-0.312000pt;}
.ls81{letter-spacing:-0.300533pt;}
.lsad{letter-spacing:-0.299200pt;}
.lsac{letter-spacing:-0.295680pt;}
.ls48{letter-spacing:-0.276000pt;}
.ls88{letter-spacing:-0.267107pt;}
.ls36{letter-spacing:-0.263733pt;}
.ls7e{letter-spacing:-0.251467pt;}
.ls7d{letter-spacing:-0.245333pt;}
.ls86{letter-spacing:-0.239200pt;}
.ls72{letter-spacing:-0.226933pt;}
.ls34{letter-spacing:-0.220800pt;}
.ls5d{letter-spacing:-0.214667pt;}
.lsaf{letter-spacing:-0.211200pt;}
.lsae{letter-spacing:-0.205333pt;}
.ls3b{letter-spacing:-0.202400pt;}
.lsb0{letter-spacing:-0.199467pt;}
.ls3a{letter-spacing:-0.196267pt;}
.ls28{letter-spacing:-0.190133pt;}
.ls3c{letter-spacing:-0.184000pt;}
.ls25{letter-spacing:-0.177867pt;}
.ls65{letter-spacing:-0.171733pt;}
.ls1e{letter-spacing:-0.170667pt;}
.ls77{letter-spacing:-0.165600pt;}
.ls91{letter-spacing:-0.153333pt;}
.lsb7{letter-spacing:-0.146667pt;}
.lsb6{letter-spacing:-0.143733pt;}
.ls21{letter-spacing:-0.141067pt;}
.ls38{letter-spacing:-0.134933pt;}
.ls37{letter-spacing:-0.128800pt;}
.ls5e{letter-spacing:-0.122667pt;}
.ls4c{letter-spacing:-0.117333pt;}
.ls93{letter-spacing:-0.116533pt;}
.ls2e{letter-spacing:-0.110400pt;}
.ls64{letter-spacing:-0.106667pt;}
.ls94{letter-spacing:-0.104267pt;}
.ls45{letter-spacing:-0.098133pt;}
.ls84{letter-spacing:-0.092000pt;}
.ls6f{letter-spacing:-0.079733pt;}
.ls6b{letter-spacing:-0.076800pt;}
.ls46{letter-spacing:-0.073600pt;}
.ls7a{letter-spacing:-0.072000pt;}
.ls97{letter-spacing:-0.061333pt;}
.ls2d{letter-spacing:-0.055200pt;}
.ls8e{letter-spacing:-0.051827pt;}
.ls42{letter-spacing:-0.048000pt;}
.ls40{letter-spacing:-0.043200pt;}
.ls39{letter-spacing:-0.042667pt;}
.ls41{letter-spacing:-0.038400pt;}
.ls23{letter-spacing:-0.036800pt;}
.ls60{letter-spacing:-0.033600pt;}
.ls53{letter-spacing:-0.024533pt;}
.ls71{letter-spacing:-0.018400pt;}
.ls61{letter-spacing:-0.014400pt;}
.ls27{letter-spacing:-0.012267pt;}
.lsb1{letter-spacing:-0.011733pt;}
.ls8{letter-spacing:-0.011200pt;}
.ls1d{letter-spacing:-0.010667pt;}
.ls4a{letter-spacing:-0.009600pt;}
.ls9a{letter-spacing:-0.006667pt;}
.ls20{letter-spacing:-0.006133pt;}
.lsab{letter-spacing:-0.005867pt;}
.ls9{letter-spacing:-0.005600pt;}
.ls14{letter-spacing:-0.005333pt;}
.ls31{letter-spacing:-0.004800pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.002667pt;}
.ls2{letter-spacing:0.003920pt;}
.ls9d{letter-spacing:0.004107pt;}
.ls9e{letter-spacing:0.004267pt;}
.ls33{letter-spacing:0.004800pt;}
.ls7{letter-spacing:0.005067pt;}
.lsa{letter-spacing:0.005333pt;}
.ls1{letter-spacing:0.005600pt;}
.lsa4{letter-spacing:0.005867pt;}
.ls5b{letter-spacing:0.006133pt;}
.ls1a{letter-spacing:0.006667pt;}
.lsaa{letter-spacing:0.007467pt;}
.lsa3{letter-spacing:0.008213pt;}
.ls8b{letter-spacing:0.009600pt;}
.ls17{letter-spacing:0.010667pt;}
.ls35{letter-spacing:0.012267pt;}
.ls83{letter-spacing:0.016000pt;}
.ls24{letter-spacing:0.018400pt;}
.ls59{letter-spacing:0.024533pt;}
.ls98{letter-spacing:0.033600pt;}
.ls8a{letter-spacing:0.042933pt;}
.ls69{letter-spacing:0.047840pt;}
.ls68{letter-spacing:0.052800pt;}
.ls67{letter-spacing:0.061333pt;}
.ls74{letter-spacing:0.062400pt;}
.ls6a{letter-spacing:0.067467pt;}
.ls4b{letter-spacing:0.069333pt;}
.ls75{letter-spacing:0.075747pt;}
.ls95{letter-spacing:0.079733pt;}
.lsb5{letter-spacing:0.093867pt;}
.ls9c{letter-spacing:0.098133pt;}
.ls76{letter-spacing:0.110400pt;}
.ls73{letter-spacing:0.116533pt;}
.ls2c{letter-spacing:0.134933pt;}
.ls16{letter-spacing:0.154667pt;}
.ls58{letter-spacing:0.159467pt;}
.ls96{letter-spacing:0.171733pt;}
.ls1c{letter-spacing:0.196267pt;}
.ls30{letter-spacing:0.208533pt;}
.ls99{letter-spacing:0.220800pt;}
.ls82{letter-spacing:0.257600pt;}
.ls89{letter-spacing:0.325067pt;}
.ls43{letter-spacing:0.349600pt;}
.ls6d{letter-spacing:0.380267pt;}
.ls1b{letter-spacing:0.410933pt;}
.lsa9{letter-spacing:0.422400pt;}
.lsa6{letter-spacing:0.427093pt;}
.lsa7{letter-spacing:0.428267pt;}
.lsa8{letter-spacing:0.431200pt;}
.lsa5{letter-spacing:0.431467pt;}
.ls7b{letter-spacing:0.453867pt;}
.ls15{letter-spacing:0.592000pt;}
.ls5a{letter-spacing:0.693067pt;}
.ls66{letter-spacing:0.705333pt;}
.lsa2{letter-spacing:0.721600pt;}
.lsa0{letter-spacing:0.722773pt;}
.lsa1{letter-spacing:0.727467pt;}
.ls9f{letter-spacing:0.731733pt;}
.ls50{letter-spacing:0.741333pt;}
.ls92{letter-spacing:0.742133pt;}
.ls19{letter-spacing:0.826667pt;}
.ls18{letter-spacing:1.125333pt;}
.ls2f{letter-spacing:1.815467pt;}
.ls3{letter-spacing:3.061333pt;}
.ls6{letter-spacing:21.378645pt;}
.ls5{letter-spacing:23.037333pt;}
.ls0{letter-spacing:231.675200pt;}
.ls22{letter-spacing:538.931733pt;}
.ws19{word-spacing:-16.673333pt;}
.ws2{word-spacing:-16.394667pt;}
.ws166{word-spacing:-15.449867pt;}
.ws135{word-spacing:-15.394667pt;}
.ws33{word-spacing:-15.333333pt;}
.ws6b{word-spacing:-15.327200pt;}
.wsb6{word-spacing:-15.321067pt;}
.ws18f{word-spacing:-15.192267pt;}
.ws8f{word-spacing:-15.130933pt;}
.wsb5{word-spacing:-14.848800pt;}
.wse7{word-spacing:-14.830400pt;}
.ws22e{word-spacing:-14.666667pt;}
.ws233{word-spacing:-14.654933pt;}
.ws116{word-spacing:-13.338667pt;}
.ws190{word-spacing:-13.328000pt;}
.ws6c{word-spacing:-11.995200pt;}
.ws91{word-spacing:-11.961600pt;}
.ws93{word-spacing:-11.956800pt;}
.ws92{word-spacing:-11.952000pt;}
.ws0{word-spacing:-11.842320pt;}
.ws1{word-spacing:-11.838400pt;}
.ws90{word-spacing:-11.678400pt;}
.ws232{word-spacing:-10.989440pt;}
.ws236{word-spacing:-10.697867pt;}
.ws235{word-spacing:-10.693760pt;}
.ws234{word-spacing:-10.274880pt;}
.ws22f{word-spacing:-10.270773pt;}
.ws22d{word-spacing:-10.266667pt;}
.ws168{word-spacing:-10.228800pt;}
.ws249{word-spacing:-10.122933pt;}
.ws231{word-spacing:-10.061333pt;}
.ws167{word-spacing:-10.042413pt;}
.ws136{word-spacing:-10.014507pt;}
.ws230{word-spacing:-9.970987pt;}
.ws4f{word-spacing:-9.966667pt;}
.ws1aa{word-spacing:-9.914840pt;}
.ws237{word-spacing:-9.736907pt;}
.ws191{word-spacing:-9.699560pt;}
.ws18e{word-spacing:-8.666667pt;}
.ws169{word-spacing:-7.145333pt;}
.ws1a6{word-spacing:-3.864000pt;}
.wsaa{word-spacing:-3.845600pt;}
.ws7a{word-spacing:-3.839467pt;}
.ws30{word-spacing:-3.833333pt;}
.ws35{word-spacing:-3.827200pt;}
.wsc3{word-spacing:-3.808800pt;}
.ws57{word-spacing:-3.753600pt;}
.ws1a7{word-spacing:-3.722933pt;}
.ws12b{word-spacing:-3.710667pt;}
.ws86{word-spacing:-3.686133pt;}
.ws23d{word-spacing:-3.678400pt;}
.ws24a{word-spacing:-3.672533pt;}
.ws23c{word-spacing:-3.666667pt;}
.ws247{word-spacing:-3.660800pt;}
.ws103{word-spacing:-3.600267pt;}
.ws15d{word-spacing:-3.575733pt;}
.ws19a{word-spacing:-3.538933pt;}
.ws222{word-spacing:-3.532800pt;}
.wse2{word-spacing:-3.526667pt;}
.ws229{word-spacing:-3.520533pt;}
.ws1b3{word-spacing:-3.385600pt;}
.ws19b{word-spacing:-3.373333pt;}
.ws144{word-spacing:-3.367200pt;}
.wse4{word-spacing:-3.361067pt;}
.ws21c{word-spacing:-3.348800pt;}
.ws9a{word-spacing:-3.342667pt;}
.ws18c{word-spacing:-3.336533pt;}
.wsc{word-spacing:-3.333333pt;}
.ws7{word-spacing:-3.328000pt;}
.wsd3{word-spacing:-3.322667pt;}
.ws15f{word-spacing:-3.318133pt;}
.ws214{word-spacing:-3.299733pt;}
.ws1d4{word-spacing:-3.287467pt;}
.ws1cc{word-spacing:-3.226133pt;}
.ws161{word-spacing:-3.220000pt;}
.ws119{word-spacing:-3.201600pt;}
.ws171{word-spacing:-3.042133pt;}
.ws16a{word-spacing:-3.017600pt;}
.ws1ab{word-spacing:-3.011467pt;}
.ws14d{word-spacing:-3.000000pt;}
.ws68{word-spacing:-2.995200pt;}
.wsb3{word-spacing:-2.990400pt;}
.ws7b{word-spacing:-2.986933pt;}
.ws6f{word-spacing:-2.974667pt;}
.ws36{word-spacing:-2.968533pt;}
.ws1c9{word-spacing:-2.919467pt;}
.ws37{word-spacing:-2.894933pt;}
.wsad{word-spacing:-2.851200pt;}
.ws104{word-spacing:-2.845867pt;}
.ws1f{word-spacing:-2.842667pt;}
.ws157{word-spacing:-2.810667pt;}
.wsb0{word-spacing:-2.721600pt;}
.ws129{word-spacing:-2.717067pt;}
.ws1fc{word-spacing:-2.692533pt;}
.ws1b1{word-spacing:-2.674133pt;}
.ws1a{word-spacing:-2.650667pt;}
.wseb{word-spacing:-2.625067pt;}
.wsf9{word-spacing:-2.612800pt;}
.ws1bd{word-spacing:-2.606667pt;}
.ws22c{word-spacing:-2.600533pt;}
.ws174{word-spacing:-2.563733pt;}
.wsf7{word-spacing:-2.520800pt;}
.ws228{word-spacing:-2.514667pt;}
.ws124{word-spacing:-2.508533pt;}
.ws67{word-spacing:-2.500800pt;}
.ws41{word-spacing:-2.496267pt;}
.ws61{word-spacing:-2.490133pt;}
.wsfb{word-spacing:-2.486400pt;}
.ws23{word-spacing:-2.464000pt;}
.ws117{word-spacing:-2.441067pt;}
.wsd2{word-spacing:-2.432000pt;}
.wsd0{word-spacing:-2.416000pt;}
.wsaf{word-spacing:-2.409600pt;}
.wsae{word-spacing:-2.404800pt;}
.ws12{word-spacing:-2.384000pt;}
.ws156{word-spacing:-2.373600pt;}
.ws106{word-spacing:-2.367467pt;}
.ws15b{word-spacing:-2.355200pt;}
.ws198{word-spacing:-2.336800pt;}
.ws199{word-spacing:-2.330667pt;}
.ws1fa{word-spacing:-2.324533pt;}
.ws71{word-spacing:-2.318400pt;}
.ws110{word-spacing:-2.304000pt;}
.wsdc{word-spacing:-2.287733pt;}
.ws3d{word-spacing:-2.269333pt;}
.wsbd{word-spacing:-2.244800pt;}
.ws23a{word-spacing:-2.241067pt;}
.wsbe{word-spacing:-2.238667pt;}
.wsf3{word-spacing:-2.220267pt;}
.ws219{word-spacing:-2.189600pt;}
.ws197{word-spacing:-2.158933pt;}
.ws54{word-spacing:-2.152800pt;}
.wsf0{word-spacing:-2.146667pt;}
.ws172{word-spacing:-2.128000pt;}
.ws1fd{word-spacing:-2.116000pt;}
.ws21f{word-spacing:-2.109867pt;}
.wsf6{word-spacing:-2.096000pt;}
.ws34{word-spacing:-2.091467pt;}
.wsdf{word-spacing:-2.066933pt;}
.ws1b5{word-spacing:-2.054667pt;}
.ws1b4{word-spacing:-2.048533pt;}
.ws21a{word-spacing:-2.030133pt;}
.ws1ba{word-spacing:-2.024000pt;}
.ws11a{word-spacing:-2.011733pt;}
.wsa3{word-spacing:-2.000000pt;}
.ws158{word-spacing:-1.999467pt;}
.ws240{word-spacing:-1.982933pt;}
.wsf4{word-spacing:-1.962667pt;}
.ws215{word-spacing:-1.932000pt;}
.ws12d{word-spacing:-1.895200pt;}
.ws42{word-spacing:-1.858400pt;}
.ws164{word-spacing:-1.840000pt;}
.ws60{word-spacing:-1.766400pt;}
.ws47{word-spacing:-1.698933pt;}
.ws18a{word-spacing:-1.674400pt;}
.ws22a{word-spacing:-1.668267pt;}
.ws46{word-spacing:-1.656000pt;}
.ws1e4{word-spacing:-1.649867pt;}
.wsc0{word-spacing:-1.643733pt;}
.ws210{word-spacing:-1.641600pt;}
.ws1ae{word-spacing:-1.619200pt;}
.wsa4{word-spacing:-1.584000pt;}
.ws20b{word-spacing:-1.570133pt;}
.ws11{word-spacing:-1.546667pt;}
.wsfc{word-spacing:-1.536000pt;}
.ws1d9{word-spacing:-1.527200pt;}
.ws19e{word-spacing:-1.521067pt;}
.ws19d{word-spacing:-1.508800pt;}
.ws38{word-spacing:-1.496533pt;}
.ws95{word-spacing:-1.490400pt;}
.ws204{word-spacing:-1.478133pt;}
.ws1b{word-spacing:-1.466667pt;}
.wsc7{word-spacing:-1.459733pt;}
.ws31{word-spacing:-1.422933pt;}
.ws188{word-spacing:-1.398400pt;}
.ws1af{word-spacing:-1.380000pt;}
.ws1d7{word-spacing:-1.373867pt;}
.wse{word-spacing:-1.333333pt;}
.wsdd{word-spacing:-1.294133pt;}
.ws1a5{word-spacing:-1.275733pt;}
.wsd6{word-spacing:-1.274667pt;}
.ws1ad{word-spacing:-1.251200pt;}
.ws3c{word-spacing:-1.245067pt;}
.wsef{word-spacing:-1.238933pt;}
.ws1c8{word-spacing:-1.214400pt;}
.ws143{word-spacing:-1.189867pt;}
.ws56{word-spacing:-1.165333pt;}
.ws115{word-spacing:-1.161600pt;}
.wse5{word-spacing:-1.146933pt;}
.wsc2{word-spacing:-1.140800pt;}
.ws24{word-spacing:-1.130667pt;}
.ws109{word-spacing:-1.091733pt;}
.ws59{word-spacing:-1.042667pt;}
.ws19c{word-spacing:-0.987467pt;}
.ws6d{word-spacing:-0.981333pt;}
.ws6e{word-spacing:-0.975200pt;}
.wsa2{word-spacing:-0.965333pt;}
.wsa5{word-spacing:-0.960000pt;}
.ws82{word-spacing:-0.920000pt;}
.ws225{word-spacing:-0.913867pt;}
.ws1a4{word-spacing:-0.901600pt;}
.ws16e{word-spacing:-0.895467pt;}
.ws137{word-spacing:-0.889333pt;}
.ws13a{word-spacing:-0.858667pt;}
.ws209{word-spacing:-0.821867pt;}
.ws1d0{word-spacing:-0.809600pt;}
.ws58{word-spacing:-0.803467pt;}
.ws1ce{word-spacing:-0.785067pt;}
.ws9b{word-spacing:-0.778933pt;}
.ws1cb{word-spacing:-0.748267pt;}
.ws22{word-spacing:-0.704000pt;}
.ws70{word-spacing:-0.699200pt;}
.ws155{word-spacing:-0.686933pt;}
.ws2c{word-spacing:-0.668533pt;}
.wsb8{word-spacing:-0.662400pt;}
.ws17b{word-spacing:-0.657600pt;}
.ws10e{word-spacing:-0.638400pt;}
.ws160{word-spacing:-0.631733pt;}
.wse1{word-spacing:-0.564267pt;}
.ws1e2{word-spacing:-0.558133pt;}
.ws1e3{word-spacing:-0.552000pt;}
.ws13e{word-spacing:-0.521333pt;}
.ws39{word-spacing:-0.496800pt;}
.ws126{word-spacing:-0.490667pt;}
.ws196{word-spacing:-0.466133pt;}
.ws81{word-spacing:-0.453867pt;}
.ws12f{word-spacing:-0.427200pt;}
.ws1c{word-spacing:-0.400000pt;}
.ws1a1{word-spacing:-0.392533pt;}
.wsf8{word-spacing:-0.325067pt;}
.ws1d8{word-spacing:-0.312800pt;}
.ws130{word-spacing:-0.283200pt;}
.wsee{word-spacing:-0.269867pt;}
.ws162{word-spacing:-0.220800pt;}
.ws24b{word-spacing:-0.187733pt;}
.ws112{word-spacing:-0.187200pt;}
.ws165{word-spacing:-0.182400pt;}
.ws113{word-spacing:-0.172800pt;}
.ws111{word-spacing:-0.153600pt;}
.ws100{word-spacing:-0.141067pt;}
.ws15e{word-spacing:-0.116533pt;}
.ws9c{word-spacing:-0.098133pt;}
.ws1e6{word-spacing:-0.076800pt;}
.ws179{word-spacing:-0.062400pt;}
.ws5{word-spacing:-0.022400pt;}
.ws6{word-spacing:-0.011200pt;}
.ws1a9{word-spacing:-0.004800pt;}
.ws3{word-spacing:0.000000pt;}
.wsb2{word-spacing:0.004800pt;}
.ws26{word-spacing:0.005333pt;}
.ws239{word-spacing:0.005867pt;}
.ws2f{word-spacing:0.006133pt;}
.ws4{word-spacing:0.009067pt;}
.wscd{word-spacing:0.009600pt;}
.ws1d3{word-spacing:0.010667pt;}
.ws1db{word-spacing:0.012267pt;}
.ws21b{word-spacing:0.024533pt;}
.wsf5{word-spacing:0.026667pt;}
.wsc8{word-spacing:0.043200pt;}
.ws53{word-spacing:0.049067pt;}
.ws88{word-spacing:0.067200pt;}
.ws89{word-spacing:0.072000pt;}
.ws7d{word-spacing:0.165600pt;}
.ws187{word-spacing:0.171733pt;}
.ws10b{word-spacing:0.196267pt;}
.ws15a{word-spacing:0.202400pt;}
.ws10a{word-spacing:0.208533pt;}
.ws1c0{word-spacing:0.211200pt;}
.ws193{word-spacing:0.213333pt;}
.ws221{word-spacing:0.220800pt;}
.ws21{word-spacing:0.224000pt;}
.ws1cd{word-spacing:0.226933pt;}
.ws192{word-spacing:0.234667pt;}
.ws238{word-spacing:0.239200pt;}
.wsb{word-spacing:0.256000pt;}
.wsfa{word-spacing:0.268800pt;}
.ws1e7{word-spacing:0.297600pt;}
.wsa{word-spacing:0.298667pt;}
.ws22b{word-spacing:0.318933pt;}
.ws134{word-spacing:0.321600pt;}
.ws1a3{word-spacing:0.331200pt;}
.ws101{word-spacing:0.355733pt;}
.ws87{word-spacing:0.364800pt;}
.ws7e{word-spacing:0.374133pt;}
.ws1e8{word-spacing:0.410933pt;}
.ws186{word-spacing:0.423200pt;}
.ws73{word-spacing:0.429333pt;}
.ws108{word-spacing:0.435467pt;}
.ws194{word-spacing:0.437333pt;}
.wsc9{word-spacing:0.451200pt;}
.ws97{word-spacing:0.453867pt;}
.ws20{word-spacing:0.458667pt;}
.wsd1{word-spacing:0.464000pt;}
.ws1e5{word-spacing:0.502933pt;}
.ws1c1{word-spacing:0.515200pt;}
.wsca{word-spacing:0.532800pt;}
.ws140{word-spacing:0.539733pt;}
.ws2d{word-spacing:0.545867pt;}
.ws133{word-spacing:0.547200pt;}
.ws176{word-spacing:0.552000pt;}
.wsa6{word-spacing:0.560000pt;}
.ws1f1{word-spacing:0.565333pt;}
.ws6a{word-spacing:0.609600pt;}
.ws128{word-spacing:0.613333pt;}
.wsd4{word-spacing:0.618667pt;}
.ws1d2{word-spacing:0.629333pt;}
.ws217{word-spacing:0.644000pt;}
.ws17c{word-spacing:0.691200pt;}
.ws246{word-spacing:0.692267pt;}
.wsa1{word-spacing:0.704000pt;}
.ws173{word-spacing:0.705333pt;}
.ws10d{word-spacing:0.710400pt;}
.wsc6{word-spacing:0.711467pt;}
.ws20c{word-spacing:0.717600pt;}
.wsed{word-spacing:0.729867pt;}
.ws9d{word-spacing:0.736000pt;}
.ws202{word-spacing:0.772800pt;}
.ws220{word-spacing:0.785067pt;}
.ws127{word-spacing:0.791200pt;}
.ws4b{word-spacing:0.797333pt;}
.ws1dc{word-spacing:0.805333pt;}
.wsd7{word-spacing:0.810667pt;}
.ws206{word-spacing:0.815733pt;}
.ws153{word-spacing:0.840267pt;}
.ws74{word-spacing:0.877067pt;}
.ws1b2{word-spacing:0.895467pt;}
.ws1b6{word-spacing:0.901600pt;}
.ws45{word-spacing:0.913867pt;}
.ws181{word-spacing:0.926133pt;}
.wsa8{word-spacing:0.981333pt;}
.ws118{word-spacing:1.005867pt;}
.ws32{word-spacing:1.030400pt;}
.ws11d{word-spacing:1.067200pt;}
.wsdb{word-spacing:1.073333pt;}
.ws1a0{word-spacing:1.116267pt;}
.ws227{word-spacing:1.128533pt;}
.ws16c{word-spacing:1.140800pt;}
.ws96{word-spacing:1.165333pt;}
.ws183{word-spacing:1.202133pt;}
.wse8{word-spacing:1.208267pt;}
.ws20a{word-spacing:1.220533pt;}
.ws216{word-spacing:1.232800pt;}
.ws1bc{word-spacing:1.251200pt;}
.wscc{word-spacing:1.262400pt;}
.wsf2{word-spacing:1.281867pt;}
.ws1d{word-spacing:1.296000pt;}
.ws149{word-spacing:1.300800pt;}
.ws17f{word-spacing:1.306400pt;}
.ws180{word-spacing:1.312533pt;}
.ws18d{word-spacing:1.324800pt;}
.wsda{word-spacing:1.337067pt;}
.ws14b{word-spacing:1.353600pt;}
.ws1f3{word-spacing:1.354667pt;}
.ws241{word-spacing:1.372800pt;}
.ws178{word-spacing:1.377600pt;}
.ws1e{word-spacing:1.392000pt;}
.ws66{word-spacing:1.404533pt;}
.ws16{word-spacing:1.408000pt;}
.ws8e{word-spacing:1.440000pt;}
.wsea{word-spacing:1.441333pt;}
.wsc1{word-spacing:1.453600pt;}
.ws8d{word-spacing:1.454400pt;}
.wsb4{word-spacing:1.459200pt;}
.ws10c{word-spacing:1.459733pt;}
.ws1b8{word-spacing:1.465867pt;}
.ws8c{word-spacing:1.473600pt;}
.ws11f{word-spacing:1.504000pt;}
.ws120{word-spacing:1.509333pt;}
.wsbc{word-spacing:1.514933pt;}
.ws1b9{word-spacing:1.527200pt;}
.ws20f{word-spacing:1.555200pt;}
.ws7c{word-spacing:1.564000pt;}
.ws13{word-spacing:1.594667pt;}
.ws69{word-spacing:1.689600pt;}
.ws1ef{word-spacing:1.698933pt;}
.ws80{word-spacing:1.711200pt;}
.wsa7{word-spacing:1.717333pt;}
.ws44{word-spacing:1.723467pt;}
.ws28{word-spacing:1.729600pt;}
.ws1a8{word-spacing:1.735733pt;}
.ws7f{word-spacing:1.741867pt;}
.ws14f{word-spacing:1.742400pt;}
.ws11c{word-spacing:1.760267pt;}
.ws195{word-spacing:1.784800pt;}
.ws185{word-spacing:1.827733pt;}
.ws9{word-spacing:1.834667pt;}
.ws85{word-spacing:1.846133pt;}
.ws2e{word-spacing:1.858400pt;}
.ws213{word-spacing:1.880000pt;}
.wsd5{word-spacing:1.882667pt;}
.ws12c{word-spacing:1.895200pt;}
.ws145{word-spacing:1.925867pt;}
.wsa9{word-spacing:1.932000pt;}
.ws207{word-spacing:1.987200pt;}
.ws170{word-spacing:1.999467pt;}
.wsfd{word-spacing:2.068800pt;}
.ws1ff{word-spacing:2.079200pt;}
.ws78{word-spacing:2.085333pt;}
.ws208{word-spacing:2.109867pt;}
.ws1fe{word-spacing:2.128267pt;}
.wsa0{word-spacing:2.144000pt;}
.ws8b{word-spacing:2.145600pt;}
.ws1b0{word-spacing:2.183467pt;}
.ws4d{word-spacing:2.201867pt;}
.ws175{word-spacing:2.214133pt;}
.ws5e{word-spacing:2.220267pt;}
.wsd9{word-spacing:2.298667pt;}
.ws189{word-spacing:2.306133pt;}
.ws150{word-spacing:2.308800pt;}
.ws1b7{word-spacing:2.324533pt;}
.ws15c{word-spacing:2.349067pt;}
.ws23b{word-spacing:2.364267pt;}
.ws1be{word-spacing:2.367467pt;}
.ws1f4{word-spacing:2.373333pt;}
.wsec{word-spacing:2.379733pt;}
.ws3a{word-spacing:2.422667pt;}
.ws1da{word-spacing:2.428800pt;}
.ws114{word-spacing:2.452800pt;}
.ws8a{word-spacing:2.486400pt;}
.ws1e1{word-spacing:2.490133pt;}
.ws63{word-spacing:2.496267pt;}
.ws21d{word-spacing:2.520800pt;}
.wsff{word-spacing:2.526933pt;}
.ws27{word-spacing:2.539200pt;}
.ws16b{word-spacing:2.588267pt;}
.ws224{word-spacing:2.600533pt;}
.ws1dd{word-spacing:2.612800pt;}
.ws1c7{word-spacing:2.661867pt;}
.ws16f{word-spacing:2.668000pt;}
.ws17e{word-spacing:2.674133pt;}
.wsce{word-spacing:2.709333pt;}
.ws55{word-spacing:2.717067pt;}
.ws11e{word-spacing:2.752000pt;}
.wsf1{word-spacing:2.784533pt;}
.ws25{word-spacing:2.794667pt;}
.ws14a{word-spacing:2.827200pt;}
.ws1f2{word-spacing:2.864000pt;}
.ws177{word-spacing:2.875200pt;}
.ws1ec{word-spacing:2.888800pt;}
.ws21e{word-spacing:2.913333pt;}
.ws11b{word-spacing:2.931733pt;}
.ws83{word-spacing:2.944000pt;}
.ws159{word-spacing:2.950133pt;}
.ws75{word-spacing:2.956267pt;}
.wscb{word-spacing:2.985600pt;}
.ws1eb{word-spacing:2.986933pt;}
.ws1fb{word-spacing:3.005333pt;}
.wsd8{word-spacing:3.013333pt;}
.wsf{word-spacing:3.029333pt;}
.ws14{word-spacing:3.034667pt;}
.ws5f{word-spacing:3.066667pt;}
.ws1e0{word-spacing:3.072800pt;}
.ws5d{word-spacing:3.097333pt;}
.ws10{word-spacing:3.098667pt;}
.wsb1{word-spacing:3.110400pt;}
.ws1ee{word-spacing:3.115733pt;}
.ws125{word-spacing:3.207733pt;}
.wsbb{word-spacing:3.226133pt;}
.wse0{word-spacing:3.262933pt;}
.ws1cf{word-spacing:3.275200pt;}
.wscf{word-spacing:3.322667pt;}
.ws1d1{word-spacing:3.428533pt;}
.wsb9{word-spacing:3.440800pt;}
.ws84{word-spacing:3.446933pt;}
.ws62{word-spacing:3.459200pt;}
.ws43{word-spacing:3.465333pt;}
.ws14c{word-spacing:3.513600pt;}
.ws17a{word-spacing:3.532800pt;}
.ws13f{word-spacing:3.569600pt;}
.ws122{word-spacing:3.655467pt;}
.ws12e{word-spacing:3.691200pt;}
.ws147{word-spacing:3.700800pt;}
.ws200{word-spacing:3.710667pt;}
.ws50{word-spacing:3.722933pt;}
.ws107{word-spacing:3.747467pt;}
.ws223{word-spacing:3.778133pt;}
.ws4e{word-spacing:3.784267pt;}
.ws1f5{word-spacing:3.786667pt;}
.ws1c5{word-spacing:3.821067pt;}
.ws1f8{word-spacing:3.839467pt;}
.ws18b{word-spacing:3.864000pt;}
.ws1ea{word-spacing:3.913067pt;}
.ws131{word-spacing:3.931200pt;}
.ws79{word-spacing:3.956000pt;}
.ws1f6{word-spacing:3.980533pt;}
.ws9e{word-spacing:4.035733pt;}
.ws76{word-spacing:4.041867pt;}
.ws248{word-spacing:4.042133pt;}
.ws132{word-spacing:4.046400pt;}
.ws77{word-spacing:4.048000pt;}
.ws211{word-spacing:4.056000pt;}
.ws1df{word-spacing:4.060267pt;}
.ws141{word-spacing:4.066400pt;}
.ws99{word-spacing:4.090933pt;}
.ws98{word-spacing:4.097067pt;}
.ws20e{word-spacing:4.152267pt;}
.ws52{word-spacing:4.170667pt;}
.ws51{word-spacing:4.176800pt;}
.ws13c{word-spacing:4.189067pt;}
.ws13b{word-spacing:4.195200pt;}
.ws1d5{word-spacing:4.201333pt;}
.ws138{word-spacing:4.213600pt;}
.ws5a{word-spacing:4.281067pt;}
.ws5b{word-spacing:4.287200pt;}
.ws184{word-spacing:4.299467pt;}
.ws1ca{word-spacing:4.305600pt;}
.ws4c{word-spacing:4.311733pt;}
.ws1ac{word-spacing:4.348533pt;}
.ws121{word-spacing:4.354667pt;}
.ws2a{word-spacing:4.391467pt;}
.ws154{word-spacing:4.465067pt;}
.wsc4{word-spacing:4.471200pt;}
.ws1bb{word-spacing:4.477333pt;}
.ws12a{word-spacing:4.495733pt;}
.ws203{word-spacing:4.508000pt;}
.ws1f7{word-spacing:4.526400pt;}
.ws182{word-spacing:4.550933pt;}
.ws212{word-spacing:4.579200pt;}
.ws3f{word-spacing:4.692000pt;}
.ws14e{word-spacing:4.718400pt;}
.wsc5{word-spacing:4.722667pt;}
.ws1d6{word-spacing:4.747200pt;}
.ws1f9{word-spacing:4.796267pt;}
.ws94{word-spacing:4.814667pt;}
.ws205{word-spacing:4.826933pt;}
.ws139{word-spacing:4.857600pt;}
.ws49{word-spacing:4.888267pt;}
.ws48{word-spacing:4.894400pt;}
.ws244{word-spacing:4.922133pt;}
.ws245{word-spacing:4.928000pt;}
.ws1a2{word-spacing:4.943467pt;}
.ws1ed{word-spacing:4.961867pt;}
.wsd{word-spacing:4.970667pt;}
.ws4a{word-spacing:4.974133pt;}
.ws13d{word-spacing:5.029333pt;}
.ws1c4{word-spacing:5.145867pt;}
.ws123{word-spacing:5.152000pt;}
.wsfe{word-spacing:5.164267pt;}
.ws226{word-spacing:5.329867pt;}
.ws15{word-spacing:5.370667pt;}
.ws10f{word-spacing:5.390400pt;}
.ws218{word-spacing:5.391200pt;}
.wsb7{word-spacing:5.464800pt;}
.ws64{word-spacing:5.489333pt;}
.wse9{word-spacing:5.501600pt;}
.ws40{word-spacing:5.569067pt;}
.ws201{word-spacing:5.759200pt;}
.ws9f{word-spacing:5.840000pt;}
.ws65{word-spacing:5.863467pt;}
.ws146{word-spacing:5.992267pt;}
.ws148{word-spacing:6.000000pt;}
.ws17d{word-spacing:6.004800pt;}
.ws72{word-spacing:6.090400pt;}
.ws142{word-spacing:6.102667pt;}
.ws1de{word-spacing:6.108800pt;}
.ws1c6{word-spacing:6.151733pt;}
.ws163{word-spacing:6.164000pt;}
.ws1c2{word-spacing:6.194667pt;}
.ws1c3{word-spacing:6.200800pt;}
.ws2b{word-spacing:6.206933pt;}
.ws20d{word-spacing:6.268267pt;}
.ws3b{word-spacing:6.360267pt;}
.ws102{word-spacing:6.538133pt;}
.ws8{word-spacing:6.666667pt;}
.ws17{word-spacing:6.672000pt;}
.ws242{word-spacing:6.758400pt;}
.ws243{word-spacing:6.764267pt;}
.wsde{word-spacing:6.777333pt;}
.wse6{word-spacing:6.826400pt;}
.ws105{word-spacing:6.838667pt;}
.wsba{word-spacing:6.863200pt;}
.ws152{word-spacing:6.979733pt;}
.wsab{word-spacing:7.047200pt;}
.wse3{word-spacing:7.065600pt;}
.ws1f0{word-spacing:7.071733pt;}
.ws23e{word-spacing:7.333333pt;}
.ws23f{word-spacing:7.339200pt;}
.ws1e9{word-spacing:7.372267pt;}
.ws151{word-spacing:7.501067pt;}
.wsbf{word-spacing:7.593067pt;}
.ws19f{word-spacing:7.617600pt;}
.ws5c{word-spacing:7.629867pt;}
.ws3e{word-spacing:7.666667pt;}
.ws29{word-spacing:7.672800pt;}
.ws16d{word-spacing:7.678933pt;}
.ws1bf{word-spacing:9.345600pt;}
.wsac{word-spacing:12.000000pt;}
.ws18{word-spacing:408.300800pt;}
._14{margin-left:-18.526667pt;}
._a{margin-left:-17.529067pt;}
._7{margin-left:-16.575733pt;}
._10{margin-left:-15.033600pt;}
._e{margin-left:-13.324800pt;}
._4{margin-left:-12.170667pt;}
._f{margin-left:-7.887467pt;}
._2{margin-left:-6.224267pt;}
._5{margin-left:-5.237333pt;}
._8{margin-left:-3.957333pt;}
._3{margin-left:-2.640000pt;}
._0{margin-left:-1.440000pt;}
._1{width:1.498933pt;}
._13{width:2.588000pt;}
._9{width:3.530133pt;}
._c{width:5.213333pt;}
._6{width:6.634667pt;}
._12{width:8.313600pt;}
._d{width:9.518400pt;}
._11{width:10.737600pt;}
._b{width:14.505600pt;}
.fs3{font-size:23.037333pt;}
.fs10{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fs8{font-size:39.200000pt;}
.fse{font-size:39.866667pt;}
.fs1{font-size:40.000000pt;}
.fs12{font-size:41.066667pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fsf{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fsa{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs11{font-size:58.666667pt;}
.fsd{font-size:61.333333pt;}
.fsc{font-size:66.666667pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:82.133333pt;}
.fs4{font-size:88.000000pt;}
.y7{bottom:-0.002400pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.046933pt;}
.y11f{bottom:189.359200pt;}
.y1af{bottom:189.359600pt;}
.y227{bottom:189.359867pt;}
.y13d{bottom:189.360400pt;}
.y96{bottom:189.360933pt;}
.yda{bottom:189.361200pt;}
.yb2{bottom:189.361467pt;}
.y19a{bottom:189.362000pt;}
.y1d7{bottom:189.362267pt;}
.y26c{bottom:191.172400pt;}
.y2c1{bottom:191.555333pt;}
.y2a{bottom:191.556533pt;}
.y1fa{bottom:195.834400pt;}
.y2{bottom:199.415333pt;}
.y4f{bottom:199.984200pt;}
.y74{bottom:201.045867pt;}
.y29e{bottom:203.734667pt;}
.y1ae{bottom:204.026000pt;}
.y226{bottom:204.026267pt;}
.y13c{bottom:204.026800pt;}
.y95{bottom:204.027333pt;}
.yd9{bottom:204.027600pt;}
.yb1{bottom:204.027867pt;}
.y199{bottom:204.028400pt;}
.y1d6{bottom:204.028667pt;}
.y2bf{bottom:204.389600pt;}
.y26b{bottom:209.839200pt;}
.y4e{bottom:218.651000pt;}
.y225{bottom:218.692667pt;}
.y13b{bottom:218.693200pt;}
.y94{bottom:218.693733pt;}
.yd8{bottom:218.694000pt;}
.yb0{bottom:218.694267pt;}
.y198{bottom:218.694800pt;}
.y1d5{bottom:218.695067pt;}
.y73{bottom:219.712667pt;}
.y2be{bottom:222.389200pt;}
.y29d{bottom:222.401467pt;}
.y28{bottom:225.718000pt;}
.y1f9{bottom:225.840200pt;}
.y26a{bottom:228.506000pt;}
.y13a{bottom:233.359600pt;}
.y93{bottom:233.360133pt;}
.yd7{bottom:233.360400pt;}
.yaf{bottom:233.360667pt;}
.y197{bottom:233.361200pt;}
.y1d4{bottom:233.361467pt;}
.y4d{bottom:237.317800pt;}
.y2bd{bottom:240.389600pt;}
.y29c{bottom:241.068267pt;}
.y27{bottom:242.384667pt;}
.y1f8{bottom:244.507000pt;}
.y216{bottom:246.560533pt;}
.y269{bottom:247.172800pt;}
.y139{bottom:248.026000pt;}
.y92{bottom:248.026533pt;}
.yd6{bottom:248.026800pt;}
.yae{bottom:248.027067pt;}
.y196{bottom:248.027600pt;}
.y1d3{bottom:248.027867pt;}
.y224{bottom:253.839067pt;}
.y72{bottom:256.512667pt;}
.y2bc{bottom:258.388400pt;}
.y29b{bottom:259.735067pt;}
.y258{bottom:261.848000pt;}
.y91{bottom:262.692933pt;}
.yd5{bottom:262.693200pt;}
.yad{bottom:262.693467pt;}
.y195{bottom:262.694000pt;}
.y1d2{bottom:262.694267pt;}
.y1ad{bottom:263.167000pt;}
.y1f7{bottom:263.173800pt;}
.y215{bottom:265.227333pt;}
.y268{bottom:265.839600pt;}
.y242{bottom:267.178000pt;}
.y4c{bottom:267.323600pt;}
.y11e{bottom:268.567400pt;}
.y223{bottom:272.505867pt;}
.y26{bottom:274.384667pt;}
.y2bb{bottom:276.388800pt;}
.y90{bottom:277.359333pt;}
.yd4{bottom:277.359600pt;}
.yac{bottom:277.359867pt;}
.y194{bottom:277.360400pt;}
.y1d1{bottom:277.360667pt;}
.y29a{bottom:278.401867pt;}
.y257{bottom:280.514800pt;}
.y1ac{bottom:281.833800pt;}
.y1f6{bottom:281.840600pt;}
.y241{bottom:283.844667pt;}
.y267{bottom:284.506400pt;}
.y4b{bottom:285.990400pt;}
.y11d{bottom:287.234200pt;}
.y25{bottom:290.384667pt;}
.y222{bottom:291.172667pt;}
.yd3{bottom:292.026000pt;}
.yab{bottom:292.026267pt;}
.y193{bottom:292.026800pt;}
.y1d0{bottom:292.027067pt;}
.y2ba{bottom:294.389200pt;}
.y299{bottom:297.068667pt;}
.y256{bottom:299.181600pt;}
.y1f5{bottom:300.507400pt;}
.y266{bottom:303.173200pt;}
.y4a{bottom:304.657200pt;}
.y11c{bottom:305.901000pt;}
.y24{bottom:306.384667pt;}
.yaa{bottom:306.692667pt;}
.y192{bottom:306.693200pt;}
.y1cf{bottom:306.693467pt;}
.y221{bottom:309.839467pt;}
.y71{bottom:311.845867pt;}
.y240{bottom:311.846333pt;}
.y2b9{bottom:312.389600pt;}
.y214{bottom:313.899333pt;}
.y1ab{bottom:315.617733pt;}
.y298{bottom:315.735467pt;}
.y138{bottom:315.840133pt;}
.y255{bottom:317.848400pt;}
.y1f4{bottom:319.174200pt;}
.yfc{bottom:319.176933pt;}
.y191{bottom:321.359600pt;}
.y1ce{bottom:321.359867pt;}
.y265{bottom:321.840000pt;}
.y23{bottom:322.384667pt;}
.y49{bottom:323.324000pt;}
.y11b{bottom:324.567800pt;}
.y179{bottom:327.177733pt;}
.y220{bottom:328.506267pt;}
.y2b8{bottom:330.388400pt;}
.y70{bottom:330.512667pt;}
.y23f{bottom:330.513133pt;}
.y8f{bottom:330.516400pt;}
.y213{bottom:330.566000pt;}
.yd2{bottom:331.726667pt;}
.y1aa{bottom:334.284533pt;}
.y297{bottom:334.402267pt;}
.y137{bottom:334.506933pt;}
.y190{bottom:336.026000pt;}
.y1cd{bottom:336.026267pt;}
.y254{bottom:336.515200pt;}
.y1f3{bottom:337.841000pt;}
.yfb{bottom:337.843733pt;}
.y22{bottom:338.384667pt;}
.y15a{bottom:339.039667pt;}
.y264{bottom:340.506800pt;}
.y48{bottom:341.990800pt;}
.y11a{bottom:343.234600pt;}
.y178{bottom:345.844533pt;}
.y21f{bottom:347.173067pt;}
.y212{bottom:347.232667pt;}
.y2b7{bottom:348.388800pt;}
.y6f{bottom:349.179467pt;}
.y23e{bottom:349.179933pt;}
.y8e{bottom:349.183200pt;}
.yd1{bottom:350.393467pt;}
.y1cc{bottom:350.692667pt;}
.y1a9{bottom:352.951333pt;}
.y296{bottom:353.069067pt;}
.y136{bottom:353.173733pt;}
.y21{bottom:354.384667pt;}
.y253{bottom:355.182000pt;}
.y1f2{bottom:356.507800pt;}
.yfa{bottom:356.510533pt;}
.y159{bottom:357.706467pt;}
.y263{bottom:359.173600pt;}
.y47{bottom:360.657600pt;}
.y119{bottom:361.901400pt;}
.y177{bottom:364.511333pt;}
.y2b6{bottom:366.389200pt;}
.y6e{bottom:367.846267pt;}
.y23d{bottom:367.846733pt;}
.y8d{bottom:367.850000pt;}
.yd0{bottom:369.060267pt;}
.y20{bottom:370.384667pt;}
.y1a8{bottom:371.618133pt;}
.y295{bottom:371.735867pt;}
.y135{bottom:371.840533pt;}
.y252{bottom:373.848800pt;}
.y1f1{bottom:375.174600pt;}
.yf9{bottom:375.177333pt;}
.y211{bottom:375.233400pt;}
.y158{bottom:376.373267pt;}
.y21e{bottom:377.177333pt;}
.y262{bottom:377.840400pt;}
.y46{bottom:379.324400pt;}
.y118{bottom:380.568200pt;}
.y176{bottom:383.178133pt;}
.y2b5{bottom:384.389600pt;}
.y1f{bottom:386.384667pt;}
.y6d{bottom:386.513067pt;}
.y23c{bottom:386.513533pt;}
.ycf{bottom:387.727067pt;}
.y1a7{bottom:390.284933pt;}
.y294{bottom:390.402667pt;}
.y134{bottom:390.507333pt;}
.y251{bottom:392.515600pt;}
.y1f0{bottom:393.841400pt;}
.yf8{bottom:393.844133pt;}
.y210{bottom:393.900200pt;}
.y157{bottom:395.040067pt;}
.y21d{bottom:395.844133pt;}
.y261{bottom:396.507200pt;}
.y1cb{bottom:397.845067pt;}
.ya9{bottom:397.852867pt;}
.y8c{bottom:397.854267pt;}
.y45{bottom:397.991200pt;}
.y117{bottom:399.235000pt;}
.y175{bottom:401.844933pt;}
.y1e{bottom:402.384667pt;}
.y2b4{bottom:402.389200pt;}
.y6c{bottom:405.179867pt;}
.y23b{bottom:405.180333pt;}
.y18f{bottom:405.182400pt;}
.yce{bottom:406.393867pt;}
.y1a6{bottom:408.951733pt;}
.y293{bottom:409.069467pt;}
.y250{bottom:411.182400pt;}
.y1ef{bottom:412.508200pt;}
.yf7{bottom:412.510933pt;}
.y20f{bottom:412.567000pt;}
.y156{bottom:413.706867pt;}
.y21c{bottom:414.510933pt;}
.y260{bottom:415.174000pt;}
.y1ca{bottom:416.511867pt;}
.ya8{bottom:416.519667pt;}
.y8b{bottom:416.521067pt;}
.y44{bottom:416.658000pt;}
.y116{bottom:417.901800pt;}
.y1d{bottom:418.384667pt;}
.y2b3{bottom:420.389600pt;}
.y174{bottom:420.511733pt;}
.y6b{bottom:423.846667pt;}
.y23a{bottom:423.847133pt;}
.y279{bottom:423.848333pt;}
.y18e{bottom:423.849200pt;}
.ycd{bottom:425.060667pt;}
.y1a5{bottom:427.618533pt;}
.y292{bottom:427.736267pt;}
.y24f{bottom:429.849200pt;}
.yf6{bottom:431.177733pt;}
.y20e{bottom:431.233800pt;}
.y21b{bottom:433.177733pt;}
.y1c{bottom:434.384667pt;}
.y1c9{bottom:435.178667pt;}
.ya7{bottom:435.186467pt;}
.y8a{bottom:435.187867pt;}
.y115{bottom:436.568600pt;}
.y2b2{bottom:438.389200pt;}
.y133{bottom:439.178000pt;}
.y173{bottom:439.178533pt;}
.y6a{bottom:442.513467pt;}
.y239{bottom:442.513933pt;}
.y1ee{bottom:442.514000pt;}
.y278{bottom:442.515133pt;}
.y18d{bottom:442.516000pt;}
.y155{bottom:443.710867pt;}
.y1a4{bottom:446.285333pt;}
.y291{bottom:446.403067pt;}
.y24e{bottom:448.516000pt;}
.yf5{bottom:449.844533pt;}
.y20d{bottom:449.900600pt;}
.y1b{bottom:450.384667pt;}
.y21a{bottom:451.844533pt;}
.y43{bottom:453.458000pt;}
.y1c8{bottom:453.845467pt;}
.ya6{bottom:453.853267pt;}
.y89{bottom:453.854667pt;}
.y114{bottom:455.235400pt;}
.y132{bottom:455.844667pt;}
.y2b1{bottom:456.389600pt;}
.y172{bottom:457.845333pt;}
.y69{bottom:461.180267pt;}
.y238{bottom:461.180733pt;}
.y1ed{bottom:461.180800pt;}
.y277{bottom:461.181933pt;}
.y18c{bottom:461.182800pt;}
.y154{bottom:462.377667pt;}
.y25f{bottom:463.844667pt;}
.y1a3{bottom:464.952133pt;}
.y290{bottom:465.069867pt;}
.y1a{bottom:466.384667pt;}
.y24d{bottom:467.182800pt;}
.yf4{bottom:468.507933pt;}
.y20c{bottom:468.567400pt;}
.y219{bottom:470.511333pt;}
.y131{bottom:472.511333pt;}
.y1c7{bottom:472.512267pt;}
.ya5{bottom:472.520067pt;}
.y88{bottom:472.521467pt;}
.ycc{bottom:473.732667pt;}
.y2b0{bottom:474.389200pt;}
.y171{bottom:476.512133pt;}
.y237{bottom:479.847533pt;}
.y1ec{bottom:479.847600pt;}
.y276{bottom:479.848733pt;}
.y18b{bottom:479.849600pt;}
.y25e{bottom:480.511333pt;}
.y153{bottom:481.044467pt;}
.y19{bottom:482.384667pt;}
.y1a2{bottom:483.618933pt;}
.y28f{bottom:483.736667pt;}
.y113{bottom:485.241200pt;}
.y24c{bottom:485.849600pt;}
.yf3{bottom:487.174733pt;}
.y20b{bottom:487.234200pt;}
.y130{bottom:489.178000pt;}
.ycb{bottom:490.399333pt;}
.y1c6{bottom:491.179067pt;}
.y68{bottom:491.186067pt;}
.ya4{bottom:491.186867pt;}
.y87{bottom:491.188267pt;}
.y2af{bottom:492.389600pt;}
.y170{bottom:495.178933pt;}
.y25d{bottom:497.178000pt;}
.y18{bottom:498.384667pt;}
.y236{bottom:498.514333pt;}
.y1eb{bottom:498.514400pt;}
.y275{bottom:498.515533pt;}
.y18a{bottom:498.516400pt;}
.y152{bottom:499.711267pt;}
.y1a1{bottom:502.285733pt;}
.y28e{bottom:502.403467pt;}
.y112{bottom:503.908000pt;}
.y24b{bottom:504.516400pt;}
.yf2{bottom:505.841533pt;}
.y20a{bottom:505.901000pt;}
.yca{bottom:507.066000pt;}
.y1c5{bottom:509.845867pt;}
.y67{bottom:509.852867pt;}
.ya3{bottom:509.853667pt;}
.y86{bottom:509.855067pt;}
.y2ae{bottom:510.388800pt;}
.y25c{bottom:513.844667pt;}
.y16f{bottom:513.845733pt;}
.y17{bottom:514.384667pt;}
.y12f{bottom:517.180533pt;}
.y235{bottom:517.181133pt;}
.y1ea{bottom:517.181200pt;}
.y274{bottom:517.182333pt;}
.y189{bottom:517.183200pt;}
.y151{bottom:518.378067pt;}
.y218{bottom:519.183333pt;}
.y1a0{bottom:520.952533pt;}
.y28d{bottom:521.070267pt;}
.y111{bottom:522.574800pt;}
.y24a{bottom:523.183200pt;}
.yc9{bottom:523.732667pt;}
.yf1{bottom:524.508333pt;}
.y209{bottom:524.567800pt;}
.y42{bottom:527.462800pt;}
.y2ad{bottom:528.389200pt;}
.y1c4{bottom:528.512667pt;}
.y66{bottom:528.519667pt;}
.ya2{bottom:528.520467pt;}
.y85{bottom:528.521867pt;}
.y16{bottom:530.384667pt;}
.y25b{bottom:530.511333pt;}
.y16e{bottom:532.512533pt;}
.y188{bottom:535.847800pt;}
.y234{bottom:535.847933pt;}
.y1e9{bottom:535.848000pt;}
.y150{bottom:537.044867pt;}
.y19f{bottom:539.619333pt;}
.y28c{bottom:539.737067pt;}
.yc8{bottom:540.399333pt;}
.y110{bottom:541.241600pt;}
.y249{bottom:541.850000pt;}
.y208{bottom:543.234600pt;}
.y41{bottom:543.462800pt;}
.y15{bottom:546.384667pt;}
.y2ac{bottom:546.389600pt;}
.y25a{bottom:547.178000pt;}
.y12e{bottom:547.186333pt;}
.y65{bottom:547.186467pt;}
.ya1{bottom:547.187267pt;}
.y84{bottom:547.187333pt;}
.y273{bottom:547.188133pt;}
.y217{bottom:547.188533pt;}
.y16d{bottom:551.179333pt;}
.yf0{bottom:554.514133pt;}
.y187{bottom:554.514600pt;}
.y233{bottom:554.514733pt;}
.y1e8{bottom:554.514800pt;}
.yc7{bottom:557.066000pt;}
.y28b{bottom:558.403867pt;}
.y10f{bottom:559.908400pt;}
.y207{bottom:561.901400pt;}
.y14{bottom:562.384667pt;}
.y259{bottom:563.844667pt;}
.y2ab{bottom:564.389200pt;}
.y12d{bottom:565.853133pt;}
.y64{bottom:565.853267pt;}
.ya0{bottom:565.854067pt;}
.y83{bottom:565.854133pt;}
.y272{bottom:565.854933pt;}
.y14f{bottom:567.050667pt;}
.yef{bottom:573.180933pt;}
.y186{bottom:573.181400pt;}
.y1e7{bottom:573.181600pt;}
.yc6{bottom:573.732667pt;}
.y40{bottom:575.462800pt;}
.y28a{bottom:577.070667pt;}
.y1c3{bottom:577.184667pt;}
.y10e{bottom:578.575200pt;}
.y206{bottom:580.568200pt;}
.y2aa{bottom:582.389600pt;}
.y12c{bottom:584.519933pt;}
.y63{bottom:584.520067pt;}
.y232{bottom:584.520533pt;}
.y9f{bottom:584.520867pt;}
.y82{bottom:584.520933pt;}
.y271{bottom:584.521733pt;}
.y14e{bottom:585.717467pt;}
.y19e{bottom:588.291333pt;}
.yc5{bottom:590.399333pt;}
.y248{bottom:590.522000pt;}
.y3f{bottom:591.462800pt;}
.yee{bottom:591.847733pt;}
.y185{bottom:591.848200pt;}
.y1e6{bottom:591.848400pt;}
.y1c2{bottom:593.851333pt;}
.y13{bottom:595.051333pt;}
.y289{bottom:595.737467pt;}
.y10d{bottom:597.242000pt;}
.y205{bottom:599.235000pt;}
.y16c{bottom:599.851333pt;}
.y2a9{bottom:600.389200pt;}
.y12b{bottom:603.186733pt;}
.y62{bottom:603.186867pt;}
.y231{bottom:603.187333pt;}
.y9e{bottom:603.187667pt;}
.y81{bottom:603.187733pt;}
.y270{bottom:603.188533pt;}
.y14d{bottom:604.384267pt;}
.y19d{bottom:604.958000pt;}
.yc4{bottom:607.066000pt;}
.y247{bottom:607.188667pt;}
.y3e{bottom:607.462800pt;}
.yed{bottom:610.514533pt;}
.y184{bottom:610.515000pt;}
.y1e5{bottom:610.515200pt;}
.y288{bottom:614.404267pt;}
.y11{bottom:615.863333pt;}
.y16b{bottom:616.518000pt;}
.y204{bottom:617.901800pt;}
.y2a8{bottom:618.389600pt;}
.y12a{bottom:621.853533pt;}
.y61{bottom:621.853667pt;}
.y230{bottom:621.854133pt;}
.y9d{bottom:621.854467pt;}
.y80{bottom:621.854533pt;}
.y26f{bottom:621.854933pt;}
.y1c1{bottom:621.856400pt;}
.y14c{bottom:623.051067pt;}
.y3d{bottom:623.462800pt;}
.yc3{bottom:623.732667pt;}
.y246{bottom:623.855333pt;}
.y183{bottom:629.181800pt;}
.y1e4{bottom:629.182000pt;}
.y287{bottom:633.071067pt;}
.y16a{bottom:633.184667pt;}
.y10{bottom:633.196667pt;}
.y2a7{bottom:636.389200pt;}
.y203{bottom:636.568600pt;}
.y19c{bottom:636.743400pt;}
.y3c{bottom:639.462800pt;}
.yec{bottom:640.520333pt;}
.y60{bottom:640.520467pt;}
.y22f{bottom:640.520933pt;}
.y7f{bottom:640.521333pt;}
.y26e{bottom:640.521733pt;}
.y1c0{bottom:640.523200pt;}
.y14b{bottom:641.717867pt;}
.y10c{bottom:645.914400pt;}
.y182{bottom:647.848600pt;}
.y169{bottom:649.851333pt;}
.yf{bottom:650.530000pt;}
.yc2{bottom:651.737067pt;}
.y286{bottom:651.737867pt;}
.y245{bottom:651.860133pt;}
.y9c{bottom:651.860267pt;}
.y2a6{bottom:654.389600pt;}
.y202{bottom:655.235400pt;}
.y3b{bottom:655.462800pt;}
.yeb{bottom:659.187133pt;}
.y5f{bottom:659.187267pt;}
.y22e{bottom:659.187733pt;}
.y1e3{bottom:659.187800pt;}
.y7e{bottom:659.188133pt;}
.y26d{bottom:659.188533pt;}
.y1bf{bottom:659.190000pt;}
.y14a{bottom:660.384667pt;}
.y10b{bottom:662.581067pt;}
.yc1{bottom:670.403867pt;}
.y285{bottom:670.404667pt;}
.y19b{bottom:670.526133pt;}
.y244{bottom:670.526933pt;}
.y9b{bottom:670.527067pt;}
.y3a{bottom:671.462800pt;}
.y2a5{bottom:672.390000pt;}
.yea{bottom:677.853933pt;}
.y5e{bottom:677.854067pt;}
.y168{bottom:677.854200pt;}
.y181{bottom:677.854400pt;}
.y22d{bottom:677.854533pt;}
.y1e2{bottom:677.854600pt;}
.y7d{bottom:677.854933pt;}
.y10a{bottom:679.247733pt;}
.y201{bottom:685.241200pt;}
.y39{bottom:687.462800pt;}
.yc0{bottom:689.070667pt;}
.y284{bottom:689.071467pt;}
.y129{bottom:689.192933pt;}
.y243{bottom:689.193733pt;}
.y9a{bottom:689.193867pt;}
.y1be{bottom:689.194533pt;}
.y109{bottom:695.914400pt;}
.ye9{bottom:696.520733pt;}
.y5d{bottom:696.520867pt;}
.y167{bottom:696.521000pt;}
.y180{bottom:696.521200pt;}
.y22c{bottom:696.521333pt;}
.y1e1{bottom:696.521400pt;}
.y7c{bottom:696.521733pt;}
.y149{bottom:697.184667pt;}
.ye{bottom:700.315253pt;}
.y38{bottom:703.462800pt;}
.y200{bottom:703.908000pt;}
.ybf{bottom:707.737467pt;}
.y283{bottom:707.738267pt;}
.y128{bottom:707.859733pt;}
.y99{bottom:707.860533pt;}
.y1bd{bottom:707.861333pt;}
.y2a4{bottom:708.523333pt;}
.y108{bottom:712.581067pt;}
.ye8{bottom:715.187533pt;}
.y5c{bottom:715.187667pt;}
.y166{bottom:715.187800pt;}
.y17f{bottom:715.188000pt;}
.y22b{bottom:715.188133pt;}
.y1e0{bottom:715.188200pt;}
.y7b{bottom:715.188533pt;}
.y37{bottom:719.462800pt;}
.y1ff{bottom:722.574800pt;}
.yc{bottom:722.981920pt;}
.yd{bottom:722.982000pt;}
.ybe{bottom:726.404267pt;}
.y282{bottom:726.405067pt;}
.y127{bottom:726.526533pt;}
.y98{bottom:726.526667pt;}
.y1bc{bottom:726.528133pt;}
.y107{bottom:729.247733pt;}
.y7a{bottom:733.854200pt;}
.ye7{bottom:733.854333pt;}
.y5b{bottom:733.854467pt;}
.y165{bottom:733.854600pt;}
.y17e{bottom:733.854800pt;}
.y22a{bottom:733.854933pt;}
.y1df{bottom:733.855000pt;}
.y36{bottom:735.462800pt;}
.y1fe{bottom:741.241600pt;}
.ybd{bottom:745.071067pt;}
.y281{bottom:745.071867pt;}
.y126{bottom:745.193333pt;}
.y97{bottom:745.193467pt;}
.y1bb{bottom:745.194933pt;}
.yb{bottom:745.648667pt;}
.y106{bottom:745.914400pt;}
.y35{bottom:751.462800pt;}
.ye6{bottom:752.521133pt;}
.y164{bottom:752.521400pt;}
.y17d{bottom:752.521600pt;}
.y229{bottom:752.521733pt;}
.y1de{bottom:752.521800pt;}
.y148{bottom:752.522933pt;}
.y1fd{bottom:759.908400pt;}
.y105{bottom:762.581067pt;}
.ybc{bottom:763.737867pt;}
.y280{bottom:763.738667pt;}
.y79{bottom:763.860000pt;}
.y125{bottom:763.860133pt;}
.y5a{bottom:763.860267pt;}
.y1ba{bottom:763.861733pt;}
.y34{bottom:767.462800pt;}
.ye5{bottom:771.187933pt;}
.y163{bottom:771.188200pt;}
.y17c{bottom:771.188400pt;}
.y228{bottom:771.188533pt;}
.y1dd{bottom:771.188600pt;}
.y147{bottom:771.189733pt;}
.y2a3{bottom:771.191600pt;}
.ya{bottom:772.095467pt;}
.y1fc{bottom:778.575200pt;}
.y104{bottom:779.247733pt;}
.ybb{bottom:782.404133pt;}
.y27f{bottom:782.405467pt;}
.y78{bottom:782.526800pt;}
.y124{bottom:782.526933pt;}
.y59{bottom:782.527067pt;}
.y1b9{bottom:782.528533pt;}
.y33{bottom:783.462800pt;}
.ye4{bottom:789.854733pt;}
.y17b{bottom:789.855200pt;}
.y1dc{bottom:789.855400pt;}
.y146{bottom:789.856533pt;}
.y2a2{bottom:789.857867pt;}
.y9{bottom:794.762067pt;}
.y103{bottom:795.914400pt;}
.y1fb{bottom:797.242000pt;}
.y32{bottom:799.462800pt;}
.yba{bottom:801.070933pt;}
.y27e{bottom:801.072267pt;}
.y77{bottom:801.193600pt;}
.y123{bottom:801.193733pt;}
.y58{bottom:801.193867pt;}
.y162{bottom:801.194000pt;}
.y1b8{bottom:801.194400pt;}
.ye3{bottom:808.521533pt;}
.y17a{bottom:808.521867pt;}
.y145{bottom:808.523333pt;}
.y2a1{bottom:808.524133pt;}
.y102{bottom:812.581067pt;}
.y31{bottom:815.462800pt;}
.y8{bottom:817.428667pt;}
.yb9{bottom:819.737733pt;}
.y27d{bottom:819.739067pt;}
.y76{bottom:819.860400pt;}
.y122{bottom:819.860533pt;}
.y57{bottom:819.860667pt;}
.y161{bottom:819.860800pt;}
.y1b7{bottom:819.861200pt;}
.y2c8{bottom:822.974800pt;}
.ye2{bottom:827.188333pt;}
.y144{bottom:827.190133pt;}
.y2a0{bottom:827.190400pt;}
.y101{bottom:829.247733pt;}
.y30{bottom:831.462800pt;}
.yb8{bottom:838.404533pt;}
.y27c{bottom:838.405867pt;}
.y75{bottom:838.527200pt;}
.y121{bottom:838.527333pt;}
.y56{bottom:838.527467pt;}
.y160{bottom:838.527600pt;}
.y1b6{bottom:838.528000pt;}
.y2c7{bottom:840.975200pt;}
.ye1{bottom:845.855133pt;}
.y29f{bottom:845.856667pt;}
.y143{bottom:845.856933pt;}
.y100{bottom:845.914400pt;}
.y2f{bottom:847.462800pt;}
.yb7{bottom:857.071333pt;}
.y27b{bottom:857.072667pt;}
.y120{bottom:857.194133pt;}
.y55{bottom:857.194267pt;}
.y15f{bottom:857.194400pt;}
.y1b5{bottom:857.194800pt;}
.y2c6{bottom:858.975600pt;}
.yff{bottom:862.581067pt;}
.y2e{bottom:863.462800pt;}
.ye0{bottom:875.860933pt;}
.y54{bottom:875.861067pt;}
.y142{bottom:875.861200pt;}
.y1b4{bottom:875.861600pt;}
.y2c5{bottom:876.974533pt;}
.yfe{bottom:879.247733pt;}
.y4{bottom:887.592000pt;}
.y3{bottom:887.638933pt;}
.y6{bottom:887.641333pt;}
.yb6{bottom:893.871733pt;}
.y27a{bottom:893.872400pt;}
.ydf{bottom:894.527733pt;}
.y53{bottom:894.527867pt;}
.y141{bottom:894.528000pt;}
.y1b3{bottom:894.528400pt;}
.y2c4{bottom:894.974933pt;}
.yfd{bottom:895.914400pt;}
.y2d{bottom:896.129467pt;}
.y12{bottom:923.521867pt;}
.y2c3{bottom:932.166667pt;}
.yb5{bottom:932.167200pt;}
.y2c{bottom:932.167467pt;}
.y140{bottom:932.167733pt;}
.y1b2{bottom:932.168000pt;}
.ydd{bottom:932.196000pt;}
.y52{bottom:932.196133pt;}
.y15d{bottom:932.196400pt;}
.y1da{bottom:932.196667pt;}
.yde{bottom:933.319333pt;}
.y1{bottom:933.319467pt;}
.y15e{bottom:933.319600pt;}
.y1db{bottom:933.320000pt;}
.ydb{bottom:934.492533pt;}
.y50{bottom:934.492667pt;}
.y15b{bottom:934.492800pt;}
.y1d8{bottom:934.493200pt;}
.y2c0{bottom:935.658533pt;}
.yb3{bottom:935.659200pt;}
.y29{bottom:935.659333pt;}
.y13e{bottom:935.659467pt;}
.y1b0{bottom:935.659867pt;}
.y2c2{bottom:946.833067pt;}
.yb4{bottom:946.833600pt;}
.y2b{bottom:946.833867pt;}
.y13f{bottom:946.834133pt;}
.y1b1{bottom:946.834400pt;}
.ydc{bottom:946.862400pt;}
.y51{bottom:946.862533pt;}
.y15c{bottom:946.862800pt;}
.y1d9{bottom:946.863067pt;}
.h5{height:3.876000pt;}
.h4{height:3.960000pt;}
.h3{height:16.126133pt;}
.hf{height:28.672000pt;}
.hd{height:30.720000pt;}
.h2{height:32.594667pt;}
.h1{height:32.768000pt;}
.he{height:38.346667pt;}
.ha{height:39.168000pt;}
.h20{height:39.994133pt;}
.h10{height:39.994667pt;}
.h1b{height:39.995200pt;}
.h16{height:43.008000pt;}
.hc{height:47.786667pt;}
.hb{height:47.840000pt;}
.h1e{height:48.819733pt;}
.h28{height:48.821333pt;}
.h9{height:51.408000pt;}
.h2e{height:52.565333pt;}
.h2f{height:52.568533pt;}
.h30{height:52.570133pt;}
.h31{height:52.571733pt;}
.h8{height:53.162667pt;}
.h12{height:54.954667pt;}
.h29{height:56.142400pt;}
.h17{height:56.144533pt;}
.h27{height:56.145067pt;}
.h26{height:56.145600pt;}
.h13{height:56.146133pt;}
.h1f{height:56.147200pt;}
.h19{height:56.147733pt;}
.h22{height:56.148533pt;}
.h2d{height:56.148800pt;}
.h21{height:56.149067pt;}
.h1c{height:56.149333pt;}
.h2b{height:56.149600pt;}
.h18{height:56.149867pt;}
.h2c{height:56.150400pt;}
.h24{height:56.150933pt;}
.h2a{height:56.151200pt;}
.h14{height:56.151733pt;}
.h25{height:56.152000pt;}
.h15{height:56.152533pt;}
.h23{height:56.156000pt;}
.h1a{height:56.157067pt;}
.h1d{height:56.160800pt;}
.h7{height:58.478933pt;}
.h11{height:59.800000pt;}
.h6{height:62.656000pt;}
.h0{height:1122.666667pt;}
.w2{width:12.060000pt;}
.w1{width:21.024000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4{left:18.225867pt;}
.x17{left:118.320133pt;}
.x16{left:119.533467pt;}
.x20{left:120.611200pt;}
.x15{left:124.318933pt;}
.x1{left:166.294400pt;}
.x7{left:175.401733pt;}
.x6{left:191.367733pt;}
.x1d{left:192.750533pt;}
.x9{left:201.088800pt;}
.x13{left:204.089067pt;}
.x1f{left:222.987200pt;}
.x19{left:230.546000pt;}
.x18{left:241.884267pt;}
.x1e{left:260.782000pt;}
.x2{left:304.052667pt;}
.x14{left:305.394000pt;}
.xc{left:336.140187pt;}
.x11{left:357.178000pt;}
.xf{left:360.278533pt;}
.x8{left:374.641933pt;}
.xd{left:382.760667pt;}
.xe{left:387.763333pt;}
.x12{left:410.226000pt;}
.x23{left:414.804800pt;}
.x22{left:418.550667pt;}
.x21{left:425.598000pt;}
.x24{left:443.715733pt;}
.x10{left:497.064667pt;}
.x3{left:537.662000pt;}
.xa{left:541.366000pt;}
.xb{left:546.368667pt;}
.x5{left:564.452000pt;}
.x1c{left:655.476667pt;}
.x1b{left:656.690000pt;}
.x1a{left:660.542000pt;}
}




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