
    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_22b4355561d47caf8b0c2b81.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b7318812b930b46f07fc88ba.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_cbdb34d01f0f51057819606a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_df177286da72a499cf422089.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_32cce939718a71bf404baff3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_44afc41f98203bd7f85f1bdb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.667969;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_f7c028a0ee266e43cb100c58.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.853027;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_8faef5077f9ffaec9b8b7cba.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fb4d5af51ba9c8e441cda5b1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.680176;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_cbcfbcb5a009f33891d54235.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0324400f5e3071b6578cfa57.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.947266;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;}
.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);}
.vf{vertical-align:-44.640000px;}
.vd{vertical-align:-35.988000px;}
.v2{vertical-align:-33.114000px;}
.vb{vertical-align:-27.354000px;}
.v8{vertical-align:-20.154000px;}
.v5{vertical-align:-15.840000px;}
.v3{vertical-align:-8.634000px;}
.ve{vertical-align:-4.320000px;}
.v7{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:8.634000px;}
.v9{vertical-align:14.394000px;}
.v6{vertical-align:15.840000px;}
.va{vertical-align:27.354000px;}
.v1{vertical-align:33.114000px;}
.vc{vertical-align:35.988000px;}
.ls8e{letter-spacing:-2.880000px;}
.ls8c{letter-spacing:-2.376000px;}
.ls15{letter-spacing:-1.470000px;}
.ls1e{letter-spacing:-1.458000px;}
.ls24{letter-spacing:-1.440000px;}
.ls20{letter-spacing:-1.434000px;}
.ls32{letter-spacing:-1.428000px;}
.ls8d{letter-spacing:-1.422000px;}
.ls54{letter-spacing:-1.302000px;}
.lsa1{letter-spacing:-1.194000px;}
.ls91{letter-spacing:-1.188000px;}
.ls7a{letter-spacing:-1.080000px;}
.ls17{letter-spacing:-0.978000px;}
.ls2f{letter-spacing:-0.972000px;}
.ls90{letter-spacing:-0.954000px;}
.ls25{letter-spacing:-0.948000px;}
.ls76{letter-spacing:-0.942000px;}
.ls1b{letter-spacing:-0.936000px;}
.ls51{letter-spacing:-0.888000px;}
.ls4c{letter-spacing:-0.792000px;}
.ls7b{letter-spacing:-0.720000px;}
.ls57{letter-spacing:-0.696000px;}
.ls8f{letter-spacing:-0.690000px;}
.ls11{letter-spacing:-0.504000px;}
.ls77{letter-spacing:-0.498000px;}
.ls1d{letter-spacing:-0.492000px;}
.ls26{letter-spacing:-0.486000px;}
.ls16{letter-spacing:-0.480000px;}
.ls18{letter-spacing:-0.474000px;}
.ls4f{letter-spacing:-0.468000px;}
.ls55{letter-spacing:-0.390000px;}
.ls48{letter-spacing:-0.360000px;}
.ls52{letter-spacing:-0.342000px;}
.ls7c{letter-spacing:-0.324000px;}
.ls1f{letter-spacing:-0.300000px;}
.ls12{letter-spacing:-0.252000px;}
.ls9c{letter-spacing:-0.234000px;}
.lsa0{letter-spacing:-0.132000px;}
.ls19{letter-spacing:-0.114000px;}
.ls49{letter-spacing:-0.060000px;}
.ls1c{letter-spacing:-0.006000px;}
.ls1a{letter-spacing:0.000000px;}
.lse{letter-spacing:0.006000px;}
.ls72{letter-spacing:0.011280px;}
.ls2d{letter-spacing:0.012000px;}
.ls2a{letter-spacing:0.014160px;}
.ls96{letter-spacing:0.018000px;}
.ls58{letter-spacing:0.020160px;}
.ls5c{letter-spacing:0.077760px;}
.ls4{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.132000px;}
.ls4d{letter-spacing:0.138000px;}
.ls1{letter-spacing:0.144000px;}
.ls97{letter-spacing:0.234000px;}
.ls5{letter-spacing:0.246000px;}
.ls3{letter-spacing:0.252000px;}
.ls62{letter-spacing:0.316800px;}
.lsd{letter-spacing:0.360000px;}
.ls35{letter-spacing:0.443280px;}
.ls78{letter-spacing:0.450000px;}
.ls2c{letter-spacing:0.460560px;}
.ls34{letter-spacing:0.462000px;}
.lsc{letter-spacing:0.468000px;}
.lsf{letter-spacing:0.480000px;}
.ls4a{letter-spacing:0.486000px;}
.ls29{letter-spacing:0.492000px;}
.ls2b{letter-spacing:0.500880px;}
.ls28{letter-spacing:0.504000px;}
.ls39{letter-spacing:0.550080px;}
.ls4e{letter-spacing:0.552000px;}
.ls70{letter-spacing:0.561360px;}
.ls8a{letter-spacing:0.582000px;}
.ls9a{letter-spacing:0.594000px;}
.ls93{letter-spacing:0.600000px;}
.ls63{letter-spacing:0.612000px;}
.ls95{letter-spacing:0.618000px;}
.ls6{letter-spacing:0.624000px;}
.ls99{letter-spacing:0.630000px;}
.ls94{letter-spacing:0.636000px;}
.ls8b{letter-spacing:0.642000px;}
.ls53{letter-spacing:0.648000px;}
.ls98{letter-spacing:0.672000px;}
.ls6b{letter-spacing:0.705360px;}
.ls73{letter-spacing:0.714000px;}
.lsb{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.723000px;}
.ls64{letter-spacing:0.726000px;}
.ls56{letter-spacing:0.744000px;}
.ls14{letter-spacing:0.936000px;}
.ls9{letter-spacing:0.960000px;}
.ls50{letter-spacing:0.972000px;}
.ls43{letter-spacing:0.974880px;}
.ls13{letter-spacing:1.188000px;}
.ls9d{letter-spacing:1.194000px;}
.ls9f{letter-spacing:1.206000px;}
.ls21{letter-spacing:1.440000px;}
.ls37{letter-spacing:1.458000px;}
.ls8{letter-spacing:1.686000px;}
.ls7{letter-spacing:1.728000px;}
.ls6d{letter-spacing:2.151360px;}
.ls65{letter-spacing:2.154000px;}
.ls27{letter-spacing:2.160000px;}
.lsa2{letter-spacing:3.600000px;}
.ls22{letter-spacing:5.040000px;}
.ls9b{letter-spacing:5.400000px;}
.ls79{letter-spacing:6.120000px;}
.ls30{letter-spacing:6.480000px;}
.ls46{letter-spacing:7.920000px;}
.ls80{letter-spacing:9.000000px;}
.ls31{letter-spacing:9.360000px;}
.ls40{letter-spacing:10.440000px;}
.ls71{letter-spacing:10.791360px;}
.ls23{letter-spacing:10.800000px;}
.ls3c{letter-spacing:11.010240px;}
.ls42{letter-spacing:11.054880px;}
.ls9e{letter-spacing:11.160000px;}
.ls3e{letter-spacing:11.874000px;}
.ls7d{letter-spacing:11.880000px;}
.ls3a{letter-spacing:11.985120px;}
.ls75{letter-spacing:12.240000px;}
.ls41{letter-spacing:12.444240px;}
.ls84{letter-spacing:13.031760px;}
.ls3d{letter-spacing:13.425120px;}
.ls2{letter-spacing:13.566360px;}
.ls74{letter-spacing:13.674000px;}
.ls81{letter-spacing:13.824000px;}
.ls61{letter-spacing:14.373840px;}
.ls5d{letter-spacing:14.400000px;}
.ls83{letter-spacing:14.471760px;}
.ls85{letter-spacing:14.906880px;}
.ls82{letter-spacing:15.079680px;}
.ls59{letter-spacing:15.120000px;}
.ls60{letter-spacing:15.854160px;}
.ls5b{letter-spacing:15.860160px;}
.ls5e{letter-spacing:16.300560px;}
.ls7e{letter-spacing:16.346880px;}
.ls69{letter-spacing:16.554000px;}
.ls36{letter-spacing:16.560000px;}
.ls7f{letter-spacing:17.357760px;}
.ls5a{letter-spacing:17.994000px;}
.ls33{letter-spacing:18.000000px;}
.ls2e{letter-spacing:20.880000px;}
.ls47{letter-spacing:22.320000px;}
.ls67{letter-spacing:23.760000px;}
.ls4b{letter-spacing:25.200000px;}
.ls66{letter-spacing:26.640000px;}
.ls10{letter-spacing:29.520000px;}
.ls86{letter-spacing:31.697280px;}
.ls68{letter-spacing:32.400000px;}
.ls44{letter-spacing:32.648880px;}
.ls6a{letter-spacing:33.840000px;}
.ls3b{letter-spacing:34.094880px;}
.ls38{letter-spacing:39.594000px;}
.ls5f{letter-spacing:41.034000px;}
.ls45{letter-spacing:55.688880px;}
.ls3f{letter-spacing:67.208880px;}
.ls6f{letter-spacing:205.194000px;}
.ls6c{letter-spacing:228.240000px;}
.ls87{letter-spacing:333.135120px;}
.ls6e{letter-spacing:379.215120px;}
.ls88{letter-spacing:396.720000px;}
.ls92{letter-spacing:440.275500px;}
.ls89{letter-spacing:886.076460px;}
.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;}
}
.ws193{word-spacing:-62.640000px;}
.ws12d{word-spacing:-61.206000px;}
.ws132{word-spacing:-61.200000px;}
.ws133{word-spacing:-61.092000px;}
.ws19e{word-spacing:-60.966000px;}
.ws130{word-spacing:-60.948000px;}
.ws19c{word-spacing:-60.480000px;}
.ws195{word-spacing:-60.156000px;}
.wsd4{word-spacing:-40.320000px;}
.ws1a6{word-spacing:-31.953540px;}
.ws1a8{word-spacing:-27.360000px;}
.ws8{word-spacing:-26.526000px;}
.ws6{word-spacing:-26.520000px;}
.ws4{word-spacing:-25.530000px;}
.ws6b{word-spacing:-24.480000px;}
.ws15f{word-spacing:-23.040000px;}
.wsb{word-spacing:-22.560000px;}
.wsf8{word-spacing:-21.600000px;}
.ws67{word-spacing:-21.370500px;}
.ws15e{word-spacing:-21.240000px;}
.wsd{word-spacing:-21.238500px;}
.ws9{word-spacing:-21.126000px;}
.ws10{word-spacing:-20.578500px;}
.ws14f{word-spacing:-20.160000px;}
.wscf{word-spacing:-17.280000px;}
.wsce{word-spacing:-16.578000px;}
.wsd3{word-spacing:-16.560000px;}
.ws197{word-spacing:-15.846000px;}
.wsd0{word-spacing:-15.840000px;}
.ws66{word-spacing:-15.624000px;}
.wsd2{word-spacing:-15.606000px;}
.ws12{word-spacing:-15.588000px;}
.ws1a3{word-spacing:-15.225000px;}
.wsf7{word-spacing:-15.126000px;}
.ws13{word-spacing:-15.120000px;}
.wsc{word-spacing:-15.114000px;}
.ws150{word-spacing:-14.868000px;}
.ws162{word-spacing:-14.796000px;}
.ws6d{word-spacing:-14.634000px;}
.ws12a{word-spacing:-14.616000px;}
.ws69{word-spacing:-14.184000px;}
.ws14e{word-spacing:-14.178000px;}
.ws1a5{word-spacing:-14.175000px;}
.ws14c{word-spacing:-14.148000px;}
.ws6c{word-spacing:-13.692000px;}
.wscc{word-spacing:-13.686000px;}
.ws12e{word-spacing:-13.680000px;}
.wse{word-spacing:-13.662000px;}
.ws1{word-spacing:-13.460892px;}
.ws1de{word-spacing:-13.072500px;}
.ws1e3{word-spacing:-13.066500px;}
.ws194{word-spacing:-12.744000px;}
.ws1db{word-spacing:-12.598500px;}
.ws1e1{word-spacing:-12.490500px;}
.ws1a2{word-spacing:-12.240000px;}
.wsdb{word-spacing:-12.132000px;}
.wsf4{word-spacing:-11.904000px;}
.ws131{word-spacing:-11.874000px;}
.wsd7{word-spacing:-11.712000px;}
.ws1dc{word-spacing:-11.644500px;}
.wse5{word-spacing:-11.628000px;}
.ws1dd{word-spacing:-11.626500px;}
.ws19f{word-spacing:-11.556000px;}
.ws198{word-spacing:-11.178000px;}
.ws1ab{word-spacing:-11.158500px;}
.ws1a4{word-spacing:-10.765500px;}
.wsd9{word-spacing:-10.692000px;}
.wsf2{word-spacing:-10.464000px;}
.ws12b{word-spacing:-10.446000px;}
.ws163{word-spacing:-10.440000px;}
.wsdd{word-spacing:-10.272000px;}
.wsed{word-spacing:-10.188000px;}
.ws161{word-spacing:-9.396000px;}
.ws6a{word-spacing:-8.784000px;}
.ws21c{word-spacing:-3.240000px;}
.ws15b{word-spacing:-3.094560px;}
.wse4{word-spacing:-2.402160px;}
.ws1a{word-spacing:-2.400000px;}
.wse6{word-spacing:-2.332800px;}
.wse3{word-spacing:-2.049120px;}
.wse8{word-spacing:-1.910880px;}
.wse9{word-spacing:-1.824000px;}
.ws5{word-spacing:-1.708800px;}
.wscd{word-spacing:-1.708560px;}
.ws155{word-spacing:-1.660560px;}
.wsf3{word-spacing:-1.593120px;}
.wsdc{word-spacing:-1.230000px;}
.wse1{word-spacing:-1.209120px;}
.ws18{word-spacing:-1.188000px;}
.ws160{word-spacing:-1.182240px;}
.wsc3{word-spacing:-1.080000px;}
.wsd6{word-spacing:-1.069680px;}
.ws1f7{word-spacing:-0.972000px;}
.ws1b{word-spacing:-0.966000px;}
.ws14{word-spacing:-0.954000px;}
.ws19{word-spacing:-0.864000px;}
.ws126{word-spacing:-0.840000px;}
.wsef{word-spacing:-0.774000px;}
.ws5e{word-spacing:-0.726000px;}
.ws136{word-spacing:-0.720000px;}
.ws101{word-spacing:-0.642000px;}
.ws1c{word-spacing:-0.606000px;}
.ws19a{word-spacing:-0.592080px;}
.ws147{word-spacing:-0.576000px;}
.ws124{word-spacing:-0.552000px;}
.ws9f{word-spacing:-0.480000px;}
.ws4c{word-spacing:-0.468000px;}
.ws1d8{word-spacing:-0.396000px;}
.wse2{word-spacing:-0.390000px;}
.ws137{word-spacing:-0.360000px;}
.wsff{word-spacing:-0.330000px;}
.ws7f{word-spacing:-0.318000px;}
.ws114{word-spacing:-0.288000px;}
.ws115{word-spacing:-0.258000px;}
.ws183{word-spacing:-0.240000px;}
.ws220{word-spacing:-0.204000px;}
.ws110{word-spacing:-0.180000px;}
.ws1c0{word-spacing:-0.162000px;}
.ws5b{word-spacing:-0.144000px;}
.ws16a{word-spacing:-0.132000px;}
.ws172{word-spacing:-0.108000px;}
.ws143{word-spacing:-0.054000px;}
.ws13e{word-spacing:-0.036000px;}
.ws16{word-spacing:0.000000px;}
.wsc4{word-spacing:0.072000px;}
.ws1b0{word-spacing:0.108000px;}
.ws1c8{word-spacing:0.138000px;}
.ws188{word-spacing:0.144000px;}
.wsb5{word-spacing:0.216000px;}
.ws1cf{word-spacing:0.234000px;}
.ws122{word-spacing:0.240000px;}
.ws20{word-spacing:0.252000px;}
.ws105{word-spacing:0.288000px;}
.ws1e5{word-spacing:0.318000px;}
.ws33{word-spacing:0.360000px;}
.ws80{word-spacing:0.432000px;}
.ws1d{word-spacing:0.480000px;}
.ws214{word-spacing:0.522000px;}
.wsaf{word-spacing:0.540000px;}
.ws1f{word-spacing:0.588000px;}
.ws1ef{word-spacing:0.612000px;}
.wsf0{word-spacing:0.672000px;}
.ws111{word-spacing:0.702000px;}
.ws32{word-spacing:0.714000px;}
.ws9b{word-spacing:0.720000px;}
.ws106{word-spacing:0.780000px;}
.ws8d{word-spacing:0.828000px;}
.wsea{word-spacing:0.830880px;}
.ws123{word-spacing:0.888000px;}
.ws125{word-spacing:0.942000px;}
.ws17a{word-spacing:0.972000px;}
.ws2{word-spacing:0.977490px;}
.ws17{word-spacing:1.044000px;}
.wseb{word-spacing:1.056000px;}
.ws141{word-spacing:1.116000px;}
.ws79{word-spacing:1.152000px;}
.ws190{word-spacing:1.176000px;}
.wsd5{word-spacing:1.195200px;}
.ws13a{word-spacing:1.200000px;}
.ws3{word-spacing:1.215600px;}
.ws1ba{word-spacing:1.242000px;}
.wsa4{word-spacing:1.284000px;}
.wsf1{word-spacing:1.286880px;}
.wsbc{word-spacing:1.332000px;}
.ws9a{word-spacing:1.368000px;}
.ws16d{word-spacing:1.416000px;}
.ws104{word-spacing:1.440000px;}
.ws43{word-spacing:1.494000px;}
.ws84{word-spacing:1.512000px;}
.ws1d3{word-spacing:1.518000px;}
.ws13c{word-spacing:1.572000px;}
.wsd8{word-spacing:1.650000px;}
.ws1e{word-spacing:1.656000px;}
.wsde{word-spacing:1.670880px;}
.ws15{word-spacing:1.692000px;}
.ws26{word-spacing:1.728000px;}
.ws0{word-spacing:1.782066px;}
.ws1d4{word-spacing:1.800000px;}
.wsdf{word-spacing:1.810320px;}
.wsbd{word-spacing:1.854000px;}
.ws13d{word-spacing:1.866000px;}
.ws1d2{word-spacing:1.872000px;}
.ws1f4{word-spacing:1.902000px;}
.ws17d{word-spacing:1.956000px;}
.ws129{word-spacing:1.974000px;}
.ws184{word-spacing:1.992000px;}
.wsec{word-spacing:2.003040px;}
.ws218{word-spacing:2.016000px;}
.ws211{word-spacing:2.040000px;}
.ws7{word-spacing:2.061600px;}
.wsa{word-spacing:2.090400px;}
.wsf9{word-spacing:2.118000px;}
.ws11b{word-spacing:2.142000px;}
.wsac{word-spacing:2.148000px;}
.ws10e{word-spacing:2.154000px;}
.ws76{word-spacing:2.160000px;}
.wsd1{word-spacing:2.189520px;}
.ws199{word-spacing:2.295120px;}
.wsb2{word-spacing:2.514000px;}
.ws83{word-spacing:2.568000px;}
.wsb9{word-spacing:2.616000px;}
.ws82{word-spacing:2.652000px;}
.ws2b{word-spacing:2.700000px;}
.ws5c{word-spacing:2.736000px;}
.ws209{word-spacing:2.748000px;}
.wsb1{word-spacing:2.814000px;}
.wsa2{word-spacing:2.976000px;}
.ws149{word-spacing:3.018000px;}
.ws71{word-spacing:3.060000px;}
.ws19b{word-spacing:3.062160px;}
.ws72{word-spacing:3.078000px;}
.wsc9{word-spacing:3.132000px;}
.ws142{word-spacing:3.162000px;}
.ws8f{word-spacing:3.186000px;}
.ws196{word-spacing:3.235920px;}
.ws1e7{word-spacing:3.240000px;}
.ws2a{word-spacing:3.276000px;}
.ws16f{word-spacing:3.306000px;}
.ws20a{word-spacing:3.324000px;}
.ws1e6{word-spacing:3.336000px;}
.ws1ad{word-spacing:3.582000px;}
.wsa3{word-spacing:3.588000px;}
.ws10f{word-spacing:3.594000px;}
.ws70{word-spacing:3.600000px;}
.ws203{word-spacing:3.726000px;}
.ws1d1{word-spacing:3.816000px;}
.ws177{word-spacing:3.852000px;}
.ws31{word-spacing:3.936000px;}
.ws210{word-spacing:3.960000px;}
.ws20f{word-spacing:4.074000px;}
.ws38{word-spacing:4.092000px;}
.ws1c2{word-spacing:4.122000px;}
.ws11c{word-spacing:4.176000px;}
.wsbb{word-spacing:4.314000px;}
.ws171{word-spacing:4.416000px;}
.ws91{word-spacing:4.536000px;}
.ws164{word-spacing:4.554000px;}
.wsa9{word-spacing:4.602000px;}
.ws1f6{word-spacing:4.680000px;}
.ws23{word-spacing:4.752000px;}
.ws39{word-spacing:4.800000px;}
.ws45{word-spacing:4.854000px;}
.wsb8{word-spacing:4.878000px;}
.ws134{word-spacing:5.022000px;}
.ws148{word-spacing:5.034000px;}
.wsfa{word-spacing:5.040000px;}
.wsfc{word-spacing:5.112000px;}
.ws21b{word-spacing:5.154000px;}
.ws60{word-spacing:5.334000px;}
.ws4f{word-spacing:5.436000px;}
.ws14a{word-spacing:5.472000px;}
.ws178{word-spacing:5.496000px;}
.ws59{word-spacing:5.532000px;}
.ws1ed{word-spacing:5.544000px;}
.ws1c5{word-spacing:5.580000px;}
.ws16e{word-spacing:5.616000px;}
.ws117{word-spacing:5.694000px;}
.ws213{word-spacing:5.706000px;}
.ws11{word-spacing:5.719680px;}
.ws128{word-spacing:5.754000px;}
.ws6f{word-spacing:5.760000px;}
.ws1b7{word-spacing:5.772000px;}
.wsfd{word-spacing:5.796000px;}
.ws2c{word-spacing:5.856000px;}
.ws92{word-spacing:5.904000px;}
.ws89{word-spacing:5.976000px;}
.ws118{word-spacing:5.994000px;}
.ws1ea{word-spacing:6.120000px;}
.wsa7{word-spacing:6.180000px;}
.wsa5{word-spacing:6.192000px;}
.ws8c{word-spacing:6.276000px;}
.ws10d{word-spacing:6.288000px;}
.ws204{word-spacing:6.300000px;}
.ws120{word-spacing:6.468000px;}
.ws4b{word-spacing:6.480000px;}
.ws1ec{word-spacing:6.588000px;}
.ws1bb{word-spacing:6.624000px;}
.ws191{word-spacing:6.696000px;}
.ws156{word-spacing:6.727440px;}
.ws140{word-spacing:6.906000px;}
.wsc8{word-spacing:7.002000px;}
.ws78{word-spacing:7.086000px;}
.ws8b{word-spacing:7.158000px;}
.ws135{word-spacing:7.194000px;}
.ws8e{word-spacing:7.206000px;}
.ws97{word-spacing:7.230000px;}
.ws3b{word-spacing:7.254000px;}
.wsad{word-spacing:7.416000px;}
.ws99{word-spacing:7.434000px;}
.ws1ca{word-spacing:7.440000px;}
.wsc1{word-spacing:7.548000px;}
.ws3a{word-spacing:7.560000px;}
.ws185{word-spacing:7.704000px;}
.ws18c{word-spacing:7.908000px;}
.wsab{word-spacing:7.920000px;}
.ws1b9{word-spacing:8.232000px;}
.ws5a{word-spacing:8.346000px;}
.ws11d{word-spacing:8.370000px;}
.ws13f{word-spacing:8.406000px;}
.wsbe{word-spacing:8.442000px;}
.ws28{word-spacing:8.454000px;}
.ws40{word-spacing:8.526000px;}
.ws10b{word-spacing:8.574000px;}
.wsfe{word-spacing:8.646000px;}
.ws36{word-spacing:8.730000px;}
.ws21{word-spacing:8.742000px;}
.wsba{word-spacing:8.820000px;}
.ws15d{word-spacing:8.828160px;}
.ws192{word-spacing:8.856000px;}
.ws65{word-spacing:8.874000px;}
.ws3f{word-spacing:9.000000px;}
.ws1c1{word-spacing:9.036000px;}
.ws187{word-spacing:9.144000px;}
.ws10a{word-spacing:9.180000px;}
.wsbf{word-spacing:9.192000px;}
.ws3c{word-spacing:9.204000px;}
.ws1fe{word-spacing:9.240000px;}
.ws217{word-spacing:9.264000px;}
.ws17b{word-spacing:9.348000px;}
.wsda{word-spacing:9.470880px;}
.wsae{word-spacing:9.576000px;}
.ws17c{word-spacing:9.612000px;}
.ws14b{word-spacing:9.678000px;}
.ws12c{word-spacing:9.704640px;}
.ws18f{word-spacing:9.720000px;}
.wsc7{word-spacing:9.930000px;}
.ws1fc{word-spacing:9.954000px;}
.ws7b{word-spacing:10.050000px;}
.wsa0{word-spacing:10.062000px;}
.ws74{word-spacing:10.074000px;}
.ws96{word-spacing:10.158000px;}
.ws75{word-spacing:10.296000px;}
.ws139{word-spacing:10.314000px;}
.wsa6{word-spacing:10.440000px;}
.ws165{word-spacing:10.476000px;}
.ws94{word-spacing:10.500000px;}
.ws1fd{word-spacing:10.524000px;}
.ws27{word-spacing:10.584000px;}
.ws56{word-spacing:10.620000px;}
.ws1c6{word-spacing:10.656000px;}
.ws138{word-spacing:10.776000px;}
.ws48{word-spacing:10.788000px;}
.ws107{word-spacing:10.800000px;}
.wse7{word-spacing:10.910880px;}
.ws77{word-spacing:11.016000px;}
.ws4d{word-spacing:11.160000px;}
.ws157{word-spacing:11.169216px;}
.ws98{word-spacing:11.370000px;}
.ws1cd{word-spacing:11.382000px;}
.ws20b{word-spacing:11.394000px;}
.ws1c7{word-spacing:11.454000px;}
.ws37{word-spacing:11.514000px;}
.ws1e8{word-spacing:11.676000px;}
.ws15c{word-spacing:11.708160px;}
.ws1b5{word-spacing:11.736000px;}
.ws73{word-spacing:11.760000px;}
.ws2e{word-spacing:11.772000px;}
.ws113{word-spacing:12.024000px;}
.ws30{word-spacing:12.048000px;}
.ws100{word-spacing:12.054000px;}
.ws16c{word-spacing:12.072000px;}
.ws9d{word-spacing:12.240000px;}
.ws1d0{word-spacing:12.312000px;}
.ws200{word-spacing:12.342000px;}
.ws52{word-spacing:12.654000px;}
.ws4e{word-spacing:12.696000px;}
.ws206{word-spacing:12.702000px;}
.ws8a{word-spacing:12.798000px;}
.ws20c{word-spacing:12.840000px;}
.ws20e{word-spacing:12.846000px;}
.ws166{word-spacing:12.888000px;}
.ws95{word-spacing:12.936000px;}
.ws54{word-spacing:12.966000px;}
.ws12f{word-spacing:12.987840px;}
.wsb3{word-spacing:12.990000px;}
.ws1bd{word-spacing:13.032000px;}
.ws1ac{word-spacing:13.176000px;}
.ws51{word-spacing:13.206000px;}
.ws202{word-spacing:13.320000px;}
.ws201{word-spacing:13.404000px;}
.ws7d{word-spacing:13.428000px;}
.ws85{word-spacing:13.668000px;}
.ws1b8{word-spacing:13.674000px;}
.ws207{word-spacing:13.806000px;}
.ws93{word-spacing:14.076000px;}
.ws55{word-spacing:14.172000px;}
.ws1f8{word-spacing:14.178000px;}
.ws208{word-spacing:14.346000px;}
.ws7e{word-spacing:14.364000px;}
.ws57{word-spacing:14.370000px;}
.ws223{word-spacing:14.400000px;}
.wsca{word-spacing:14.436000px;}
.ws108{word-spacing:14.610000px;}
.ws18d{word-spacing:14.652000px;}
.ws19d{word-spacing:14.657760px;}
.ws1ce{word-spacing:14.682000px;}
.ws1be{word-spacing:14.754000px;}
.ws17f{word-spacing:14.976000px;}
.ws9c{word-spacing:15.114000px;}
.wsaa{word-spacing:15.120000px;}
.ws1f9{word-spacing:15.462000px;}
.ws1bf{word-spacing:15.558000px;}
.wsa8{word-spacing:15.696000px;}
.ws175{word-spacing:15.816000px;}
.ws7a{word-spacing:15.846000px;}
.ws174{word-spacing:16.086000px;}
.wsc5{word-spacing:16.140000px;}
.ws1fa{word-spacing:16.200000px;}
.ws1cb{word-spacing:16.236000px;}
.ws16b{word-spacing:16.272000px;}
.ws116{word-spacing:16.596000px;}
.wscb{word-spacing:16.962000px;}
.ws181{word-spacing:17.058000px;}
.ws169{word-spacing:17.082000px;}
.ws21f{word-spacing:17.250000px;}
.ws22{word-spacing:17.376000px;}
.wsb0{word-spacing:17.490000px;}
.ws24{word-spacing:17.514000px;}
.ws1cc{word-spacing:17.532000px;}
.ws1f1{word-spacing:17.760000px;}
.ws1f2{word-spacing:17.856000px;}
.ws18e{word-spacing:17.994000px;}
.ws180{word-spacing:18.000000px;}
.ws1c4{word-spacing:18.312000px;}
.ws1f0{word-spacing:18.462000px;}
.ws5d{word-spacing:18.486000px;}
.ws219{word-spacing:18.726000px;}
.ws176{word-spacing:18.768000px;}
.ws2f{word-spacing:18.792000px;}
.ws167{word-spacing:18.936000px;}
.ws53{word-spacing:19.152000px;}
.ws1b1{word-spacing:19.428000px;}
.ws179{word-spacing:19.638000px;}
.ws1b3{word-spacing:20.124000px;}
.wsc2{word-spacing:20.130000px;}
.ws90{word-spacing:20.370000px;}
.ws1c3{word-spacing:20.640000px;}
.ws1b4{word-spacing:20.874000px;}
.ws1b2{word-spacing:20.880000px;}
.ws5f{word-spacing:21.096000px;}
.ws119{word-spacing:21.654000px;}
.ws34{word-spacing:21.702000px;}
.ws14d{word-spacing:21.788160px;}
.wsc0{word-spacing:21.846000px;}
.ws144{word-spacing:22.068000px;}
.ws62{word-spacing:22.308000px;}
.wsb6{word-spacing:22.320000px;}
.ws1f3{word-spacing:22.404000px;}
.wsf5{word-spacing:22.424880px;}
.ws88{word-spacing:22.530000px;}
.ws1b6{word-spacing:22.722000px;}
.ws49{word-spacing:22.788000px;}
.ws4a{word-spacing:22.806000px;}
.wsfb{word-spacing:23.010000px;}
.ws2d{word-spacing:23.094000px;}
.ws11f{word-spacing:23.106000px;}
.ws146{word-spacing:23.274000px;}
.ws46{word-spacing:23.292000px;}
.ws222{word-spacing:23.556000px;}
.ws86{word-spacing:23.760000px;}
.wsee{word-spacing:23.870880px;}
.wsb7{word-spacing:24.210000px;}
.ws50{word-spacing:24.372000px;}
.wsf6{word-spacing:24.480000px;}
.ws35{word-spacing:24.516000px;}
.ws127{word-spacing:24.726000px;}
.ws58{word-spacing:24.900000px;}
.ws109{word-spacing:25.200000px;}
.ws21d{word-spacing:25.440000px;}
.ws121{word-spacing:25.902000px;}
.ws10c{word-spacing:25.950000px;}
.ws87{word-spacing:26.130000px;}
.ws1d9{word-spacing:26.352000px;}
.ws11a{word-spacing:26.400000px;}
.ws168{word-spacing:26.460000px;}
.ws11e{word-spacing:26.610000px;}
.ws13b{word-spacing:26.640000px;}
.ws3e{word-spacing:27.210000px;}
.ws17e{word-spacing:27.288000px;}
.ws212{word-spacing:27.528000px;}
.ws102{word-spacing:27.576000px;}
.ws1d7{word-spacing:27.720000px;}
.ws112{word-spacing:27.894000px;}
.ws1c9{word-spacing:28.428000px;}
.ws61{word-spacing:28.566000px;}
.ws3d{word-spacing:29.046000px;}
.ws18a{word-spacing:29.508000px;}
.ws44{word-spacing:29.514000px;}
.ws1d5{word-spacing:29.880000px;}
.ws64{word-spacing:30.132000px;}
.ws224{word-spacing:30.162000px;}
.ws173{word-spacing:30.276000px;}
.ws1bc{word-spacing:30.450000px;}
.ws189{word-spacing:30.486000px;}
.ws145{word-spacing:30.720000px;}
.ws1f5{word-spacing:33.000000px;}
.ws1e9{word-spacing:33.240000px;}
.ws21e{word-spacing:33.336000px;}
.ws103{word-spacing:33.834000px;}
.ws170{word-spacing:34.602000px;}
.ws1ff{word-spacing:34.680000px;}
.ws186{word-spacing:34.914000px;}
.ws18b{word-spacing:35.976000px;}
.ws1ae{word-spacing:36.210000px;}
.ws1af{word-spacing:36.246000px;}
.ws63{word-spacing:37.506000px;}
.wsb4{word-spacing:39.096000px;}
.wsc6{word-spacing:39.354000px;}
.wsa1{word-spacing:40.296000px;}
.ws1ee{word-spacing:40.506000px;}
.ws7c{word-spacing:40.536000px;}
.ws6e{word-spacing:41.034000px;}
.ws29{word-spacing:41.238000px;}
.ws47{word-spacing:42.690000px;}
.ws25{word-spacing:43.710000px;}
.ws81{word-spacing:44.202000px;}
.ws182{word-spacing:44.400000px;}
.ws1d6{word-spacing:44.748000px;}
.wse0{word-spacing:45.464880px;}
.ws1fb{word-spacing:48.132000px;}
.ws42{word-spacing:50.034000px;}
.ws9e{word-spacing:51.768000px;}
.ws41{word-spacing:52.092000px;}
.ws68{word-spacing:52.787520px;}
.ws221{word-spacing:53.496000px;}
.ws1df{word-spacing:75.283176px;}
.wsf{word-spacing:86.406000px;}
.ws1aa{word-spacing:99.760176px;}
.ws20d{word-spacing:130.434000px;}
.ws1e0{word-spacing:131.413500px;}
.ws1a0{word-spacing:190.584000px;}
.ws215{word-spacing:207.714000px;}
.ws216{word-spacing:208.686000px;}
.ws1da{word-spacing:287.299872px;}
.ws1e4{word-spacing:292.206000px;}
.ws1a1{word-spacing:318.288720px;}
.ws1e2{word-spacing:370.802388px;}
.ws21a{word-spacing:375.726000px;}
.ws159{word-spacing:379.704720px;}
.ws205{word-spacing:415.326000px;}
.ws1eb{word-spacing:431.886000px;}
.ws153{word-spacing:462.294144px;}
.ws154{word-spacing:499.662720px;}
.ws158{word-spacing:524.160000px;}
.ws152{word-spacing:554.324880px;}
.ws151{word-spacing:614.367120px;}
.ws15a{word-spacing:657.936000px;}
.ws1a7{word-spacing:794.326920px;}
.ws1a9{word-spacing:1103.040000px;}
._7b{margin-left:-570.513540px;}
._67{margin-left:-429.387540px;}
._70{margin-left:-407.793540px;}
._40{margin-left:-359.288640px;}
._3e{margin-left:-333.953856px;}
._73{margin-left:-322.125000px;}
._75{margin-left:-317.805000px;}
._61{margin-left:-303.405000px;}
._6b{margin-left:-299.091000px;}
._44{margin-left:-296.472960px;}
._5f{margin-left:-294.771000px;}
._6d{margin-left:-289.011000px;}
._5e{margin-left:-270.291000px;}
._3f{margin-left:-264.833856px;}
._74{margin-left:-263.091000px;}
._60{margin-left:-261.645000px;}
._6c{margin-left:-258.771000px;}
._66{margin-left:-246.827820px;}
._4a{margin-left:-245.018640px;}
._63{margin-left:-237.414600px;}
._6f{margin-left:-236.153760px;}
._4b{margin-left:-229.178640px;}
._54{margin-left:-226.262640px;}
._72{margin-left:-224.759460px;}
._71{margin-left:-207.163020px;}
._5c{margin-left:-204.739620px;}
._59{margin-left:-198.720180px;}
._6a{margin-left:-187.450920px;}
._30{margin-left:-178.520880px;}
._79{margin-left:-175.769820px;}
._38{margin-left:-171.690960px;}
._57{margin-left:-169.920180px;}
._46{margin-left:-168.312960px;}
._53{margin-left:-166.368960px;}
._34{margin-left:-164.162880px;}
._3c{margin-left:-158.563920px;}
._49{margin-left:-154.304640px;}
._4d{margin-left:-147.450000px;}
._52{margin-left:-145.512000px;}
._7a{margin-left:-143.015580px;}
._64{margin-left:-141.569580px;}
._48{margin-left:-139.512960px;}
._5b{margin-left:-138.234180px;}
._69{margin-left:-136.800180px;}
._77{margin-left:-133.613820px;}
._43{margin-left:-128.661120px;}
._42{margin-left:-124.616784px;}
._45{margin-left:-115.701120px;}
._3d{margin-left:-113.595840px;}
._3b{margin-left:-111.378000px;}
._37{margin-left:-109.269840px;}
._47{margin-left:-107.061120px;}
._78{margin-left:-106.055760px;}
._4c{margin-left:-104.250000px;}
._31{margin-left:-100.799760px;}
._76{margin-left:-99.758160px;}
._6e{margin-left:-98.656440px;}
._65{margin-left:-97.409760px;}
._4e{margin-left:-95.616000px;}
._68{margin-left:-90.099180px;}
._55{margin-left:-88.665180px;}
._3a{margin-left:-86.229840px;}
._36{margin-left:-84.825840px;}
._39{margin-left:-83.349840px;}
._35{margin-left:-79.196880px;}
._2e{margin-left:-77.720880px;}
._33{margin-left:-74.882880px;}
._58{margin-left:-73.440180px;}
._62{margin-left:-70.169880px;}
._32{margin-left:-68.184000px;}
._2f{margin-left:-66.708000px;}
._56{margin-left:-52.665000px;}
._5a{margin-left:-44.019000px;}
._5d{margin-left:-39.705000px;}
._2b{margin-left:-35.501760px;}
._28{margin-left:-33.868800px;}
._29{margin-left:-32.417280px;}
._2a{margin-left:-30.965760px;}
._26{margin-left:-28.815870px;}
._21{margin-left:-27.518400px;}
._22{margin-left:-26.187840px;}
._1f{margin-left:-24.736320px;}
._17{margin-left:-23.466240px;}
._14{margin-left:-21.833280px;}
._15{margin-left:-20.381760px;}
._16{margin-left:-19.293120px;}
._1b{margin-left:-18.023040px;}
._1d{margin-left:-16.813440px;}
._1c{margin-left:-15.664320px;}
._2c{margin-left:-14.394240px;}
._11{margin-left:-13.047588px;}
._e{margin-left:-11.801646px;}
._10{margin-left:-10.757394px;}
._12{margin-left:-8.898606px;}
._c{margin-left:-7.435614px;}
._f{margin-left:-6.203694px;}
._d{margin-left:-5.122896px;}
._7{margin-left:-4.038690px;}
._0{margin-left:-2.138130px;}
._4{margin-left:-1.028088px;}
._1{width:1.472934px;}
._3{width:2.731158px;}
._a{width:4.223640px;}
._7d{width:5.464110px;}
._7c{width:6.528258px;}
._7e{width:8.314950px;}
._6{width:9.412284px;}
._5{width:12.375468px;}
._25{width:14.066328px;}
._1a{width:15.740832px;}
._b{width:18.256530px;}
._18{width:19.698792px;}
._9{width:22.388706px;}
._24{width:24.264906px;}
._13{width:25.526376px;}
._20{width:27.769302px;}
._50{width:28.877880px;}
._19{width:30.197550px;}
._2d{width:32.236452px;}
._41{width:34.282338px;}
._27{width:36.178020px;}
._1e{width:38.765022px;}
._4f{width:43.737552px;}
._23{width:48.491040px;}
._51{width:53.364600px;}
._7f{width:217.616370px;}
._2{width:601.977108px;}
._8{width:1258.535904px;}
.fc3{color:rgb(0,71,255);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fsc{font-size:41.622000px;}
.fsa{font-size:44.352000px;}
.fs8{font-size:44.640000px;}
.fs0{font-size:47.514000px;}
.fs7{font-size:48.960000px;}
.fsb{font-size:59.460000px;}
.fs4{font-size:60.480000px;}
.fs9{font-size:63.360000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:83.514000px;}
.fs2{font-size:86.400000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y19a{bottom:3.241500px;}
.y2{bottom:55.800000px;}
.y1df{bottom:109.846500px;}
.y51{bottom:111.711000px;}
.y88{bottom:117.435000px;}
.y1de{bottom:123.525000px;}
.y27{bottom:123.531000px;}
.y50{bottom:128.989500px;}
.y104{bottom:131.398500px;}
.y87{bottom:134.713500px;}
.y1dd{bottom:137.203500px;}
.y26{bottom:140.809500px;}
.y4f{bottom:146.268000px;}
.y103{bottom:148.680000px;}
.y1dc{bottom:151.242000px;}
.y86{bottom:151.992000px;}
.y1b8{bottom:153.742500px;}
.yda{bottom:154.804500px;}
.y25{bottom:158.088000px;}
.y174{bottom:163.438500px;}
.y4e{bottom:163.546500px;}
.y1db{bottom:164.920500px;}
.y85{bottom:169.270500px;}
.y1b7{bottom:171.021000px;}
.yd9{bottom:171.723000px;}
.y102{bottom:174.630000px;}
.y24{bottom:175.366500px;}
.y4d{bottom:180.825000px;}
.y84{bottom:186.189000px;}
.y1da{bottom:187.599000px;}
.y1b6{bottom:187.939500px;}
.yd8{bottom:189.001500px;}
.y173{bottom:189.358500px;}
.y126{bottom:190.078500px;}
.y23{bottom:192.645000px;}
.y4c{bottom:198.103500px;}
.y101{bottom:200.188500px;}
.y1d9{bottom:200.919000px;}
.y83{bottom:203.467500px;}
.y1b5{bottom:205.218000px;}
.yd7{bottom:206.280000px;}
.y172{bottom:206.638500px;}
.yb7{bottom:209.896500px;}
.y22{bottom:209.923500px;}
.y1d8{bottom:214.597500px;}
.y4b{bottom:215.382000px;}
.y100{bottom:217.467000px;}
.y82{bottom:220.746000px;}
.y1b4{bottom:222.496500px;}
.yd6{bottom:223.558500px;}
.y171{bottom:223.920000px;}
.yb6{bottom:227.175000px;}
.y21{bottom:227.202000px;}
.y1d7{bottom:228.636000px;}
.y4a{bottom:232.660500px;}
.yff{bottom:234.745500px;}
.y81{bottom:238.024500px;}
.y1b3{bottom:239.775000px;}
.y170{bottom:240.840000px;}
.yd5{bottom:240.879000px;}
.y1d6{bottom:242.314500px;}
.yb5{bottom:244.093500px;}
.y149{bottom:253.485000px;}
.y80{bottom:255.303000px;}
.y1d5{bottom:255.993000px;}
.y1b2{bottom:257.053500px;}
.yd4{bottom:258.157500px;}
.y49{bottom:258.219000px;}
.yb4{bottom:261.372000px;}
.y16f{bottom:266.760000px;}
.y20{bottom:266.800500px;}
.y148{bottom:270.763500px;}
.yfe{bottom:272.185500px;}
.y1b1{bottom:274.332000px;}
.yd3{bottom:275.436000px;}
.y48{bottom:275.497500px;}
.yb3{bottom:278.650500px;}
.y16e{bottom:284.040000px;}
.y147{bottom:288.042000px;}
.y1b0{bottom:291.610500px;}
.yd2{bottom:292.714500px;}
.y47{bottom:292.776000px;}
.y1d4{bottom:293.071500px;}
.y7f{bottom:294.543000px;}
.yb2{bottom:295.929000px;}
.yfd{bottom:298.105500px;}
.y146{bottom:305.320500px;}
.y1af{bottom:308.889000px;}
.yd1{bottom:309.993000px;}
.y46{bottom:310.054500px;}
.y16d{bottom:310.326000px;}
.yfc{bottom:311.425500px;}
.yb1{bottom:313.207500px;}
.y7e{bottom:319.023000px;}
.y145{bottom:322.599000px;}
.y1ae{bottom:326.167500px;}
.yfb{bottom:326.184000px;}
.yd0{bottom:327.271500px;}
.y45{bottom:327.333000px;}
.yb0{bottom:330.486000px;}
.y1f{bottom:332.319000px;}
.y16c{bottom:335.884500px;}
.y144{bottom:339.877500px;}
.yfa{bottom:340.582500px;}
.y1ad{bottom:343.446000px;}
.ycf{bottom:344.550000px;}
.y44{bottom:344.611500px;}
.yaf{bottom:347.764500px;}
.y1e{bottom:349.597500px;}
.y16b{bottom:353.163000px;}
.yf9{bottom:354.621000px;}
.y1d3{bottom:358.951500px;}
.y1ac{bottom:360.724500px;}
.yce{bottom:361.468500px;}
.y43{bottom:361.530000px;}
.yae{bottom:365.043000px;}
.y143{bottom:365.436000px;}
.y1d{bottom:366.876000px;}
.y16a{bottom:370.441500px;}
.yf8{bottom:375.499500px;}
.y1d2{bottom:375.870000px;}
.ycd{bottom:378.747000px;}
.y42{bottom:378.808500px;}
.yad{bottom:382.321500px;}
.y142{bottom:382.714500px;}
.y1c{bottom:384.154500px;}
.y7d{bottom:384.541500px;}
.y1ab{bottom:386.283000px;}
.y169{bottom:387.720000px;}
.yf7{bottom:389.178000px;}
.y1d1{bottom:393.148500px;}
.y41{bottom:396.087000px;}
.yac{bottom:399.600000px;}
.y141{bottom:399.993000px;}
.y1b{bottom:401.433000px;}
.y7c{bottom:401.820000px;}
.y1aa{bottom:403.561500px;}
.yf6{bottom:403.936500px;}
.y20f{bottom:403.977000px;}
.y168{bottom:404.998500px;}
.y1d0{bottom:410.427000px;}
.y40{bottom:413.365500px;}
.yab{bottom:416.878500px;}
.y140{bottom:417.271500px;}
.y20e{bottom:417.655500px;}
.yf5{bottom:417.975000px;}
.ycc{bottom:417.987000px;}
.y1a{bottom:418.711500px;}
.y7b{bottom:419.098500px;}
.y237{bottom:421.666500px;}
.y1cf{bottom:427.705500px;}
.y1a6{bottom:429.843000px;}
.y3f{bottom:430.644000px;}
.y20d{bottom:431.694000px;}
.yf4{bottom:432.013500px;}
.y1a8{bottom:433.801500px;}
.y1a2{bottom:433.803000px;}
.y13f{bottom:434.550000px;}
.y1a3{bottom:434.883000px;}
.y19{bottom:435.630000px;}
.y7a{bottom:436.377000px;}
.y236{bottom:438.945000px;}
.ycb{bottom:442.105500px;}
.y167{bottom:442.438500px;}
.y1ce{bottom:444.984000px;}
.y20c{bottom:445.372500px;}
.y3e{bottom:447.922500px;}
.y13e{bottom:451.828500px;}
.y1a7{bottom:452.521500px;}
.yf3{bottom:452.892000px;}
.y18{bottom:452.908500px;}
.y79{bottom:453.655500px;}
.yaa{bottom:454.318500px;}
.y235{bottom:456.223500px;}
.y1a9{bottom:456.480000px;}
.y1a4{bottom:456.483000px;}
.y1a5{bottom:457.563000px;}
.y1cd{bottom:462.262500px;}
.y3d{bottom:465.201000px;}
.yf2{bottom:466.570500px;}
.yca{bottom:466.585500px;}
.y20b{bottom:468.051000px;}
.y13d{bottom:469.107000px;}
.y17{bottom:470.187000px;}
.y78{bottom:470.934000px;}
.y234{bottom:473.142000px;}
.y1cc{bottom:479.541000px;}
.yf1{bottom:481.329000px;}
.y20a{bottom:481.371000px;}
.y3c{bottom:482.479500px;}
.y1a1{bottom:483.841500px;}
.y13c{bottom:486.025500px;}
.y77{bottom:488.212500px;}
.y233{bottom:490.420500px;}
.y209{bottom:495.409500px;}
.yf0{bottom:495.727500px;}
.y1cb{bottom:496.819500px;}
.y3b{bottom:499.758000px;}
.y1a0{bottom:501.120000px;}
.y13b{bottom:503.304000px;}
.y76{bottom:505.491000px;}
.y232{bottom:507.699000px;}
.y208{bottom:509.088000px;}
.yef{bottom:509.766000px;}
.y16{bottom:509.785500px;}
.y1ca{bottom:514.098000px;}
.y3a{bottom:517.036500px;}
.y13a{bottom:520.582500px;}
.y75{bottom:522.769500px;}
.y231{bottom:524.977500px;}
.y19e{bottom:527.760000px;}
.yee{bottom:530.284500px;}
.y19c{bottom:531.360000px;}
.y1c9{bottom:531.376500px;}
.y207{bottom:531.766500px;}
.yc9{bottom:532.465500px;}
.y39{bottom:534.315000px;}
.y139{bottom:537.861000px;}
.y74{bottom:539.688000px;}
.y230{bottom:542.256000px;}
.yed{bottom:543.963000px;}
.y206{bottom:545.086500px;}
.y1c8{bottom:548.655000px;}
.yc8{bottom:549.744000px;}
.y19f{bottom:550.080000px;}
.y38{bottom:551.593500px;}
.y19d{bottom:554.038500px;}
.y138{bottom:555.139500px;}
.y73{bottom:556.966500px;}
.yec{bottom:558.721500px;}
.y205{bottom:558.765000px;}
.y22f{bottom:559.534500px;}
.ya9{bottom:566.040000px;}
.yc7{bottom:566.662500px;}
.y204{bottom:572.803500px;}
.yeb{bottom:573.120000px;}
.y72{bottom:574.245000px;}
.y15{bottom:574.944000px;}
.y37{bottom:577.152000px;}
.ya8{bottom:583.318500px;}
.y195{bottom:583.575000px;}
.yc6{bottom:583.941000px;}
.y22e{bottom:585.093000px;}
.yea{bottom:587.158500px;}
.y197{bottom:587.173500px;}
.y193{bottom:587.175000px;}
.y1c7{bottom:587.895000px;}
.y71{bottom:591.523500px;}
.y14{bottom:592.222500px;}
.y36{bottom:594.430500px;}
.y137{bottom:594.738000px;}
.y203{bottom:595.482000px;}
.y19b{bottom:597.598500px;}
.ya7{bottom:600.597000px;}
.yc5{bottom:601.219500px;}
.y22d{bottom:602.371500px;}
.y166{bottom:604.477500px;}
.y196{bottom:606.253500px;}
.y199{bottom:606.598500px;}
.y202{bottom:608.802000px;}
.y198{bottom:609.852000px;}
.y194{bottom:609.853500px;}
.y35{bottom:611.709000px;}
.ye9{bottom:612.019500px;}
.y70{bottom:617.443500px;}
.ya6{bottom:617.515500px;}
.yc4{bottom:618.498000px;}
.y22c{bottom:619.650000px;}
.y165{bottom:621.756000px;}
.y34{bottom:628.987500px;}
.ye8{bottom:629.298000px;}
.y201{bottom:631.480500px;}
.y13{bottom:631.821000px;}
.y6f{bottom:634.722000px;}
.ya5{bottom:634.794000px;}
.yc3{bottom:635.776500px;}
.y192{bottom:636.495000px;}
.y22b{bottom:636.928500px;}
.y164{bottom:639.034500px;}
.y200{bottom:644.800500px;}
.y33{bottom:646.266000px;}
.ye7{bottom:646.576500px;}
.y191{bottom:651.615000px;}
.y6e{bottom:651.640500px;}
.ya4{bottom:652.072500px;}
.yc2{bottom:653.055000px;}
.y190{bottom:653.773500px;}
.y1c6{bottom:653.775000px;}
.y22a{bottom:654.207000px;}
.y163{bottom:656.313000px;}
.y1ff{bottom:658.839000px;}
.y136{bottom:660.256500px;}
.y32{bottom:663.544500px;}
.ye6{bottom:663.855000px;}
.y6d{bottom:668.919000px;}
.ya3{bottom:669.351000px;}
.yc1{bottom:670.333500px;}
.y1c5{bottom:671.053500px;}
.y229{bottom:671.485500px;}
.y1fe{bottom:672.517500px;}
.y135{bottom:677.535000px;}
.y18e{bottom:679.693500px;}
.y31{bottom:680.463000px;}
.ye5{bottom:681.133500px;}
.y161{bottom:682.231500px;}
.y18f{bottom:684.732000px;}
.y1fd{bottom:686.196000px;}
.y6c{bottom:686.197500px;}
.ya2{bottom:686.629500px;}
.y162{bottom:687.271500px;}
.yc0{bottom:687.612000px;}
.y1c4{bottom:687.972000px;}
.y228{bottom:688.764000px;}
.y134{bottom:694.813500px;}
.y12{bottom:697.339500px;}
.y30{bottom:697.741500px;}
.ye4{bottom:698.052000px;}
.y6b{bottom:703.476000px;}
.ya1{bottom:703.908000px;}
.ybf{bottom:704.890500px;}
.y1c3{bottom:705.250500px;}
.y227{bottom:706.042500px;}
.y1fc{bottom:708.874500px;}
.y18d{bottom:711.373500px;}
.y133{bottom:712.092000px;}
.y160{bottom:714.270000px;}
.y11{bottom:714.978000px;}
.y2f{bottom:715.020000px;}
.ye3{bottom:715.330500px;}
.y6a{bottom:720.754500px;}
.ya0{bottom:721.186500px;}
.ybe{bottom:722.169000px;}
.y1fb{bottom:722.194500px;}
.y1c2{bottom:722.529000px;}
.y226{bottom:723.321000px;}
.y18c{bottom:728.652000px;}
.y15f{bottom:731.548500px;}
.y10{bottom:732.256500px;}
.y2e{bottom:732.298500px;}
.ye2{bottom:732.609000px;}
.y1fa{bottom:736.233000px;}
.y132{bottom:737.650500px;}
.y69{bottom:738.033000px;}
.y9f{bottom:738.465000px;}
.ybd{bottom:739.447500px;}
.y1c1{bottom:739.807500px;}
.y18b{bottom:745.930500px;}
.y15e{bottom:748.467000px;}
.yf{bottom:749.535000px;}
.y2d{bottom:749.577000px;}
.ye1{bottom:749.887500px;}
.y1f9{bottom:749.911500px;}
.y131{bottom:754.929000px;}
.y68{bottom:755.311500px;}
.y9e{bottom:755.743500px;}
.ybc{bottom:756.366000px;}
.y1c0{bottom:757.086000px;}
.y225{bottom:762.561000px;}
.y18a{bottom:763.209000px;}
.y1f8{bottom:763.590000px;}
.y15d{bottom:765.745500px;}
.ye{bottom:766.813500px;}
.y2c{bottom:766.855500px;}
.ye0{bottom:767.166000px;}
.y130{bottom:772.207500px;}
.y67{bottom:772.590000px;}
.y9d{bottom:773.022000px;}
.ybb{bottom:773.644500px;}
.y1bf{bottom:774.364500px;}
.y1f7{bottom:777.628500px;}
.y115{bottom:780.120000px;}
.y189{bottom:780.487500px;}
.y15c{bottom:783.024000px;}
.yd{bottom:784.092000px;}
.y2b{bottom:784.134000px;}
.ydf{bottom:784.444500px;}
.y12f{bottom:789.486000px;}
.y66{bottom:789.868500px;}
.y9c{bottom:790.300500px;}
.yba{bottom:790.923000px;}
.y1be{bottom:791.643000px;}
.y114{bottom:797.398500px;}
.y1f6{bottom:800.307000px;}
.yc{bottom:801.370500px;}
.y2a{bottom:801.412500px;}
.yde{bottom:801.723000px;}
.y188{bottom:806.046000px;}
.y12e{bottom:806.764500px;}
.y65{bottom:807.147000px;}
.y9b{bottom:807.579000px;}
.y15b{bottom:808.944000px;}
.y1f5{bottom:813.627000px;}
.yb{bottom:818.649000px;}
.y29{bottom:818.691000px;}
.ydd{bottom:819.001500px;}
.y113{bottom:823.318500px;}
.y187{bottom:823.324500px;}
.y12d{bottom:824.043000px;}
.y64{bottom:824.425500px;}
.y15a{bottom:826.222500px;}
.y1f4{bottom:827.305500px;}
.y224{bottom:827.719500px;}
.yb9{bottom:828.721500px;}
.y1bd{bottom:829.083000px;}
.y125{bottom:832.342500px;}
.y9a{bottom:833.137500px;}
.ya{bottom:835.927500px;}
.y28{bottom:835.969500px;}
.ydc{bottom:836.280000px;}
.y186{bottom:840.603000px;}
.y12c{bottom:841.321500px;}
.y1f3{bottom:841.344000px;}
.y223{bottom:841.398000px;}
.y63{bottom:841.704000px;}
.yb8{bottom:842.400000px;}
.y1bc{bottom:843.121500px;}
.y159{bottom:843.501000px;}
.y112{bottom:848.878500px;}
.y124{bottom:849.621000px;}
.y99{bottom:850.416000px;}
.y1f2{bottom:855.022500px;}
.y222{bottom:855.076500px;}
.y1bb{bottom:856.800000px;}
.y185{bottom:857.881500px;}
.y158{bottom:860.419500px;}
.y123{bottom:866.899500px;}
.y62{bottom:867.262500px;}
.y98{bottom:867.694500px;}
.y1f1{bottom:868.701000px;}
.y221{bottom:868.755000px;}
.ydb{bottom:873.720000px;}
.y111{bottom:874.800000px;}
.y184{bottom:875.160000px;}
.y157{bottom:877.698000px;}
.y12b{bottom:878.761500px;}
.y1ba{bottom:882.000000px;}
.y122{bottom:884.178000px;}
.y61{bottom:884.541000px;}
.y97{bottom:884.973000px;}
.y1f0{bottom:891.379500px;}
.y220{bottom:891.433500px;}
.y12a{bottom:892.800000px;}
.y156{bottom:894.976500px;}
.y9{bottom:895.687500px;}
.y183{bottom:901.080000px;}
.y121{bottom:901.456500px;}
.y60{bottom:901.819500px;}
.y96{bottom:902.251500px;}
.y110{bottom:903.598500px;}
.y1ef{bottom:904.699500px;}
.y21f{bottom:904.753500px;}
.y155{bottom:912.255000px;}
.y182{bottom:918.360000px;}
.y21e{bottom:918.792000px;}
.y5f{bottom:919.098000px;}
.y95{bottom:919.530000px;}
.y10f{bottom:926.638500px;}
.y120{bottom:927.015000px;}
.y1ee{bottom:927.378000px;}
.y154{bottom:929.533500px;}
.y21d{bottom:932.470500px;}
.y8{bottom:934.206000px;}
.y181{bottom:936.360000px;}
.y5e{bottom:936.376500px;}
.y94{bottom:936.448500px;}
.y180{bottom:938.518500px;}
.y1ed{bottom:941.056500px;}
.y10e{bottom:941.760000px;}
.y10d{bottom:943.918500px;}
.y11f{bottom:944.293500px;}
.y153{bottom:946.812000px;}
.y5d{bottom:953.655000px;}
.y1ec{bottom:954.735000px;}
.y21c{bottom:955.149000px;}
.y7{bottom:960.123000px;}
.y11e{bottom:961.572000px;}
.y93{bottom:962.368500px;}
.y152{bottom:964.090500px;}
.y21b{bottom:968.469000px;}
.y5c{bottom:970.573500px;}
.y10c{bottom:973.080000px;}
.y17f{bottom:973.440000px;}
.y1eb{bottom:977.413500px;}
.y11d{bottom:978.850500px;}
.y92{bottom:979.647000px;}
.y6{bottom:981.001500px;}
.y151{bottom:981.369000px;}
.y21a{bottom:982.507500px;}
.y5b{bottom:987.852000px;}
.y1ea{bottom:990.733500px;}
.y11c{bottom:996.129000px;}
.y219{bottom:996.186000px;}
.y91{bottom:996.925500px;}
.y150{bottom:998.647500px;}
.y17e{bottom:1004.760000px;}
.y1e9{bottom:1004.772000px;}
.y5a{bottom:1005.130500px;}
.y10b{bottom:1007.638500px;}
.y11b{bottom:1013.407500px;}
.y90{bottom:1014.204000px;}
.y5{bottom:1014.481500px;}
.y1b9{bottom:1017.000000px;}
.y1e8{bottom:1018.450500px;}
.y218{bottom:1018.864500px;}
.y17d{bottom:1022.040000px;}
.y59{bottom:1022.409000px;}
.y14f{bottom:1028.526000px;}
.y11a{bottom:1030.686000px;}
.y8f{bottom:1031.482500px;}
.y1e7{bottom:1032.129000px;}
.y217{bottom:1032.184500px;}
.y10a{bottom:1039.318500px;}
.y58{bottom:1039.687500px;}
.y1e6{bottom:1046.167500px;}
.y216{bottom:1046.223000px;}
.y17c{bottom:1047.958500px;}
.y119{bottom:1047.964500px;}
.y8e{bottom:1048.401000px;}
.y14e{bottom:1056.604500px;}
.y57{bottom:1056.966000px;}
.y109{bottom:1059.480000px;}
.y215{bottom:1059.901500px;}
.y17b{bottom:1063.083000px;}
.y17a{bottom:1065.241500px;}
.y118{bottom:1065.243000px;}
.y8d{bottom:1065.679500px;}
.y1e5{bottom:1068.487500px;}
.y179{bottom:1072.080000px;}
.y14d{bottom:1073.523000px;}
.y56{bottom:1074.244500px;}
.y4{bottom:1078.921500px;}
.y178{bottom:1080.360000px;}
.y117{bottom:1082.161500px;}
.y1e4{bottom:1082.166000px;}
.y108{bottom:1082.518500px;}
.y214{bottom:1082.580000px;}
.y8c{bottom:1082.958000px;}
.y177{bottom:1089.357000px;}
.y14c{bottom:1090.801500px;}
.y129{bottom:1091.521500px;}
.y55{bottom:1091.523000px;}
.y1e3{bottom:1095.844500px;}
.y213{bottom:1095.900000px;}
.y107{bottom:1099.800000px;}
.y8b{bottom:1100.236500px;}
.y14b{bottom:1108.080000px;}
.y116{bottom:1108.081500px;}
.y128{bottom:1108.800000px;}
.y54{bottom:1108.801500px;}
.y1e2{bottom:1109.523000px;}
.y212{bottom:1109.578500px;}
.y3{bottom:1110.240000px;}
.y176{bottom:1111.318500px;}
.y8a{bottom:1117.515000px;}
.y211{bottom:1123.617000px;}
.y106{bottom:1125.720000px;}
.y127{bottom:1126.078500px;}
.y53{bottom:1126.080000px;}
.y1e1{bottom:1132.201500px;}
.y175{bottom:1137.598500px;}
.y105{bottom:1143.000000px;}
.y52{bottom:1143.358500px;}
.y89{bottom:1143.435000px;}
.y14a{bottom:1145.878500px;}
.y1e0{bottom:1145.880000px;}
.y210{bottom:1146.295500px;}
.y1{bottom:1189.440000px;}
.h19{height:17.638500px;}
.h1b{height:25.787109px;}
.h11{height:38.139609px;}
.h12{height:38.158594px;}
.h18{height:39.630322px;}
.h16{height:40.849717px;}
.h1a{height:41.627109px;}
.h14{height:43.529062px;}
.hb{height:46.558125px;}
.h1c{height:46.609192px;}
.h5{height:46.632393px;}
.h9{height:47.885203px;}
.h2{height:49.555617px;}
.ha{height:51.063750px;}
.h17{height:58.327705px;}
.h15{height:58.356738px;}
.h7{height:59.328281px;}
.h6{height:59.357813px;}
.hc{height:60.952500px;}
.he{height:62.184375px;}
.h10{height:65.493609px;}
.h13{height:67.962281px;}
.hd{height:67.991813px;}
.hf{height:78.024375px;}
.h4{height:79.746393px;}
.h8{height:84.166453px;}
.h3{height:108.843750px;}
.h0{height:1262.878500px;}
.h1{height:1263.000000px;}
.w2{width:8.280000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:84.960000px;}
.x9{left:106.194000px;}
.x6{left:107.992500px;}
.x2{left:119.518500px;}
.xc{left:127.440000px;}
.x5{left:130.671000px;}
.x18{left:131.757000px;}
.x19{left:139.317000px;}
.x1a{left:144.355500px;}
.x7{left:164.512500px;}
.x34{left:186.526500px;}
.x26{left:188.638500px;}
.x2b{left:190.461000px;}
.x20{left:206.640000px;}
.x1b{left:233.277000px;}
.x1c{left:251.275500px;}
.x1d{left:255.235500px;}
.x10{left:283.311000px;}
.x2c{left:284.421000px;}
.x25{left:288.012000px;}
.x1f{left:305.278500px;}
.x29{left:306.373500px;}
.x24{left:309.601500px;}
.x33{left:321.166500px;}
.x4{left:322.192500px;}
.x2a{left:331.215000px;}
.x3{left:332.274000px;}
.x8{left:334.432500px;}
.x28{left:336.249000px;}
.x23{left:339.478500px;}
.x30{left:342.039000px;}
.x2f{left:343.117500px;}
.x32{left:366.883500px;}
.x31{left:368.320500px;}
.x2d{left:372.979500px;}
.x2e{left:376.944000px;}
.x21{left:385.558500px;}
.x1e{left:387.714000px;}
.x22{left:390.597000px;}
.x27{left:405.000000px;}
.x14{left:413.269500px;}
.x15{left:417.588000px;}
.x16{left:425.148000px;}
.x17{left:429.828000px;}
.xa{left:458.992500px;}
.xf{left:480.240000px;}
.x35{left:483.840000px;}
.xb{left:501.472500px;}
.x13{left:532.434000px;}
.xd{left:536.400000px;}
.xe{left:601.509000px;}
.x36{left:645.120000px;}
.x12{left:718.911000px;}
.x11{left:721.434000px;}
@media print{
.vf{vertical-align:-39.680000pt;}
.vd{vertical-align:-31.989333pt;}
.v2{vertical-align:-29.434667pt;}
.vb{vertical-align:-24.314667pt;}
.v8{vertical-align:-17.914667pt;}
.v5{vertical-align:-14.080000pt;}
.v3{vertical-align:-7.674667pt;}
.ve{vertical-align:-3.840000pt;}
.v7{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:7.674667pt;}
.v9{vertical-align:12.794667pt;}
.v6{vertical-align:14.080000pt;}
.va{vertical-align:24.314667pt;}
.v1{vertical-align:29.434667pt;}
.vc{vertical-align:31.989333pt;}
.ls8e{letter-spacing:-2.560000pt;}
.ls8c{letter-spacing:-2.112000pt;}
.ls15{letter-spacing:-1.306667pt;}
.ls1e{letter-spacing:-1.296000pt;}
.ls24{letter-spacing:-1.280000pt;}
.ls20{letter-spacing:-1.274667pt;}
.ls32{letter-spacing:-1.269333pt;}
.ls8d{letter-spacing:-1.264000pt;}
.ls54{letter-spacing:-1.157333pt;}
.lsa1{letter-spacing:-1.061333pt;}
.ls91{letter-spacing:-1.056000pt;}
.ls7a{letter-spacing:-0.960000pt;}
.ls17{letter-spacing:-0.869333pt;}
.ls2f{letter-spacing:-0.864000pt;}
.ls90{letter-spacing:-0.848000pt;}
.ls25{letter-spacing:-0.842667pt;}
.ls76{letter-spacing:-0.837333pt;}
.ls1b{letter-spacing:-0.832000pt;}
.ls51{letter-spacing:-0.789333pt;}
.ls4c{letter-spacing:-0.704000pt;}
.ls7b{letter-spacing:-0.640000pt;}
.ls57{letter-spacing:-0.618667pt;}
.ls8f{letter-spacing:-0.613333pt;}
.ls11{letter-spacing:-0.448000pt;}
.ls77{letter-spacing:-0.442667pt;}
.ls1d{letter-spacing:-0.437333pt;}
.ls26{letter-spacing:-0.432000pt;}
.ls16{letter-spacing:-0.426667pt;}
.ls18{letter-spacing:-0.421333pt;}
.ls4f{letter-spacing:-0.416000pt;}
.ls55{letter-spacing:-0.346667pt;}
.ls48{letter-spacing:-0.320000pt;}
.ls52{letter-spacing:-0.304000pt;}
.ls7c{letter-spacing:-0.288000pt;}
.ls1f{letter-spacing:-0.266667pt;}
.ls12{letter-spacing:-0.224000pt;}
.ls9c{letter-spacing:-0.208000pt;}
.lsa0{letter-spacing:-0.117333pt;}
.ls19{letter-spacing:-0.101333pt;}
.ls49{letter-spacing:-0.053333pt;}
.ls1c{letter-spacing:-0.005333pt;}
.ls1a{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.005333pt;}
.ls72{letter-spacing:0.010027pt;}
.ls2d{letter-spacing:0.010667pt;}
.ls2a{letter-spacing:0.012587pt;}
.ls96{letter-spacing:0.016000pt;}
.ls58{letter-spacing:0.017920pt;}
.ls5c{letter-spacing:0.069120pt;}
.ls4{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.117333pt;}
.ls4d{letter-spacing:0.122667pt;}
.ls1{letter-spacing:0.128000pt;}
.ls97{letter-spacing:0.208000pt;}
.ls5{letter-spacing:0.218667pt;}
.ls3{letter-spacing:0.224000pt;}
.ls62{letter-spacing:0.281600pt;}
.lsd{letter-spacing:0.320000pt;}
.ls35{letter-spacing:0.394027pt;}
.ls78{letter-spacing:0.400000pt;}
.ls2c{letter-spacing:0.409387pt;}
.ls34{letter-spacing:0.410667pt;}
.lsc{letter-spacing:0.416000pt;}
.lsf{letter-spacing:0.426667pt;}
.ls4a{letter-spacing:0.432000pt;}
.ls29{letter-spacing:0.437333pt;}
.ls2b{letter-spacing:0.445227pt;}
.ls28{letter-spacing:0.448000pt;}
.ls39{letter-spacing:0.488960pt;}
.ls4e{letter-spacing:0.490667pt;}
.ls70{letter-spacing:0.498987pt;}
.ls8a{letter-spacing:0.517333pt;}
.ls9a{letter-spacing:0.528000pt;}
.ls93{letter-spacing:0.533333pt;}
.ls63{letter-spacing:0.544000pt;}
.ls95{letter-spacing:0.549333pt;}
.ls6{letter-spacing:0.554667pt;}
.ls99{letter-spacing:0.560000pt;}
.ls94{letter-spacing:0.565333pt;}
.ls8b{letter-spacing:0.570667pt;}
.ls53{letter-spacing:0.576000pt;}
.ls98{letter-spacing:0.597333pt;}
.ls6b{letter-spacing:0.626987pt;}
.ls73{letter-spacing:0.634667pt;}
.lsb{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.642667pt;}
.ls64{letter-spacing:0.645333pt;}
.ls56{letter-spacing:0.661333pt;}
.ls14{letter-spacing:0.832000pt;}
.ls9{letter-spacing:0.853333pt;}
.ls50{letter-spacing:0.864000pt;}
.ls43{letter-spacing:0.866560pt;}
.ls13{letter-spacing:1.056000pt;}
.ls9d{letter-spacing:1.061333pt;}
.ls9f{letter-spacing:1.072000pt;}
.ls21{letter-spacing:1.280000pt;}
.ls37{letter-spacing:1.296000pt;}
.ls8{letter-spacing:1.498667pt;}
.ls7{letter-spacing:1.536000pt;}
.ls6d{letter-spacing:1.912320pt;}
.ls65{letter-spacing:1.914667pt;}
.ls27{letter-spacing:1.920000pt;}
.lsa2{letter-spacing:3.200000pt;}
.ls22{letter-spacing:4.480000pt;}
.ls9b{letter-spacing:4.800000pt;}
.ls79{letter-spacing:5.440000pt;}
.ls30{letter-spacing:5.760000pt;}
.ls46{letter-spacing:7.040000pt;}
.ls80{letter-spacing:8.000000pt;}
.ls31{letter-spacing:8.320000pt;}
.ls40{letter-spacing:9.280000pt;}
.ls71{letter-spacing:9.592320pt;}
.ls23{letter-spacing:9.600000pt;}
.ls3c{letter-spacing:9.786880pt;}
.ls42{letter-spacing:9.826560pt;}
.ls9e{letter-spacing:9.920000pt;}
.ls3e{letter-spacing:10.554667pt;}
.ls7d{letter-spacing:10.560000pt;}
.ls3a{letter-spacing:10.653440pt;}
.ls75{letter-spacing:10.880000pt;}
.ls41{letter-spacing:11.061547pt;}
.ls84{letter-spacing:11.583787pt;}
.ls3d{letter-spacing:11.933440pt;}
.ls2{letter-spacing:12.058987pt;}
.ls74{letter-spacing:12.154667pt;}
.ls81{letter-spacing:12.288000pt;}
.ls61{letter-spacing:12.776747pt;}
.ls5d{letter-spacing:12.800000pt;}
.ls83{letter-spacing:12.863787pt;}
.ls85{letter-spacing:13.250560pt;}
.ls82{letter-spacing:13.404160pt;}
.ls59{letter-spacing:13.440000pt;}
.ls60{letter-spacing:14.092587pt;}
.ls5b{letter-spacing:14.097920pt;}
.ls5e{letter-spacing:14.489387pt;}
.ls7e{letter-spacing:14.530560pt;}
.ls69{letter-spacing:14.714667pt;}
.ls36{letter-spacing:14.720000pt;}
.ls7f{letter-spacing:15.429120pt;}
.ls5a{letter-spacing:15.994667pt;}
.ls33{letter-spacing:16.000000pt;}
.ls2e{letter-spacing:18.560000pt;}
.ls47{letter-spacing:19.840000pt;}
.ls67{letter-spacing:21.120000pt;}
.ls4b{letter-spacing:22.400000pt;}
.ls66{letter-spacing:23.680000pt;}
.ls10{letter-spacing:26.240000pt;}
.ls86{letter-spacing:28.175360pt;}
.ls68{letter-spacing:28.800000pt;}
.ls44{letter-spacing:29.021227pt;}
.ls6a{letter-spacing:30.080000pt;}
.ls3b{letter-spacing:30.306560pt;}
.ls38{letter-spacing:35.194667pt;}
.ls5f{letter-spacing:36.474667pt;}
.ls45{letter-spacing:49.501227pt;}
.ls3f{letter-spacing:59.741227pt;}
.ls6f{letter-spacing:182.394667pt;}
.ls6c{letter-spacing:202.880000pt;}
.ls87{letter-spacing:296.120107pt;}
.ls6e{letter-spacing:337.080107pt;}
.ls88{letter-spacing:352.640000pt;}
.ls92{letter-spacing:391.356000pt;}
.ls89{letter-spacing:787.623520pt;}
.ws193{word-spacing:-55.680000pt;}
.ws12d{word-spacing:-54.405333pt;}
.ws132{word-spacing:-54.400000pt;}
.ws133{word-spacing:-54.304000pt;}
.ws19e{word-spacing:-54.192000pt;}
.ws130{word-spacing:-54.176000pt;}
.ws19c{word-spacing:-53.760000pt;}
.ws195{word-spacing:-53.472000pt;}
.wsd4{word-spacing:-35.840000pt;}
.ws1a6{word-spacing:-28.403147pt;}
.ws1a8{word-spacing:-24.320000pt;}
.ws8{word-spacing:-23.578667pt;}
.ws6{word-spacing:-23.573333pt;}
.ws4{word-spacing:-22.693333pt;}
.ws6b{word-spacing:-21.760000pt;}
.ws15f{word-spacing:-20.480000pt;}
.wsb{word-spacing:-20.053333pt;}
.wsf8{word-spacing:-19.200000pt;}
.ws67{word-spacing:-18.996000pt;}
.ws15e{word-spacing:-18.880000pt;}
.wsd{word-spacing:-18.878667pt;}
.ws9{word-spacing:-18.778667pt;}
.ws10{word-spacing:-18.292000pt;}
.ws14f{word-spacing:-17.920000pt;}
.wscf{word-spacing:-15.360000pt;}
.wsce{word-spacing:-14.736000pt;}
.wsd3{word-spacing:-14.720000pt;}
.ws197{word-spacing:-14.085333pt;}
.wsd0{word-spacing:-14.080000pt;}
.ws66{word-spacing:-13.888000pt;}
.wsd2{word-spacing:-13.872000pt;}
.ws12{word-spacing:-13.856000pt;}
.ws1a3{word-spacing:-13.533333pt;}
.wsf7{word-spacing:-13.445333pt;}
.ws13{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.434667pt;}
.ws150{word-spacing:-13.216000pt;}
.ws162{word-spacing:-13.152000pt;}
.ws6d{word-spacing:-13.008000pt;}
.ws12a{word-spacing:-12.992000pt;}
.ws69{word-spacing:-12.608000pt;}
.ws14e{word-spacing:-12.602667pt;}
.ws1a5{word-spacing:-12.600000pt;}
.ws14c{word-spacing:-12.576000pt;}
.ws6c{word-spacing:-12.170667pt;}
.wscc{word-spacing:-12.165333pt;}
.ws12e{word-spacing:-12.160000pt;}
.wse{word-spacing:-12.144000pt;}
.ws1{word-spacing:-11.965237pt;}
.ws1de{word-spacing:-11.620000pt;}
.ws1e3{word-spacing:-11.614667pt;}
.ws194{word-spacing:-11.328000pt;}
.ws1db{word-spacing:-11.198667pt;}
.ws1e1{word-spacing:-11.102667pt;}
.ws1a2{word-spacing:-10.880000pt;}
.wsdb{word-spacing:-10.784000pt;}
.wsf4{word-spacing:-10.581333pt;}
.ws131{word-spacing:-10.554667pt;}
.wsd7{word-spacing:-10.410667pt;}
.ws1dc{word-spacing:-10.350667pt;}
.wse5{word-spacing:-10.336000pt;}
.ws1dd{word-spacing:-10.334667pt;}
.ws19f{word-spacing:-10.272000pt;}
.ws198{word-spacing:-9.936000pt;}
.ws1ab{word-spacing:-9.918667pt;}
.ws1a4{word-spacing:-9.569333pt;}
.wsd9{word-spacing:-9.504000pt;}
.wsf2{word-spacing:-9.301333pt;}
.ws12b{word-spacing:-9.285333pt;}
.ws163{word-spacing:-9.280000pt;}
.wsdd{word-spacing:-9.130667pt;}
.wsed{word-spacing:-9.056000pt;}
.ws161{word-spacing:-8.352000pt;}
.ws6a{word-spacing:-7.808000pt;}
.ws21c{word-spacing:-2.880000pt;}
.ws15b{word-spacing:-2.750720pt;}
.wse4{word-spacing:-2.135253pt;}
.ws1a{word-spacing:-2.133333pt;}
.wse6{word-spacing:-2.073600pt;}
.wse3{word-spacing:-1.821440pt;}
.wse8{word-spacing:-1.698560pt;}
.wse9{word-spacing:-1.621333pt;}
.ws5{word-spacing:-1.518933pt;}
.wscd{word-spacing:-1.518720pt;}
.ws155{word-spacing:-1.476053pt;}
.wsf3{word-spacing:-1.416107pt;}
.wsdc{word-spacing:-1.093333pt;}
.wse1{word-spacing:-1.074773pt;}
.ws18{word-spacing:-1.056000pt;}
.ws160{word-spacing:-1.050880pt;}
.wsc3{word-spacing:-0.960000pt;}
.wsd6{word-spacing:-0.950827pt;}
.ws1f7{word-spacing:-0.864000pt;}
.ws1b{word-spacing:-0.858667pt;}
.ws14{word-spacing:-0.848000pt;}
.ws19{word-spacing:-0.768000pt;}
.ws126{word-spacing:-0.746667pt;}
.wsef{word-spacing:-0.688000pt;}
.ws5e{word-spacing:-0.645333pt;}
.ws136{word-spacing:-0.640000pt;}
.ws101{word-spacing:-0.570667pt;}
.ws1c{word-spacing:-0.538667pt;}
.ws19a{word-spacing:-0.526293pt;}
.ws147{word-spacing:-0.512000pt;}
.ws124{word-spacing:-0.490667pt;}
.ws9f{word-spacing:-0.426667pt;}
.ws4c{word-spacing:-0.416000pt;}
.ws1d8{word-spacing:-0.352000pt;}
.wse2{word-spacing:-0.346667pt;}
.ws137{word-spacing:-0.320000pt;}
.wsff{word-spacing:-0.293333pt;}
.ws7f{word-spacing:-0.282667pt;}
.ws114{word-spacing:-0.256000pt;}
.ws115{word-spacing:-0.229333pt;}
.ws183{word-spacing:-0.213333pt;}
.ws220{word-spacing:-0.181333pt;}
.ws110{word-spacing:-0.160000pt;}
.ws1c0{word-spacing:-0.144000pt;}
.ws5b{word-spacing:-0.128000pt;}
.ws16a{word-spacing:-0.117333pt;}
.ws172{word-spacing:-0.096000pt;}
.ws143{word-spacing:-0.048000pt;}
.ws13e{word-spacing:-0.032000pt;}
.ws16{word-spacing:0.000000pt;}
.wsc4{word-spacing:0.064000pt;}
.ws1b0{word-spacing:0.096000pt;}
.ws1c8{word-spacing:0.122667pt;}
.ws188{word-spacing:0.128000pt;}
.wsb5{word-spacing:0.192000pt;}
.ws1cf{word-spacing:0.208000pt;}
.ws122{word-spacing:0.213333pt;}
.ws20{word-spacing:0.224000pt;}
.ws105{word-spacing:0.256000pt;}
.ws1e5{word-spacing:0.282667pt;}
.ws33{word-spacing:0.320000pt;}
.ws80{word-spacing:0.384000pt;}
.ws1d{word-spacing:0.426667pt;}
.ws214{word-spacing:0.464000pt;}
.wsaf{word-spacing:0.480000pt;}
.ws1f{word-spacing:0.522667pt;}
.ws1ef{word-spacing:0.544000pt;}
.wsf0{word-spacing:0.597333pt;}
.ws111{word-spacing:0.624000pt;}
.ws32{word-spacing:0.634667pt;}
.ws9b{word-spacing:0.640000pt;}
.ws106{word-spacing:0.693333pt;}
.ws8d{word-spacing:0.736000pt;}
.wsea{word-spacing:0.738560pt;}
.ws123{word-spacing:0.789333pt;}
.ws125{word-spacing:0.837333pt;}
.ws17a{word-spacing:0.864000pt;}
.ws2{word-spacing:0.868880pt;}
.ws17{word-spacing:0.928000pt;}
.wseb{word-spacing:0.938667pt;}
.ws141{word-spacing:0.992000pt;}
.ws79{word-spacing:1.024000pt;}
.ws190{word-spacing:1.045333pt;}
.wsd5{word-spacing:1.062400pt;}
.ws13a{word-spacing:1.066667pt;}
.ws3{word-spacing:1.080533pt;}
.ws1ba{word-spacing:1.104000pt;}
.wsa4{word-spacing:1.141333pt;}
.wsf1{word-spacing:1.143893pt;}
.wsbc{word-spacing:1.184000pt;}
.ws9a{word-spacing:1.216000pt;}
.ws16d{word-spacing:1.258667pt;}
.ws104{word-spacing:1.280000pt;}
.ws43{word-spacing:1.328000pt;}
.ws84{word-spacing:1.344000pt;}
.ws1d3{word-spacing:1.349333pt;}
.ws13c{word-spacing:1.397333pt;}
.wsd8{word-spacing:1.466667pt;}
.ws1e{word-spacing:1.472000pt;}
.wsde{word-spacing:1.485227pt;}
.ws15{word-spacing:1.504000pt;}
.ws26{word-spacing:1.536000pt;}
.ws0{word-spacing:1.584059pt;}
.ws1d4{word-spacing:1.600000pt;}
.wsdf{word-spacing:1.609173pt;}
.wsbd{word-spacing:1.648000pt;}
.ws13d{word-spacing:1.658667pt;}
.ws1d2{word-spacing:1.664000pt;}
.ws1f4{word-spacing:1.690667pt;}
.ws17d{word-spacing:1.738667pt;}
.ws129{word-spacing:1.754667pt;}
.ws184{word-spacing:1.770667pt;}
.wsec{word-spacing:1.780480pt;}
.ws218{word-spacing:1.792000pt;}
.ws211{word-spacing:1.813333pt;}
.ws7{word-spacing:1.832533pt;}
.wsa{word-spacing:1.858133pt;}
.wsf9{word-spacing:1.882667pt;}
.ws11b{word-spacing:1.904000pt;}
.wsac{word-spacing:1.909333pt;}
.ws10e{word-spacing:1.914667pt;}
.ws76{word-spacing:1.920000pt;}
.wsd1{word-spacing:1.946240pt;}
.ws199{word-spacing:2.040107pt;}
.wsb2{word-spacing:2.234667pt;}
.ws83{word-spacing:2.282667pt;}
.wsb9{word-spacing:2.325333pt;}
.ws82{word-spacing:2.357333pt;}
.ws2b{word-spacing:2.400000pt;}
.ws5c{word-spacing:2.432000pt;}
.ws209{word-spacing:2.442667pt;}
.wsb1{word-spacing:2.501333pt;}
.wsa2{word-spacing:2.645333pt;}
.ws149{word-spacing:2.682667pt;}
.ws71{word-spacing:2.720000pt;}
.ws19b{word-spacing:2.721920pt;}
.ws72{word-spacing:2.736000pt;}
.wsc9{word-spacing:2.784000pt;}
.ws142{word-spacing:2.810667pt;}
.ws8f{word-spacing:2.832000pt;}
.ws196{word-spacing:2.876373pt;}
.ws1e7{word-spacing:2.880000pt;}
.ws2a{word-spacing:2.912000pt;}
.ws16f{word-spacing:2.938667pt;}
.ws20a{word-spacing:2.954667pt;}
.ws1e6{word-spacing:2.965333pt;}
.ws1ad{word-spacing:3.184000pt;}
.wsa3{word-spacing:3.189333pt;}
.ws10f{word-spacing:3.194667pt;}
.ws70{word-spacing:3.200000pt;}
.ws203{word-spacing:3.312000pt;}
.ws1d1{word-spacing:3.392000pt;}
.ws177{word-spacing:3.424000pt;}
.ws31{word-spacing:3.498667pt;}
.ws210{word-spacing:3.520000pt;}
.ws20f{word-spacing:3.621333pt;}
.ws38{word-spacing:3.637333pt;}
.ws1c2{word-spacing:3.664000pt;}
.ws11c{word-spacing:3.712000pt;}
.wsbb{word-spacing:3.834667pt;}
.ws171{word-spacing:3.925333pt;}
.ws91{word-spacing:4.032000pt;}
.ws164{word-spacing:4.048000pt;}
.wsa9{word-spacing:4.090667pt;}
.ws1f6{word-spacing:4.160000pt;}
.ws23{word-spacing:4.224000pt;}
.ws39{word-spacing:4.266667pt;}
.ws45{word-spacing:4.314667pt;}
.wsb8{word-spacing:4.336000pt;}
.ws134{word-spacing:4.464000pt;}
.ws148{word-spacing:4.474667pt;}
.wsfa{word-spacing:4.480000pt;}
.wsfc{word-spacing:4.544000pt;}
.ws21b{word-spacing:4.581333pt;}
.ws60{word-spacing:4.741333pt;}
.ws4f{word-spacing:4.832000pt;}
.ws14a{word-spacing:4.864000pt;}
.ws178{word-spacing:4.885333pt;}
.ws59{word-spacing:4.917333pt;}
.ws1ed{word-spacing:4.928000pt;}
.ws1c5{word-spacing:4.960000pt;}
.ws16e{word-spacing:4.992000pt;}
.ws117{word-spacing:5.061333pt;}
.ws213{word-spacing:5.072000pt;}
.ws11{word-spacing:5.084160pt;}
.ws128{word-spacing:5.114667pt;}
.ws6f{word-spacing:5.120000pt;}
.ws1b7{word-spacing:5.130667pt;}
.wsfd{word-spacing:5.152000pt;}
.ws2c{word-spacing:5.205333pt;}
.ws92{word-spacing:5.248000pt;}
.ws89{word-spacing:5.312000pt;}
.ws118{word-spacing:5.328000pt;}
.ws1ea{word-spacing:5.440000pt;}
.wsa7{word-spacing:5.493333pt;}
.wsa5{word-spacing:5.504000pt;}
.ws8c{word-spacing:5.578667pt;}
.ws10d{word-spacing:5.589333pt;}
.ws204{word-spacing:5.600000pt;}
.ws120{word-spacing:5.749333pt;}
.ws4b{word-spacing:5.760000pt;}
.ws1ec{word-spacing:5.856000pt;}
.ws1bb{word-spacing:5.888000pt;}
.ws191{word-spacing:5.952000pt;}
.ws156{word-spacing:5.979947pt;}
.ws140{word-spacing:6.138667pt;}
.wsc8{word-spacing:6.224000pt;}
.ws78{word-spacing:6.298667pt;}
.ws8b{word-spacing:6.362667pt;}
.ws135{word-spacing:6.394667pt;}
.ws8e{word-spacing:6.405333pt;}
.ws97{word-spacing:6.426667pt;}
.ws3b{word-spacing:6.448000pt;}
.wsad{word-spacing:6.592000pt;}
.ws99{word-spacing:6.608000pt;}
.ws1ca{word-spacing:6.613333pt;}
.wsc1{word-spacing:6.709333pt;}
.ws3a{word-spacing:6.720000pt;}
.ws185{word-spacing:6.848000pt;}
.ws18c{word-spacing:7.029333pt;}
.wsab{word-spacing:7.040000pt;}
.ws1b9{word-spacing:7.317333pt;}
.ws5a{word-spacing:7.418667pt;}
.ws11d{word-spacing:7.440000pt;}
.ws13f{word-spacing:7.472000pt;}
.wsbe{word-spacing:7.504000pt;}
.ws28{word-spacing:7.514667pt;}
.ws40{word-spacing:7.578667pt;}
.ws10b{word-spacing:7.621333pt;}
.wsfe{word-spacing:7.685333pt;}
.ws36{word-spacing:7.760000pt;}
.ws21{word-spacing:7.770667pt;}
.wsba{word-spacing:7.840000pt;}
.ws15d{word-spacing:7.847253pt;}
.ws192{word-spacing:7.872000pt;}
.ws65{word-spacing:7.888000pt;}
.ws3f{word-spacing:8.000000pt;}
.ws1c1{word-spacing:8.032000pt;}
.ws187{word-spacing:8.128000pt;}
.ws10a{word-spacing:8.160000pt;}
.wsbf{word-spacing:8.170667pt;}
.ws3c{word-spacing:8.181333pt;}
.ws1fe{word-spacing:8.213333pt;}
.ws217{word-spacing:8.234667pt;}
.ws17b{word-spacing:8.309333pt;}
.wsda{word-spacing:8.418560pt;}
.wsae{word-spacing:8.512000pt;}
.ws17c{word-spacing:8.544000pt;}
.ws14b{word-spacing:8.602667pt;}
.ws12c{word-spacing:8.626347pt;}
.ws18f{word-spacing:8.640000pt;}
.wsc7{word-spacing:8.826667pt;}
.ws1fc{word-spacing:8.848000pt;}
.ws7b{word-spacing:8.933333pt;}
.wsa0{word-spacing:8.944000pt;}
.ws74{word-spacing:8.954667pt;}
.ws96{word-spacing:9.029333pt;}
.ws75{word-spacing:9.152000pt;}
.ws139{word-spacing:9.168000pt;}
.wsa6{word-spacing:9.280000pt;}
.ws165{word-spacing:9.312000pt;}
.ws94{word-spacing:9.333333pt;}
.ws1fd{word-spacing:9.354667pt;}
.ws27{word-spacing:9.408000pt;}
.ws56{word-spacing:9.440000pt;}
.ws1c6{word-spacing:9.472000pt;}
.ws138{word-spacing:9.578667pt;}
.ws48{word-spacing:9.589333pt;}
.ws107{word-spacing:9.600000pt;}
.wse7{word-spacing:9.698560pt;}
.ws77{word-spacing:9.792000pt;}
.ws4d{word-spacing:9.920000pt;}
.ws157{word-spacing:9.928192pt;}
.ws98{word-spacing:10.106667pt;}
.ws1cd{word-spacing:10.117333pt;}
.ws20b{word-spacing:10.128000pt;}
.ws1c7{word-spacing:10.181333pt;}
.ws37{word-spacing:10.234667pt;}
.ws1e8{word-spacing:10.378667pt;}
.ws15c{word-spacing:10.407253pt;}
.ws1b5{word-spacing:10.432000pt;}
.ws73{word-spacing:10.453333pt;}
.ws2e{word-spacing:10.464000pt;}
.ws113{word-spacing:10.688000pt;}
.ws30{word-spacing:10.709333pt;}
.ws100{word-spacing:10.714667pt;}
.ws16c{word-spacing:10.730667pt;}
.ws9d{word-spacing:10.880000pt;}
.ws1d0{word-spacing:10.944000pt;}
.ws200{word-spacing:10.970667pt;}
.ws52{word-spacing:11.248000pt;}
.ws4e{word-spacing:11.285333pt;}
.ws206{word-spacing:11.290667pt;}
.ws8a{word-spacing:11.376000pt;}
.ws20c{word-spacing:11.413333pt;}
.ws20e{word-spacing:11.418667pt;}
.ws166{word-spacing:11.456000pt;}
.ws95{word-spacing:11.498667pt;}
.ws54{word-spacing:11.525333pt;}
.ws12f{word-spacing:11.544747pt;}
.wsb3{word-spacing:11.546667pt;}
.ws1bd{word-spacing:11.584000pt;}
.ws1ac{word-spacing:11.712000pt;}
.ws51{word-spacing:11.738667pt;}
.ws202{word-spacing:11.840000pt;}
.ws201{word-spacing:11.914667pt;}
.ws7d{word-spacing:11.936000pt;}
.ws85{word-spacing:12.149333pt;}
.ws1b8{word-spacing:12.154667pt;}
.ws207{word-spacing:12.272000pt;}
.ws93{word-spacing:12.512000pt;}
.ws55{word-spacing:12.597333pt;}
.ws1f8{word-spacing:12.602667pt;}
.ws208{word-spacing:12.752000pt;}
.ws7e{word-spacing:12.768000pt;}
.ws57{word-spacing:12.773333pt;}
.ws223{word-spacing:12.800000pt;}
.wsca{word-spacing:12.832000pt;}
.ws108{word-spacing:12.986667pt;}
.ws18d{word-spacing:13.024000pt;}
.ws19d{word-spacing:13.029120pt;}
.ws1ce{word-spacing:13.050667pt;}
.ws1be{word-spacing:13.114667pt;}
.ws17f{word-spacing:13.312000pt;}
.ws9c{word-spacing:13.434667pt;}
.wsaa{word-spacing:13.440000pt;}
.ws1f9{word-spacing:13.744000pt;}
.ws1bf{word-spacing:13.829333pt;}
.wsa8{word-spacing:13.952000pt;}
.ws175{word-spacing:14.058667pt;}
.ws7a{word-spacing:14.085333pt;}
.ws174{word-spacing:14.298667pt;}
.wsc5{word-spacing:14.346667pt;}
.ws1fa{word-spacing:14.400000pt;}
.ws1cb{word-spacing:14.432000pt;}
.ws16b{word-spacing:14.464000pt;}
.ws116{word-spacing:14.752000pt;}
.wscb{word-spacing:15.077333pt;}
.ws181{word-spacing:15.162667pt;}
.ws169{word-spacing:15.184000pt;}
.ws21f{word-spacing:15.333333pt;}
.ws22{word-spacing:15.445333pt;}
.wsb0{word-spacing:15.546667pt;}
.ws24{word-spacing:15.568000pt;}
.ws1cc{word-spacing:15.584000pt;}
.ws1f1{word-spacing:15.786667pt;}
.ws1f2{word-spacing:15.872000pt;}
.ws18e{word-spacing:15.994667pt;}
.ws180{word-spacing:16.000000pt;}
.ws1c4{word-spacing:16.277333pt;}
.ws1f0{word-spacing:16.410667pt;}
.ws5d{word-spacing:16.432000pt;}
.ws219{word-spacing:16.645333pt;}
.ws176{word-spacing:16.682667pt;}
.ws2f{word-spacing:16.704000pt;}
.ws167{word-spacing:16.832000pt;}
.ws53{word-spacing:17.024000pt;}
.ws1b1{word-spacing:17.269333pt;}
.ws179{word-spacing:17.456000pt;}
.ws1b3{word-spacing:17.888000pt;}
.wsc2{word-spacing:17.893333pt;}
.ws90{word-spacing:18.106667pt;}
.ws1c3{word-spacing:18.346667pt;}
.ws1b4{word-spacing:18.554667pt;}
.ws1b2{word-spacing:18.560000pt;}
.ws5f{word-spacing:18.752000pt;}
.ws119{word-spacing:19.248000pt;}
.ws34{word-spacing:19.290667pt;}
.ws14d{word-spacing:19.367253pt;}
.wsc0{word-spacing:19.418667pt;}
.ws144{word-spacing:19.616000pt;}
.ws62{word-spacing:19.829333pt;}
.wsb6{word-spacing:19.840000pt;}
.ws1f3{word-spacing:19.914667pt;}
.wsf5{word-spacing:19.933227pt;}
.ws88{word-spacing:20.026667pt;}
.ws1b6{word-spacing:20.197333pt;}
.ws49{word-spacing:20.256000pt;}
.ws4a{word-spacing:20.272000pt;}
.wsfb{word-spacing:20.453333pt;}
.ws2d{word-spacing:20.528000pt;}
.ws11f{word-spacing:20.538667pt;}
.ws146{word-spacing:20.688000pt;}
.ws46{word-spacing:20.704000pt;}
.ws222{word-spacing:20.938667pt;}
.ws86{word-spacing:21.120000pt;}
.wsee{word-spacing:21.218560pt;}
.wsb7{word-spacing:21.520000pt;}
.ws50{word-spacing:21.664000pt;}
.wsf6{word-spacing:21.760000pt;}
.ws35{word-spacing:21.792000pt;}
.ws127{word-spacing:21.978667pt;}
.ws58{word-spacing:22.133333pt;}
.ws109{word-spacing:22.400000pt;}
.ws21d{word-spacing:22.613333pt;}
.ws121{word-spacing:23.024000pt;}
.ws10c{word-spacing:23.066667pt;}
.ws87{word-spacing:23.226667pt;}
.ws1d9{word-spacing:23.424000pt;}
.ws11a{word-spacing:23.466667pt;}
.ws168{word-spacing:23.520000pt;}
.ws11e{word-spacing:23.653333pt;}
.ws13b{word-spacing:23.680000pt;}
.ws3e{word-spacing:24.186667pt;}
.ws17e{word-spacing:24.256000pt;}
.ws212{word-spacing:24.469333pt;}
.ws102{word-spacing:24.512000pt;}
.ws1d7{word-spacing:24.640000pt;}
.ws112{word-spacing:24.794667pt;}
.ws1c9{word-spacing:25.269333pt;}
.ws61{word-spacing:25.392000pt;}
.ws3d{word-spacing:25.818667pt;}
.ws18a{word-spacing:26.229333pt;}
.ws44{word-spacing:26.234667pt;}
.ws1d5{word-spacing:26.560000pt;}
.ws64{word-spacing:26.784000pt;}
.ws224{word-spacing:26.810667pt;}
.ws173{word-spacing:26.912000pt;}
.ws1bc{word-spacing:27.066667pt;}
.ws189{word-spacing:27.098667pt;}
.ws145{word-spacing:27.306667pt;}
.ws1f5{word-spacing:29.333333pt;}
.ws1e9{word-spacing:29.546667pt;}
.ws21e{word-spacing:29.632000pt;}
.ws103{word-spacing:30.074667pt;}
.ws170{word-spacing:30.757333pt;}
.ws1ff{word-spacing:30.826667pt;}
.ws186{word-spacing:31.034667pt;}
.ws18b{word-spacing:31.978667pt;}
.ws1ae{word-spacing:32.186667pt;}
.ws1af{word-spacing:32.218667pt;}
.ws63{word-spacing:33.338667pt;}
.wsb4{word-spacing:34.752000pt;}
.wsc6{word-spacing:34.981333pt;}
.wsa1{word-spacing:35.818667pt;}
.ws1ee{word-spacing:36.005333pt;}
.ws7c{word-spacing:36.032000pt;}
.ws6e{word-spacing:36.474667pt;}
.ws29{word-spacing:36.656000pt;}
.ws47{word-spacing:37.946667pt;}
.ws25{word-spacing:38.853333pt;}
.ws81{word-spacing:39.290667pt;}
.ws182{word-spacing:39.466667pt;}
.ws1d6{word-spacing:39.776000pt;}
.wse0{word-spacing:40.413227pt;}
.ws1fb{word-spacing:42.784000pt;}
.ws42{word-spacing:44.474667pt;}
.ws9e{word-spacing:46.016000pt;}
.ws41{word-spacing:46.304000pt;}
.ws68{word-spacing:46.922240pt;}
.ws221{word-spacing:47.552000pt;}
.ws1df{word-spacing:66.918379pt;}
.wsf{word-spacing:76.805333pt;}
.ws1aa{word-spacing:88.675712pt;}
.ws20d{word-spacing:115.941333pt;}
.ws1e0{word-spacing:116.812000pt;}
.ws1a0{word-spacing:169.408000pt;}
.ws215{word-spacing:184.634667pt;}
.ws216{word-spacing:185.498667pt;}
.ws1da{word-spacing:255.377664pt;}
.ws1e4{word-spacing:259.738667pt;}
.ws1a1{word-spacing:282.923307pt;}
.ws1e2{word-spacing:329.602123pt;}
.ws21a{word-spacing:333.978667pt;}
.ws159{word-spacing:337.515307pt;}
.ws205{word-spacing:369.178667pt;}
.ws1eb{word-spacing:383.898667pt;}
.ws153{word-spacing:410.928128pt;}
.ws154{word-spacing:444.144640pt;}
.ws158{word-spacing:465.920000pt;}
.ws152{word-spacing:492.733227pt;}
.ws151{word-spacing:546.104107pt;}
.ws15a{word-spacing:584.832000pt;}
.ws1a7{word-spacing:706.068373pt;}
.ws1a9{word-spacing:980.480000pt;}
._7b{margin-left:-507.123147pt;}
._67{margin-left:-381.677813pt;}
._70{margin-left:-362.483147pt;}
._40{margin-left:-319.367680pt;}
._3e{margin-left:-296.847872pt;}
._73{margin-left:-286.333333pt;}
._75{margin-left:-282.493333pt;}
._61{margin-left:-269.693333pt;}
._6b{margin-left:-265.858667pt;}
._44{margin-left:-263.531520pt;}
._5f{margin-left:-262.018667pt;}
._6d{margin-left:-256.898667pt;}
._5e{margin-left:-240.258667pt;}
._3f{margin-left:-235.407872pt;}
._74{margin-left:-233.858667pt;}
._60{margin-left:-232.573333pt;}
._6c{margin-left:-230.018667pt;}
._66{margin-left:-219.402507pt;}
._4a{margin-left:-217.794347pt;}
._63{margin-left:-211.035200pt;}
._6f{margin-left:-209.914453pt;}
._4b{margin-left:-203.714347pt;}
._54{margin-left:-201.122347pt;}
._72{margin-left:-199.786187pt;}
._71{margin-left:-184.144907pt;}
._5c{margin-left:-181.990773pt;}
._59{margin-left:-176.640160pt;}
._6a{margin-left:-166.623040pt;}
._30{margin-left:-158.685227pt;}
._79{margin-left:-156.239840pt;}
._38{margin-left:-152.614187pt;}
._57{margin-left:-151.040160pt;}
._46{margin-left:-149.611520pt;}
._53{margin-left:-147.883520pt;}
._34{margin-left:-145.922560pt;}
._3c{margin-left:-140.945707pt;}
._49{margin-left:-137.159680pt;}
._4d{margin-left:-131.066667pt;}
._52{margin-left:-129.344000pt;}
._7a{margin-left:-127.124960pt;}
._64{margin-left:-125.839627pt;}
._48{margin-left:-124.011520pt;}
._5b{margin-left:-122.874827pt;}
._69{margin-left:-121.600160pt;}
._77{margin-left:-118.767840pt;}
._43{margin-left:-114.365440pt;}
._42{margin-left:-110.770475pt;}
._45{margin-left:-102.845440pt;}
._3d{margin-left:-100.974080pt;}
._3b{margin-left:-99.002667pt;}
._37{margin-left:-97.128747pt;}
._47{margin-left:-95.165440pt;}
._78{margin-left:-94.271787pt;}
._4c{margin-left:-92.666667pt;}
._31{margin-left:-89.599787pt;}
._76{margin-left:-88.673920pt;}
._6e{margin-left:-87.694613pt;}
._65{margin-left:-86.586453pt;}
._4e{margin-left:-84.992000pt;}
._68{margin-left:-80.088160pt;}
._55{margin-left:-78.813493pt;}
._3a{margin-left:-76.648747pt;}
._36{margin-left:-75.400747pt;}
._39{margin-left:-74.088747pt;}
._35{margin-left:-70.397227pt;}
._2e{margin-left:-69.085227pt;}
._33{margin-left:-66.562560pt;}
._58{margin-left:-65.280160pt;}
._62{margin-left:-62.373227pt;}
._32{margin-left:-60.608000pt;}
._2f{margin-left:-59.296000pt;}
._56{margin-left:-46.813333pt;}
._5a{margin-left:-39.128000pt;}
._5d{margin-left:-35.293333pt;}
._2b{margin-left:-31.557120pt;}
._28{margin-left:-30.105600pt;}
._29{margin-left:-28.815360pt;}
._2a{margin-left:-27.525120pt;}
._26{margin-left:-25.614107pt;}
._21{margin-left:-24.460800pt;}
._22{margin-left:-23.278080pt;}
._1f{margin-left:-21.987840pt;}
._17{margin-left:-20.858880pt;}
._14{margin-left:-19.407360pt;}
._15{margin-left:-18.117120pt;}
._16{margin-left:-17.149440pt;}
._1b{margin-left:-16.020480pt;}
._1d{margin-left:-14.945280pt;}
._1c{margin-left:-13.923840pt;}
._2c{margin-left:-12.794880pt;}
._11{margin-left:-11.597856pt;}
._e{margin-left:-10.490352pt;}
._10{margin-left:-9.562128pt;}
._12{margin-left:-7.909872pt;}
._c{margin-left:-6.609435pt;}
._f{margin-left:-5.514395pt;}
._d{margin-left:-4.553685pt;}
._7{margin-left:-3.589947pt;}
._0{margin-left:-1.900560pt;}
._4{margin-left:-0.913856pt;}
._1{width:1.309275pt;}
._3{width:2.427696pt;}
._a{width:3.754347pt;}
._7d{width:4.856987pt;}
._7c{width:5.802896pt;}
._7e{width:7.391067pt;}
._6{width:8.366475pt;}
._5{width:11.000416pt;}
._25{width:12.503403pt;}
._1a{width:13.991851pt;}
._b{width:16.228027pt;}
._18{width:17.510037pt;}
._9{width:19.901072pt;}
._24{width:21.568805pt;}
._13{width:22.690112pt;}
._20{width:24.683824pt;}
._50{width:25.669227pt;}
._19{width:26.842267pt;}
._2d{width:28.654624pt;}
._41{width:30.473189pt;}
._27{width:32.158240pt;}
._1e{width:34.457797pt;}
._4f{width:38.877824pt;}
._23{width:43.103147pt;}
._51{width:47.435200pt;}
._7f{width:193.436773pt;}
._2{width:535.090763pt;}
._8{width:1118.698581pt;}
.fsd{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fsc{font-size:36.997333pt;}
.fsa{font-size:39.424000pt;}
.fs8{font-size:39.680000pt;}
.fs0{font-size:42.234667pt;}
.fs7{font-size:43.520000pt;}
.fsb{font-size:52.853333pt;}
.fs4{font-size:53.760000pt;}
.fs9{font-size:56.320000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.234667pt;}
.fs2{font-size:76.800000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y19a{bottom:2.881333pt;}
.y2{bottom:49.600000pt;}
.y1df{bottom:97.641333pt;}
.y51{bottom:99.298667pt;}
.y88{bottom:104.386667pt;}
.y1de{bottom:109.800000pt;}
.y27{bottom:109.805333pt;}
.y50{bottom:114.657333pt;}
.y104{bottom:116.798667pt;}
.y87{bottom:119.745333pt;}
.y1dd{bottom:121.958667pt;}
.y26{bottom:125.164000pt;}
.y4f{bottom:130.016000pt;}
.y103{bottom:132.160000pt;}
.y1dc{bottom:134.437333pt;}
.y86{bottom:135.104000pt;}
.y1b8{bottom:136.660000pt;}
.yda{bottom:137.604000pt;}
.y25{bottom:140.522667pt;}
.y174{bottom:145.278667pt;}
.y4e{bottom:145.374667pt;}
.y1db{bottom:146.596000pt;}
.y85{bottom:150.462667pt;}
.y1b7{bottom:152.018667pt;}
.yd9{bottom:152.642667pt;}
.y102{bottom:155.226667pt;}
.y24{bottom:155.881333pt;}
.y4d{bottom:160.733333pt;}
.y84{bottom:165.501333pt;}
.y1da{bottom:166.754667pt;}
.y1b6{bottom:167.057333pt;}
.yd8{bottom:168.001333pt;}
.y173{bottom:168.318667pt;}
.y126{bottom:168.958667pt;}
.y23{bottom:171.240000pt;}
.y4c{bottom:176.092000pt;}
.y101{bottom:177.945333pt;}
.y1d9{bottom:178.594667pt;}
.y83{bottom:180.860000pt;}
.y1b5{bottom:182.416000pt;}
.yd7{bottom:183.360000pt;}
.y172{bottom:183.678667pt;}
.yb7{bottom:186.574667pt;}
.y22{bottom:186.598667pt;}
.y1d8{bottom:190.753333pt;}
.y4b{bottom:191.450667pt;}
.y100{bottom:193.304000pt;}
.y82{bottom:196.218667pt;}
.y1b4{bottom:197.774667pt;}
.yd6{bottom:198.718667pt;}
.y171{bottom:199.040000pt;}
.yb6{bottom:201.933333pt;}
.y21{bottom:201.957333pt;}
.y1d7{bottom:203.232000pt;}
.y4a{bottom:206.809333pt;}
.yff{bottom:208.662667pt;}
.y81{bottom:211.577333pt;}
.y1b3{bottom:213.133333pt;}
.y170{bottom:214.080000pt;}
.yd5{bottom:214.114667pt;}
.y1d6{bottom:215.390667pt;}
.yb5{bottom:216.972000pt;}
.y149{bottom:225.320000pt;}
.y80{bottom:226.936000pt;}
.y1d5{bottom:227.549333pt;}
.y1b2{bottom:228.492000pt;}
.yd4{bottom:229.473333pt;}
.y49{bottom:229.528000pt;}
.yb4{bottom:232.330667pt;}
.y16f{bottom:237.120000pt;}
.y20{bottom:237.156000pt;}
.y148{bottom:240.678667pt;}
.yfe{bottom:241.942667pt;}
.y1b1{bottom:243.850667pt;}
.yd3{bottom:244.832000pt;}
.y48{bottom:244.886667pt;}
.yb3{bottom:247.689333pt;}
.y16e{bottom:252.480000pt;}
.y147{bottom:256.037333pt;}
.y1b0{bottom:259.209333pt;}
.yd2{bottom:260.190667pt;}
.y47{bottom:260.245333pt;}
.y1d4{bottom:260.508000pt;}
.y7f{bottom:261.816000pt;}
.yb2{bottom:263.048000pt;}
.yfd{bottom:264.982667pt;}
.y146{bottom:271.396000pt;}
.y1af{bottom:274.568000pt;}
.yd1{bottom:275.549333pt;}
.y46{bottom:275.604000pt;}
.y16d{bottom:275.845333pt;}
.yfc{bottom:276.822667pt;}
.yb1{bottom:278.406667pt;}
.y7e{bottom:283.576000pt;}
.y145{bottom:286.754667pt;}
.y1ae{bottom:289.926667pt;}
.yfb{bottom:289.941333pt;}
.yd0{bottom:290.908000pt;}
.y45{bottom:290.962667pt;}
.yb0{bottom:293.765333pt;}
.y1f{bottom:295.394667pt;}
.y16c{bottom:298.564000pt;}
.y144{bottom:302.113333pt;}
.yfa{bottom:302.740000pt;}
.y1ad{bottom:305.285333pt;}
.ycf{bottom:306.266667pt;}
.y44{bottom:306.321333pt;}
.yaf{bottom:309.124000pt;}
.y1e{bottom:310.753333pt;}
.y16b{bottom:313.922667pt;}
.yf9{bottom:315.218667pt;}
.y1d3{bottom:319.068000pt;}
.y1ac{bottom:320.644000pt;}
.yce{bottom:321.305333pt;}
.y43{bottom:321.360000pt;}
.yae{bottom:324.482667pt;}
.y143{bottom:324.832000pt;}
.y1d{bottom:326.112000pt;}
.y16a{bottom:329.281333pt;}
.yf8{bottom:333.777333pt;}
.y1d2{bottom:334.106667pt;}
.ycd{bottom:336.664000pt;}
.y42{bottom:336.718667pt;}
.yad{bottom:339.841333pt;}
.y142{bottom:340.190667pt;}
.y1c{bottom:341.470667pt;}
.y7d{bottom:341.814667pt;}
.y1ab{bottom:343.362667pt;}
.y169{bottom:344.640000pt;}
.yf7{bottom:345.936000pt;}
.y1d1{bottom:349.465333pt;}
.y41{bottom:352.077333pt;}
.yac{bottom:355.200000pt;}
.y141{bottom:355.549333pt;}
.y1b{bottom:356.829333pt;}
.y7c{bottom:357.173333pt;}
.y1aa{bottom:358.721333pt;}
.yf6{bottom:359.054667pt;}
.y20f{bottom:359.090667pt;}
.y168{bottom:359.998667pt;}
.y1d0{bottom:364.824000pt;}
.y40{bottom:367.436000pt;}
.yab{bottom:370.558667pt;}
.y140{bottom:370.908000pt;}
.y20e{bottom:371.249333pt;}
.yf5{bottom:371.533333pt;}
.ycc{bottom:371.544000pt;}
.y1a{bottom:372.188000pt;}
.y7b{bottom:372.532000pt;}
.y237{bottom:374.814667pt;}
.y1cf{bottom:380.182667pt;}
.y1a6{bottom:382.082667pt;}
.y3f{bottom:382.794667pt;}
.y20d{bottom:383.728000pt;}
.yf4{bottom:384.012000pt;}
.y1a8{bottom:385.601333pt;}
.y1a2{bottom:385.602667pt;}
.y13f{bottom:386.266667pt;}
.y1a3{bottom:386.562667pt;}
.y19{bottom:387.226667pt;}
.y7a{bottom:387.890667pt;}
.y236{bottom:390.173333pt;}
.ycb{bottom:392.982667pt;}
.y167{bottom:393.278667pt;}
.y1ce{bottom:395.541333pt;}
.y20c{bottom:395.886667pt;}
.y3e{bottom:398.153333pt;}
.y13e{bottom:401.625333pt;}
.y1a7{bottom:402.241333pt;}
.yf3{bottom:402.570667pt;}
.y18{bottom:402.585333pt;}
.y79{bottom:403.249333pt;}
.yaa{bottom:403.838667pt;}
.y235{bottom:405.532000pt;}
.y1a9{bottom:405.760000pt;}
.y1a4{bottom:405.762667pt;}
.y1a5{bottom:406.722667pt;}
.y1cd{bottom:410.900000pt;}
.y3d{bottom:413.512000pt;}
.yf2{bottom:414.729333pt;}
.yca{bottom:414.742667pt;}
.y20b{bottom:416.045333pt;}
.y13d{bottom:416.984000pt;}
.y17{bottom:417.944000pt;}
.y78{bottom:418.608000pt;}
.y234{bottom:420.570667pt;}
.y1cc{bottom:426.258667pt;}
.yf1{bottom:427.848000pt;}
.y20a{bottom:427.885333pt;}
.y3c{bottom:428.870667pt;}
.y1a1{bottom:430.081333pt;}
.y13c{bottom:432.022667pt;}
.y77{bottom:433.966667pt;}
.y233{bottom:435.929333pt;}
.y209{bottom:440.364000pt;}
.yf0{bottom:440.646667pt;}
.y1cb{bottom:441.617333pt;}
.y3b{bottom:444.229333pt;}
.y1a0{bottom:445.440000pt;}
.y13b{bottom:447.381333pt;}
.y76{bottom:449.325333pt;}
.y232{bottom:451.288000pt;}
.y208{bottom:452.522667pt;}
.yef{bottom:453.125333pt;}
.y16{bottom:453.142667pt;}
.y1ca{bottom:456.976000pt;}
.y3a{bottom:459.588000pt;}
.y13a{bottom:462.740000pt;}
.y75{bottom:464.684000pt;}
.y231{bottom:466.646667pt;}
.y19e{bottom:469.120000pt;}
.yee{bottom:471.364000pt;}
.y19c{bottom:472.320000pt;}
.y1c9{bottom:472.334667pt;}
.y207{bottom:472.681333pt;}
.yc9{bottom:473.302667pt;}
.y39{bottom:474.946667pt;}
.y139{bottom:478.098667pt;}
.y74{bottom:479.722667pt;}
.y230{bottom:482.005333pt;}
.yed{bottom:483.522667pt;}
.y206{bottom:484.521333pt;}
.y1c8{bottom:487.693333pt;}
.yc8{bottom:488.661333pt;}
.y19f{bottom:488.960000pt;}
.y38{bottom:490.305333pt;}
.y19d{bottom:492.478667pt;}
.y138{bottom:493.457333pt;}
.y73{bottom:495.081333pt;}
.yec{bottom:496.641333pt;}
.y205{bottom:496.680000pt;}
.y22f{bottom:497.364000pt;}
.ya9{bottom:503.146667pt;}
.yc7{bottom:503.700000pt;}
.y204{bottom:509.158667pt;}
.yeb{bottom:509.440000pt;}
.y72{bottom:510.440000pt;}
.y15{bottom:511.061333pt;}
.y37{bottom:513.024000pt;}
.ya8{bottom:518.505333pt;}
.y195{bottom:518.733333pt;}
.yc6{bottom:519.058667pt;}
.y22e{bottom:520.082667pt;}
.yea{bottom:521.918667pt;}
.y197{bottom:521.932000pt;}
.y193{bottom:521.933333pt;}
.y1c7{bottom:522.573333pt;}
.y71{bottom:525.798667pt;}
.y14{bottom:526.420000pt;}
.y36{bottom:528.382667pt;}
.y137{bottom:528.656000pt;}
.y203{bottom:529.317333pt;}
.y19b{bottom:531.198667pt;}
.ya7{bottom:533.864000pt;}
.yc5{bottom:534.417333pt;}
.y22d{bottom:535.441333pt;}
.y166{bottom:537.313333pt;}
.y196{bottom:538.892000pt;}
.y199{bottom:539.198667pt;}
.y202{bottom:541.157333pt;}
.y198{bottom:542.090667pt;}
.y194{bottom:542.092000pt;}
.y35{bottom:543.741333pt;}
.ye9{bottom:544.017333pt;}
.y70{bottom:548.838667pt;}
.ya6{bottom:548.902667pt;}
.yc4{bottom:549.776000pt;}
.y22c{bottom:550.800000pt;}
.y165{bottom:552.672000pt;}
.y34{bottom:559.100000pt;}
.ye8{bottom:559.376000pt;}
.y201{bottom:561.316000pt;}
.y13{bottom:561.618667pt;}
.y6f{bottom:564.197333pt;}
.ya5{bottom:564.261333pt;}
.yc3{bottom:565.134667pt;}
.y192{bottom:565.773333pt;}
.y22b{bottom:566.158667pt;}
.y164{bottom:568.030667pt;}
.y200{bottom:573.156000pt;}
.y33{bottom:574.458667pt;}
.ye7{bottom:574.734667pt;}
.y191{bottom:579.213333pt;}
.y6e{bottom:579.236000pt;}
.ya4{bottom:579.620000pt;}
.yc2{bottom:580.493333pt;}
.y190{bottom:581.132000pt;}
.y1c6{bottom:581.133333pt;}
.y22a{bottom:581.517333pt;}
.y163{bottom:583.389333pt;}
.y1ff{bottom:585.634667pt;}
.y136{bottom:586.894667pt;}
.y32{bottom:589.817333pt;}
.ye6{bottom:590.093333pt;}
.y6d{bottom:594.594667pt;}
.ya3{bottom:594.978667pt;}
.yc1{bottom:595.852000pt;}
.y1c5{bottom:596.492000pt;}
.y229{bottom:596.876000pt;}
.y1fe{bottom:597.793333pt;}
.y135{bottom:602.253333pt;}
.y18e{bottom:604.172000pt;}
.y31{bottom:604.856000pt;}
.ye5{bottom:605.452000pt;}
.y161{bottom:606.428000pt;}
.y18f{bottom:608.650667pt;}
.y1fd{bottom:609.952000pt;}
.y6c{bottom:609.953333pt;}
.ya2{bottom:610.337333pt;}
.y162{bottom:610.908000pt;}
.yc0{bottom:611.210667pt;}
.y1c4{bottom:611.530667pt;}
.y228{bottom:612.234667pt;}
.y134{bottom:617.612000pt;}
.y12{bottom:619.857333pt;}
.y30{bottom:620.214667pt;}
.ye4{bottom:620.490667pt;}
.y6b{bottom:625.312000pt;}
.ya1{bottom:625.696000pt;}
.ybf{bottom:626.569333pt;}
.y1c3{bottom:626.889333pt;}
.y227{bottom:627.593333pt;}
.y1fc{bottom:630.110667pt;}
.y18d{bottom:632.332000pt;}
.y133{bottom:632.970667pt;}
.y160{bottom:634.906667pt;}
.y11{bottom:635.536000pt;}
.y2f{bottom:635.573333pt;}
.ye3{bottom:635.849333pt;}
.y6a{bottom:640.670667pt;}
.ya0{bottom:641.054667pt;}
.ybe{bottom:641.928000pt;}
.y1fb{bottom:641.950667pt;}
.y1c2{bottom:642.248000pt;}
.y226{bottom:642.952000pt;}
.y18c{bottom:647.690667pt;}
.y15f{bottom:650.265333pt;}
.y10{bottom:650.894667pt;}
.y2e{bottom:650.932000pt;}
.ye2{bottom:651.208000pt;}
.y1fa{bottom:654.429333pt;}
.y132{bottom:655.689333pt;}
.y69{bottom:656.029333pt;}
.y9f{bottom:656.413333pt;}
.ybd{bottom:657.286667pt;}
.y1c1{bottom:657.606667pt;}
.y18b{bottom:663.049333pt;}
.y15e{bottom:665.304000pt;}
.yf{bottom:666.253333pt;}
.y2d{bottom:666.290667pt;}
.ye1{bottom:666.566667pt;}
.y1f9{bottom:666.588000pt;}
.y131{bottom:671.048000pt;}
.y68{bottom:671.388000pt;}
.y9e{bottom:671.772000pt;}
.ybc{bottom:672.325333pt;}
.y1c0{bottom:672.965333pt;}
.y225{bottom:677.832000pt;}
.y18a{bottom:678.408000pt;}
.y1f8{bottom:678.746667pt;}
.y15d{bottom:680.662667pt;}
.ye{bottom:681.612000pt;}
.y2c{bottom:681.649333pt;}
.ye0{bottom:681.925333pt;}
.y130{bottom:686.406667pt;}
.y67{bottom:686.746667pt;}
.y9d{bottom:687.130667pt;}
.ybb{bottom:687.684000pt;}
.y1bf{bottom:688.324000pt;}
.y1f7{bottom:691.225333pt;}
.y115{bottom:693.440000pt;}
.y189{bottom:693.766667pt;}
.y15c{bottom:696.021333pt;}
.yd{bottom:696.970667pt;}
.y2b{bottom:697.008000pt;}
.ydf{bottom:697.284000pt;}
.y12f{bottom:701.765333pt;}
.y66{bottom:702.105333pt;}
.y9c{bottom:702.489333pt;}
.yba{bottom:703.042667pt;}
.y1be{bottom:703.682667pt;}
.y114{bottom:708.798667pt;}
.y1f6{bottom:711.384000pt;}
.yc{bottom:712.329333pt;}
.y2a{bottom:712.366667pt;}
.yde{bottom:712.642667pt;}
.y188{bottom:716.485333pt;}
.y12e{bottom:717.124000pt;}
.y65{bottom:717.464000pt;}
.y9b{bottom:717.848000pt;}
.y15b{bottom:719.061333pt;}
.y1f5{bottom:723.224000pt;}
.yb{bottom:727.688000pt;}
.y29{bottom:727.725333pt;}
.ydd{bottom:728.001333pt;}
.y113{bottom:731.838667pt;}
.y187{bottom:731.844000pt;}
.y12d{bottom:732.482667pt;}
.y64{bottom:732.822667pt;}
.y15a{bottom:734.420000pt;}
.y1f4{bottom:735.382667pt;}
.y224{bottom:735.750667pt;}
.yb9{bottom:736.641333pt;}
.y1bd{bottom:736.962667pt;}
.y125{bottom:739.860000pt;}
.y9a{bottom:740.566667pt;}
.ya{bottom:743.046667pt;}
.y28{bottom:743.084000pt;}
.ydc{bottom:743.360000pt;}
.y186{bottom:747.202667pt;}
.y12c{bottom:747.841333pt;}
.y1f3{bottom:747.861333pt;}
.y223{bottom:747.909333pt;}
.y63{bottom:748.181333pt;}
.yb8{bottom:748.800000pt;}
.y1bc{bottom:749.441333pt;}
.y159{bottom:749.778667pt;}
.y112{bottom:754.558667pt;}
.y124{bottom:755.218667pt;}
.y99{bottom:755.925333pt;}
.y1f2{bottom:760.020000pt;}
.y222{bottom:760.068000pt;}
.y1bb{bottom:761.600000pt;}
.y185{bottom:762.561333pt;}
.y158{bottom:764.817333pt;}
.y123{bottom:770.577333pt;}
.y62{bottom:770.900000pt;}
.y98{bottom:771.284000pt;}
.y1f1{bottom:772.178667pt;}
.y221{bottom:772.226667pt;}
.ydb{bottom:776.640000pt;}
.y111{bottom:777.600000pt;}
.y184{bottom:777.920000pt;}
.y157{bottom:780.176000pt;}
.y12b{bottom:781.121333pt;}
.y1ba{bottom:784.000000pt;}
.y122{bottom:785.936000pt;}
.y61{bottom:786.258667pt;}
.y97{bottom:786.642667pt;}
.y1f0{bottom:792.337333pt;}
.y220{bottom:792.385333pt;}
.y12a{bottom:793.600000pt;}
.y156{bottom:795.534667pt;}
.y9{bottom:796.166667pt;}
.y183{bottom:800.960000pt;}
.y121{bottom:801.294667pt;}
.y60{bottom:801.617333pt;}
.y96{bottom:802.001333pt;}
.y110{bottom:803.198667pt;}
.y1ef{bottom:804.177333pt;}
.y21f{bottom:804.225333pt;}
.y155{bottom:810.893333pt;}
.y182{bottom:816.320000pt;}
.y21e{bottom:816.704000pt;}
.y5f{bottom:816.976000pt;}
.y95{bottom:817.360000pt;}
.y10f{bottom:823.678667pt;}
.y120{bottom:824.013333pt;}
.y1ee{bottom:824.336000pt;}
.y154{bottom:826.252000pt;}
.y21d{bottom:828.862667pt;}
.y8{bottom:830.405333pt;}
.y181{bottom:832.320000pt;}
.y5e{bottom:832.334667pt;}
.y94{bottom:832.398667pt;}
.y180{bottom:834.238667pt;}
.y1ed{bottom:836.494667pt;}
.y10e{bottom:837.120000pt;}
.y10d{bottom:839.038667pt;}
.y11f{bottom:839.372000pt;}
.y153{bottom:841.610667pt;}
.y5d{bottom:847.693333pt;}
.y1ec{bottom:848.653333pt;}
.y21c{bottom:849.021333pt;}
.y7{bottom:853.442667pt;}
.y11e{bottom:854.730667pt;}
.y93{bottom:855.438667pt;}
.y152{bottom:856.969333pt;}
.y21b{bottom:860.861333pt;}
.y5c{bottom:862.732000pt;}
.y10c{bottom:864.960000pt;}
.y17f{bottom:865.280000pt;}
.y1eb{bottom:868.812000pt;}
.y11d{bottom:870.089333pt;}
.y92{bottom:870.797333pt;}
.y6{bottom:872.001333pt;}
.y151{bottom:872.328000pt;}
.y21a{bottom:873.340000pt;}
.y5b{bottom:878.090667pt;}
.y1ea{bottom:880.652000pt;}
.y11c{bottom:885.448000pt;}
.y219{bottom:885.498667pt;}
.y91{bottom:886.156000pt;}
.y150{bottom:887.686667pt;}
.y17e{bottom:893.120000pt;}
.y1e9{bottom:893.130667pt;}
.y5a{bottom:893.449333pt;}
.y10b{bottom:895.678667pt;}
.y11b{bottom:900.806667pt;}
.y90{bottom:901.514667pt;}
.y5{bottom:901.761333pt;}
.y1b9{bottom:904.000000pt;}
.y1e8{bottom:905.289333pt;}
.y218{bottom:905.657333pt;}
.y17d{bottom:908.480000pt;}
.y59{bottom:908.808000pt;}
.y14f{bottom:914.245333pt;}
.y11a{bottom:916.165333pt;}
.y8f{bottom:916.873333pt;}
.y1e7{bottom:917.448000pt;}
.y217{bottom:917.497333pt;}
.y10a{bottom:923.838667pt;}
.y58{bottom:924.166667pt;}
.y1e6{bottom:929.926667pt;}
.y216{bottom:929.976000pt;}
.y17c{bottom:931.518667pt;}
.y119{bottom:931.524000pt;}
.y8e{bottom:931.912000pt;}
.y14e{bottom:939.204000pt;}
.y57{bottom:939.525333pt;}
.y109{bottom:941.760000pt;}
.y215{bottom:942.134667pt;}
.y17b{bottom:944.962667pt;}
.y17a{bottom:946.881333pt;}
.y118{bottom:946.882667pt;}
.y8d{bottom:947.270667pt;}
.y1e5{bottom:949.766667pt;}
.y179{bottom:952.960000pt;}
.y14d{bottom:954.242667pt;}
.y56{bottom:954.884000pt;}
.y4{bottom:959.041333pt;}
.y178{bottom:960.320000pt;}
.y117{bottom:961.921333pt;}
.y1e4{bottom:961.925333pt;}
.y108{bottom:962.238667pt;}
.y214{bottom:962.293333pt;}
.y8c{bottom:962.629333pt;}
.y177{bottom:968.317333pt;}
.y14c{bottom:969.601333pt;}
.y129{bottom:970.241333pt;}
.y55{bottom:970.242667pt;}
.y1e3{bottom:974.084000pt;}
.y213{bottom:974.133333pt;}
.y107{bottom:977.600000pt;}
.y8b{bottom:977.988000pt;}
.y14b{bottom:984.960000pt;}
.y116{bottom:984.961333pt;}
.y128{bottom:985.600000pt;}
.y54{bottom:985.601333pt;}
.y1e2{bottom:986.242667pt;}
.y212{bottom:986.292000pt;}
.y3{bottom:986.880000pt;}
.y176{bottom:987.838667pt;}
.y8a{bottom:993.346667pt;}
.y211{bottom:998.770667pt;}
.y106{bottom:1000.640000pt;}
.y127{bottom:1000.958667pt;}
.y53{bottom:1000.960000pt;}
.y1e1{bottom:1006.401333pt;}
.y175{bottom:1011.198667pt;}
.y105{bottom:1016.000000pt;}
.y52{bottom:1016.318667pt;}
.y89{bottom:1016.386667pt;}
.y14a{bottom:1018.558667pt;}
.y1e0{bottom:1018.560000pt;}
.y210{bottom:1018.929333pt;}
.y1{bottom:1057.280000pt;}
.h19{height:15.678667pt;}
.h1b{height:22.921875pt;}
.h11{height:33.901875pt;}
.h12{height:33.918750pt;}
.h18{height:35.226953pt;}
.h16{height:36.310859pt;}
.h1a{height:37.001875pt;}
.h14{height:38.692500pt;}
.hb{height:41.385000pt;}
.h1c{height:41.430393pt;}
.h5{height:41.451016pt;}
.h9{height:42.564625pt;}
.h2{height:44.049438pt;}
.ha{height:45.390000pt;}
.h17{height:51.846849pt;}
.h15{height:51.872656pt;}
.h7{height:52.736250pt;}
.h6{height:52.762500pt;}
.hc{height:54.180000pt;}
.he{height:55.275000pt;}
.h10{height:58.216542pt;}
.h13{height:60.410917pt;}
.hd{height:60.437167pt;}
.hf{height:69.355000pt;}
.h4{height:70.885682pt;}
.h8{height:74.814625pt;}
.h3{height:96.750000pt;}
.h0{height:1122.558667pt;}
.h1{height:1122.666667pt;}
.w2{width:7.360000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:75.520000pt;}
.x9{left:94.394667pt;}
.x6{left:95.993333pt;}
.x2{left:106.238667pt;}
.xc{left:113.280000pt;}
.x5{left:116.152000pt;}
.x18{left:117.117333pt;}
.x19{left:123.837333pt;}
.x1a{left:128.316000pt;}
.x7{left:146.233333pt;}
.x34{left:165.801333pt;}
.x26{left:167.678667pt;}
.x2b{left:169.298667pt;}
.x20{left:183.680000pt;}
.x1b{left:207.357333pt;}
.x1c{left:223.356000pt;}
.x1d{left:226.876000pt;}
.x10{left:251.832000pt;}
.x2c{left:252.818667pt;}
.x25{left:256.010667pt;}
.x1f{left:271.358667pt;}
.x29{left:272.332000pt;}
.x24{left:275.201333pt;}
.x33{left:285.481333pt;}
.x4{left:286.393333pt;}
.x2a{left:294.413333pt;}
.x3{left:295.354667pt;}
.x8{left:297.273333pt;}
.x28{left:298.888000pt;}
.x23{left:301.758667pt;}
.x30{left:304.034667pt;}
.x2f{left:304.993333pt;}
.x32{left:326.118667pt;}
.x31{left:327.396000pt;}
.x2d{left:331.537333pt;}
.x2e{left:335.061333pt;}
.x21{left:342.718667pt;}
.x1e{left:344.634667pt;}
.x22{left:347.197333pt;}
.x27{left:360.000000pt;}
.x14{left:367.350667pt;}
.x15{left:371.189333pt;}
.x16{left:377.909333pt;}
.x17{left:382.069333pt;}
.xa{left:407.993333pt;}
.xf{left:426.880000pt;}
.x35{left:430.080000pt;}
.xb{left:445.753333pt;}
.x13{left:473.274667pt;}
.xd{left:476.800000pt;}
.xe{left:534.674667pt;}
.x36{left:573.440000pt;}
.x12{left:639.032000pt;}
.x11{left:641.274667pt;}
}




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