
    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_3e6b9f60f5679157e84c3918.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_bf959156e786e69381ea9386.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_d9cef398547940d83c9ebf4a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_4ed4d8e1b8d6dec542692685.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_089e27fd1d382b8fd71834aa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.821777;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_157d56a35734ba559c0b266f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.857910;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_4b4213bf544e99cf6b4bfad9.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_1552aa65babdfa699a3068e0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.127000;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_d927fae0850d29f68effd5e6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.127000;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_7103db1eda9233a0bdd3af64.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.077000;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:ffc;src:url('chunks/assets/font_49340a6f155923879e97266e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.976000;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:ffd;src:url('chunks/assets/font_eacc7f83d076273142a72b4d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.127000;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:ffe;src:url('chunks/assets/font_d927fae0850d29f68effd5e6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.127000;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:fff;src:url('chunks/assets/font_2aa186a4ab3388164ea2709e.woff2')format("woff");}.fff{font-family:fff;line-height:0.952000;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:ff10;src:url('chunks/assets/font_8e0a65081c744fca7eda951b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;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:ff11;src:url('chunks/assets/font_6c97f31dedb21df7a1e21bd0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;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:ff12;src:url('chunks/assets/font_eacc7f83d076273142a72b4d.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.127000;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:ff13;src:url('chunks/assets/font_d4e06f11019957e1026c8e57.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.000000;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:ff14;src:url('chunks/assets/font_88d1c530d42a584ce77882bd.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.895996;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:ff15;src:url('chunks/assets/font_6c56be3f02355fb1e19bdd23.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.857910;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;}
.m2{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249763,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.979400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.979400px;}
.ls46{letter-spacing:-6.240000px;}
.ls48{letter-spacing:-5.994000px;}
.ls72{letter-spacing:-5.292000px;}
.ls52{letter-spacing:-5.220000px;}
.ls38{letter-spacing:-4.536000px;}
.ls24{letter-spacing:-4.500000px;}
.ls34{letter-spacing:-4.212000px;}
.ls58{letter-spacing:-4.080000px;}
.ls42{letter-spacing:-4.050000px;}
.ls53{letter-spacing:-3.600000px;}
.ls3a{letter-spacing:-3.456000px;}
.ls64{letter-spacing:-3.180000px;}
.ls80{letter-spacing:-3.072000px;}
.ls7e{letter-spacing:-3.060000px;}
.ls3d{letter-spacing:-3.024000px;}
.ls3c{letter-spacing:-2.970000px;}
.ls30{letter-spacing:-2.862000px;}
.ls4d{letter-spacing:-2.538000px;}
.ls73{letter-spacing:-2.376000px;}
.ls88{letter-spacing:-2.160000px;}
.ls91{letter-spacing:-2.112000px;}
.ls41{letter-spacing:-2.052000px;}
.ls85{letter-spacing:-2.016000px;}
.ls7f{letter-spacing:-1.993860px;}
.ls7d{letter-spacing:-1.987500px;}
.ls40{letter-spacing:-1.836000px;}
.ls86{letter-spacing:-1.776000px;}
.ls82{letter-spacing:-1.728000px;}
.ls2c{letter-spacing:-1.674000px;}
.ls33{letter-spacing:-1.512000px;}
.ls44{letter-spacing:-1.404000px;}
.ls57{letter-spacing:-1.260000px;}
.ls84{letter-spacing:-1.259280px;}
.ls96{letter-spacing:-1.200000px;}
.ls71{letter-spacing:-1.134000px;}
.ls81{letter-spacing:-1.049400px;}
.ls3b{letter-spacing:-1.026000px;}
.ls56{letter-spacing:-1.020000px;}
.ls8f{letter-spacing:-1.012500px;}
.ls7c{letter-spacing:-1.008000px;}
.ls35{letter-spacing:-0.972000px;}
.ls39{letter-spacing:-0.918000px;}
.ls13{letter-spacing:-0.900000px;}
.ls32{letter-spacing:-0.864000px;}
.ls76{letter-spacing:-0.780000px;}
.ls12{letter-spacing:-0.712500px;}
.ls75{letter-spacing:-0.648000px;}
.ls54{letter-spacing:-0.600000px;}
.ls7b{letter-spacing:-0.559680px;}
.ls31{letter-spacing:-0.540000px;}
.ls37{letter-spacing:-0.486000px;}
.ls6a{letter-spacing:-0.450000px;}
.ls5{letter-spacing:-0.419400px;}
.ls8b{letter-spacing:-0.384000px;}
.ls10{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.335520px;}
.ls55{letter-spacing:-0.300000px;}
.ls3e{letter-spacing:-0.270000px;}
.ls18{letter-spacing:-0.247342px;}
.ls8d{letter-spacing:-0.240000px;}
.ls2d{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.192926px;}
.ls6{letter-spacing:-0.167760px;}
.ls6c{letter-spacing:-0.164628px;}
.ls6e{letter-spacing:-0.131702px;}
.ls3{letter-spacing:-0.083880px;}
.ls1b{letter-spacing:-0.082447px;}
.ls1e{letter-spacing:-0.060000px;}
.ls4e{letter-spacing:-0.054000px;}
.ls1a{letter-spacing:-0.048232px;}
.ls5c{letter-spacing:-0.037500px;}
.ls0{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.037500px;}
.ls1{letter-spacing:0.050328px;}
.ls97{letter-spacing:0.060000px;}
.ls15{letter-spacing:0.082447px;}
.ls4{letter-spacing:0.083880px;}
.ls20{letter-spacing:0.120000px;}
.ls6d{letter-spacing:0.131702px;}
.ls8{letter-spacing:0.150000px;}
.ls49{letter-spacing:0.162000px;}
.ls14{letter-spacing:0.164894px;}
.ls59{letter-spacing:0.174600px;}
.ls60{letter-spacing:0.175200px;}
.ls4a{letter-spacing:0.180000px;}
.ls6f{letter-spacing:0.197554px;}
.ls70{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.240000px;}
.ls2{letter-spacing:0.251640px;}
.ls69{letter-spacing:0.263405px;}
.ls27{letter-spacing:0.270000px;}
.lsc{letter-spacing:0.300000px;}
.lsb{letter-spacing:0.315000px;}
.ls1d{letter-spacing:0.360000px;}
.ls68{letter-spacing:0.362182px;}
.ls5e{letter-spacing:0.375000px;}
.ls79{letter-spacing:0.378000px;}
.ls5b{letter-spacing:0.420000px;}
.ls3f{letter-spacing:0.432000px;}
.ls22{letter-spacing:0.437400px;}
.lsd{letter-spacing:0.480000px;}
.ls36{letter-spacing:0.486000px;}
.ls5d{letter-spacing:0.525000px;}
.lse{letter-spacing:0.540000px;}
.ls1c{letter-spacing:0.562500px;}
.ls2f{letter-spacing:0.594000px;}
.ls1f{letter-spacing:0.600000px;}
.ls93{letter-spacing:0.624000px;}
.ls43{letter-spacing:0.637500px;}
.ls74{letter-spacing:0.648000px;}
.ls4c{letter-spacing:0.660000px;}
.ls8e{letter-spacing:0.672000px;}
.ls4b{letter-spacing:0.675000px;}
.ls2e{letter-spacing:0.702000px;}
.ls23{letter-spacing:0.712500px;}
.ls83{letter-spacing:0.720000px;}
.ls8c{letter-spacing:0.768000px;}
.ls11{letter-spacing:0.780000px;}
.ls2b{letter-spacing:0.810000px;}
.ls90{letter-spacing:0.816000px;}
.ls6b{letter-spacing:0.840000px;}
.ls25{letter-spacing:0.864000px;}
.ls51{letter-spacing:0.900000px;}
.ls50{letter-spacing:0.912000px;}
.ls2a{letter-spacing:0.918000px;}
.ls28{letter-spacing:0.937500px;}
.ls17{letter-spacing:0.960000px;}
.ls47{letter-spacing:0.972000px;}
.ls29{letter-spacing:1.008000px;}
.ls61{letter-spacing:1.050000px;}
.ls77{letter-spacing:1.056000px;}
.ls7a{letter-spacing:1.080000px;}
.ls62{letter-spacing:1.087500px;}
.ls66{letter-spacing:1.104000px;}
.ls65{letter-spacing:1.140000px;}
.ls5f{letter-spacing:1.152000px;}
.ls4f{letter-spacing:1.200000px;}
.ls87{letter-spacing:1.248000px;}
.ls16{letter-spacing:1.275000px;}
.ls94{letter-spacing:1.296000px;}
.ls8a{letter-spacing:1.344000px;}
.ls67{letter-spacing:1.387500px;}
.ls89{letter-spacing:1.392000px;}
.ls95{letter-spacing:1.440000px;}
.ls5a{letter-spacing:1.462500px;}
.ls92{letter-spacing:1.488000px;}
.ls45{letter-spacing:1.575000px;}
.ls78{letter-spacing:1.890000px;}
.ls21{letter-spacing:2.040000px;}
.ls63{letter-spacing:3.168000px;}
.ls9{letter-spacing:4.687500px;}
.lsa{letter-spacing:5.760000px;}
.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;}
}
.ws164{word-spacing:-33.287782px;}
.ws168{word-spacing:-33.123154px;}
.ws166{word-spacing:-33.057302px;}
.ws167{word-spacing:-32.793898px;}
.ws165{word-spacing:-32.760972px;}
.ws6{word-spacing:-19.208520px;}
.ws2{word-spacing:-19.040760px;}
.ws1{word-spacing:-18.956880px;}
.ws3{word-spacing:-18.873000px;}
.ws5{word-spacing:-18.789120px;}
.ws7{word-spacing:-18.621360px;}
.ws4{word-spacing:-18.537480px;}
.ws1a2{word-spacing:-14.760000px;}
.ws163{word-spacing:-14.520000px;}
.wse{word-spacing:-14.460000px;}
.ws1ba{word-spacing:-14.400000px;}
.ws14a{word-spacing:-14.280000px;}
.ws1b9{word-spacing:-14.220000px;}
.ws19b{word-spacing:-14.202000px;}
.wsd{word-spacing:-14.160000px;}
.ws14e{word-spacing:-14.040000px;}
.ws26{word-spacing:-13.920000px;}
.ws1b5{word-spacing:-13.860000px;}
.ws56{word-spacing:-13.800000px;}
.ws1dc{word-spacing:-13.740000px;}
.ws110{word-spacing:-13.380000px;}
.ws43{word-spacing:-13.360153px;}
.wsc{word-spacing:-13.320000px;}
.wsf0{word-spacing:-13.284000px;}
.wsdf{word-spacing:-13.230000px;}
.ws10f{word-spacing:-13.080000px;}
.ws173{word-spacing:-13.014000px;}
.wsb3{word-spacing:-12.906000px;}
.ws183{word-spacing:-12.900000px;}
.ws176{word-spacing:-12.852000px;}
.wsd1{word-spacing:-12.798000px;}
.ws27{word-spacing:-12.780000px;}
.ws172{word-spacing:-12.528000px;}
.ws171{word-spacing:-12.474000px;}
.ws1d0{word-spacing:-12.432000px;}
.ws1d9{word-spacing:-12.384000px;}
.ws1c1{word-spacing:-12.288000px;}
.ws1bf{word-spacing:-12.192000px;}
.ws1d1{word-spacing:-12.144000px;}
.ws1c3{word-spacing:-12.096000px;}
.ws1c4{word-spacing:-12.048000px;}
.ws1cf{word-spacing:-11.952000px;}
.ws1a8{word-spacing:-11.904000px;}
.ws1c2{word-spacing:-11.856000px;}
.ws1c5{word-spacing:-11.808000px;}
.ws45{word-spacing:-11.625055px;}
.ws46{word-spacing:-11.542608px;}
.ws19e{word-spacing:-11.448000px;}
.ws198{word-spacing:-11.394000px;}
.ws19d{word-spacing:-10.476000px;}
.ws14d{word-spacing:-10.080000px;}
.ws15f{word-spacing:-9.937500px;}
.ws1a7{word-spacing:-9.936000px;}
.ws40{word-spacing:-9.825000px;}
.ws131{word-spacing:-9.750000px;}
.ws132{word-spacing:-9.600000px;}
.ws10d{word-spacing:-9.450000px;}
.ws6a{word-spacing:-9.262500px;}
.wsef{word-spacing:-9.225000px;}
.ws1b7{word-spacing:-9.216000px;}
.wsd0{word-spacing:-9.187500px;}
.ws1c6{word-spacing:-9.168000px;}
.ws1bd{word-spacing:-8.928000px;}
.ws149{word-spacing:-8.925000px;}
.ws1c0{word-spacing:-8.784000px;}
.wsb{word-spacing:-8.700000px;}
.ws97{word-spacing:-8.587500px;}
.ws142{word-spacing:-8.512500px;}
.ws10e{word-spacing:-8.460000px;}
.ws16d{word-spacing:-8.100000px;}
.ws55{word-spacing:-7.975440px;}
.ws1b0{word-spacing:-7.872000px;}
.ws175{word-spacing:-7.776000px;}
.ws1d8{word-spacing:-7.537500px;}
.ws1b6{word-spacing:-6.926040px;}
.ws1bc{word-spacing:-6.716160px;}
.ws1b1{word-spacing:-6.562500px;}
.ws1af{word-spacing:-5.981580px;}
.ws1a0{word-spacing:-5.820000px;}
.wsa4{word-spacing:-5.280000px;}
.ws1df{word-spacing:-5.160000px;}
.ws178{word-spacing:-5.040000px;}
.ws187{word-spacing:-4.320000px;}
.ws23{word-spacing:-4.260000px;}
.ws64{word-spacing:-4.200000px;}
.ws9f{word-spacing:-4.140000px;}
.ws79{word-spacing:-4.080000px;}
.ws34{word-spacing:-4.020000px;}
.ws155{word-spacing:-3.960000px;}
.ws2a{word-spacing:-3.900000px;}
.wsd3{word-spacing:-3.840000px;}
.ws66{word-spacing:-3.780000px;}
.ws3a{word-spacing:-3.720000px;}
.ws148{word-spacing:-3.660000px;}
.ws93{word-spacing:-3.600000px;}
.ws106{word-spacing:-3.540000px;}
.ws9b{word-spacing:-3.480000px;}
.wsed{word-spacing:-3.420000px;}
.ws5c{word-spacing:-3.300000px;}
.ws7c{word-spacing:-3.240000px;}
.wsf9{word-spacing:-3.180000px;}
.ws65{word-spacing:-3.120000px;}
.ws76{word-spacing:-3.060000px;}
.ws87{word-spacing:-3.000000px;}
.wsa6{word-spacing:-2.940000px;}
.ws5a{word-spacing:-2.880000px;}
.wsfa{word-spacing:-2.820000px;}
.ws2b{word-spacing:-2.760000px;}
.ws19{word-spacing:-2.700000px;}
.ws177{word-spacing:-2.640000px;}
.ws2c{word-spacing:-2.580000px;}
.ws28{word-spacing:-2.520000px;}
.ws169{word-spacing:-2.460000px;}
.ws22{word-spacing:-2.400000px;}
.ws18e{word-spacing:-2.340000px;}
.ws11d{word-spacing:-2.280000px;}
.ws4c{word-spacing:-2.220000px;}
.ws82{word-spacing:-2.160000px;}
.ws161{word-spacing:-2.100000px;}
.ws1e{word-spacing:-2.040000px;}
.ws137{word-spacing:-1.980000px;}
.ws1c9{word-spacing:-1.968000px;}
.wse7{word-spacing:-1.944000px;}
.ws135{word-spacing:-1.920000px;}
.ws1c7{word-spacing:-1.872000px;}
.ws75{word-spacing:-1.860000px;}
.wse8{word-spacing:-1.836000px;}
.ws1d7{word-spacing:-1.824000px;}
.ws8b{word-spacing:-1.800000px;}
.wsfe{word-spacing:-1.782000px;}
.ws14b{word-spacing:-1.776000px;}
.ws140{word-spacing:-1.740000px;}
.ws15e{word-spacing:-1.728000px;}
.wse4{word-spacing:-1.680000px;}
.ws17d{word-spacing:-1.674000px;}
.wsc3{word-spacing:-1.632000px;}
.ws15{word-spacing:-1.620000px;}
.ws47{word-spacing:-1.584000px;}
.wsd4{word-spacing:-1.566000px;}
.ws14{word-spacing:-1.560000px;}
.ws10c{word-spacing:-1.536000px;}
.ws17e{word-spacing:-1.512000px;}
.ws84{word-spacing:-1.500000px;}
.ws80{word-spacing:-1.488000px;}
.ws57{word-spacing:-1.440000px;}
.ws179{word-spacing:-1.404000px;}
.ws13{word-spacing:-1.380000px;}
.ws19f{word-spacing:-1.350000px;}
.ws1ca{word-spacing:-1.344000px;}
.ws16{word-spacing:-1.320000px;}
.ws1cd{word-spacing:-1.296000px;}
.ws122{word-spacing:-1.260000px;}
.ws1d6{word-spacing:-1.248000px;}
.wsc6{word-spacing:-1.242000px;}
.wsee{word-spacing:-1.200000px;}
.ws181{word-spacing:-1.188000px;}
.ws96{word-spacing:-1.152000px;}
.ws104{word-spacing:-1.140000px;}
.wsea{word-spacing:-1.134000px;}
.ws69{word-spacing:-1.104000px;}
.ws10{word-spacing:-1.080000px;}
.ws1cb{word-spacing:-1.056000px;}
.ws58{word-spacing:-1.020000px;}
.ws50{word-spacing:-0.964632px;}
.ws11f{word-spacing:-0.960000px;}
.wsf{word-spacing:-0.937500px;}
.ws3b{word-spacing:-0.900000px;}
.ws152{word-spacing:-0.864000px;}
.wsa2{word-spacing:-0.840000px;}
.ws4f{word-spacing:-0.819937px;}
.ws1d2{word-spacing:-0.816000px;}
.ws2d{word-spacing:-0.780000px;}
.wsc5{word-spacing:-0.756000px;}
.ws73{word-spacing:-0.720000px;}
.wsce{word-spacing:-0.702000px;}
.wsa3{word-spacing:-0.660000px;}
.ws17c{word-spacing:-0.648000px;}
.ws124{word-spacing:-0.600000px;}
.ws180{word-spacing:-0.594000px;}
.ws83{word-spacing:-0.540000px;}
.wse6{word-spacing:-0.480000px;}
.wsc8{word-spacing:-0.432000px;}
.wsa1{word-spacing:-0.420000px;}
.ws1cc{word-spacing:-0.384000px;}
.wsd7{word-spacing:-0.360000px;}
.ws17f{word-spacing:-0.324000px;}
.ws11{word-spacing:-0.315000px;}
.ws61{word-spacing:-0.300000px;}
.ws52{word-spacing:-0.247342px;}
.ws59{word-spacing:-0.240000px;}
.ws67{word-spacing:-0.180000px;}
.wsec{word-spacing:-0.120000px;}
.wsc9{word-spacing:-0.108000px;}
.ws51{word-spacing:-0.082447px;}
.ws49{word-spacing:-0.060000px;}
.wscb{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws100{word-spacing:0.054000px;}
.ws30{word-spacing:0.060000px;}
.ws53{word-spacing:0.082447px;}
.ws8{word-spacing:0.083880px;}
.ws157{word-spacing:0.120000px;}
.ws17a{word-spacing:0.162000px;}
.ws9{word-spacing:0.167760px;}
.wsfb{word-spacing:0.180000px;}
.ws11a{word-spacing:0.240000px;}
.wsa{word-spacing:0.251640px;}
.ws119{word-spacing:0.300000px;}
.ws107{word-spacing:0.360000px;}
.ws39{word-spacing:0.420000px;}
.wsd5{word-spacing:0.432000px;}
.ws88{word-spacing:0.480000px;}
.ws3e{word-spacing:0.540000px;}
.ws1ad{word-spacing:0.559680px;}
.ws1da{word-spacing:0.576000px;}
.ws4b{word-spacing:0.600000px;}
.ws105{word-spacing:0.660000px;}
.wsc4{word-spacing:0.702000px;}
.ws48{word-spacing:0.720000px;}
.ws62{word-spacing:0.780000px;}
.ws5d{word-spacing:0.840000px;}
.wscf{word-spacing:0.864000px;}
.ws36{word-spacing:0.900000px;}
.ws2e{word-spacing:0.960000px;}
.ws29{word-spacing:1.020000px;}
.ws35{word-spacing:1.080000px;}
.ws68{word-spacing:1.140000px;}
.ws1c8{word-spacing:1.152000px;}
.ws1f{word-spacing:1.200000px;}
.ws9a{word-spacing:1.260000px;}
.wsa9{word-spacing:1.320000px;}
.ws8e{word-spacing:1.380000px;}
.ws17b{word-spacing:1.404000px;}
.ws70{word-spacing:1.440000px;}
.ws1d4{word-spacing:1.488000px;}
.ws9e{word-spacing:1.500000px;}
.ws1d5{word-spacing:1.536000px;}
.ws7a{word-spacing:1.560000px;}
.wsfd{word-spacing:1.566000px;}
.ws12a{word-spacing:1.620000px;}
.ws138{word-spacing:1.680000px;}
.ws7b{word-spacing:1.740000px;}
.ws1be{word-spacing:1.776000px;}
.ws20{word-spacing:1.800000px;}
.ws98{word-spacing:1.860000px;}
.wsc7{word-spacing:1.890000px;}
.ws10a{word-spacing:1.920000px;}
.ws31{word-spacing:1.980000px;}
.wscd{word-spacing:1.998000px;}
.ws129{word-spacing:2.040000px;}
.wsa5{word-spacing:2.100000px;}
.ws15c{word-spacing:2.160000px;}
.wsa7{word-spacing:2.220000px;}
.ws1d{word-spacing:2.280000px;}
.ws9c{word-spacing:2.340000px;}
.ws5b{word-spacing:2.400000px;}
.ws141{word-spacing:2.460000px;}
.wscc{word-spacing:2.484000px;}
.ws72{word-spacing:2.520000px;}
.ws18b{word-spacing:2.580000px;}
.ws3c{word-spacing:2.640000px;}
.ws128{word-spacing:2.700000px;}
.ws74{word-spacing:2.760000px;}
.ws5f{word-spacing:2.820000px;}
.ws159{word-spacing:2.880000px;}
.ws7f{word-spacing:2.940000px;}
.ws1d3{word-spacing:2.976000px;}
.ws102{word-spacing:3.000000px;}
.ws90{word-spacing:3.060000px;}
.wsff{word-spacing:3.078000px;}
.ws101{word-spacing:3.120000px;}
.ws13c{word-spacing:3.180000px;}
.ws8f{word-spacing:3.240000px;}
.wse2{word-spacing:3.300000px;}
.ws184{word-spacing:3.360000px;}
.ws125{word-spacing:3.420000px;}
.ws6e{word-spacing:3.480000px;}
.ws12d{word-spacing:3.540000px;}
.wsca{word-spacing:3.564000px;}
.ws112{word-spacing:3.600000px;}
.ws190{word-spacing:3.660000px;}
.ws192{word-spacing:3.720000px;}
.wsa8{word-spacing:3.780000px;}
.ws126{word-spacing:3.840000px;}
.ws18f{word-spacing:3.900000px;}
.ws3f{word-spacing:3.960000px;}
.ws160{word-spacing:4.020000px;}
.ws136{word-spacing:4.080000px;}
.ws11e{word-spacing:4.140000px;}
.ws186{word-spacing:4.200000px;}
.ws94{word-spacing:4.260000px;}
.ws6f{word-spacing:4.320000px;}
.ws77{word-spacing:4.380000px;}
.ws7e{word-spacing:4.440000px;}
.ws6c{word-spacing:4.500000px;}
.ws127{word-spacing:4.560000px;}
.ws63{word-spacing:4.620000px;}
.ws1c{word-spacing:4.680000px;}
.ws108{word-spacing:4.740000px;}
.ws8c{word-spacing:4.800000px;}
.ws4e{word-spacing:4.860000px;}
.ws8a{word-spacing:4.920000px;}
.wsf7{word-spacing:4.980000px;}
.wse9{word-spacing:5.022000px;}
.ws5e{word-spacing:5.040000px;}
.wsad{word-spacing:5.100000px;}
.ws37{word-spacing:5.160000px;}
.ws116{word-spacing:5.220000px;}
.wsf8{word-spacing:5.280000px;}
.ws11c{word-spacing:5.340000px;}
.ws6d{word-spacing:5.400000px;}
.ws158{word-spacing:5.460000px;}
.ws16c{word-spacing:5.520000px;}
.ws1a9{word-spacing:5.580000px;}
.ws95{word-spacing:5.640000px;}
.ws134{word-spacing:5.700000px;}
.wsdb{word-spacing:5.760000px;}
.ws146{word-spacing:5.880000px;}
.ws99{word-spacing:5.940000px;}
.ws144{word-spacing:6.000000px;}
.ws33{word-spacing:6.060000px;}
.ws151{word-spacing:6.096000px;}
.ws114{word-spacing:6.180000px;}
.ws18d{word-spacing:6.240000px;}
.ws123{word-spacing:6.300000px;}
.wsda{word-spacing:6.420000px;}
.ws115{word-spacing:6.480000px;}
.ws6b{word-spacing:6.540000px;}
.ws71{word-spacing:6.600000px;}
.ws7d{word-spacing:6.660000px;}
.ws89{word-spacing:6.720000px;}
.ws12e{word-spacing:6.780000px;}
.wsab{word-spacing:7.020000px;}
.ws193{word-spacing:7.080000px;}
.wsaa{word-spacing:7.140000px;}
.ws13d{word-spacing:7.260000px;}
.wse3{word-spacing:7.320000px;}
.ws1a{word-spacing:7.380000px;}
.ws16b{word-spacing:7.500000px;}
.ws156{word-spacing:7.560000px;}
.ws3d{word-spacing:7.620000px;}
.ws85{word-spacing:7.680000px;}
.ws1a3{word-spacing:7.800000px;}
.ws13b{word-spacing:7.920000px;}
.ws78{word-spacing:8.040000px;}
.ws13f{word-spacing:8.160000px;}
.ws1b4{word-spacing:8.220000px;}
.ws24{word-spacing:8.280000px;}
.ws130{word-spacing:8.340000px;}
.ws133{word-spacing:8.400000px;}
.ws60{word-spacing:8.460000px;}
.ws18{word-spacing:8.520000px;}
.wsd9{word-spacing:8.580000px;}
.ws12b{word-spacing:8.640000px;}
.ws2f{word-spacing:8.700000px;}
.ws109{word-spacing:8.760000px;}
.ws150{word-spacing:8.820000px;}
.ws10b{word-spacing:8.880000px;}
.ws21{word-spacing:8.940000px;}
.ws154{word-spacing:9.120000px;}
.ws18a{word-spacing:9.240000px;}
.ws195{word-spacing:9.360000px;}
.wsa0{word-spacing:9.540000px;}
.ws143{word-spacing:9.600000px;}
.ws4a{word-spacing:9.660000px;}
.ws1b{word-spacing:9.840000px;}
.ws38{word-spacing:9.900000px;}
.wseb{word-spacing:9.960000px;}
.ws1de{word-spacing:10.020000px;}
.wse5{word-spacing:10.260000px;}
.ws1dd{word-spacing:10.320000px;}
.ws118{word-spacing:10.380000px;}
.ws13e{word-spacing:10.440000px;}
.ws11b{word-spacing:10.620000px;}
.ws1a5{word-spacing:10.740000px;}
.ws1a4{word-spacing:10.800000px;}
.ws1ab{word-spacing:10.860000px;}
.ws147{word-spacing:10.980000px;}
.ws121{word-spacing:11.040000px;}
.ws9d{word-spacing:11.160000px;}
.ws117{word-spacing:11.220000px;}
.wsfc{word-spacing:11.280000px;}
.ws4d{word-spacing:11.340000px;}
.ws139{word-spacing:11.400000px;}
.ws194{word-spacing:11.520000px;}
.ws1aa{word-spacing:11.640000px;}
.ws1ac{word-spacing:11.880000px;}
.ws15a{word-spacing:12.000000px;}
.ws1a6{word-spacing:12.300000px;}
.ws12c{word-spacing:12.480000px;}
.wsac{word-spacing:12.840000px;}
.ws92{word-spacing:13.020000px;}
.ws12f{word-spacing:13.140000px;}
.ws15d{word-spacing:13.320000px;}
.wse1{word-spacing:13.620000px;}
.wsd6{word-spacing:13.680000px;}
.ws18c{word-spacing:13.860000px;}
.ws185{word-spacing:14.520000px;}
.ws16a{word-spacing:14.940000px;}
.ws14f{word-spacing:15.120000px;}
.wsd8{word-spacing:16.020000px;}
.ws86{word-spacing:17.700000px;}
.ws111{word-spacing:17.760000px;}
.ws120{word-spacing:19.620000px;}
.ws8d{word-spacing:20.040000px;}
.ws91{word-spacing:21.000000px;}
.ws113{word-spacing:21.420000px;}
.ws189{word-spacing:21.600000px;}
.ws188{word-spacing:21.840000px;}
.ws44{word-spacing:65.338301px;}
.ws32{word-spacing:106.596000px;}
.wsaf{word-spacing:107.303400px;}
.ws17{word-spacing:108.540000px;}
.ws12{word-spacing:108.780000px;}
.wsb2{word-spacing:114.096600px;}
.wsb7{word-spacing:116.607600px;}
.wsb8{word-spacing:117.174600px;}
.wsbe{word-spacing:117.968400px;}
.wsbc{word-spacing:119.140200px;}
.wsb5{word-spacing:120.565800px;}
.wsc0{word-spacing:120.970800px;}
.wsba{word-spacing:126.738000px;}
.wsc2{word-spacing:128.908800px;}
.wsd2{word-spacing:129.286800px;}
.wsb9{word-spacing:184.048200px;}
.wsb4{word-spacing:190.722600px;}
.wsc1{word-spacing:192.585600px;}
.wsbf{word-spacing:196.560000px;}
.wsbb{word-spacing:203.785200px;}
.wsb6{word-spacing:209.838600px;}
.wsb1{word-spacing:215.249400px;}
.ws41{word-spacing:215.681875px;}
.ws42{word-spacing:228.461191px;}
.ws197{word-spacing:269.098200px;}
.ws16e{word-spacing:271.636200px;}
.ws199{word-spacing:314.118000px;}
.ws19a{word-spacing:319.210200px;}
.wsbd{word-spacing:333.050400px;}
.ws19c{word-spacing:337.365000px;}
.ws174{word-spacing:339.903000px;}
.ws16f{word-spacing:345.600000px;}
.ws170{word-spacing:348.586200px;}
.wsb0{word-spacing:578.194200px;}
.wse0{word-spacing:665.782200px;}
.wsdd{word-spacing:680.610600px;}
.wsde{word-spacing:693.079200px;}
.wsf1{word-spacing:702.972000px;}
.ws191{word-spacing:711.419550px;}
.ws162{word-spacing:711.434550px;}
.ws196{word-spacing:711.659550px;}
.ws1a1{word-spacing:711.862050px;}
.ws182{word-spacing:712.623300px;}
.ws1db{word-spacing:713.699550px;}
.ws1ce{word-spacing:714.003300px;}
.ws1ae{word-spacing:718.207050px;}
.ws1b3{word-spacing:718.439550px;}
.ws1bb{word-spacing:718.465800px;}
.ws1b8{word-spacing:718.645800px;}
.ws1b2{word-spacing:718.762050px;}
.wsdc{word-spacing:725.800800px;}
.ws13a{word-spacing:726.138300px;}
.ws81{word-spacing:726.700800px;}
.ws103{word-spacing:726.925800px;}
.ws153{word-spacing:727.263300px;}
.ws15b{word-spacing:727.375800px;}
.ws14c{word-spacing:727.394550px;}
.wsae{word-spacing:727.713300px;}
.ws54{word-spacing:728.838300px;}
.ws145{word-spacing:728.950800px;}
.ws25{word-spacing:732.663300px;}
.wsf2{word-spacing:746.161200px;}
.wsf6{word-spacing:746.728200px;}
.wsf4{word-spacing:756.453600px;}
.wsf3{word-spacing:759.828600px;}
.wsf5{word-spacing:770.731200px;}
._10{margin-left:-2042.212200px;}
._2{margin-left:-2041.079400px;}
._48{margin-left:-2039.692200px;}
._54{margin-left:-2038.196100px;}
._f{margin-left:-43.980000px;}
._53{margin-left:-42.480000px;}
._3e{margin-left:-41.340000px;}
._3d{margin-left:-26.885310px;}
._56{margin-left:-9.554580px;}
._7{margin-left:-7.212000px;}
._e{margin-left:-6.181272px;}
._5{margin-left:-5.113200px;}
._9{margin-left:-3.990000px;}
._3{margin-left:-2.061510px;}
._1{margin-left:-1.031724px;}
._0{width:1.191096px;}
._4{width:3.126000px;}
._18{width:4.776000px;}
._22{width:6.517800px;}
._16{width:7.718400px;}
._1b{width:10.836000px;}
._52{width:12.714000px;}
._17{width:15.177600px;}
._1a{width:24.334110px;}
._b{width:30.162000px;}
._11{width:36.180000px;}
._a{width:37.434000px;}
._3f{width:40.680000px;}
._3b{width:50.954400px;}
._51{width:55.440000px;}
._19{width:58.716000px;}
._c{width:65.901510px;}
._8{width:71.772000px;}
._d{width:73.113510px;}
._1c{width:83.639526px;}
._55{width:91.917000px;}
._25{width:94.184712px;}
._2a{width:105.353562px;}
._13{width:106.596000px;}
._6{width:110.159400px;}
._29{width:117.839424px;}
._50{width:123.210510px;}
._15{width:138.411000px;}
._20{width:139.908222px;}
._1f{width:161.444904px;}
._21{width:163.472904px;}
._24{width:165.734904px;}
._23{width:167.108904px;}
._1d{width:168.464904px;}
._1e{width:171.059616px;}
._27{width:178.778904px;}
._28{width:180.626712px;}
._26{width:182.310414px;}
._14{width:200.771190px;}
._3c{width:201.868110px;}
._2b{width:212.007042px;}
._4b{width:222.510000px;}
._49{width:223.963434px;}
._4a{width:225.128904px;}
._31{width:229.922712px;}
._12{width:233.627306px;}
._2e{width:243.250704px;}
._2c{width:248.562000px;}
._2d{width:250.957008px;}
._30{width:254.689104px;}
._40{width:268.405434px;}
._41{width:273.836904px;}
._32{width:295.437042px;}
._43{width:310.610904px;}
._4c{width:361.036320px;}
._4d{width:378.832512px;}
._34{width:402.182712px;}
._39{width:405.191808px;}
._36{width:407.528712px;}
._37{width:408.895512px;}
._33{width:413.840904px;}
._42{width:436.582320px;}
._2f{width:630.876222px;}
._35{width:696.821724px;}
._3a{width:713.280222px;}
._38{width:784.124712px;}
._4f{width:843.435318px;}
._4e{width:849.443712px;}
._46{width:918.549318px;}
._47{width:920.233020px;}
._45{width:926.055318px;}
._44{width:930.065712px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:18.000000px;}
.fs14{font-size:32.925600px;}
.fs12{font-size:34.980000px;}
.fse{font-size:37.500000px;}
.fs10{font-size:41.223600px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:45.000000px;}
.fsd{font-size:47.880000px;}
.fsf{font-size:48.000000px;}
.fs11{font-size:48.231600px;}
.fs8{font-size:51.120000px;}
.fs6{font-size:54.000000px;}
.fs13{font-size:56.448600px;}
.fs3{font-size:60.000000px;}
.fs7{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:83.880000px;}
.fsb{font-size:87.120000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y8d{bottom:1.800450px;}
.y141{bottom:34.951500px;}
.y54{bottom:37.350000px;}
.y122{bottom:38.106310px;}
.y11e{bottom:38.995301px;}
.y11c{bottom:39.587962px;}
.y121{bottom:48.074535px;}
.y9c{bottom:48.469500px;}
.y11d{bottom:48.864749px;}
.y11b{bottom:49.457410px;}
.y100{bottom:49.532550px;}
.y140{bottom:49.579500px;}
.ye9{bottom:49.951800px;}
.ya9{bottom:61.528500px;}
.y9b{bottom:63.097500px;}
.y113{bottom:63.728700px;}
.yfe{bottom:63.731700px;}
.ya4{bottom:63.761700px;}
.y15f{bottom:63.764700px;}
.ye4{bottom:63.767700px;}
.y9a{bottom:63.773700px;}
.ya5{bottom:63.779550px;}
.yff{bottom:64.160550px;}
.y13f{bottom:64.207500px;}
.ye8{bottom:64.579800px;}
.y1d7{bottom:68.165100px;}
.y19a{bottom:71.299050px;}
.y116{bottom:72.773550px;}
.y11a{bottom:74.620800px;}
.ya8{bottom:76.156500px;}
.y112{bottom:78.356700px;}
.yfd{bottom:78.359700px;}
.ya3{bottom:78.389700px;}
.y15e{bottom:78.392700px;}
.ye3{bottom:78.395700px;}
.y99{bottom:78.401700px;}
.y13e{bottom:78.835500px;}
.ye7{bottom:79.207800px;}
.y7c{bottom:81.779550px;}
.y1d6{bottom:82.793100px;}
.y199{bottom:85.927050px;}
.y115{bottom:87.401550px;}
.yeb{bottom:88.526550px;}
.y111{bottom:92.984700px;}
.yfc{bottom:92.987700px;}
.ya2{bottom:93.017700px;}
.y15d{bottom:93.020700px;}
.ye2{bottom:93.023700px;}
.y98{bottom:93.029700px;}
.y13d{bottom:93.463500px;}
.ye6{bottom:93.835800px;}
.y4{bottom:97.125005px;}
.y1d5{bottom:97.421100px;}
.y7b{bottom:99.779550px;}
.y198{bottom:100.555050px;}
.y114{bottom:102.029550px;}
.yea{bottom:103.154550px;}
.y123{bottom:103.436100px;}
.y110{bottom:107.612700px;}
.yfb{bottom:107.615700px;}
.ya1{bottom:107.645700px;}
.y15c{bottom:107.648700px;}
.ye1{bottom:107.651700px;}
.y13c{bottom:108.091500px;}
.y158{bottom:109.481400px;}
.y1d4{bottom:112.049100px;}
.y197{bottom:115.183050px;}
.y7a{bottom:117.779550px;}
.y120{bottom:118.535319px;}
.y10f{bottom:122.240700px;}
.yfa{bottom:122.243700px;}
.ya0{bottom:122.273700px;}
.y15b{bottom:122.276700px;}
.ye0{bottom:122.279700px;}
.y13b{bottom:122.719500px;}
.y157{bottom:124.109400px;}
.y1d3{bottom:126.677100px;}
.y11f{bottom:128.404768px;}
.y196{bottom:129.811050px;}
.y84{bottom:135.779550px;}
.y10e{bottom:136.868700px;}
.yf9{bottom:136.871700px;}
.y9f{bottom:136.901700px;}
.y15a{bottom:136.904700px;}
.y13a{bottom:137.347500px;}
.y21{bottom:139.264499px;}
.y1d2{bottom:141.305100px;}
.y195{bottom:144.439050px;}
.y10d{bottom:151.496700px;}
.yf8{bottom:151.499700px;}
.y9e{bottom:151.529700px;}
.y79{bottom:153.779550px;}
.y1d1{bottom:155.933100px;}
.y156{bottom:156.243600px;}
.y194{bottom:159.067050px;}
.y10c{bottom:166.124700px;}
.yf7{bottom:166.127700px;}
.y1d0{bottom:170.561100px;}
.y78{bottom:171.779550px;}
.y193{bottom:173.695050px;}
.y155{bottom:174.239100px;}
.y10b{bottom:180.752700px;}
.yf6{bottom:180.755700px;}
.y53{bottom:180.810000px;}
.y1cf{bottom:185.189100px;}
.y192{bottom:188.323050px;}
.y77{bottom:189.779550px;}
.y10a{bottom:195.380700px;}
.yf5{bottom:195.383700px;}
.y18{bottom:196.933500px;}
.y1ce{bottom:199.817100px;}
.y154{bottom:200.523600px;}
.y191{bottom:202.951050px;}
.y76{bottom:207.779550px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y109{bottom:210.008700px;}
.yf4{bottom:210.011700px;}
.y1cd{bottom:214.445100px;}
.y190{bottom:217.579050px;}
.y153{bottom:218.519100px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y200{bottom:223.127100px;}
.y108{bottom:224.636700px;}
.yf3{bottom:224.639700px;}
.y75{bottom:225.779550px;}
.y1cc{bottom:229.073100px;}
.y18f{bottom:232.207050px;}
.y52{bottom:232.740000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y1ff{bottom:237.755100px;}
.y107{bottom:239.264700px;}
.yf2{bottom:239.267700px;}
.y1cb{bottom:243.701100px;}
.y74{bottom:243.779550px;}
.y152{bottom:244.803600px;}
.y18e{bottom:246.835050px;}
.y51{bottom:247.447440px;}
.y1fe{bottom:252.383100px;}
.y106{bottom:253.892700px;}
.yf1{bottom:253.895700px;}
.y1ca{bottom:258.329100px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y18d{bottom:261.463050px;}
.y73{bottom:261.779550px;}
.y151{bottom:262.799100px;}
.ycf{bottom:263.414550px;}
.y50{bottom:265.814100px;}
.y1fd{bottom:267.011100px;}
.y105{bottom:268.520700px;}
.yf0{bottom:268.523700px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y1c9{bottom:272.957100px;}
.y18c{bottom:276.091050px;}
.yce{bottom:278.042550px;}
.y72{bottom:279.779550px;}
.y1fc{bottom:281.639100px;}
.y104{bottom:283.148700px;}
.yef{bottom:283.151700px;}
.y4f{bottom:284.090580px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y1c8{bottom:287.585100px;}
.y150{bottom:289.083600px;}
.y18b{bottom:290.719050px;}
.y1fb{bottom:296.267100px;}
.y103{bottom:297.776700px;}
.y71{bottom:297.779550px;}
.yee{bottom:297.779700px;}
.y1c7{bottom:302.213100px;}
.y4e{bottom:302.457240px;}
.y18a{bottom:305.347050px;}
.ycd{bottom:310.163550px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y1fa{bottom:310.895100px;}
.y102{bottom:312.404700px;}
.y14f{bottom:315.368100px;}
.y70{bottom:315.779550px;}
.y1c6{bottom:316.841100px;}
.y189{bottom:319.975050px;}
.y4d{bottom:320.733720px;}
.ydf{bottom:321.599100px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y1f9{bottom:325.523100px;}
.y1c5{bottom:331.469100px;}
.y14e{bottom:333.363600px;}
.y6f{bottom:333.779550px;}
.y188{bottom:334.603050px;}
.yde{bottom:336.227100px;}
.ycc{bottom:336.448050px;}
.y4c{bottom:339.100380px;}
.y1f8{bottom:340.151100px;}
.y1c4{bottom:346.097100px;}
.yf{bottom:348.133500px;}
.y187{bottom:349.231050px;}
.y6e{bottom:351.779550px;}
.y4b{bottom:357.376860px;}
.y14d{bottom:359.648100px;}
.y1c3{bottom:360.725100px;}
.ycb{bottom:362.732550px;}
.y186{bottom:363.859050px;}
.ydd{bottom:368.335050px;}
.y1f7{bottom:369.407100px;}
.y6d{bottom:369.779550px;}
.y1c2{bottom:375.353100px;}
.y4a{bottom:375.653340px;}
.y14c{bottom:377.643600px;}
.y185{bottom:378.487050px;}
.y1f6{bottom:384.035100px;}
.y89{bottom:384.934800px;}
.ye{bottom:386.785499px;}
.y6c{bottom:387.779550px;}
.yca{bottom:389.138550px;}
.y1c1{bottom:389.981100px;}
.y184{bottom:393.115050px;}
.y49{bottom:394.020000px;}
.ydc{bottom:394.619550px;}
.y1f5{bottom:398.663100px;}
.y14b{bottom:403.928100px;}
.y1c0{bottom:404.609100px;}
.y6b{bottom:405.779550px;}
.y183{bottom:407.743050px;}
.yd{bottom:408.044999px;}
.y125{bottom:408.906600px;}
.y1f4{bottom:413.291100px;}
.y48{bottom:414.090000px;}
.yc9{bottom:415.423050px;}
.y1bf{bottom:419.237100px;}
.y117{bottom:420.421650px;}
.ydb{bottom:420.904050px;}
.y14a{bottom:421.923600px;}
.y181{bottom:422.275050px;}
.y182{bottom:422.371050px;}
.y124{bottom:423.534600px;}
.y6a{bottom:423.779550px;}
.y1f3{bottom:427.919100px;}
.y1be{bottom:433.865100px;}
.y180{bottom:436.903050px;}
.y47{bottom:441.091260px;}
.yc8{bottom:441.707550px;}
.y83{bottom:441.779550px;}
.y1f2{bottom:442.547100px;}
.yda{bottom:447.188550px;}
.y149{bottom:448.208100px;}
.y1bd{bottom:448.493100px;}
.y17f{bottom:451.531050px;}
.y1f1{bottom:457.175100px;}
.y82{bottom:459.779550px;}
.y1bc{bottom:463.121100px;}
.y139{bottom:464.257350px;}
.y17e{bottom:466.159050px;}
.y46{bottom:466.653690px;}
.yc{bottom:466.864502px;}
.yc7{bottom:468.113550px;}
.y1f0{bottom:471.803100px;}
.yd9{bottom:473.594550px;}
.y148{bottom:474.492600px;}
.y1bb{bottom:477.749100px;}
.y69{bottom:477.779550px;}
.y17d{bottom:480.787050px;}
.y118{bottom:481.154550px;}
.y138{bottom:482.252850px;}
.ya7{bottom:484.600500px;}
.yb{bottom:484.864502px;}
.y1ef{bottom:486.431100px;}
.y86{bottom:489.679200px;}
.yc6{bottom:492.008550px;}
.y45{bottom:492.300000px;}
.y1ba{bottom:492.377100px;}
.y17c{bottom:495.415050px;}
.y159{bottom:495.777300px;}
.y68{bottom:495.779550px;}
.ya6{bottom:499.228500px;}
.yd8{bottom:499.879050px;}
.y147{bottom:500.777100px;}
.y1ee{bottom:501.059100px;}
.yed{bottom:502.526550px;}
.ya{bottom:502.864502px;}
.y1b9{bottom:507.005100px;}
.y85{bottom:507.679200px;}
.y137{bottom:508.537350px;}
.y17b{bottom:510.043050px;}
.y97{bottom:513.777300px;}
.y67{bottom:513.779550px;}
.y1ed{bottom:515.687100px;}
.y44{bottom:516.870000px;}
.yec{bottom:517.154550px;}
.y9{bottom:520.864502px;}
.y1b8{bottom:521.633100px;}
.y17a{bottom:524.671050px;}
.yd7{bottom:526.163550px;}
.y136{bottom:526.532850px;}
.y146{bottom:527.061600px;}
.ybc{bottom:528.651000px;}
.y1ec{bottom:530.315100px;}
.y66{bottom:531.779550px;}
.y119{bottom:532.839000px;}
.y1b7{bottom:536.261100px;}
.y8{bottom:538.864499px;}
.y179{bottom:539.299050px;}
.y43{bottom:539.820000px;}
.ybb{bottom:546.646500px;}
.y88{bottom:548.079000px;}
.y1eb{bottom:549.719100px;}
.y65{bottom:549.779550px;}
.y1b6{bottom:550.889100px;}
.yd6{bottom:552.448050px;}
.y135{bottom:552.817350px;}
.y145{bottom:553.346100px;}
.y178{bottom:553.927050px;}
.y8a{bottom:554.113350px;}
.y7{bottom:556.864499px;}
.y42{bottom:560.604960px;}
.y1b5{bottom:565.517100px;}
.ye5{bottom:567.777300px;}
.y64{bottom:567.779550px;}
.y177{bottom:568.555050px;}
.y134{bottom:570.812850px;}
.yba{bottom:571.230000px;}
.y8b{bottom:572.126550px;}
.yd5{bottom:578.854050px;}
.y144{bottom:579.630600px;}
.y1b4{bottom:580.145100px;}
.y176{bottom:583.183050px;}
.y63{bottom:585.779550px;}
.yb9{bottom:589.225500px;}
.y1ea{bottom:594.743100px;}
.y1b3{bottom:594.773100px;}
.y133{bottom:597.097350px;}
.y87{bottom:597.483450px;}
.y143{bottom:597.626100px;}
.y175{bottom:597.811050px;}
.y41{bottom:601.195680px;}
.yc5{bottom:602.908500px;}
.y62{bottom:603.779550px;}
.yd4{bottom:605.138550px;}
.y1e9{bottom:609.371100px;}
.y1b2{bottom:609.401100px;}
.y174{bottom:612.439050px;}
.yb8{bottom:613.809000px;}
.yc4{bottom:617.536500px;}
.y95{bottom:619.521717px;}
.y101{bottom:621.777300px;}
.y61{bottom:621.779550px;}
.y40{bottom:622.260000px;}
.y132{bottom:623.381850px;}
.y1e8{bottom:623.999100px;}
.y1b1{bottom:624.029100px;}
.y173{bottom:627.067050px;}
.yd3{bottom:631.423050px;}
.yb7{bottom:631.804500px;}
.y1e7{bottom:638.627100px;}
.y1b0{bottom:638.657100px;}
.y9d{bottom:639.777300px;}
.y60{bottom:639.779550px;}
.y131{bottom:641.377350px;}
.y172{bottom:641.695050px;}
.y3f{bottom:642.863520px;}
.y6{bottom:645.510000px;}
.yc3{bottom:649.679550px;}
.y94{bottom:653.088034px;}
.y1e6{bottom:653.255100px;}
.y1af{bottom:653.285100px;}
.y171{bottom:656.323050px;}
.yb6{bottom:656.388000px;}
.yd2{bottom:657.707550px;}
.y5f{bottom:657.779550px;}
.y3e{bottom:661.140000px;}
.y142{bottom:661.154550px;}
.y5{bottom:666.771000px;}
.y130{bottom:667.661850px;}
.yc2{bottom:667.675050px;}
.y1e5{bottom:667.883100px;}
.y1ae{bottom:667.913100px;}
.y170{bottom:670.951050px;}
.yb5{bottom:674.383500px;}
.y5e{bottom:675.779550px;}
.y3d{bottom:681.030000px;}
.y1e4{bottom:682.511100px;}
.y1ad{bottom:682.541100px;}
.yd1{bottom:684.113550px;}
.y16f{bottom:685.579050px;}
.y12f{bottom:685.657350px;}
.y93{bottom:688.334212px;}
.y5d{bottom:693.779550px;}
.yc1{bottom:693.959550px;}
.y1e3{bottom:697.139100px;}
.y1ac{bottom:697.169100px;}
.yb4{bottom:698.967000px;}
.y16e{bottom:700.207050px;}
.y3c{bottom:706.699710px;}
.yd0{bottom:708.008550px;}
.y1e2{bottom:711.767100px;}
.y5c{bottom:711.779550px;}
.y1ab{bottom:711.797100px;}
.y12e{bottom:711.941850px;}
.yc0{bottom:711.955050px;}
.y16d{bottom:714.835050px;}
.yb3{bottom:716.962500px;}
.y92{bottom:725.816770px;}
.y1e1{bottom:726.395100px;}
.y1aa{bottom:726.425100px;}
.y16c{bottom:729.463050px;}
.y5b{bottom:729.779550px;}
.y12d{bottom:729.937350px;}
.y3b{bottom:732.346020px;}
.ybf{bottom:738.239550px;}
.y1e0{bottom:741.023100px;}
.y1a9{bottom:741.053100px;}
.yb2{bottom:741.546000px;}
.y16b{bottom:744.091050px;}
.y5a{bottom:747.779550px;}
.y3{bottom:752.599495px;}
.y1df{bottom:755.651100px;}
.y1a8{bottom:755.681100px;}
.y12c{bottom:756.221850px;}
.ybe{bottom:756.235050px;}
.y3a{bottom:757.908450px;}
.y16a{bottom:758.719050px;}
.yb1{bottom:759.541500px;}
.y91{bottom:761.619467px;}
.y81{bottom:765.779550px;}
.y1de{bottom:770.279100px;}
.y1a6{bottom:770.288100px;}
.y1a7{bottom:770.309100px;}
.y169{bottom:773.347050px;}
.ybd{bottom:780.008550px;}
.y12b{bottom:782.506350px;}
.y39{bottom:783.554760px;}
.y59{bottom:783.779550px;}
.yb0{bottom:784.125000px;}
.y1dd{bottom:784.907100px;}
.y1a5{bottom:784.916100px;}
.y168{bottom:787.975050px;}
.y90{bottom:794.618958px;}
.y1dc{bottom:799.535100px;}
.y1a4{bottom:799.544100px;}
.y80{bottom:801.779550px;}
.yaf{bottom:802.120500px;}
.y167{bottom:802.603050px;}
.y12a{bottom:808.790850px;}
.y38{bottom:809.201070px;}
.y1db{bottom:814.163100px;}
.y1a3{bottom:814.172100px;}
.y166{bottom:817.231050px;}
.y7f{bottom:819.779550px;}
.yae{bottom:826.704000px;}
.y8f{bottom:827.628756px;}
.y1da{bottom:828.791100px;}
.y1a2{bottom:828.800100px;}
.y165{bottom:831.859050px;}
.y37{bottom:834.847380px;}
.y129{bottom:835.075350px;}
.y7e{bottom:837.779550px;}
.y1d9{bottom:843.419100px;}
.y1a1{bottom:843.428100px;}
.yad{bottom:844.699500px;}
.y164{bottom:846.487050px;}
.y58{bottom:852.773550px;}
.y8e{bottom:855.042450px;}
.y7d{bottom:855.779550px;}
.y1d8{bottom:858.047100px;}
.y1a0{bottom:858.056100px;}
.y36{bottom:860.493690px;}
.y163{bottom:861.115050px;}
.y128{bottom:861.359850px;}
.yac{bottom:869.283000px;}
.y19e{bottom:872.675100px;}
.y19f{bottom:872.684100px;}
.y57{bottom:873.779550px;}
.y162{bottom:875.743050px;}
.y2{bottom:879.369000px;}
.y35{bottom:886.140000px;}
.yab{bottom:887.278500px;}
.y19d{bottom:887.303100px;}
.y127{bottom:887.644350px;}
.y161{bottom:890.371050px;}
.y160{bottom:890.375550px;}
.y96{bottom:891.779550px;}
.y8c{bottom:893.593500px;}
.y19c{bottom:901.931100px;}
.y126{bottom:905.639850px;}
.y56{bottom:909.779550px;}
.yaa{bottom:910.201500px;}
.y34{bottom:911.707380px;}
.y19b{bottom:916.559100px;}
.y33{bottom:937.353690px;}
.y32{bottom:963.000000px;}
.y1{bottom:966.726000px;}
.y55{bottom:973.955850px;}
.y31{bottom:985.770000px;}
.y30{bottom:1001.570040px;}
.y2f{bottom:1018.854540px;}
.y2e{bottom:1036.048860px;}
.y2d{bottom:1053.333360px;}
.y2c{bottom:1070.617860px;}
.y2b{bottom:1087.812180px;}
.y2a{bottom:1105.096680px;}
.y29{bottom:1122.381180px;}
.y28{bottom:1139.575500px;}
.y27{bottom:1156.860000px;}
.y26{bottom:1173.780000px;}
.y25{bottom:1187.550000px;}
.y24{bottom:1193.580000px;}
.y23{bottom:1199.610000px;}
.y22{bottom:1205.640000px;}
.h2b{height:0.000000px;}
.h9{height:12.919922px;}
.h22{height:14.635500px;}
.h29{height:22.379119px;}
.h1f{height:30.011908px;}
.h15{height:31.912207px;}
.h7{height:32.130000px;}
.h13{height:32.299805px;}
.h18{height:32.512500px;}
.h1e{height:33.696000px;}
.hc{height:34.071680px;}
.h2a{height:34.320000px;}
.h21{height:35.113924px;}
.ha{height:35.991211px;}
.h24{height:38.610000px;}
.h2c{height:39.168000px;}
.hb{height:40.070215px;}
.h27{height:40.517306px;}
.h23{height:41.616000px;}
.h2d{height:42.120000px;}
.h1d{height:42.900000px;}
.h10{height:43.152539px;}
.h1b{height:45.045000px;}
.h6{height:45.900000px;}
.h25{height:46.818000px;}
.h26{height:47.304000px;}
.h3{height:48.195000px;}
.h14{height:48.781500px;}
.h19{height:48.960000px;}
.h11{height:49.612500px;}
.h1c{height:52.020000px;}
.h2{height:55.080000px;}
.he{height:57.012187px;}
.hd{height:57.053145px;}
.h1a{height:58.752000px;}
.hf{height:60.206836px;}
.h12{height:62.532422px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h28{height:162.358500px;}
.h20{height:374.173500px;}
.h16{height:1020.472500px;}
.h17{height:1020.750000px;}
.h0{height:1262.833500px;}
.h8{height:1262.970000px;}
.h1{height:1263.000000px;}
.w7{width:224.448000px;}
.w3{width:292.950000px;}
.w6{width:621.316500px;}
.w2{width:637.794021px;}
.w5{width:701.250000px;}
.w4{width:701.575500px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:11.970000px;}
.x7f{left:23.239686px;}
.x80{left:47.022337px;}
.x13{left:50.493000px;}
.x12{left:53.885550px;}
.x9{left:60.840000px;}
.xd{left:63.779550px;}
.xe{left:71.354550px;}
.x3b{left:72.650100px;}
.x26{left:74.619150px;}
.x90{left:78.652050px;}
.x1e{left:80.786850px;}
.x9c{left:87.001050px;}
.x1c{left:88.826850px;}
.x1d{left:97.796850px;}
.x48{left:100.071150px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x6{left:107.632080px;}
.x82{left:109.673100px;}
.x8c{left:112.042350px;}
.x79{left:124.392750px;}
.x7a{left:125.791050px;}
.xb{left:127.559100px;}
.xa1{left:128.710350px;}
.xf{left:135.134100px;}
.x30{left:136.438500px;}
.x9d{left:138.527850px;}
.x21{left:144.562950px;}
.xa9{left:147.728400px;}
.x10{left:152.609100px;}
.x58{left:153.705600px;}
.x59{left:155.007300px;}
.x81{left:157.514627px;}
.x50{left:158.527950px;}
.x51{left:159.769350px;}
.x11{left:161.579100px;}
.x4f{left:164.377950px;}
.xc{left:165.809100px;}
.xa7{left:166.991250px;}
.x5e{left:168.224700px;}
.x5f{left:169.613400px;}
.x36{left:171.823950px;}
.x37{left:172.830600px;}
.x6c{left:175.806750px;}
.x5a{left:178.826250px;}
.x43{left:185.668650px;}
.x44{left:186.694650px;}
.x5c{left:190.466400px;}
.x5d{left:191.718300px;}
.x99{left:194.545350px;}
.x9a{left:196.354650px;}
.xa3{left:197.472750px;}
.x4{left:203.484001px;}
.x7{left:205.287120px;}
.x78{left:210.352200px;}
.x94{left:213.522750px;}
.x3d{left:216.898200px;}
.x3e{left:218.582400px;}
.x67{left:221.262750px;}
.x68{left:222.321000px;}
.x71{left:223.359150px;}
.x72{left:224.696700px;}
.x16{left:225.940800px;}
.x4c{left:228.164250px;}
.x4d{left:229.450050px;}
.x38{left:230.676450px;}
.x39{left:231.683100px;}
.x75{left:234.751800px;}
.x76{left:236.903700px;}
.x5b{left:241.760400px;}
.x1f{left:250.709700px;}
.x20{left:252.349050px;}
.x27{left:256.113150px;}
.x41{left:259.418700px;}
.x34{left:266.489700px;}
.x52{left:268.643100px;}
.x3a{left:270.897600px;}
.x14{left:272.013150px;}
.x60{left:273.499800px;}
.x45{left:284.937600px;}
.x46{left:285.963450px;}
.x7c{left:288.672000px;}
.x7d{left:289.866750px;}
.x8d{left:290.890350px;}
.x93{left:292.639500px;}
.x15{left:294.714750px;}
.x84{left:295.800300px;}
.x85{left:297.109500px;}
.x6d{left:298.491900px;}
.x19{left:299.523116px;}
.x35{left:316.542300px;}
.x91{left:321.891900px;}
.x92{left:323.038200px;}
.xab{left:324.194700px;}
.x69{left:335.185950px;}
.x6a{left:336.281700px;}
.xa0{left:339.180450px;}
.x1a{left:344.982440px;}
.x18{left:347.218821px;}
.x7e{left:349.567500px;}
.x17{left:350.588850px;}
.xa8{left:354.259500px;}
.x47{left:359.688300px;}
.x96{left:361.331850px;}
.x97{left:362.884500px;}
.x4a{left:365.232450px;}
.x4b{left:366.888150px;}
.xa5{left:372.687600px;}
.x1b{left:375.281786px;}
.x22{left:379.883400px;}
.x49{left:381.415650px;}
.x2f{left:385.810500px;}
.xaa{left:388.109550px;}
.x55{left:389.711250px;}
.x2d{left:395.851650px;}
.x6e{left:396.871500px;}
.x28{left:398.389650px;}
.x8{left:399.780000px;}
.x7b{left:407.283450px;}
.x6f{left:409.553850px;}
.x70{left:410.882700px;}
.xa2{left:412.621800px;}
.x98{left:415.491000px;}
.x8e{left:428.819850px;}
.x6b{left:430.011600px;}
.x53{left:438.769500px;}
.x54{left:440.010900px;}
.x95{left:442.651950px;}
.x3{left:454.959000px;}
.x77{left:456.467250px;}
.x3c{left:462.563700px;}
.x65{left:463.855050px;}
.x66{left:464.958000px;}
.x89{left:477.741000px;}
.x8a{left:478.766850px;}
.x4e{left:480.290850px;}
.x29{left:482.454150px;}
.x2b{left:483.966150px;}
.x32{left:485.062500px;}
.x9b{left:487.547400px;}
.x73{left:495.553050px;}
.x74{left:498.279450px;}
.xa6{left:510.639150px;}
.x86{left:512.414550px;}
.x42{left:516.297450px;}
.x8f{left:517.730850px;}
.xa4{left:536.833500px;}
.x9e{left:541.070850px;}
.x9f{left:542.235900px;}
.x24{left:547.750650px;}
.x25{left:549.352200px;}
.x61{left:551.347350px;}
.x23{left:556.607550px;}
.x2a{left:567.436650px;}
.x2c{left:568.570650px;}
.x2e{left:569.866650px;}
.x31{left:572.124000px;}
.x33{left:574.243500px;}
.x87{left:577.128450px;}
.x88{left:578.162100px;}
.x64{left:581.243400px;}
.x56{left:597.610500px;}
.x57{left:599.303100px;}
.x3f{left:605.179050px;}
.x40{left:606.863250px;}
.x8b{left:622.006500px;}
.x83{left:623.864100px;}
.x62{left:625.521150px;}
.x63{left:626.823000px;}
.xa{left:628.378950px;}
@media print{
.v2{vertical-align:-17.759467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.759467pt;}
.ls46{letter-spacing:-5.546667pt;}
.ls48{letter-spacing:-5.328000pt;}
.ls72{letter-spacing:-4.704000pt;}
.ls52{letter-spacing:-4.640000pt;}
.ls38{letter-spacing:-4.032000pt;}
.ls24{letter-spacing:-4.000000pt;}
.ls34{letter-spacing:-3.744000pt;}
.ls58{letter-spacing:-3.626667pt;}
.ls42{letter-spacing:-3.600000pt;}
.ls53{letter-spacing:-3.200000pt;}
.ls3a{letter-spacing:-3.072000pt;}
.ls64{letter-spacing:-2.826667pt;}
.ls80{letter-spacing:-2.730667pt;}
.ls7e{letter-spacing:-2.720000pt;}
.ls3d{letter-spacing:-2.688000pt;}
.ls3c{letter-spacing:-2.640000pt;}
.ls30{letter-spacing:-2.544000pt;}
.ls4d{letter-spacing:-2.256000pt;}
.ls73{letter-spacing:-2.112000pt;}
.ls88{letter-spacing:-1.920000pt;}
.ls91{letter-spacing:-1.877333pt;}
.ls41{letter-spacing:-1.824000pt;}
.ls85{letter-spacing:-1.792000pt;}
.ls7f{letter-spacing:-1.772320pt;}
.ls7d{letter-spacing:-1.766667pt;}
.ls40{letter-spacing:-1.632000pt;}
.ls86{letter-spacing:-1.578667pt;}
.ls82{letter-spacing:-1.536000pt;}
.ls2c{letter-spacing:-1.488000pt;}
.ls33{letter-spacing:-1.344000pt;}
.ls44{letter-spacing:-1.248000pt;}
.ls57{letter-spacing:-1.120000pt;}
.ls84{letter-spacing:-1.119360pt;}
.ls96{letter-spacing:-1.066667pt;}
.ls71{letter-spacing:-1.008000pt;}
.ls81{letter-spacing:-0.932800pt;}
.ls3b{letter-spacing:-0.912000pt;}
.ls56{letter-spacing:-0.906667pt;}
.ls8f{letter-spacing:-0.900000pt;}
.ls7c{letter-spacing:-0.896000pt;}
.ls35{letter-spacing:-0.864000pt;}
.ls39{letter-spacing:-0.816000pt;}
.ls13{letter-spacing:-0.800000pt;}
.ls32{letter-spacing:-0.768000pt;}
.ls76{letter-spacing:-0.693333pt;}
.ls12{letter-spacing:-0.633333pt;}
.ls75{letter-spacing:-0.576000pt;}
.ls54{letter-spacing:-0.533333pt;}
.ls7b{letter-spacing:-0.497493pt;}
.ls31{letter-spacing:-0.480000pt;}
.ls37{letter-spacing:-0.432000pt;}
.ls6a{letter-spacing:-0.400000pt;}
.ls5{letter-spacing:-0.372800pt;}
.ls8b{letter-spacing:-0.341333pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.298240pt;}
.ls55{letter-spacing:-0.266667pt;}
.ls3e{letter-spacing:-0.240000pt;}
.ls18{letter-spacing:-0.219859pt;}
.ls8d{letter-spacing:-0.213333pt;}
.ls2d{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.171490pt;}
.ls6{letter-spacing:-0.149120pt;}
.ls6c{letter-spacing:-0.146336pt;}
.ls6e{letter-spacing:-0.117069pt;}
.ls3{letter-spacing:-0.074560pt;}
.ls1b{letter-spacing:-0.073286pt;}
.ls1e{letter-spacing:-0.053333pt;}
.ls4e{letter-spacing:-0.048000pt;}
.ls1a{letter-spacing:-0.042873pt;}
.ls5c{letter-spacing:-0.033333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.033333pt;}
.ls1{letter-spacing:0.044736pt;}
.ls97{letter-spacing:0.053333pt;}
.ls15{letter-spacing:0.073286pt;}
.ls4{letter-spacing:0.074560pt;}
.ls20{letter-spacing:0.106667pt;}
.ls6d{letter-spacing:0.117069pt;}
.ls8{letter-spacing:0.133333pt;}
.ls49{letter-spacing:0.144000pt;}
.ls14{letter-spacing:0.146573pt;}
.ls59{letter-spacing:0.155200pt;}
.ls60{letter-spacing:0.155733pt;}
.ls4a{letter-spacing:0.160000pt;}
.ls6f{letter-spacing:0.175603pt;}
.ls70{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.213333pt;}
.ls2{letter-spacing:0.223680pt;}
.ls69{letter-spacing:0.234138pt;}
.ls27{letter-spacing:0.240000pt;}
.lsc{letter-spacing:0.266667pt;}
.lsb{letter-spacing:0.280000pt;}
.ls1d{letter-spacing:0.320000pt;}
.ls68{letter-spacing:0.321939pt;}
.ls5e{letter-spacing:0.333333pt;}
.ls79{letter-spacing:0.336000pt;}
.ls5b{letter-spacing:0.373333pt;}
.ls3f{letter-spacing:0.384000pt;}
.ls22{letter-spacing:0.388800pt;}
.lsd{letter-spacing:0.426667pt;}
.ls36{letter-spacing:0.432000pt;}
.ls5d{letter-spacing:0.466667pt;}
.lse{letter-spacing:0.480000pt;}
.ls1c{letter-spacing:0.500000pt;}
.ls2f{letter-spacing:0.528000pt;}
.ls1f{letter-spacing:0.533333pt;}
.ls93{letter-spacing:0.554667pt;}
.ls43{letter-spacing:0.566667pt;}
.ls74{letter-spacing:0.576000pt;}
.ls4c{letter-spacing:0.586667pt;}
.ls8e{letter-spacing:0.597333pt;}
.ls4b{letter-spacing:0.600000pt;}
.ls2e{letter-spacing:0.624000pt;}
.ls23{letter-spacing:0.633333pt;}
.ls83{letter-spacing:0.640000pt;}
.ls8c{letter-spacing:0.682667pt;}
.ls11{letter-spacing:0.693333pt;}
.ls2b{letter-spacing:0.720000pt;}
.ls90{letter-spacing:0.725333pt;}
.ls6b{letter-spacing:0.746667pt;}
.ls25{letter-spacing:0.768000pt;}
.ls51{letter-spacing:0.800000pt;}
.ls50{letter-spacing:0.810667pt;}
.ls2a{letter-spacing:0.816000pt;}
.ls28{letter-spacing:0.833333pt;}
.ls17{letter-spacing:0.853333pt;}
.ls47{letter-spacing:0.864000pt;}
.ls29{letter-spacing:0.896000pt;}
.ls61{letter-spacing:0.933333pt;}
.ls77{letter-spacing:0.938667pt;}
.ls7a{letter-spacing:0.960000pt;}
.ls62{letter-spacing:0.966667pt;}
.ls66{letter-spacing:0.981333pt;}
.ls65{letter-spacing:1.013333pt;}
.ls5f{letter-spacing:1.024000pt;}
.ls4f{letter-spacing:1.066667pt;}
.ls87{letter-spacing:1.109333pt;}
.ls16{letter-spacing:1.133333pt;}
.ls94{letter-spacing:1.152000pt;}
.ls8a{letter-spacing:1.194667pt;}
.ls67{letter-spacing:1.233333pt;}
.ls89{letter-spacing:1.237333pt;}
.ls95{letter-spacing:1.280000pt;}
.ls5a{letter-spacing:1.300000pt;}
.ls92{letter-spacing:1.322667pt;}
.ls45{letter-spacing:1.400000pt;}
.ls78{letter-spacing:1.680000pt;}
.ls21{letter-spacing:1.813333pt;}
.ls63{letter-spacing:2.816000pt;}
.ls9{letter-spacing:4.166667pt;}
.lsa{letter-spacing:5.120000pt;}
.ws164{word-spacing:-29.589139pt;}
.ws168{word-spacing:-29.442803pt;}
.ws166{word-spacing:-29.384269pt;}
.ws167{word-spacing:-29.150131pt;}
.ws165{word-spacing:-29.120864pt;}
.ws6{word-spacing:-17.074240pt;}
.ws2{word-spacing:-16.925120pt;}
.ws1{word-spacing:-16.850560pt;}
.ws3{word-spacing:-16.776000pt;}
.ws5{word-spacing:-16.701440pt;}
.ws7{word-spacing:-16.552320pt;}
.ws4{word-spacing:-16.477760pt;}
.ws1a2{word-spacing:-13.120000pt;}
.ws163{word-spacing:-12.906667pt;}
.wse{word-spacing:-12.853333pt;}
.ws1ba{word-spacing:-12.800000pt;}
.ws14a{word-spacing:-12.693333pt;}
.ws1b9{word-spacing:-12.640000pt;}
.ws19b{word-spacing:-12.624000pt;}
.wsd{word-spacing:-12.586667pt;}
.ws14e{word-spacing:-12.480000pt;}
.ws26{word-spacing:-12.373333pt;}
.ws1b5{word-spacing:-12.320000pt;}
.ws56{word-spacing:-12.266667pt;}
.ws1dc{word-spacing:-12.213333pt;}
.ws110{word-spacing:-11.893333pt;}
.ws43{word-spacing:-11.875692pt;}
.wsc{word-spacing:-11.840000pt;}
.wsf0{word-spacing:-11.808000pt;}
.wsdf{word-spacing:-11.760000pt;}
.ws10f{word-spacing:-11.626667pt;}
.ws173{word-spacing:-11.568000pt;}
.wsb3{word-spacing:-11.472000pt;}
.ws183{word-spacing:-11.466667pt;}
.ws176{word-spacing:-11.424000pt;}
.wsd1{word-spacing:-11.376000pt;}
.ws27{word-spacing:-11.360000pt;}
.ws172{word-spacing:-11.136000pt;}
.ws171{word-spacing:-11.088000pt;}
.ws1d0{word-spacing:-11.050667pt;}
.ws1d9{word-spacing:-11.008000pt;}
.ws1c1{word-spacing:-10.922667pt;}
.ws1bf{word-spacing:-10.837333pt;}
.ws1d1{word-spacing:-10.794667pt;}
.ws1c3{word-spacing:-10.752000pt;}
.ws1c4{word-spacing:-10.709333pt;}
.ws1cf{word-spacing:-10.624000pt;}
.ws1a8{word-spacing:-10.581333pt;}
.ws1c2{word-spacing:-10.538667pt;}
.ws1c5{word-spacing:-10.496000pt;}
.ws45{word-spacing:-10.333382pt;}
.ws46{word-spacing:-10.260096pt;}
.ws19e{word-spacing:-10.176000pt;}
.ws198{word-spacing:-10.128000pt;}
.ws19d{word-spacing:-9.312000pt;}
.ws14d{word-spacing:-8.960000pt;}
.ws15f{word-spacing:-8.833333pt;}
.ws1a7{word-spacing:-8.832000pt;}
.ws40{word-spacing:-8.733333pt;}
.ws131{word-spacing:-8.666667pt;}
.ws132{word-spacing:-8.533333pt;}
.ws10d{word-spacing:-8.400000pt;}
.ws6a{word-spacing:-8.233333pt;}
.wsef{word-spacing:-8.200000pt;}
.ws1b7{word-spacing:-8.192000pt;}
.wsd0{word-spacing:-8.166667pt;}
.ws1c6{word-spacing:-8.149333pt;}
.ws1bd{word-spacing:-7.936000pt;}
.ws149{word-spacing:-7.933333pt;}
.ws1c0{word-spacing:-7.808000pt;}
.wsb{word-spacing:-7.733333pt;}
.ws97{word-spacing:-7.633333pt;}
.ws142{word-spacing:-7.566667pt;}
.ws10e{word-spacing:-7.520000pt;}
.ws16d{word-spacing:-7.200000pt;}
.ws55{word-spacing:-7.089280pt;}
.ws1b0{word-spacing:-6.997333pt;}
.ws175{word-spacing:-6.912000pt;}
.ws1d8{word-spacing:-6.700000pt;}
.ws1b6{word-spacing:-6.156480pt;}
.ws1bc{word-spacing:-5.969920pt;}
.ws1b1{word-spacing:-5.833333pt;}
.ws1af{word-spacing:-5.316960pt;}
.ws1a0{word-spacing:-5.173333pt;}
.wsa4{word-spacing:-4.693333pt;}
.ws1df{word-spacing:-4.586667pt;}
.ws178{word-spacing:-4.480000pt;}
.ws187{word-spacing:-3.840000pt;}
.ws23{word-spacing:-3.786667pt;}
.ws64{word-spacing:-3.733333pt;}
.ws9f{word-spacing:-3.680000pt;}
.ws79{word-spacing:-3.626667pt;}
.ws34{word-spacing:-3.573333pt;}
.ws155{word-spacing:-3.520000pt;}
.ws2a{word-spacing:-3.466667pt;}
.wsd3{word-spacing:-3.413333pt;}
.ws66{word-spacing:-3.360000pt;}
.ws3a{word-spacing:-3.306667pt;}
.ws148{word-spacing:-3.253333pt;}
.ws93{word-spacing:-3.200000pt;}
.ws106{word-spacing:-3.146667pt;}
.ws9b{word-spacing:-3.093333pt;}
.wsed{word-spacing:-3.040000pt;}
.ws5c{word-spacing:-2.933333pt;}
.ws7c{word-spacing:-2.880000pt;}
.wsf9{word-spacing:-2.826667pt;}
.ws65{word-spacing:-2.773333pt;}
.ws76{word-spacing:-2.720000pt;}
.ws87{word-spacing:-2.666667pt;}
.wsa6{word-spacing:-2.613333pt;}
.ws5a{word-spacing:-2.560000pt;}
.wsfa{word-spacing:-2.506667pt;}
.ws2b{word-spacing:-2.453333pt;}
.ws19{word-spacing:-2.400000pt;}
.ws177{word-spacing:-2.346667pt;}
.ws2c{word-spacing:-2.293333pt;}
.ws28{word-spacing:-2.240000pt;}
.ws169{word-spacing:-2.186667pt;}
.ws22{word-spacing:-2.133333pt;}
.ws18e{word-spacing:-2.080000pt;}
.ws11d{word-spacing:-2.026667pt;}
.ws4c{word-spacing:-1.973333pt;}
.ws82{word-spacing:-1.920000pt;}
.ws161{word-spacing:-1.866667pt;}
.ws1e{word-spacing:-1.813333pt;}
.ws137{word-spacing:-1.760000pt;}
.ws1c9{word-spacing:-1.749333pt;}
.wse7{word-spacing:-1.728000pt;}
.ws135{word-spacing:-1.706667pt;}
.ws1c7{word-spacing:-1.664000pt;}
.ws75{word-spacing:-1.653333pt;}
.wse8{word-spacing:-1.632000pt;}
.ws1d7{word-spacing:-1.621333pt;}
.ws8b{word-spacing:-1.600000pt;}
.wsfe{word-spacing:-1.584000pt;}
.ws14b{word-spacing:-1.578667pt;}
.ws140{word-spacing:-1.546667pt;}
.ws15e{word-spacing:-1.536000pt;}
.wse4{word-spacing:-1.493333pt;}
.ws17d{word-spacing:-1.488000pt;}
.wsc3{word-spacing:-1.450667pt;}
.ws15{word-spacing:-1.440000pt;}
.ws47{word-spacing:-1.408000pt;}
.wsd4{word-spacing:-1.392000pt;}
.ws14{word-spacing:-1.386667pt;}
.ws10c{word-spacing:-1.365333pt;}
.ws17e{word-spacing:-1.344000pt;}
.ws84{word-spacing:-1.333333pt;}
.ws80{word-spacing:-1.322667pt;}
.ws57{word-spacing:-1.280000pt;}
.ws179{word-spacing:-1.248000pt;}
.ws13{word-spacing:-1.226667pt;}
.ws19f{word-spacing:-1.200000pt;}
.ws1ca{word-spacing:-1.194667pt;}
.ws16{word-spacing:-1.173333pt;}
.ws1cd{word-spacing:-1.152000pt;}
.ws122{word-spacing:-1.120000pt;}
.ws1d6{word-spacing:-1.109333pt;}
.wsc6{word-spacing:-1.104000pt;}
.wsee{word-spacing:-1.066667pt;}
.ws181{word-spacing:-1.056000pt;}
.ws96{word-spacing:-1.024000pt;}
.ws104{word-spacing:-1.013333pt;}
.wsea{word-spacing:-1.008000pt;}
.ws69{word-spacing:-0.981333pt;}
.ws10{word-spacing:-0.960000pt;}
.ws1cb{word-spacing:-0.938667pt;}
.ws58{word-spacing:-0.906667pt;}
.ws50{word-spacing:-0.857451pt;}
.ws11f{word-spacing:-0.853333pt;}
.wsf{word-spacing:-0.833333pt;}
.ws3b{word-spacing:-0.800000pt;}
.ws152{word-spacing:-0.768000pt;}
.wsa2{word-spacing:-0.746667pt;}
.ws4f{word-spacing:-0.728833pt;}
.ws1d2{word-spacing:-0.725333pt;}
.ws2d{word-spacing:-0.693333pt;}
.wsc5{word-spacing:-0.672000pt;}
.ws73{word-spacing:-0.640000pt;}
.wsce{word-spacing:-0.624000pt;}
.wsa3{word-spacing:-0.586667pt;}
.ws17c{word-spacing:-0.576000pt;}
.ws124{word-spacing:-0.533333pt;}
.ws180{word-spacing:-0.528000pt;}
.ws83{word-spacing:-0.480000pt;}
.wse6{word-spacing:-0.426667pt;}
.wsc8{word-spacing:-0.384000pt;}
.wsa1{word-spacing:-0.373333pt;}
.ws1cc{word-spacing:-0.341333pt;}
.wsd7{word-spacing:-0.320000pt;}
.ws17f{word-spacing:-0.288000pt;}
.ws11{word-spacing:-0.280000pt;}
.ws61{word-spacing:-0.266667pt;}
.ws52{word-spacing:-0.219859pt;}
.ws59{word-spacing:-0.213333pt;}
.ws67{word-spacing:-0.160000pt;}
.wsec{word-spacing:-0.106667pt;}
.wsc9{word-spacing:-0.096000pt;}
.ws51{word-spacing:-0.073286pt;}
.ws49{word-spacing:-0.053333pt;}
.wscb{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws100{word-spacing:0.048000pt;}
.ws30{word-spacing:0.053333pt;}
.ws53{word-spacing:0.073286pt;}
.ws8{word-spacing:0.074560pt;}
.ws157{word-spacing:0.106667pt;}
.ws17a{word-spacing:0.144000pt;}
.ws9{word-spacing:0.149120pt;}
.wsfb{word-spacing:0.160000pt;}
.ws11a{word-spacing:0.213333pt;}
.wsa{word-spacing:0.223680pt;}
.ws119{word-spacing:0.266667pt;}
.ws107{word-spacing:0.320000pt;}
.ws39{word-spacing:0.373333pt;}
.wsd5{word-spacing:0.384000pt;}
.ws88{word-spacing:0.426667pt;}
.ws3e{word-spacing:0.480000pt;}
.ws1ad{word-spacing:0.497493pt;}
.ws1da{word-spacing:0.512000pt;}
.ws4b{word-spacing:0.533333pt;}
.ws105{word-spacing:0.586667pt;}
.wsc4{word-spacing:0.624000pt;}
.ws48{word-spacing:0.640000pt;}
.ws62{word-spacing:0.693333pt;}
.ws5d{word-spacing:0.746667pt;}
.wscf{word-spacing:0.768000pt;}
.ws36{word-spacing:0.800000pt;}
.ws2e{word-spacing:0.853333pt;}
.ws29{word-spacing:0.906667pt;}
.ws35{word-spacing:0.960000pt;}
.ws68{word-spacing:1.013333pt;}
.ws1c8{word-spacing:1.024000pt;}
.ws1f{word-spacing:1.066667pt;}
.ws9a{word-spacing:1.120000pt;}
.wsa9{word-spacing:1.173333pt;}
.ws8e{word-spacing:1.226667pt;}
.ws17b{word-spacing:1.248000pt;}
.ws70{word-spacing:1.280000pt;}
.ws1d4{word-spacing:1.322667pt;}
.ws9e{word-spacing:1.333333pt;}
.ws1d5{word-spacing:1.365333pt;}
.ws7a{word-spacing:1.386667pt;}
.wsfd{word-spacing:1.392000pt;}
.ws12a{word-spacing:1.440000pt;}
.ws138{word-spacing:1.493333pt;}
.ws7b{word-spacing:1.546667pt;}
.ws1be{word-spacing:1.578667pt;}
.ws20{word-spacing:1.600000pt;}
.ws98{word-spacing:1.653333pt;}
.wsc7{word-spacing:1.680000pt;}
.ws10a{word-spacing:1.706667pt;}
.ws31{word-spacing:1.760000pt;}
.wscd{word-spacing:1.776000pt;}
.ws129{word-spacing:1.813333pt;}
.wsa5{word-spacing:1.866667pt;}
.ws15c{word-spacing:1.920000pt;}
.wsa7{word-spacing:1.973333pt;}
.ws1d{word-spacing:2.026667pt;}
.ws9c{word-spacing:2.080000pt;}
.ws5b{word-spacing:2.133333pt;}
.ws141{word-spacing:2.186667pt;}
.wscc{word-spacing:2.208000pt;}
.ws72{word-spacing:2.240000pt;}
.ws18b{word-spacing:2.293333pt;}
.ws3c{word-spacing:2.346667pt;}
.ws128{word-spacing:2.400000pt;}
.ws74{word-spacing:2.453333pt;}
.ws5f{word-spacing:2.506667pt;}
.ws159{word-spacing:2.560000pt;}
.ws7f{word-spacing:2.613333pt;}
.ws1d3{word-spacing:2.645333pt;}
.ws102{word-spacing:2.666667pt;}
.ws90{word-spacing:2.720000pt;}
.wsff{word-spacing:2.736000pt;}
.ws101{word-spacing:2.773333pt;}
.ws13c{word-spacing:2.826667pt;}
.ws8f{word-spacing:2.880000pt;}
.wse2{word-spacing:2.933333pt;}
.ws184{word-spacing:2.986667pt;}
.ws125{word-spacing:3.040000pt;}
.ws6e{word-spacing:3.093333pt;}
.ws12d{word-spacing:3.146667pt;}
.wsca{word-spacing:3.168000pt;}
.ws112{word-spacing:3.200000pt;}
.ws190{word-spacing:3.253333pt;}
.ws192{word-spacing:3.306667pt;}
.wsa8{word-spacing:3.360000pt;}
.ws126{word-spacing:3.413333pt;}
.ws18f{word-spacing:3.466667pt;}
.ws3f{word-spacing:3.520000pt;}
.ws160{word-spacing:3.573333pt;}
.ws136{word-spacing:3.626667pt;}
.ws11e{word-spacing:3.680000pt;}
.ws186{word-spacing:3.733333pt;}
.ws94{word-spacing:3.786667pt;}
.ws6f{word-spacing:3.840000pt;}
.ws77{word-spacing:3.893333pt;}
.ws7e{word-spacing:3.946667pt;}
.ws6c{word-spacing:4.000000pt;}
.ws127{word-spacing:4.053333pt;}
.ws63{word-spacing:4.106667pt;}
.ws1c{word-spacing:4.160000pt;}
.ws108{word-spacing:4.213333pt;}
.ws8c{word-spacing:4.266667pt;}
.ws4e{word-spacing:4.320000pt;}
.ws8a{word-spacing:4.373333pt;}
.wsf7{word-spacing:4.426667pt;}
.wse9{word-spacing:4.464000pt;}
.ws5e{word-spacing:4.480000pt;}
.wsad{word-spacing:4.533333pt;}
.ws37{word-spacing:4.586667pt;}
.ws116{word-spacing:4.640000pt;}
.wsf8{word-spacing:4.693333pt;}
.ws11c{word-spacing:4.746667pt;}
.ws6d{word-spacing:4.800000pt;}
.ws158{word-spacing:4.853333pt;}
.ws16c{word-spacing:4.906667pt;}
.ws1a9{word-spacing:4.960000pt;}
.ws95{word-spacing:5.013333pt;}
.ws134{word-spacing:5.066667pt;}
.wsdb{word-spacing:5.120000pt;}
.ws146{word-spacing:5.226667pt;}
.ws99{word-spacing:5.280000pt;}
.ws144{word-spacing:5.333333pt;}
.ws33{word-spacing:5.386667pt;}
.ws151{word-spacing:5.418667pt;}
.ws114{word-spacing:5.493333pt;}
.ws18d{word-spacing:5.546667pt;}
.ws123{word-spacing:5.600000pt;}
.wsda{word-spacing:5.706667pt;}
.ws115{word-spacing:5.760000pt;}
.ws6b{word-spacing:5.813333pt;}
.ws71{word-spacing:5.866667pt;}
.ws7d{word-spacing:5.920000pt;}
.ws89{word-spacing:5.973333pt;}
.ws12e{word-spacing:6.026667pt;}
.wsab{word-spacing:6.240000pt;}
.ws193{word-spacing:6.293333pt;}
.wsaa{word-spacing:6.346667pt;}
.ws13d{word-spacing:6.453333pt;}
.wse3{word-spacing:6.506667pt;}
.ws1a{word-spacing:6.560000pt;}
.ws16b{word-spacing:6.666667pt;}
.ws156{word-spacing:6.720000pt;}
.ws3d{word-spacing:6.773333pt;}
.ws85{word-spacing:6.826667pt;}
.ws1a3{word-spacing:6.933333pt;}
.ws13b{word-spacing:7.040000pt;}
.ws78{word-spacing:7.146667pt;}
.ws13f{word-spacing:7.253333pt;}
.ws1b4{word-spacing:7.306667pt;}
.ws24{word-spacing:7.360000pt;}
.ws130{word-spacing:7.413333pt;}
.ws133{word-spacing:7.466667pt;}
.ws60{word-spacing:7.520000pt;}
.ws18{word-spacing:7.573333pt;}
.wsd9{word-spacing:7.626667pt;}
.ws12b{word-spacing:7.680000pt;}
.ws2f{word-spacing:7.733333pt;}
.ws109{word-spacing:7.786667pt;}
.ws150{word-spacing:7.840000pt;}
.ws10b{word-spacing:7.893333pt;}
.ws21{word-spacing:7.946667pt;}
.ws154{word-spacing:8.106667pt;}
.ws18a{word-spacing:8.213333pt;}
.ws195{word-spacing:8.320000pt;}
.wsa0{word-spacing:8.480000pt;}
.ws143{word-spacing:8.533333pt;}
.ws4a{word-spacing:8.586667pt;}
.ws1b{word-spacing:8.746667pt;}
.ws38{word-spacing:8.800000pt;}
.wseb{word-spacing:8.853333pt;}
.ws1de{word-spacing:8.906667pt;}
.wse5{word-spacing:9.120000pt;}
.ws1dd{word-spacing:9.173333pt;}
.ws118{word-spacing:9.226667pt;}
.ws13e{word-spacing:9.280000pt;}
.ws11b{word-spacing:9.440000pt;}
.ws1a5{word-spacing:9.546667pt;}
.ws1a4{word-spacing:9.600000pt;}
.ws1ab{word-spacing:9.653333pt;}
.ws147{word-spacing:9.760000pt;}
.ws121{word-spacing:9.813333pt;}
.ws9d{word-spacing:9.920000pt;}
.ws117{word-spacing:9.973333pt;}
.wsfc{word-spacing:10.026667pt;}
.ws4d{word-spacing:10.080000pt;}
.ws139{word-spacing:10.133333pt;}
.ws194{word-spacing:10.240000pt;}
.ws1aa{word-spacing:10.346667pt;}
.ws1ac{word-spacing:10.560000pt;}
.ws15a{word-spacing:10.666667pt;}
.ws1a6{word-spacing:10.933333pt;}
.ws12c{word-spacing:11.093333pt;}
.wsac{word-spacing:11.413333pt;}
.ws92{word-spacing:11.573333pt;}
.ws12f{word-spacing:11.680000pt;}
.ws15d{word-spacing:11.840000pt;}
.wse1{word-spacing:12.106667pt;}
.wsd6{word-spacing:12.160000pt;}
.ws18c{word-spacing:12.320000pt;}
.ws185{word-spacing:12.906667pt;}
.ws16a{word-spacing:13.280000pt;}
.ws14f{word-spacing:13.440000pt;}
.wsd8{word-spacing:14.240000pt;}
.ws86{word-spacing:15.733333pt;}
.ws111{word-spacing:15.786667pt;}
.ws120{word-spacing:17.440000pt;}
.ws8d{word-spacing:17.813333pt;}
.ws91{word-spacing:18.666667pt;}
.ws113{word-spacing:19.040000pt;}
.ws189{word-spacing:19.200000pt;}
.ws188{word-spacing:19.413333pt;}
.ws44{word-spacing:58.078490pt;}
.ws32{word-spacing:94.752000pt;}
.wsaf{word-spacing:95.380800pt;}
.ws17{word-spacing:96.480000pt;}
.ws12{word-spacing:96.693333pt;}
.wsb2{word-spacing:101.419200pt;}
.wsb7{word-spacing:103.651200pt;}
.wsb8{word-spacing:104.155200pt;}
.wsbe{word-spacing:104.860800pt;}
.wsbc{word-spacing:105.902400pt;}
.wsb5{word-spacing:107.169600pt;}
.wsc0{word-spacing:107.529600pt;}
.wsba{word-spacing:112.656000pt;}
.wsc2{word-spacing:114.585600pt;}
.wsd2{word-spacing:114.921600pt;}
.wsb9{word-spacing:163.598400pt;}
.wsb4{word-spacing:169.531200pt;}
.wsc1{word-spacing:171.187200pt;}
.wsbf{word-spacing:174.720000pt;}
.wsbb{word-spacing:181.142400pt;}
.wsb6{word-spacing:186.523200pt;}
.wsb1{word-spacing:191.332800pt;}
.ws41{word-spacing:191.717222pt;}
.ws42{word-spacing:203.076614pt;}
.ws197{word-spacing:239.198400pt;}
.ws16e{word-spacing:241.454400pt;}
.ws199{word-spacing:279.216000pt;}
.ws19a{word-spacing:283.742400pt;}
.wsbd{word-spacing:296.044800pt;}
.ws19c{word-spacing:299.880000pt;}
.ws174{word-spacing:302.136000pt;}
.ws16f{word-spacing:307.200000pt;}
.ws170{word-spacing:309.854400pt;}
.wsb0{word-spacing:513.950400pt;}
.wse0{word-spacing:591.806400pt;}
.wsdd{word-spacing:604.987200pt;}
.wsde{word-spacing:616.070400pt;}
.wsf1{word-spacing:624.864000pt;}
.ws191{word-spacing:632.372933pt;}
.ws162{word-spacing:632.386267pt;}
.ws196{word-spacing:632.586267pt;}
.ws1a1{word-spacing:632.766267pt;}
.ws182{word-spacing:633.442933pt;}
.ws1db{word-spacing:634.399600pt;}
.ws1ce{word-spacing:634.669600pt;}
.ws1ae{word-spacing:638.406267pt;}
.ws1b3{word-spacing:638.612933pt;}
.ws1bb{word-spacing:638.636267pt;}
.ws1b8{word-spacing:638.796267pt;}
.ws1b2{word-spacing:638.899600pt;}
.wsdc{word-spacing:645.156267pt;}
.ws13a{word-spacing:645.456267pt;}
.ws81{word-spacing:645.956267pt;}
.ws103{word-spacing:646.156267pt;}
.ws153{word-spacing:646.456267pt;}
.ws15b{word-spacing:646.556267pt;}
.ws14c{word-spacing:646.572933pt;}
.wsae{word-spacing:646.856267pt;}
.ws54{word-spacing:647.856267pt;}
.ws145{word-spacing:647.956267pt;}
.ws25{word-spacing:651.256267pt;}
.wsf2{word-spacing:663.254400pt;}
.wsf6{word-spacing:663.758400pt;}
.wsf4{word-spacing:672.403200pt;}
.wsf3{word-spacing:675.403200pt;}
.wsf5{word-spacing:685.094400pt;}
._10{margin-left:-1815.299733pt;}
._2{margin-left:-1814.292800pt;}
._48{margin-left:-1813.059733pt;}
._54{margin-left:-1811.729867pt;}
._f{margin-left:-39.093333pt;}
._53{margin-left:-37.760000pt;}
._3e{margin-left:-36.746667pt;}
._3d{margin-left:-23.898053pt;}
._56{margin-left:-8.492960pt;}
._7{margin-left:-6.410667pt;}
._e{margin-left:-5.494464pt;}
._5{margin-left:-4.545067pt;}
._9{margin-left:-3.546667pt;}
._3{margin-left:-1.832453pt;}
._1{margin-left:-0.917088pt;}
._0{width:1.058752pt;}
._4{width:2.778667pt;}
._18{width:4.245333pt;}
._22{width:5.793600pt;}
._16{width:6.860800pt;}
._1b{width:9.632000pt;}
._52{width:11.301333pt;}
._17{width:13.491200pt;}
._1a{width:21.630320pt;}
._b{width:26.810667pt;}
._11{width:32.160000pt;}
._a{width:33.274667pt;}
._3f{width:36.160000pt;}
._3b{width:45.292800pt;}
._51{width:49.280000pt;}
._19{width:52.192000pt;}
._c{width:58.579120pt;}
._8{width:63.797333pt;}
._d{width:64.989787pt;}
._1c{width:74.346245pt;}
._55{width:81.704000pt;}
._25{width:83.719744pt;}
._2a{width:93.647611pt;}
._13{width:94.752000pt;}
._6{width:97.919467pt;}
._29{width:104.746155pt;}
._50{width:109.520453pt;}
._15{width:123.032000pt;}
._20{width:124.362864pt;}
._1f{width:143.506581pt;}
._21{width:145.309248pt;}
._24{width:147.319915pt;}
._23{width:148.541248pt;}
._1d{width:149.746581pt;}
._1e{width:152.052992pt;}
._27{width:158.914581pt;}
._28{width:160.557077pt;}
._26{width:162.053701pt;}
._14{width:178.463280pt;}
._3c{width:179.438320pt;}
._2b{width:188.450704pt;}
._4b{width:197.786667pt;}
._49{width:199.078608pt;}
._4a{width:200.114581pt;}
._31{width:204.375744pt;}
._12{width:207.668717pt;}
._2e{width:216.222848pt;}
._2c{width:220.944000pt;}
._2d{width:223.072896pt;}
._30{width:226.390315pt;}
._40{width:238.582608pt;}
._41{width:243.410581pt;}
._32{width:262.610704pt;}
._43{width:276.098581pt;}
._4c{width:320.921173pt;}
._4d{width:336.740011pt;}
._34{width:357.495744pt;}
._39{width:360.170496pt;}
._36{width:362.247744pt;}
._37{width:363.462677pt;}
._33{width:367.858581pt;}
._42{width:388.073173pt;}
._2f{width:560.778864pt;}
._35{width:619.397088pt;}
._3a{width:634.026864pt;}
._38{width:696.999744pt;}
._4f{width:749.720283pt;}
._4e{width:755.061077pt;}
._46{width:816.488283pt;}
._47{width:817.984907pt;}
._45{width:823.160283pt;}
._44{width:826.725077pt;}
.fs5{font-size:16.000000pt;}
.fs14{font-size:29.267200pt;}
.fs12{font-size:31.093333pt;}
.fse{font-size:33.333333pt;}
.fs10{font-size:36.643200pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:40.000000pt;}
.fsd{font-size:42.560000pt;}
.fsf{font-size:42.666667pt;}
.fs11{font-size:42.872533pt;}
.fs8{font-size:45.440000pt;}
.fs6{font-size:48.000000pt;}
.fs13{font-size:50.176533pt;}
.fs3{font-size:53.333333pt;}
.fs7{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:74.560000pt;}
.fsb{font-size:77.440000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:1.600400pt;}
.y141{bottom:31.068000pt;}
.y54{bottom:33.200000pt;}
.y122{bottom:33.872275pt;}
.y11e{bottom:34.662490pt;}
.y11c{bottom:35.189299pt;}
.y121{bottom:42.732920pt;}
.y9c{bottom:43.084000pt;}
.y11d{bottom:43.435333pt;}
.y11b{bottom:43.962142pt;}
.y100{bottom:44.028933pt;}
.y140{bottom:44.070667pt;}
.ye9{bottom:44.401600pt;}
.ya9{bottom:54.692000pt;}
.y9b{bottom:56.086667pt;}
.y113{bottom:56.647733pt;}
.yfe{bottom:56.650400pt;}
.ya4{bottom:56.677067pt;}
.y15f{bottom:56.679733pt;}
.ye4{bottom:56.682400pt;}
.y9a{bottom:56.687733pt;}
.ya5{bottom:56.692933pt;}
.yff{bottom:57.031600pt;}
.y13f{bottom:57.073333pt;}
.ye8{bottom:57.404267pt;}
.y1d7{bottom:60.591200pt;}
.y19a{bottom:63.376933pt;}
.y116{bottom:64.687600pt;}
.y11a{bottom:66.329600pt;}
.ya8{bottom:67.694667pt;}
.y112{bottom:69.650400pt;}
.yfd{bottom:69.653067pt;}
.ya3{bottom:69.679733pt;}
.y15e{bottom:69.682400pt;}
.ye3{bottom:69.685067pt;}
.y99{bottom:69.690400pt;}
.y13e{bottom:70.076000pt;}
.ye7{bottom:70.406933pt;}
.y7c{bottom:72.692933pt;}
.y1d6{bottom:73.593867pt;}
.y199{bottom:76.379600pt;}
.y115{bottom:77.690267pt;}
.yeb{bottom:78.690267pt;}
.y111{bottom:82.653067pt;}
.yfc{bottom:82.655733pt;}
.ya2{bottom:82.682400pt;}
.y15d{bottom:82.685067pt;}
.ye2{bottom:82.687733pt;}
.y98{bottom:82.693067pt;}
.y13d{bottom:83.078667pt;}
.ye6{bottom:83.409600pt;}
.y4{bottom:86.333337pt;}
.y1d5{bottom:86.596533pt;}
.y7b{bottom:88.692933pt;}
.y198{bottom:89.382267pt;}
.y114{bottom:90.692933pt;}
.yea{bottom:91.692933pt;}
.y123{bottom:91.943200pt;}
.y110{bottom:95.655733pt;}
.yfb{bottom:95.658400pt;}
.ya1{bottom:95.685067pt;}
.y15c{bottom:95.687733pt;}
.ye1{bottom:95.690400pt;}
.y13c{bottom:96.081333pt;}
.y158{bottom:97.316800pt;}
.y1d4{bottom:99.599200pt;}
.y197{bottom:102.384933pt;}
.y7a{bottom:104.692933pt;}
.y120{bottom:105.364728pt;}
.y10f{bottom:108.658400pt;}
.yfa{bottom:108.661067pt;}
.ya0{bottom:108.687733pt;}
.y15b{bottom:108.690400pt;}
.ye0{bottom:108.693067pt;}
.y13b{bottom:109.084000pt;}
.y157{bottom:110.319467pt;}
.y1d3{bottom:112.601867pt;}
.y11f{bottom:114.137571pt;}
.y196{bottom:115.387600pt;}
.y84{bottom:120.692933pt;}
.y10e{bottom:121.661067pt;}
.yf9{bottom:121.663733pt;}
.y9f{bottom:121.690400pt;}
.y15a{bottom:121.693067pt;}
.y13a{bottom:122.086667pt;}
.y21{bottom:123.790666pt;}
.y1d2{bottom:125.604533pt;}
.y195{bottom:128.390267pt;}
.y10d{bottom:134.663733pt;}
.yf8{bottom:134.666400pt;}
.y9e{bottom:134.693067pt;}
.y79{bottom:136.692933pt;}
.y1d1{bottom:138.607200pt;}
.y156{bottom:138.883200pt;}
.y194{bottom:141.392933pt;}
.y10c{bottom:147.666400pt;}
.yf7{bottom:147.669067pt;}
.y1d0{bottom:151.609867pt;}
.y78{bottom:152.692933pt;}
.y193{bottom:154.395600pt;}
.y155{bottom:154.879200pt;}
.y10b{bottom:160.669067pt;}
.yf6{bottom:160.671733pt;}
.y53{bottom:160.720000pt;}
.y1cf{bottom:164.612533pt;}
.y192{bottom:167.398267pt;}
.y77{bottom:168.692933pt;}
.y10a{bottom:173.671733pt;}
.yf5{bottom:173.674400pt;}
.y18{bottom:175.052000pt;}
.y1ce{bottom:177.615200pt;}
.y154{bottom:178.243200pt;}
.y191{bottom:180.400933pt;}
.y76{bottom:184.692933pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y109{bottom:186.674400pt;}
.yf4{bottom:186.677067pt;}
.y1cd{bottom:190.617867pt;}
.y190{bottom:193.403600pt;}
.y153{bottom:194.239200pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y200{bottom:198.335200pt;}
.y108{bottom:199.677067pt;}
.yf3{bottom:199.679733pt;}
.y75{bottom:200.692933pt;}
.y1cc{bottom:203.620533pt;}
.y18f{bottom:206.406267pt;}
.y52{bottom:206.880000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y1ff{bottom:211.337867pt;}
.y107{bottom:212.679733pt;}
.yf2{bottom:212.682400pt;}
.y1cb{bottom:216.623200pt;}
.y74{bottom:216.692933pt;}
.y152{bottom:217.603200pt;}
.y18e{bottom:219.408933pt;}
.y51{bottom:219.953280pt;}
.y1fe{bottom:224.340533pt;}
.y106{bottom:225.682400pt;}
.yf1{bottom:225.685067pt;}
.y1ca{bottom:229.625867pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y18d{bottom:232.411600pt;}
.y73{bottom:232.692933pt;}
.y151{bottom:233.599200pt;}
.ycf{bottom:234.146267pt;}
.y50{bottom:236.279200pt;}
.y1fd{bottom:237.343200pt;}
.y105{bottom:238.685067pt;}
.yf0{bottom:238.687733pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y1c9{bottom:242.628533pt;}
.y18c{bottom:245.414267pt;}
.yce{bottom:247.148933pt;}
.y72{bottom:248.692933pt;}
.y1fc{bottom:250.345867pt;}
.y104{bottom:251.687733pt;}
.yef{bottom:251.690400pt;}
.y4f{bottom:252.524960pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y1c8{bottom:255.631200pt;}
.y150{bottom:256.963200pt;}
.y18b{bottom:258.416933pt;}
.y1fb{bottom:263.348533pt;}
.y103{bottom:264.690400pt;}
.y71{bottom:264.692933pt;}
.yee{bottom:264.693067pt;}
.y1c7{bottom:268.633867pt;}
.y4e{bottom:268.850880pt;}
.y18a{bottom:271.419600pt;}
.ycd{bottom:275.700933pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y1fa{bottom:276.351200pt;}
.y102{bottom:277.693067pt;}
.y14f{bottom:280.327200pt;}
.y70{bottom:280.692933pt;}
.y1c6{bottom:281.636533pt;}
.y189{bottom:284.422267pt;}
.y4d{bottom:285.096640pt;}
.ydf{bottom:285.865867pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y1f9{bottom:289.353867pt;}
.y1c5{bottom:294.639200pt;}
.y14e{bottom:296.323200pt;}
.y6f{bottom:296.692933pt;}
.y188{bottom:297.424933pt;}
.yde{bottom:298.868533pt;}
.ycc{bottom:299.064933pt;}
.y4c{bottom:301.422560pt;}
.y1f8{bottom:302.356533pt;}
.y1c4{bottom:307.641867pt;}
.yf{bottom:309.452000pt;}
.y187{bottom:310.427600pt;}
.y6e{bottom:312.692933pt;}
.y4b{bottom:317.668320pt;}
.y14d{bottom:319.687200pt;}
.y1c3{bottom:320.644533pt;}
.ycb{bottom:322.428933pt;}
.y186{bottom:323.430267pt;}
.ydd{bottom:327.408933pt;}
.y1f7{bottom:328.361867pt;}
.y6d{bottom:328.692933pt;}
.y1c2{bottom:333.647200pt;}
.y4a{bottom:333.914080pt;}
.y14c{bottom:335.683200pt;}
.y185{bottom:336.432933pt;}
.y1f6{bottom:341.364533pt;}
.y89{bottom:342.164267pt;}
.ye{bottom:343.809333pt;}
.y6c{bottom:344.692933pt;}
.yca{bottom:345.900933pt;}
.y1c1{bottom:346.649867pt;}
.y184{bottom:349.435600pt;}
.y49{bottom:350.240000pt;}
.ydc{bottom:350.772933pt;}
.y1f5{bottom:354.367200pt;}
.y14b{bottom:359.047200pt;}
.y1c0{bottom:359.652533pt;}
.y6b{bottom:360.692933pt;}
.y183{bottom:362.438267pt;}
.yd{bottom:362.706666pt;}
.y125{bottom:363.472533pt;}
.y1f4{bottom:367.369867pt;}
.y48{bottom:368.080000pt;}
.yc9{bottom:369.264933pt;}
.y1bf{bottom:372.655200pt;}
.y117{bottom:373.708133pt;}
.ydb{bottom:374.136933pt;}
.y14a{bottom:375.043200pt;}
.y181{bottom:375.355600pt;}
.y182{bottom:375.440933pt;}
.y124{bottom:376.475200pt;}
.y6a{bottom:376.692933pt;}
.y1f3{bottom:380.372533pt;}
.y1be{bottom:385.657867pt;}
.y180{bottom:388.358267pt;}
.y47{bottom:392.081120pt;}
.yc8{bottom:392.628933pt;}
.y83{bottom:392.692933pt;}
.y1f2{bottom:393.375200pt;}
.yda{bottom:397.500933pt;}
.y149{bottom:398.407200pt;}
.y1bd{bottom:398.660533pt;}
.y17f{bottom:401.360933pt;}
.y1f1{bottom:406.377867pt;}
.y82{bottom:408.692933pt;}
.y1bc{bottom:411.663200pt;}
.y139{bottom:412.673200pt;}
.y17e{bottom:414.363600pt;}
.y46{bottom:414.803280pt;}
.yc{bottom:414.990669pt;}
.yc7{bottom:416.100933pt;}
.y1f0{bottom:419.380533pt;}
.yd9{bottom:420.972933pt;}
.y148{bottom:421.771200pt;}
.y1bb{bottom:424.665867pt;}
.y69{bottom:424.692933pt;}
.y17d{bottom:427.366267pt;}
.y118{bottom:427.692933pt;}
.y138{bottom:428.669200pt;}
.ya7{bottom:430.756000pt;}
.yb{bottom:430.990669pt;}
.y1ef{bottom:432.383200pt;}
.y86{bottom:435.270400pt;}
.yc6{bottom:437.340933pt;}
.y45{bottom:437.600000pt;}
.y1ba{bottom:437.668533pt;}
.y17c{bottom:440.368933pt;}
.y159{bottom:440.690933pt;}
.y68{bottom:440.692933pt;}
.ya6{bottom:443.758667pt;}
.yd8{bottom:444.336933pt;}
.y147{bottom:445.135200pt;}
.y1ee{bottom:445.385867pt;}
.yed{bottom:446.690267pt;}
.ya{bottom:446.990669pt;}
.y1b9{bottom:450.671200pt;}
.y85{bottom:451.270400pt;}
.y137{bottom:452.033200pt;}
.y17b{bottom:453.371600pt;}
.y97{bottom:456.690933pt;}
.y67{bottom:456.692933pt;}
.y1ed{bottom:458.388533pt;}
.y44{bottom:459.440000pt;}
.yec{bottom:459.692933pt;}
.y9{bottom:462.990669pt;}
.y1b8{bottom:463.673867pt;}
.y17a{bottom:466.374267pt;}
.yd7{bottom:467.700933pt;}
.y136{bottom:468.029200pt;}
.y146{bottom:468.499200pt;}
.ybc{bottom:469.912000pt;}
.y1ec{bottom:471.391200pt;}
.y66{bottom:472.692933pt;}
.y119{bottom:473.634667pt;}
.y1b7{bottom:476.676533pt;}
.y8{bottom:478.990666pt;}
.y179{bottom:479.376933pt;}
.y43{bottom:479.840000pt;}
.ybb{bottom:485.908000pt;}
.y88{bottom:487.181333pt;}
.y1eb{bottom:488.639200pt;}
.y65{bottom:488.692933pt;}
.y1b6{bottom:489.679200pt;}
.yd6{bottom:491.064933pt;}
.y135{bottom:491.393200pt;}
.y145{bottom:491.863200pt;}
.y178{bottom:492.379600pt;}
.y8a{bottom:492.545200pt;}
.y7{bottom:494.990666pt;}
.y42{bottom:498.315520pt;}
.y1b5{bottom:502.681867pt;}
.ye5{bottom:504.690933pt;}
.y64{bottom:504.692933pt;}
.y177{bottom:505.382267pt;}
.y134{bottom:507.389200pt;}
.yba{bottom:507.760000pt;}
.y8b{bottom:508.556933pt;}
.yd5{bottom:514.536933pt;}
.y144{bottom:515.227200pt;}
.y1b4{bottom:515.684533pt;}
.y176{bottom:518.384933pt;}
.y63{bottom:520.692933pt;}
.yb9{bottom:523.756000pt;}
.y1ea{bottom:528.660533pt;}
.y1b3{bottom:528.687200pt;}
.y133{bottom:530.753200pt;}
.y87{bottom:531.096400pt;}
.y143{bottom:531.223200pt;}
.y175{bottom:531.387600pt;}
.y41{bottom:534.396160pt;}
.yc5{bottom:535.918667pt;}
.y62{bottom:536.692933pt;}
.yd4{bottom:537.900933pt;}
.y1e9{bottom:541.663200pt;}
.y1b2{bottom:541.689867pt;}
.y174{bottom:544.390267pt;}
.yb8{bottom:545.608000pt;}
.yc4{bottom:548.921333pt;}
.y95{bottom:550.685971pt;}
.y101{bottom:552.690933pt;}
.y61{bottom:552.692933pt;}
.y40{bottom:553.120000pt;}
.y132{bottom:554.117200pt;}
.y1e8{bottom:554.665867pt;}
.y1b1{bottom:554.692533pt;}
.y173{bottom:557.392933pt;}
.yd3{bottom:561.264933pt;}
.yb7{bottom:561.604000pt;}
.y1e7{bottom:567.668533pt;}
.y1b0{bottom:567.695200pt;}
.y9d{bottom:568.690933pt;}
.y60{bottom:568.692933pt;}
.y131{bottom:570.113200pt;}
.y172{bottom:570.395600pt;}
.y3f{bottom:571.434240pt;}
.y6{bottom:573.786667pt;}
.yc3{bottom:577.492933pt;}
.y94{bottom:580.522697pt;}
.y1e6{bottom:580.671200pt;}
.y1af{bottom:580.697867pt;}
.y171{bottom:583.398267pt;}
.yb6{bottom:583.456000pt;}
.yd2{bottom:584.628933pt;}
.y5f{bottom:584.692933pt;}
.y3e{bottom:587.680000pt;}
.y142{bottom:587.692933pt;}
.y5{bottom:592.685334pt;}
.y130{bottom:593.477200pt;}
.yc2{bottom:593.488933pt;}
.y1e5{bottom:593.673867pt;}
.y1ae{bottom:593.700533pt;}
.y170{bottom:596.400933pt;}
.yb5{bottom:599.452000pt;}
.y5e{bottom:600.692933pt;}
.y3d{bottom:605.360000pt;}
.y1e4{bottom:606.676533pt;}
.y1ad{bottom:606.703200pt;}
.yd1{bottom:608.100933pt;}
.y16f{bottom:609.403600pt;}
.y12f{bottom:609.473200pt;}
.y93{bottom:611.852633pt;}
.y5d{bottom:616.692933pt;}
.yc1{bottom:616.852933pt;}
.y1e3{bottom:619.679200pt;}
.y1ac{bottom:619.705867pt;}
.yb4{bottom:621.304000pt;}
.y16e{bottom:622.406267pt;}
.y3c{bottom:628.177520pt;}
.yd0{bottom:629.340933pt;}
.y1e2{bottom:632.681867pt;}
.y5c{bottom:632.692933pt;}
.y1ab{bottom:632.708533pt;}
.y12e{bottom:632.837200pt;}
.yc0{bottom:632.848933pt;}
.y16d{bottom:635.408933pt;}
.yb3{bottom:637.300000pt;}
.y92{bottom:645.170462pt;}
.y1e1{bottom:645.684533pt;}
.y1aa{bottom:645.711200pt;}
.y16c{bottom:648.411600pt;}
.y5b{bottom:648.692933pt;}
.y12d{bottom:648.833200pt;}
.y3b{bottom:650.974240pt;}
.ybf{bottom:656.212933pt;}
.y1e0{bottom:658.687200pt;}
.y1a9{bottom:658.713867pt;}
.yb2{bottom:659.152000pt;}
.y16b{bottom:661.414267pt;}
.y5a{bottom:664.692933pt;}
.y3{bottom:668.977329pt;}
.y1df{bottom:671.689867pt;}
.y1a8{bottom:671.716533pt;}
.y12c{bottom:672.197200pt;}
.ybe{bottom:672.208933pt;}
.y3a{bottom:673.696400pt;}
.y16a{bottom:674.416933pt;}
.yb1{bottom:675.148000pt;}
.y91{bottom:676.995081pt;}
.y81{bottom:680.692933pt;}
.y1de{bottom:684.692533pt;}
.y1a6{bottom:684.700533pt;}
.y1a7{bottom:684.719200pt;}
.y169{bottom:687.419600pt;}
.ybd{bottom:693.340933pt;}
.y12b{bottom:695.561200pt;}
.y39{bottom:696.493120pt;}
.y59{bottom:696.692933pt;}
.yb0{bottom:697.000000pt;}
.y1dd{bottom:697.695200pt;}
.y1a5{bottom:697.703200pt;}
.y168{bottom:700.422267pt;}
.y90{bottom:706.327963pt;}
.y1dc{bottom:710.697867pt;}
.y1a4{bottom:710.705867pt;}
.y80{bottom:712.692933pt;}
.yaf{bottom:712.996000pt;}
.y167{bottom:713.424933pt;}
.y12a{bottom:718.925200pt;}
.y38{bottom:719.289840pt;}
.y1db{bottom:723.700533pt;}
.y1a3{bottom:723.708533pt;}
.y166{bottom:726.427600pt;}
.y7f{bottom:728.692933pt;}
.yae{bottom:734.848000pt;}
.y8f{bottom:735.670005pt;}
.y1da{bottom:736.703200pt;}
.y1a2{bottom:736.711200pt;}
.y165{bottom:739.430267pt;}
.y37{bottom:742.086560pt;}
.y129{bottom:742.289200pt;}
.y7e{bottom:744.692933pt;}
.y1d9{bottom:749.705867pt;}
.y1a1{bottom:749.713867pt;}
.yad{bottom:750.844000pt;}
.y164{bottom:752.432933pt;}
.y58{bottom:758.020933pt;}
.y8e{bottom:760.037733pt;}
.y7d{bottom:760.692933pt;}
.y1d8{bottom:762.708533pt;}
.y1a0{bottom:762.716533pt;}
.y36{bottom:764.883280pt;}
.y163{bottom:765.435600pt;}
.y128{bottom:765.653200pt;}
.yac{bottom:772.696000pt;}
.y19e{bottom:775.711200pt;}
.y19f{bottom:775.719200pt;}
.y57{bottom:776.692933pt;}
.y162{bottom:778.438267pt;}
.y2{bottom:781.661334pt;}
.y35{bottom:787.680000pt;}
.yab{bottom:788.692000pt;}
.y19d{bottom:788.713867pt;}
.y127{bottom:789.017200pt;}
.y161{bottom:791.440933pt;}
.y160{bottom:791.444933pt;}
.y96{bottom:792.692933pt;}
.y8c{bottom:794.305333pt;}
.y19c{bottom:801.716533pt;}
.y126{bottom:805.013200pt;}
.y56{bottom:808.692933pt;}
.yaa{bottom:809.068000pt;}
.y34{bottom:810.406560pt;}
.y19b{bottom:814.719200pt;}
.y33{bottom:833.203280pt;}
.y32{bottom:856.000000pt;}
.y1{bottom:859.312000pt;}
.y55{bottom:865.738533pt;}
.y31{bottom:876.240000pt;}
.y30{bottom:890.284480pt;}
.y2f{bottom:905.648480pt;}
.y2e{bottom:920.932320pt;}
.y2d{bottom:936.296320pt;}
.y2c{bottom:951.660320pt;}
.y2b{bottom:966.944160pt;}
.y2a{bottom:982.308160pt;}
.y29{bottom:997.672160pt;}
.y28{bottom:1012.956000pt;}
.y27{bottom:1028.320000pt;}
.y26{bottom:1043.360000pt;}
.y25{bottom:1055.600000pt;}
.y24{bottom:1060.960000pt;}
.y23{bottom:1066.320000pt;}
.y22{bottom:1071.680000pt;}
.h2b{height:0.000000pt;}
.h9{height:11.484375pt;}
.h22{height:13.009333pt;}
.h29{height:19.892550pt;}
.h1f{height:26.677252pt;}
.h15{height:28.366406pt;}
.h7{height:28.560000pt;}
.h13{height:28.710938pt;}
.h18{height:28.900000pt;}
.h1e{height:29.952000pt;}
.hc{height:30.285937pt;}
.h2a{height:30.506667pt;}
.h21{height:31.212377pt;}
.ha{height:31.992188pt;}
.h24{height:34.320000pt;}
.h2c{height:34.816000pt;}
.hb{height:35.617969pt;}
.h27{height:36.015383pt;}
.h23{height:36.992000pt;}
.h2d{height:37.440000pt;}
.h1d{height:38.133333pt;}
.h10{height:38.357812pt;}
.h1b{height:40.040000pt;}
.h6{height:40.800000pt;}
.h25{height:41.616000pt;}
.h26{height:42.048000pt;}
.h3{height:42.840000pt;}
.h14{height:43.361333pt;}
.h19{height:43.520000pt;}
.h11{height:44.100000pt;}
.h1c{height:46.240000pt;}
.h2{height:48.960000pt;}
.he{height:50.677500pt;}
.hd{height:50.713906pt;}
.h1a{height:52.224000pt;}
.hf{height:53.517187pt;}
.h12{height:55.584375pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h28{height:144.318667pt;}
.h20{height:332.598667pt;}
.h16{height:907.086667pt;}
.h17{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w7{width:199.509333pt;}
.w3{width:260.400000pt;}
.w6{width:552.281333pt;}
.w2{width:566.928019pt;}
.w5{width:623.333333pt;}
.w4{width:623.622667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:10.640000pt;}
.x7f{left:20.657499pt;}
.x80{left:41.797633pt;}
.x13{left:44.882667pt;}
.x12{left:47.898267pt;}
.x9{left:54.080000pt;}
.xd{left:56.692933pt;}
.xe{left:63.426267pt;}
.x3b{left:64.577867pt;}
.x26{left:66.328133pt;}
.x90{left:69.912933pt;}
.x1e{left:71.810533pt;}
.x9c{left:77.334267pt;}
.x1c{left:78.957200pt;}
.x1d{left:86.930533pt;}
.x48{left:88.952133pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x6{left:95.672960pt;}
.x82{left:97.487200pt;}
.x8c{left:99.593200pt;}
.x79{left:110.571333pt;}
.x7a{left:111.814267pt;}
.xb{left:113.385867pt;}
.xa1{left:114.409200pt;}
.xf{left:120.119200pt;}
.x30{left:121.278667pt;}
.x9d{left:123.135867pt;}
.x21{left:128.500400pt;}
.xa9{left:131.314133pt;}
.x10{left:135.652533pt;}
.x58{left:136.627200pt;}
.x59{left:137.784267pt;}
.x81{left:140.013002pt;}
.x50{left:140.913733pt;}
.x51{left:142.017200pt;}
.x11{left:143.625867pt;}
.x4f{left:146.113733pt;}
.xc{left:147.385867pt;}
.xa7{left:148.436667pt;}
.x5e{left:149.533067pt;}
.x5f{left:150.767467pt;}
.x36{left:152.732400pt;}
.x37{left:153.627200pt;}
.x6c{left:156.272667pt;}
.x5a{left:158.956667pt;}
.x43{left:165.038800pt;}
.x44{left:165.950800pt;}
.x5c{left:169.303467pt;}
.x5d{left:170.416267pt;}
.x99{left:172.929200pt;}
.x9a{left:174.537467pt;}
.xa3{left:175.531333pt;}
.x4{left:180.874667pt;}
.x7{left:182.477440pt;}
.x78{left:186.979733pt;}
.x94{left:189.798000pt;}
.x3d{left:192.798400pt;}
.x3e{left:194.295467pt;}
.x67{left:196.678000pt;}
.x68{left:197.618667pt;}
.x71{left:198.541467pt;}
.x72{left:199.730400pt;}
.x16{left:200.836267pt;}
.x4c{left:202.812667pt;}
.x4d{left:203.955600pt;}
.x38{left:205.045733pt;}
.x39{left:205.940533pt;}
.x75{left:208.668267pt;}
.x76{left:210.581067pt;}
.x5b{left:214.898133pt;}
.x1f{left:222.853067pt;}
.x20{left:224.310267pt;}
.x27{left:227.656133pt;}
.x41{left:230.594400pt;}
.x34{left:236.879733pt;}
.x52{left:238.793867pt;}
.x3a{left:240.797867pt;}
.x14{left:241.789467pt;}
.x60{left:243.110933pt;}
.x45{left:253.277867pt;}
.x46{left:254.189733pt;}
.x7c{left:256.597333pt;}
.x7d{left:257.659333pt;}
.x8d{left:258.569200pt;}
.x93{left:260.124000pt;}
.x15{left:261.968667pt;}
.x84{left:262.933600pt;}
.x85{left:264.097333pt;}
.x6d{left:265.326133pt;}
.x19{left:266.242769pt;}
.x35{left:281.370933pt;}
.x91{left:286.126133pt;}
.x92{left:287.145067pt;}
.xab{left:288.173067pt;}
.x69{left:297.943067pt;}
.x6a{left:298.917067pt;}
.xa0{left:301.493733pt;}
.x1a{left:306.651058pt;}
.x18{left:308.638952pt;}
.x7e{left:310.726667pt;}
.x17{left:311.634533pt;}
.xa8{left:314.897333pt;}
.x47{left:319.722933pt;}
.x96{left:321.183867pt;}
.x97{left:322.564000pt;}
.x4a{left:324.651067pt;}
.x4b{left:326.122800pt;}
.xa5{left:331.277867pt;}
.x1b{left:333.583810pt;}
.x22{left:337.674133pt;}
.x49{left:339.036133pt;}
.x2f{left:342.942667pt;}
.xaa{left:344.986267pt;}
.x55{left:346.410000pt;}
.x2d{left:351.868133pt;}
.x6e{left:352.774667pt;}
.x28{left:354.124133pt;}
.x8{left:355.360000pt;}
.x7b{left:362.029733pt;}
.x6f{left:364.047867pt;}
.x70{left:365.229067pt;}
.xa2{left:366.774933pt;}
.x98{left:369.325333pt;}
.x8e{left:381.173200pt;}
.x6b{left:382.232533pt;}
.x53{left:390.017333pt;}
.x54{left:391.120800pt;}
.x95{left:393.468400pt;}
.x3{left:404.408000pt;}
.x77{left:405.748667pt;}
.x3c{left:411.167733pt;}
.x65{left:412.315600pt;}
.x66{left:413.296000pt;}
.x89{left:424.658667pt;}
.x8a{left:425.570533pt;}
.x4e{left:426.925200pt;}
.x29{left:428.848133pt;}
.x2b{left:430.192133pt;}
.x32{left:431.166667pt;}
.x9b{left:433.375467pt;}
.x73{left:440.491600pt;}
.x74{left:442.915067pt;}
.xa6{left:453.901467pt;}
.x86{left:455.479600pt;}
.x42{left:458.931067pt;}
.x8f{left:460.205200pt;}
.xa4{left:477.185333pt;}
.x9e{left:480.951867pt;}
.x9f{left:481.987467pt;}
.x24{left:486.889467pt;}
.x25{left:488.313067pt;}
.x61{left:490.086533pt;}
.x23{left:494.762267pt;}
.x2a{left:504.388133pt;}
.x2c{left:505.396133pt;}
.x2e{left:506.548133pt;}
.x31{left:508.554667pt;}
.x33{left:510.438667pt;}
.x87{left:513.003067pt;}
.x88{left:513.921867pt;}
.x64{left:516.660800pt;}
.x56{left:531.209333pt;}
.x57{left:532.713867pt;}
.x3f{left:537.936933pt;}
.x40{left:539.434000pt;}
.x8b{left:552.894667pt;}
.x83{left:554.545867pt;}
.x62{left:556.018800pt;}
.x63{left:557.176000pt;}
.xa{left:558.559067pt;}
}




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