
    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_b1dd6550cba6cc135841b7e2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.941000;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_03c495a1164e6900a9c1ad2b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_c8c7e720e8bc308658c23438.woff')format("woff");}.ff3{font-family:ff3;line-height:0.703000;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_f2549c40c2bbab2b2625763d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.908000;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_8c77579984a5afa3b651ff0c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.930000;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_54a8a737131d4af715c602a2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.730469;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_597639ff7cfa50b99648cb6b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.759766;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_aecf5b1e7e4dce7f6c998451.woff')format("woff");}.ff8{font-family:ff8;line-height:0.953000;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_0379fefe49747a35db587166.woff')format("woff");}.ff9{font-family:ff9;line-height:1.047000;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_67250155757e29b536823588.woff')format("woff");}.ffa{font-family:ffa;line-height:0.633000;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_af204da9105e9d9071030952.woff')format("woff");}.ffb{font-family:ffb;line-height:1.032000;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_ac0e4295f919187447f96144.woff')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_78e661f7d65f7100a5ee73d5.woff')format("woff");}.ffd{font-family:ffd;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_68225379192156633dceaa19.woff')format("woff");}.ffe{font-family:ffe;line-height:0.951000;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_34e6456f0bbd99bbfe34d3a7.woff')format("woff");}.fff{font-family:fff;line-height:0.066000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.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);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m4{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:-37.080360px;}
.v3{vertical-align:-12.240000px;}
.v5{vertical-align:-10.884000px;}
.v9{vertical-align:-9.526574px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:2.041200px;}
.v1{vertical-align:6.120000px;}
.v6{vertical-align:10.885200px;}
.vc{vertical-align:11.901600px;}
.v8{vertical-align:18.701559px;}
.v4{vertical-align:21.088800px;}
.va{vertical-align:23.466000px;}
.v7{vertical-align:47.961000px;}
.lsa{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.004697px;}
.ls6a{letter-spacing:0.016200px;}
.ls6b{letter-spacing:0.032400px;}
.ls25{letter-spacing:0.079189px;}
.ls19{letter-spacing:0.091800px;}
.ls14{letter-spacing:0.124891px;}
.ls2e{letter-spacing:0.144000px;}
.ls4a{letter-spacing:0.145800px;}
.ls1{letter-spacing:0.174000px;}
.ls46{letter-spacing:0.192000px;}
.ls0{letter-spacing:0.234000px;}
.ls45{letter-spacing:0.254086px;}
.ls47{letter-spacing:0.257086px;}
.ls11{letter-spacing:0.300000px;}
.ls5f{letter-spacing:0.329400px;}
.ls4e{letter-spacing:0.378000px;}
.lsb{letter-spacing:0.427951px;}
.ls18{letter-spacing:0.466891px;}
.ls6{letter-spacing:0.480000px;}
.ls12{letter-spacing:0.534000px;}
.ls6f{letter-spacing:0.534600px;}
.ls24{letter-spacing:0.539064px;}
.ls16{letter-spacing:0.540000px;}
.lsd{letter-spacing:0.648000px;}
.ls5{letter-spacing:0.684000px;}
.ls62{letter-spacing:0.696600px;}
.ls4{letter-spacing:0.702000px;}
.ls4d{letter-spacing:0.852000px;}
.ls8{letter-spacing:0.858000px;}
.ls71{letter-spacing:0.874800px;}
.ls6e{letter-spacing:0.923400px;}
.ls7{letter-spacing:0.996000px;}
.ls27{letter-spacing:1.020000px;}
.ls7c{letter-spacing:1.020600px;}
.ls1c{letter-spacing:1.053000px;}
.ls54{letter-spacing:1.086000px;}
.ls74{letter-spacing:1.117800px;}
.ls9{letter-spacing:1.146000px;}
.ls20{letter-spacing:1.274400px;}
.ls3{letter-spacing:1.308000px;}
.ls58{letter-spacing:1.350000px;}
.ls57{letter-spacing:1.440000px;}
.ls59{letter-spacing:1.572000px;}
.ls10{letter-spacing:1.608000px;}
.ls4c{letter-spacing:1.755798px;}
.ls2{letter-spacing:1.878000px;}
.ls3f{letter-spacing:1.899600px;}
.ls40{letter-spacing:1.955086px;}
.lse{letter-spacing:1.956000px;}
.ls41{letter-spacing:1.974000px;}
.lsf{letter-spacing:1.998000px;}
.ls65{letter-spacing:2.068200px;}
.ls1b{letter-spacing:2.160000px;}
.ls7b{letter-spacing:4.082400px;}
.ls70{letter-spacing:12.933000px;}
.ls13{letter-spacing:13.054891px;}
.ls7d{letter-spacing:13.273200px;}
.ls1e{letter-spacing:13.396891px;}
.ls15{letter-spacing:13.743000px;}
.ls75{letter-spacing:13.953600px;}
.ls79{letter-spacing:14.094000px;}
.ls78{letter-spacing:14.634000px;}
.ls28{letter-spacing:14.664000px;}
.ls34{letter-spacing:14.676000px;}
.ls6c{letter-spacing:14.974200px;}
.ls2a{letter-spacing:14.982000px;}
.ls29{letter-spacing:15.000000px;}
.ls2b{letter-spacing:15.221086px;}
.ls48{letter-spacing:15.905086px;}
.ls36{letter-spacing:16.026000px;}
.ls49{letter-spacing:16.050000px;}
.ls22{letter-spacing:16.218997px;}
.ls23{letter-spacing:16.223797px;}
.ls72{letter-spacing:16.335000px;}
.ls52{letter-spacing:16.392000px;}
.ls55{letter-spacing:17.261086px;}
.ls56{letter-spacing:17.276497px;}
.ls38{letter-spacing:17.400000px;}
.ls76{letter-spacing:17.690400px;}
.ls63{letter-spacing:17.695800px;}
.ls69{letter-spacing:17.830800px;}
.ls68{letter-spacing:17.836200px;}
.ls61{letter-spacing:18.030600px;}
.ls60{letter-spacing:18.036000px;}
.ls64{letter-spacing:18.176400px;}
.ls77{letter-spacing:18.376200px;}
.ls5c{letter-spacing:18.768000px;}
.ls1f{letter-spacing:19.174891px;}
.ls5d{letter-spacing:19.788000px;}
.ls51{letter-spacing:19.878000px;}
.ls44{letter-spacing:20.000497px;}
.ls43{letter-spacing:20.106000px;}
.ls42{letter-spacing:20.118000px;}
.ls5b{letter-spacing:20.130000px;}
.lsc{letter-spacing:20.325886px;}
.ls1d{letter-spacing:20.547000px;}
.ls53{letter-spacing:20.663086px;}
.ls7a{letter-spacing:20.757600px;}
.ls4f{letter-spacing:20.999086px;}
.ls66{letter-spacing:21.778200px;}
.ls67{letter-spacing:21.918600px;}
.ls32{letter-spacing:22.464000px;}
.ls31{letter-spacing:22.488000px;}
.ls33{letter-spacing:22.703086px;}
.ls6d{letter-spacing:22.793400px;}
.ls26{letter-spacing:22.912891px;}
.ls30{letter-spacing:22.918891px;}
.ls37{letter-spacing:23.850000px;}
.ls4b{letter-spacing:23.938891px;}
.ls1a{letter-spacing:23.949000px;}
.ls39{letter-spacing:27.822697px;}
.ls3c{letter-spacing:27.824497px;}
.ls3b{letter-spacing:27.930000px;}
.ls3a{letter-spacing:27.942000px;}
.ls73{letter-spacing:28.236600px;}
.ls50{letter-spacing:31.547086px;}
.ls35{letter-spacing:34.966297px;}
.ls17{letter-spacing:37.211400px;}
.ls5e{letter-spacing:37.738200px;}
.ls5a{letter-spacing:38.082000px;}
.ls2d{letter-spacing:39.132000px;}
.ls2f{letter-spacing:39.371086px;}
.ls2c{letter-spacing:39.492000px;}
.ls3e{letter-spacing:43.896000px;}
.ls3d{letter-spacing:43.914000px;}
.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;}
}
.ws5f{word-spacing:-38.340000px;}
.wsa8{word-spacing:-35.046000px;}
.ws9b{word-spacing:-34.506000px;}
.wseb{word-spacing:-30.671617px;}
.ws2e3{word-spacing:-25.704000px;}
.ws60{word-spacing:-25.687417px;}
.ws17{word-spacing:-24.546000px;}
.ws188{word-spacing:-24.432000px;}
.wsb{word-spacing:-24.396000px;}
.ws13d{word-spacing:-24.228000px;}
.ws19c{word-spacing:-24.144000px;}
.ws1a2{word-spacing:-24.138000px;}
.ws141{word-spacing:-24.024000px;}
.ws77{word-spacing:-23.976000px;}
.ws30{word-spacing:-23.934000px;}
.ws146{word-spacing:-23.880000px;}
.ws1f1{word-spacing:-23.838000px;}
.ws1cb{word-spacing:-23.796000px;}
.ws142{word-spacing:-23.790000px;}
.ws19d{word-spacing:-23.784000px;}
.ws15b{word-spacing:-23.778000px;}
.ws15a{word-spacing:-23.706000px;}
.ws147{word-spacing:-23.700000px;}
.ws11a{word-spacing:-23.604000px;}
.ws1a0{word-spacing:-23.556000px;}
.ws11b{word-spacing:-23.532000px;}
.ws15d{word-spacing:-23.460000px;}
.ws1f2{word-spacing:-23.370000px;}
.ws1a1{word-spacing:-23.352000px;}
.ws181{word-spacing:-23.322000px;}
.ws197{word-spacing:-23.184000px;}
.wsa2{word-spacing:-23.118253px;}
.ws15c{word-spacing:-23.118000px;}
.ws34{word-spacing:-23.094000px;}
.ws175{word-spacing:-23.034000px;}
.ws128{word-spacing:-22.902000px;}
.ws82{word-spacing:-22.854000px;}
.ws21e{word-spacing:-22.824000px;}
.ws13e{word-spacing:-22.782000px;}
.ws187{word-spacing:-22.686000px;}
.ws50{word-spacing:-22.607717px;}
.ws173{word-spacing:-22.578000px;}
.ws1a{word-spacing:-22.572000px;}
.ws19{word-spacing:-22.560000px;}
.ws6f{word-spacing:-22.482000px;}
.ws170{word-spacing:-22.476000px;}
.ws43{word-spacing:-22.440000px;}
.ws14a{word-spacing:-22.416000px;}
.ws1ba{word-spacing:-22.410000px;}
.ws17a{word-spacing:-22.332000px;}
.ws172{word-spacing:-22.278000px;}
.ws171{word-spacing:-22.242000px;}
.ws17b{word-spacing:-22.230000px;}
.ws78{word-spacing:-22.224000px;}
.ws176{word-spacing:-22.218000px;}
.ws16f{word-spacing:-22.200000px;}
.ws70{word-spacing:-22.176000px;}
.wsfc{word-spacing:-22.086000px;}
.ws1e1{word-spacing:-22.074000px;}
.ws22{word-spacing:-22.032000px;}
.ws1bb{word-spacing:-21.996000px;}
.ws5c{word-spacing:-21.954000px;}
.ws23a{word-spacing:-21.940200px;}
.ws250{word-spacing:-21.880800px;}
.ws280{word-spacing:-21.837600px;}
.ws2c0{word-spacing:-21.826800px;}
.ws218{word-spacing:-21.821400px;}
.ws5d{word-spacing:-21.762000px;}
.ws136{word-spacing:-21.632400px;}
.ws2f4{word-spacing:-21.610800px;}
.ws96{word-spacing:-21.606000px;}
.ws9a{word-spacing:-21.551400px;}
.ws2fb{word-spacing:-21.540600px;}
.ws2a3{word-spacing:-21.513600px;}
.ws2bf{word-spacing:-21.508200px;}
.wsd1{word-spacing:-21.486600px;}
.ws2cb{word-spacing:-21.454200px;}
.ws9c{word-spacing:-21.438000px;}
.ws134{word-spacing:-21.421800px;}
.ws12f{word-spacing:-21.408000px;}
.wsf8{word-spacing:-21.400200px;}
.ws282{word-spacing:-21.389400px;}
.ws28d{word-spacing:-21.367800px;}
.ws12e{word-spacing:-21.336000px;}
.ws274{word-spacing:-21.335400px;}
.wsf7{word-spacing:-21.330000px;}
.ws153{word-spacing:-21.324000px;}
.ws154{word-spacing:-21.318000px;}
.wsd2{word-spacing:-21.292200px;}
.ws126{word-spacing:-21.276000px;}
.ws2b1{word-spacing:-21.265200px;}
.ws1d9{word-spacing:-21.252000px;}
.wsc8{word-spacing:-21.243600px;}
.ws25c{word-spacing:-21.211200px;}
.ws130{word-spacing:-21.204000px;}
.ws1d8{word-spacing:-21.192000px;}
.ws35{word-spacing:-21.162000px;}
.ws1ad{word-spacing:-21.156000px;}
.wsd3{word-spacing:-21.151800px;}
.ws25d{word-spacing:-21.114000px;}
.ws1ae{word-spacing:-21.102000px;}
.wsa4{word-spacing:-21.092400px;}
.wsa6{word-spacing:-21.054600px;}
.wsc6{word-spacing:-21.043800px;}
.ws2cc{word-spacing:-21.000600px;}
.ws131{word-spacing:-21.000000px;}
.ws1e5{word-spacing:-20.994000px;}
.wsc7{word-spacing:-20.968200px;}
.ws2d7{word-spacing:-20.941200px;}
.ws47{word-spacing:-20.886000px;}
.ws266{word-spacing:-20.865600px;}
.ws1f5{word-spacing:-20.748000px;}
.ws6e{word-spacing:-20.694000px;}
.ws94{word-spacing:-20.652000px;}
.ws12d{word-spacing:-20.646000px;}
.ws272{word-spacing:-20.622600px;}
.ws2c6{word-spacing:-20.617200px;}
.ws101{word-spacing:-20.611800px;}
.ws284{word-spacing:-20.606400px;}
.ws195{word-spacing:-20.574000px;}
.wsed{word-spacing:-20.549090px;}
.ws36{word-spacing:-20.508000px;}
.ws2c1{word-spacing:-20.482200px;}
.ws174{word-spacing:-20.406000px;}
.ws2d5{word-spacing:-20.347200px;}
.ws29a{word-spacing:-20.325600px;}
.ws121{word-spacing:-20.316000px;}
.ws9d{word-spacing:-20.314800px;}
.ws3a{word-spacing:-20.310000px;}
.ws9f{word-spacing:-20.201400px;}
.ws57{word-spacing:-20.136000px;}
.ws18d{word-spacing:-20.120400px;}
.ws76{word-spacing:-20.094000px;}
.ws2d3{word-spacing:-20.055600px;}
.ws288{word-spacing:-20.050200px;}
.ws247{word-spacing:-20.039400px;}
.ws1a9{word-spacing:-19.950000px;}
.ws9e{word-spacing:-19.942200px;}
.ws105{word-spacing:-19.936800px;}
.wsd5{word-spacing:-19.931400px;}
.ws2e{word-spacing:-19.926000px;}
.ws56{word-spacing:-19.920000px;}
.ws227{word-spacing:-19.899000px;}
.ws1aa{word-spacing:-19.860000px;}
.ws18e{word-spacing:-19.855800px;}
.ws108{word-spacing:-19.818000px;}
.ws2e6{word-spacing:-19.774800px;}
.ws273{word-spacing:-19.753200px;}
.ws107{word-spacing:-19.726200px;}
.ws1cc{word-spacing:-19.722000px;}
.ws139{word-spacing:-19.693800px;}
.ws251{word-spacing:-19.666800px;}
.ws26b{word-spacing:-19.656000px;}
.ws199{word-spacing:-19.620000px;}
.ws106{word-spacing:-19.602000px;}
.ws143{word-spacing:-19.578000px;}
.ws2dc{word-spacing:-19.569600px;}
.ws1c3{word-spacing:-19.566000px;}
.ws1ac{word-spacing:-19.512000px;}
.ws83{word-spacing:-19.500000px;}
.ws1d5{word-spacing:-19.476000px;}
.wsd4{word-spacing:-19.461600px;}
.wsa3{word-spacing:-19.418400px;}
.ws255{word-spacing:-19.386000px;}
.ws1ab{word-spacing:-19.380000px;}
.wsa1{word-spacing:-19.353600px;}
.ws8b{word-spacing:-19.290000px;}
.ws8a{word-spacing:-19.248000px;}
.ws164{word-spacing:-19.242000px;}
.ws203{word-spacing:-19.218000px;}
.wsd7{word-spacing:-19.175400px;}
.ws1e0{word-spacing:-19.164000px;}
.wsdb{word-spacing:-19.126800px;}
.ws281{word-spacing:-19.110600px;}
.wsd6{word-spacing:-19.083600px;}
.ws66{word-spacing:-19.038000px;}
.ws1d2{word-spacing:-19.014000px;}
.ws2f7{word-spacing:-19.008000px;}
.ws1f4{word-spacing:-19.002000px;}
.ws262{word-spacing:-18.997200px;}
.ws1bd{word-spacing:-18.924000px;}
.ws26e{word-spacing:-18.921600px;}
.ws265{word-spacing:-18.883800px;}
.ws2e0{word-spacing:-18.856800px;}
.wscf{word-spacing:-18.829800px;}
.ws2c{word-spacing:-18.828000px;}
.ws2f6{word-spacing:-18.819000px;}
.ws27f{word-spacing:-18.759600px;}
.ws291{word-spacing:-18.748800px;}
.wsae{word-spacing:-18.743400px;}
.ws1b9{word-spacing:-18.708000px;}
.ws1b8{word-spacing:-18.666000px;}
.ws31{word-spacing:-18.612000px;}
.ws166{word-spacing:-18.600000px;}
.ws91{word-spacing:-18.582000px;}
.ws200{word-spacing:-18.570000px;}
.ws7c{word-spacing:-18.564000px;}
.ws19a{word-spacing:-18.558000px;}
.ws278{word-spacing:-18.543600px;}
.ws90{word-spacing:-18.534000px;}
.ws1c{word-spacing:-18.528000px;}
.ws1d{word-spacing:-18.498000px;}
.ws6d{word-spacing:-18.480000px;}
.ws16a{word-spacing:-18.462000px;}
.ws48{word-spacing:-18.432000px;}
.ws2f3{word-spacing:-18.424800px;}
.ws1c9{word-spacing:-18.414000px;}
.ws168{word-spacing:-18.408000px;}
.ws21f{word-spacing:-18.378000px;}
.ws235{word-spacing:-18.360000px;}
.ws189{word-spacing:-18.354000px;}
.ws44{word-spacing:-18.342000px;}
.ws177{word-spacing:-18.330000px;}
.ws1fd{word-spacing:-18.282000px;}
.ws1e8{word-spacing:-18.276000px;}
.ws212{word-spacing:-18.240000px;}
.ws86{word-spacing:-18.216000px;}
.ws2a9{word-spacing:-18.214200px;}
.ws201{word-spacing:-18.204000px;}
.ws20a{word-spacing:-18.198000px;}
.ws211{word-spacing:-18.144000px;}
.ws240{word-spacing:-18.138600px;}
.ws120{word-spacing:-18.138000px;}
.ws213{word-spacing:-18.132000px;}
.ws62{word-spacing:-18.102000px;}
.ws63{word-spacing:-18.090000px;}
.ws10b{word-spacing:-18.084600px;}
.ws208{word-spacing:-18.078000px;}
.ws244{word-spacing:-18.063000px;}
.ws109{word-spacing:-18.030600px;}
.wsd8{word-spacing:-18.025200px;}
.ws11f{word-spacing:-18.018000px;}
.ws2ab{word-spacing:-18.014400px;}
.ws178{word-spacing:-18.006000px;}
.ws10a{word-spacing:-18.003600px;}
.ws214{word-spacing:-17.994000px;}
.ws20c{word-spacing:-17.988000px;}
.ws1c2{word-spacing:-17.970000px;}
.ws73{word-spacing:-17.868000px;}
.ws28c{word-spacing:-17.852400px;}
.ws13b{word-spacing:-17.814600px;}
.ws2c3{word-spacing:-17.803800px;}
.ws1f6{word-spacing:-17.802000px;}
.ws179{word-spacing:-17.778000px;}
.ws2ed{word-spacing:-17.776800px;}
.ws292{word-spacing:-17.749800px;}
.ws222{word-spacing:-17.744400px;}
.ws27e{word-spacing:-17.733600px;}
.ws254{word-spacing:-17.706600px;}
.ws28b{word-spacing:-17.695800px;}
.ws296{word-spacing:-17.679600px;}
.ws2ee{word-spacing:-17.674200px;}
.ws1c1{word-spacing:-17.658000px;}
.ws29d{word-spacing:-17.544600px;}
.ws2ac{word-spacing:-17.523000px;}
.ws112{word-spacing:-17.501400px;}
.ws3{word-spacing:-17.479666px;}
.ws2{word-spacing:-17.448466px;}
.ws2a6{word-spacing:-17.420400px;}
.ws1b2{word-spacing:-17.376000px;}
.ws219{word-spacing:-17.371800px;}
.ws13c{word-spacing:-17.340000px;}
.ws1b3{word-spacing:-17.316000px;}
.ws27c{word-spacing:-17.296200px;}
.ws1c4{word-spacing:-17.244000px;}
.ws110{word-spacing:-17.231400px;}
.ws21a{word-spacing:-17.220600px;}
.ws40{word-spacing:-17.184000px;}
.ws21b{word-spacing:-17.166600px;}
.ws1c6{word-spacing:-17.142000px;}
.ws145{word-spacing:-17.130000px;}
.ws1ce{word-spacing:-17.124000px;}
.ws1d1{word-spacing:-17.118000px;}
.ws2b8{word-spacing:-17.010000px;}
.ws1f3{word-spacing:-17.004000px;}
.ws1c5{word-spacing:-16.986000px;}
.wsb9{word-spacing:-16.972200px;}
.ws2bc{word-spacing:-16.950600px;}
.ws111{word-spacing:-16.891200px;}
.ws233{word-spacing:-16.837200px;}
.ws2d8{word-spacing:-16.831800px;}
.wscd{word-spacing:-16.794000px;}
.wse0{word-spacing:-16.788600px;}
.wsdd{word-spacing:-16.783200px;}
.ws88{word-spacing:-16.782000px;}
.ws137{word-spacing:-16.777800px;}
.wsbd{word-spacing:-16.761600px;}
.ws2a4{word-spacing:-16.756200px;}
.ws4a{word-spacing:-16.750800px;}
.ws113{word-spacing:-16.740000px;}
.ws23c{word-spacing:-16.729200px;}
.wsbb{word-spacing:-16.718400px;}
.wsdf{word-spacing:-16.713000px;}
.ws161{word-spacing:-16.704000px;}
.wsfd{word-spacing:-16.702200px;}
.ws230{word-spacing:-16.664400px;}
.ws25a{word-spacing:-16.659000px;}
.ws4e{word-spacing:-16.653600px;}
.wsbc{word-spacing:-16.642800px;}
.ws2f{word-spacing:-16.626000px;}
.ws269{word-spacing:-16.615800px;}
.ws223{word-spacing:-16.605000px;}
.ws22e{word-spacing:-16.578000px;}
.ws4c{word-spacing:-16.572600px;}
.ws162{word-spacing:-16.572000px;}
.ws2a1{word-spacing:-16.551000px;}
.wsde{word-spacing:-16.540200px;}
.ws22c{word-spacing:-16.534800px;}
.ws252{word-spacing:-16.529400px;}
.wsad{word-spacing:-16.513200px;}
.ws24e{word-spacing:-16.507800px;}
.ws261{word-spacing:-16.497000px;}
.ws24b{word-spacing:-16.486200px;}
.wsb3{word-spacing:-16.480800px;}
.ws2db{word-spacing:-16.459200px;}
.ws1dd{word-spacing:-16.428000px;}
.ws289{word-spacing:-16.426800px;}
.ws2c9{word-spacing:-16.421400px;}
.ws29e{word-spacing:-16.405200px;}
.ws46{word-spacing:-16.368000px;}
.ws294{word-spacing:-16.324200px;}
.ws242{word-spacing:-16.318800px;}
.ws23f{word-spacing:-16.308000px;}
.ws2a5{word-spacing:-16.254000px;}
.ws2ce{word-spacing:-16.243200px;}
.ws1da{word-spacing:-16.224000px;}
.ws226{word-spacing:-16.216200px;}
.wsbe{word-spacing:-16.200000px;}
.ws149{word-spacing:-16.116000px;}
.ws231{word-spacing:-16.097400px;}
.ws295{word-spacing:-16.059600px;}
.ws140{word-spacing:-16.050000px;}
.ws285{word-spacing:-16.032600px;}
.ws80{word-spacing:-16.002000px;}
.ws3b{word-spacing:-15.990000px;}
.ws2d1{word-spacing:-15.984000px;}
.ws5a{word-spacing:-15.978000px;}
.ws5b{word-spacing:-15.942000px;}
.ws25b{word-spacing:-15.935400px;}
.ws41{word-spacing:-15.924000px;}
.ws13f{word-spacing:-15.882000px;}
.wsce{word-spacing:-15.876000px;}
.ws26d{word-spacing:-15.854400px;}
.ws3e{word-spacing:-15.774000px;}
.ws2c2{word-spacing:-15.773400px;}
.ws81{word-spacing:-15.768000px;}
.ws2dd{word-spacing:-15.741000px;}
.ws275{word-spacing:-15.611400px;}
.ws169{word-spacing:-15.546000px;}
.ws1ee{word-spacing:-15.508800px;}
.ws2df{word-spacing:-15.476400px;}
.ws1e9{word-spacing:-15.438600px;}
.ws10f{word-spacing:-15.433200px;}
.ws2e9{word-spacing:-15.379200px;}
.ws1b1{word-spacing:-15.366000px;}
.wse1{word-spacing:-15.363000px;}
.ws1ed{word-spacing:-15.357600px;}
.ws16c{word-spacing:-15.294000px;}
.wse2{word-spacing:-15.282000px;}
.ws1b0{word-spacing:-15.270000px;}
.ws16e{word-spacing:-15.204000px;}
.ws263{word-spacing:-15.136200px;}
.ws144{word-spacing:-15.120000px;}
.ws190{word-spacing:-15.109200px;}
.ws16d{word-spacing:-15.096000px;}
.ws23e{word-spacing:-15.082200px;}
.wsfb{word-spacing:-15.060600px;}
.ws279{word-spacing:-15.022800px;}
.ws18a{word-spacing:-14.958000px;}
.ws2c5{word-spacing:-14.952600px;}
.ws2d2{word-spacing:-14.947200px;}
.ws123{word-spacing:-14.928000px;}
.ws125{word-spacing:-14.922000px;}
.ws79{word-spacing:-14.910000px;}
.wsdc{word-spacing:-14.898600px;}
.ws85{word-spacing:-14.796000px;}
.ws29f{word-spacing:-14.790600px;}
.wsee{word-spacing:-14.740616px;}
.ws1e4{word-spacing:-14.724000px;}
.ws2c4{word-spacing:-14.709600px;}
.ws7a{word-spacing:-14.688000px;}
.ws1eb{word-spacing:-14.682600px;}
.ws39{word-spacing:-14.682000px;}
.ws67{word-spacing:-14.676000px;}
.ws7b{word-spacing:-14.616000px;}
.ws124{word-spacing:-14.604000px;}
.ws14e{word-spacing:-14.592000px;}
.ws298{word-spacing:-14.563800px;}
.ws42{word-spacing:-14.526000px;}
.ws14c{word-spacing:-14.520000px;}
.ws37{word-spacing:-14.496000px;}
.ws98{word-spacing:-14.445000px;}
.wsf0{word-spacing:-14.409420px;}
.ws5e{word-spacing:-14.400000px;}
.wsf2{word-spacing:-14.375820px;}
.ws38{word-spacing:-14.280000px;}
.ws3f{word-spacing:-14.142000px;}
.wsba{word-spacing:-14.121000px;}
.wsf9{word-spacing:-14.099400px;}
.wsbf{word-spacing:-14.072400px;}
.ws45{word-spacing:-14.058000px;}
.ws61{word-spacing:-14.016000px;}
.ws17e{word-spacing:-13.992000px;}
.wscb{word-spacing:-13.991400px;}
.ws290{word-spacing:-13.921200px;}
.wscc{word-spacing:-13.802400px;}
.ws100{word-spacing:-13.770000px;}
.ws8f{word-spacing:-13.758000px;}
.ws1bf{word-spacing:-13.728000px;}
.ws2e1{word-spacing:-13.710600px;}
.ws186{word-spacing:-13.596000px;}
.ws2de{word-spacing:-13.500000px;}
.ws119{word-spacing:-13.398000px;}
.ws21c{word-spacing:-13.392000px;}
.ws17d{word-spacing:-13.350000px;}
.ws232{word-spacing:-13.230000px;}
.ws117{word-spacing:-13.218000px;}
.ws65{word-spacing:-13.146000px;}
.ws24f{word-spacing:-13.127400px;}
.ws2e5{word-spacing:-13.068000px;}
.ws29{word-spacing:-13.050000px;}
.ws163{word-spacing:-12.918000px;}
.ws118{word-spacing:-12.906000px;}
.ws1a4{word-spacing:-12.804000px;}
.ws28e{word-spacing:-12.771000px;}
.ws1df{word-spacing:-12.756000px;}
.ws2f5{word-spacing:-12.733200px;}
.ws11c{word-spacing:-12.702000px;}
.ws18b{word-spacing:-12.648000px;}
.ws237{word-spacing:-12.641400px;}
.ws2fc{word-spacing:-12.625200px;}
.ws11e{word-spacing:-12.576000px;}
.ws132{word-spacing:-12.570000px;}
.ws11d{word-spacing:-12.564000px;}
.ws68{word-spacing:-12.534000px;}
.ws69{word-spacing:-12.528000px;}
.ws229{word-spacing:-12.495600px;}
.ws28f{word-spacing:-12.484800px;}
.ws283{word-spacing:-12.457800px;}
.ws135{word-spacing:-12.447000px;}
.ws75{word-spacing:-12.378000px;}
.ws185{word-spacing:-12.252000px;}
.wsc5{word-spacing:-12.247200px;}
.wsf{word-spacing:-12.234000px;}
.ws1b{word-spacing:-12.204000px;}
.ws2da{word-spacing:-12.193200px;}
.ws27{word-spacing:-12.156000px;}
.wsc3{word-spacing:-12.144600px;}
.wsc4{word-spacing:-12.117600px;}
.ws17f{word-spacing:-12.072000px;}
.ws239{word-spacing:-12.042000px;}
.ws104{word-spacing:-12.031200px;}
.ws206{word-spacing:-12.012000px;}
.ws1dc{word-spacing:-11.982000px;}
.wsda{word-spacing:-11.977200px;}
.ws19b{word-spacing:-11.964000px;}
.ws205{word-spacing:-11.874000px;}
.ws256{word-spacing:-11.853000px;}
.ws2c7{word-spacing:-11.847600px;}
.ws257{word-spacing:-11.842200px;}
.ws2c8{word-spacing:-11.804400px;}
.ws13a{word-spacing:-11.793600px;}
.ws1ea{word-spacing:-11.658600px;}
.ws270{word-spacing:-11.642400px;}
.wsd0{word-spacing:-11.604600px;}
.ws71{word-spacing:-11.586000px;}
.ws26f{word-spacing:-11.583000px;}
.wsc{word-spacing:-11.520000px;}
.ws2bb{word-spacing:-11.475000px;}
.ws29b{word-spacing:-11.464200px;}
.ws2d6{word-spacing:-11.367000px;}
.wsd9{word-spacing:-11.350800px;}
.ws243{word-spacing:-11.275200px;}
.ws194{word-spacing:-11.214000px;}
.ws25e{word-spacing:-11.205000px;}
.ws2e8{word-spacing:-11.124000px;}
.ws2e7{word-spacing:-11.102400px;}
.ws193{word-spacing:-11.082000px;}
.ws26c{word-spacing:-10.978200px;}
.ws122{word-spacing:-10.884000px;}
.ws18{word-spacing:-10.860000px;}
.ws192{word-spacing:-10.859400px;}
.ws84{word-spacing:-10.848000px;}
.ws191{word-spacing:-10.783800px;}
.ws1be{word-spacing:-10.716000px;}
.ws1a3{word-spacing:-10.662000px;}
.wsb5{word-spacing:-10.578600px;}
.ws1d6{word-spacing:-10.536000px;}
.ws26a{word-spacing:-10.519200px;}
.ws159{word-spacing:-10.380000px;}
.ws14f{word-spacing:-10.374000px;}
.ws156{word-spacing:-10.326000px;}
.ws1ff{word-spacing:-10.320000px;}
.ws157{word-spacing:-10.272000px;}
.ws2f1{word-spacing:-10.254600px;}
.ws2f2{word-spacing:-10.249200px;}
.ws216{word-spacing:-10.206000px;}
.ws28a{word-spacing:-10.184400px;}
.ws10c{word-spacing:-10.103400px;}
.ws15f{word-spacing:-10.032000px;}
.wsfe{word-spacing:-9.995400px;}
.ws1d4{word-spacing:-9.984000px;}
.ws10e{word-spacing:-9.968400px;}
.ws1af{word-spacing:-9.930000px;}
.ws2fa{word-spacing:-9.909000px;}
.ws10d{word-spacing:-9.838800px;}
.ws204{word-spacing:-9.768000px;}
.ws2af{word-spacing:-9.752400px;}
.wsab{word-spacing:-9.649800px;}
.wsa5{word-spacing:-9.602471px;}
.ws2eb{word-spacing:-9.585000px;}
.ws2ca{word-spacing:-9.552600px;}
.ws14b{word-spacing:-9.531245px;}
.ws1f0{word-spacing:-9.516000px;}
.ws2aa{word-spacing:-9.433800px;}
.wsca{word-spacing:-9.385200px;}
.ws245{word-spacing:-9.331200px;}
.ws241{word-spacing:-9.298800px;}
.ws5{word-spacing:-9.250200px;}
.wsf6{word-spacing:-9.244800px;}
.ws2bd{word-spacing:-9.228600px;}
.ws184{word-spacing:-9.156000px;}
.ws2ef{word-spacing:-9.050400px;}
.ws87{word-spacing:-9.030000px;}
.ws182{word-spacing:-8.934000px;}
.ws19e{word-spacing:-8.928000px;}
.ws19f{word-spacing:-8.910000px;}
.ws1fa{word-spacing:-8.850000px;}
.ws1f{word-spacing:-8.838000px;}
.ws183{word-spacing:-8.820000px;}
.ws1fe{word-spacing:-8.814000px;}
.ws20b{word-spacing:-8.790000px;}
.ws207{word-spacing:-8.778000px;}
.ws20{word-spacing:-8.772000px;}
.ws202{word-spacing:-8.742000px;}
.ws209{word-spacing:-8.736000px;}
.ws297{word-spacing:-8.721000px;}
.ws20d{word-spacing:-8.700000px;}
.ws20f{word-spacing:-8.652000px;}
.ws1ec{word-spacing:-8.634600px;}
.ws210{word-spacing:-8.610000px;}
.ws20e{word-spacing:-8.592000px;}
.ws2ba{word-spacing:-8.391600px;}
.ws29c{word-spacing:-8.337600px;}
.ws64{word-spacing:-8.304000px;}
.ws7f{word-spacing:-8.262000px;}
.ws99{word-spacing:-8.224200px;}
.wse6{word-spacing:-8.197200px;}
.ws2d4{word-spacing:-8.029800px;}
.ws287{word-spacing:-7.981200px;}
.ws264{word-spacing:-7.975800px;}
.ws2be{word-spacing:-7.970400px;}
.ws2f8{word-spacing:-7.965000px;}
.ws253{word-spacing:-7.954200px;}
.ws259{word-spacing:-7.921800px;}
.ws246{word-spacing:-7.916400px;}
.ws225{word-spacing:-7.911000px;}
.ws260{word-spacing:-7.884000px;}
.ws276{word-spacing:-7.878600px;}
.ws24c{word-spacing:-7.867800px;}
.ws22a{word-spacing:-7.840800px;}
.ws268{word-spacing:-7.835400px;}
.ws22f{word-spacing:-7.830000px;}
.ws1bc{word-spacing:-7.788000px;}
.ws1c0{word-spacing:-7.782000px;}
.ws224{word-spacing:-7.781400px;}
.ws23d{word-spacing:-7.770600px;}
.ws2f0{word-spacing:-7.749000px;}
.ws27b{word-spacing:-7.738200px;}
.ws2a2{word-spacing:-7.732800px;}
.ws2d9{word-spacing:-7.727400px;}
.ws277{word-spacing:-7.722000px;}
.ws22b{word-spacing:-7.716600px;}
.ws234{word-spacing:-7.695000px;}
.wsb1{word-spacing:-7.684200px;}
.ws2cf{word-spacing:-7.587000px;}
.ws3d{word-spacing:-7.578000px;}
.ws6{word-spacing:-7.576200px;}
.ws293{word-spacing:-7.570800px;}
.wsb2{word-spacing:-7.527600px;}
.ws1f7{word-spacing:-7.440000px;}
.ws24d{word-spacing:-7.381800px;}
.ws2d0{word-spacing:-7.230600px;}
.ws102{word-spacing:-7.176600px;}
.ws17c{word-spacing:-7.128000px;}
.ws1e6{word-spacing:-6.954000px;}
.ws2b2{word-spacing:-6.928200px;}
.ws11{word-spacing:-6.822000px;}
.ws1b4{word-spacing:-6.792000px;}
.ws1a8{word-spacing:-6.636000px;}
.ws217{word-spacing:-6.598800px;}
.ws2b3{word-spacing:-6.534000px;}
.ws1a6{word-spacing:-6.522000px;}
.ws1b5{word-spacing:-6.510000px;}
.ws133{word-spacing:-6.480000px;}
.ws28{word-spacing:-6.456000px;}
.ws1a7{word-spacing:-6.246000px;}
.ws1b6{word-spacing:-6.114000px;}
.wsb4{word-spacing:-6.048000px;}
.ws53{word-spacing:-6.044400px;}
.ws1c7{word-spacing:-6.012000px;}
.ws95{word-spacing:-6.000000px;}
.ws167{word-spacing:-5.787245px;}
.ws1b7{word-spacing:-5.760000px;}
.ws23{word-spacing:-5.682000px;}
.ws248{word-spacing:-5.637600px;}
.ws2cd{word-spacing:-5.578200px;}
.ws2a8{word-spacing:-5.545800px;}
.ws103{word-spacing:-5.540400px;}
.ws9{word-spacing:-5.524731px;}
.ws89{word-spacing:-5.508000px;}
.ws2a7{word-spacing:-5.502600px;}
.ws52{word-spacing:-5.465880px;}
.ws51{word-spacing:-5.412960px;}
.ws1ef{word-spacing:-5.154000px;}
.ws2e4{word-spacing:-5.140800px;}
.ws180{word-spacing:-5.124000px;}
.ws18c{word-spacing:-5.119200px;}
.ws54{word-spacing:-5.076000px;}
.ws1d3{word-spacing:-4.920000px;}
.ws2e2{word-spacing:-4.903200px;}
.ws2ae{word-spacing:-4.892400px;}
.ws152{word-spacing:-4.884000px;}
.ws2ad{word-spacing:-4.784400px;}
.wsff{word-spacing:-4.649400px;}
.wsac{word-spacing:-4.617000px;}
.ws165{word-spacing:-4.488000px;}
.wse7{word-spacing:-4.470000px;}
.ws16{word-spacing:-4.446000px;}
.ws138{word-spacing:-4.438800px;}
.ws160{word-spacing:-4.332000px;}
.wsb8{word-spacing:-4.136400px;}
.wsfa{word-spacing:-4.114800px;}
.wsaf{word-spacing:-3.888000px;}
.ws238{word-spacing:-3.645000px;}
.ws148{word-spacing:-3.570000px;}
.ws74{word-spacing:-3.366000px;}
.wsa0{word-spacing:-3.331800px;}
.wsc0{word-spacing:-3.218400px;}
.wsc2{word-spacing:-3.196800px;}
.ws24{word-spacing:-3.126000px;}
.ws299{word-spacing:-3.105000px;}
.ws33{word-spacing:-3.096000px;}
.wsc1{word-spacing:-2.932200px;}
.ws6c{word-spacing:-2.898000px;}
.ws8c{word-spacing:-2.820000px;}
.ws8d{word-spacing:-2.784000px;}
.ws267{word-spacing:-2.721600px;}
.ws10{word-spacing:-2.634000px;}
.ws271{word-spacing:-2.629800px;}
.ws25f{word-spacing:-2.478600px;}
.ws2b7{word-spacing:-2.165400px;}
.ws21d{word-spacing:-2.034000px;}
.ws27d{word-spacing:-1.987200px;}
.ws23b{word-spacing:-1.765800px;}
.ws14d{word-spacing:-1.709645px;}
.wse8{word-spacing:-1.494000px;}
.ws1e7{word-spacing:-1.356000px;}
.ws228{word-spacing:-1.107000px;}
.ws1d7{word-spacing:-0.960000px;}
.ws72{word-spacing:-0.882000px;}
.ws2b0{word-spacing:-0.826200px;}
.ws1de{word-spacing:-0.582000px;}
.ws2ec{word-spacing:-0.556200px;}
.ws2ea{word-spacing:-0.480600px;}
.ws196{word-spacing:-0.456000px;}
.ws150{word-spacing:-0.444000px;}
.ws127{word-spacing:-0.438000px;}
.ws2f9{word-spacing:-0.394200px;}
.ws116{word-spacing:-0.324000px;}
.ws93{word-spacing:-0.300000px;}
.ws92{word-spacing:-0.294000px;}
.ws151{word-spacing:-0.246000px;}
.ws18f{word-spacing:-0.140400px;}
.ws55{word-spacing:0.000000px;}
.ws2b9{word-spacing:0.037800px;}
.ws58{word-spacing:0.174000px;}
.ws59{word-spacing:0.210000px;}
.ws1c8{word-spacing:0.378000px;}
.wsb6{word-spacing:0.529200px;}
.ws12a{word-spacing:0.954000px;}
.ws221{word-spacing:1.036800px;}
.ws129{word-spacing:1.044000px;}
.ws1cf{word-spacing:1.068000px;}
.ws12b{word-spacing:1.146000px;}
.ws2a0{word-spacing:1.204200px;}
.ws27a{word-spacing:1.209600px;}
.ws12c{word-spacing:1.230000px;}
.ws24a{word-spacing:1.236600px;}
.wsaa{word-spacing:1.242000px;}
.ws22d{word-spacing:1.258200px;}
.ws258{word-spacing:1.263600px;}
.ws286{word-spacing:1.274400px;}
.ws2b6{word-spacing:1.285200px;}
.wsa7{word-spacing:1.296000px;}
.wse5{word-spacing:1.301400px;}
.ws15{word-spacing:1.326000px;}
.ws220{word-spacing:1.355400px;}
.ws26{word-spacing:1.362000px;}
.wsd{word-spacing:1.368000px;}
.ws2d{word-spacing:1.374000px;}
.wse3{word-spacing:1.382400px;}
.ws1cd{word-spacing:1.386000px;}
.ws1e2{word-spacing:1.392000px;}
.ws1d0{word-spacing:1.410000px;}
.ws6a{word-spacing:1.428000px;}
.ws236{word-spacing:1.436400px;}
.ws1db{word-spacing:1.440000px;}
.wsb0{word-spacing:1.447200px;}
.ws13{word-spacing:1.476000px;}
.ws2a{word-spacing:1.482000px;}
.ws12{word-spacing:1.494000px;}
.wsb7{word-spacing:1.501200px;}
.ws1e3{word-spacing:1.506000px;}
.ws7e{word-spacing:1.512000px;}
.wsc9{word-spacing:1.528200px;}
.ws14{word-spacing:1.536000px;}
.ws3c{word-spacing:1.548000px;}
.wse{word-spacing:1.560000px;}
.ws15e{word-spacing:1.578000px;}
.ws7d{word-spacing:1.590000px;}
.ws2b{word-spacing:1.596000px;}
.ws16b{word-spacing:1.626000px;}
.ws6b{word-spacing:1.638000px;}
.ws8e{word-spacing:1.644000px;}
.ws25{word-spacing:1.674000px;}
.ws32{word-spacing:1.680000px;}
.ws198{word-spacing:1.704000px;}
.ws1a5{word-spacing:1.710000px;}
.wse4{word-spacing:1.738800px;}
.ws115{word-spacing:1.800000px;}
.ws158{word-spacing:2.030755px;}
.ws155{word-spacing:2.033755px;}
.ws2b4{word-spacing:2.370600px;}
.ws2b5{word-spacing:2.489400px;}
.ws249{word-spacing:2.916000px;}
.ws215{word-spacing:4.962600px;}
.ws4{word-spacing:5.167800px;}
.ws7{word-spacing:5.238000px;}
.ws1f9{word-spacing:5.460600px;}
.ws1fc{word-spacing:5.523300px;}
.wsf4{word-spacing:5.724000px;}
.ws1fb{word-spacing:6.010200px;}
.ws114{word-spacing:6.054300px;}
.ws1f8{word-spacing:6.174000px;}
.ws97{word-spacing:6.325200px;}
.ws1e{word-spacing:8.322000px;}
.wsa{word-spacing:8.436000px;}
.ws0{word-spacing:9.598144px;}
.ws1{word-spacing:9.791942px;}
.ws4f{word-spacing:11.701800px;}
.wsa9{word-spacing:12.936337px;}
.ws21{word-spacing:16.430400px;}
.ws1ca{word-spacing:16.770600px;}
.ws4d{word-spacing:26.713800px;}
.ws49{word-spacing:31.681800px;}
.ws4b{word-spacing:58.195800px;}
.wsea{word-spacing:77.331833px;}
.wse9{word-spacing:132.415945px;}
.wsf3{word-spacing:136.851089px;}
.wsf1{word-spacing:149.906926px;}
.wsef{word-spacing:159.698804px;}
.wsec{word-spacing:182.551318px;}
.ws8{word-spacing:547.055400px;}
.wsf5{word-spacing:779.102261px;}
._d{margin-left:-2981.957925px;}
._2e{margin-left:-3.488400px;}
._16{margin-left:-1.002000px;}
._15{width:1.026000px;}
._2d{width:12.285000px;}
._e{width:13.456800px;}
._4{width:15.054000px;}
._9{width:16.986000px;}
._2{width:18.873000px;}
._29{width:19.926000px;}
._a{width:21.144000px;}
._b{width:22.854000px;}
._c{width:24.660000px;}
._2c{width:25.765200px;}
._1{width:26.886393px;}
._8{width:28.530000px;}
._2a{width:29.790000px;}
._13{width:31.128000px;}
._7{width:32.676000px;}
._14{width:33.864000px;}
._0{width:34.965394px;}
._6{width:36.972000px;}
._11{width:38.580000px;}
._10{width:39.606000px;}
._5{width:41.226000px;}
._12{width:42.900000px;}
._2b{width:79.170000px;}
._f{width:87.188280px;}
._1d{width:96.304958px;}
._1a{width:97.352192px;}
._1e{width:129.819177px;}
._23{width:140.249447px;}
._21{width:144.199797px;}
._18{width:148.068549px;}
._20{width:163.639678px;}
._1b{width:167.522706px;}
._17{width:184.327296px;}
._1f{width:190.370420px;}
._24{width:193.015310px;}
._27{width:211.144561px;}
._22{width:212.339746px;}
._1c{width:241.782578px;}
._19{width:250.960063px;}
._25{width:259.695954px;}
._26{width:439.362508px;}
._28{width:748.337400px;}
._3{width:908.857763px;}
.fc3{color:rgb(64,148,209);}
.fc2{color:rgb(31,76,161);}
.fc5{color:rgb(0,25,255);}
.fc1{color:rgb(13,84,166);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:32.158200px;}
.fsf{font-size:35.995200px;}
.fsa{font-size:36.000000px;}
.fse{font-size:36.178800px;}
.fs8{font-size:37.800000px;}
.fs7{font-size:39.995400px;}
.fsd{font-size:40.199400px;}
.fsb{font-size:42.000000px;}
.fs9{font-size:44.999400px;}
.fs4{font-size:47.999400px;}
.fsc{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs12{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fs1{font-size:77.999400px;}
.fs3{font-size:90.000000px;}
.fs0{font-size:101.999400px;}
.fs11{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:13.436250px;}
.yf5{bottom:22.621350px;}
.y55{bottom:27.553650px;}
.yf4{bottom:32.399850px;}
.y53{bottom:35.207040px;}
.y54{bottom:37.332150px;}
.y52{bottom:43.880250px;}
.y158{bottom:59.952750px;}
.y17a{bottom:59.953050px;}
.y168{bottom:59.953350px;}
.yb0{bottom:59.953500px;}
.y121{bottom:59.953650px;}
.ye1{bottom:59.953800px;}
.y1d9{bottom:59.953950px;}
.y11a{bottom:59.954250px;}
.y37{bottom:68.712000px;}
.yaf{bottom:74.834550px;}
.yad{bottom:74.834850px;}
.y221{bottom:75.089550px;}
.y2a8{bottom:75.175050px;}
.y264{bottom:75.514800px;}
.y167{bottom:76.450350px;}
.y120{bottom:76.450650px;}
.y1d8{bottom:76.450950px;}
.y165{bottom:76.451250px;}
.y179{bottom:76.451550px;}
.y119{bottom:76.706250px;}
.y1b5{bottom:78.578250px;}
.yae{bottom:80.787300px;}
.y166{bottom:83.168400px;}
.y36{bottom:85.549500px;}
.y34{bottom:85.550250px;}
.yac{bottom:89.717250px;}
.y220{bottom:90.227100px;}
.y2a7{bottom:90.312600px;}
.y263{bottom:90.482250px;}
.y35{bottom:92.182500px;}
.y164{bottom:92.948250px;}
.y178{bottom:92.948550px;}
.y11f{bottom:92.949150px;}
.y1a6{bottom:92.949750px;}
.y157{bottom:93.374250px;}
.y118{bottom:93.458250px;}
.y1b4{bottom:97.116750px;}
.y1d7{bottom:98.986950px;}
.y33{bottom:102.387750px;}
.yab{bottom:104.513250px;}
.y21f{bottom:105.278250px;}
.y2a6{bottom:105.535200px;}
.y262{bottom:105.958650px;}
.y50{bottom:107.405400px;}
.y163{bottom:109.445250px;}
.y177{bottom:109.445550px;}
.y11e{bottom:109.446150px;}
.y1a5{bottom:109.446750px;}
.y156{bottom:110.040750px;}
.y117{bottom:110.126250px;}
.y1d6{bottom:115.483950px;}
.y1b3{bottom:115.655250px;}
.y32{bottom:119.225250px;}
.ye0{bottom:119.396250px;}
.y21e{bottom:120.415800px;}
.y2a5{bottom:120.671400px;}
.y261{bottom:121.436400px;}
.y4f{bottom:123.903750px;}
.y11d{bottom:125.943750px;}
.y175{bottom:125.945250px;}
.yaa{bottom:126.113250px;}
.y155{bottom:126.794250px;}
.y116{bottom:126.879750px;}
.y1d5{bottom:131.980950px;}
.y176{bottom:132.661350px;}
.ydf{bottom:134.192250px;}
.y1b2{bottom:134.193750px;}
.y21d{bottom:135.553350px;}
.y2a4{bottom:135.723900px;}
.y31{bottom:136.064250px;}
.y260{bottom:136.912800px;}
.y4e{bottom:140.400750px;}
.y11c{bottom:142.440750px;}
.y174{bottom:142.442250px;}
.y154{bottom:143.462250px;}
.y115{bottom:143.546250px;}
.y1d4{bottom:148.481250px;}
.yde{bottom:149.074650px;}
.y21c{bottom:150.689550px;}
.y2a3{bottom:150.860100px;}
.y25f{bottom:151.965300px;}
.y1b1{bottom:152.732250px;}
.y30{bottom:152.901750px;}
.y4d{bottom:156.897750px;}
.y162{bottom:158.937750px;}
.y11b{bottom:158.939250px;}
.y153{bottom:160.128750px;}
.y114{bottom:160.299750px;}
.ya9{bottom:163.446750px;}
.ydd{bottom:163.957050px;}
.y1d3{bottom:164.978250px;}
.y21b{bottom:165.657000px;}
.y2a2{bottom:166.082700px;}
.y25e{bottom:167.443050px;}
.y2f{bottom:169.823250px;}
.y1b0{bottom:171.356250px;}
.y161{bottom:175.520250px;}
.y173{bottom:175.521750px;}
.y152{bottom:176.882250px;}
.y113{bottom:176.967750px;}
.ydc{bottom:178.753050px;}
.ya8{bottom:179.943750px;}
.y21a{bottom:180.793200px;}
.y2a1{bottom:181.220250px;}
.y1d2{bottom:181.476750px;}
.y25d{bottom:182.409150px;}
.y2d{bottom:186.494250px;}
.y1af{bottom:189.894750px;}
.y160{bottom:192.017250px;}
.y172{bottom:192.020250px;}
.y2e{bottom:193.124250px;}
.y151{bottom:193.550250px;}
.ydb{bottom:193.635450px;}
.y111{bottom:193.719750px;}
.y4b{bottom:195.165750px;}
.y219{bottom:195.930750px;}
.y2a0{bottom:196.186350px;}
.ya7{bottom:196.442250px;}
.y25c{bottom:197.886900px;}
.y1d1{bottom:197.973750px;}
.y112{bottom:200.352750px;}
.y4c{bottom:201.798750px;}
.y2c{bottom:203.331750px;}
.y129{bottom:207.580650px;}
.y1ae{bottom:208.433250px;}
.y15f{bottom:208.514250px;}
.y171{bottom:208.517250px;}
.yda{bottom:208.517850px;}
.y150{bottom:210.303750px;}
.y110{bottom:210.387750px;}
.y218{bottom:210.983250px;}
.y29f{bottom:211.408950px;}
.y4a{bottom:211.917750px;}
.ya6{bottom:212.939250px;}
.y25b{bottom:213.448350px;}
.y1d0{bottom:214.472250px;}
.y2b{bottom:220.169250px;}
.y128{bottom:222.548100px;}
.yd9{bottom:223.313850px;}
.y15e{bottom:225.012750px;}
.y170{bottom:225.014250px;}
.y217{bottom:226.119450px;}
.y29e{bottom:226.545150px;}
.y14f{bottom:226.970250px;}
.y10f{bottom:227.139750px;}
.y25a{bottom:228.415800px;}
.y48{bottom:228.671250px;}
.ya4{bottom:229.436250px;}
.y1cf{bottom:230.969250px;}
.y49{bottom:235.304250px;}
.ya5{bottom:236.154750px;}
.y2a{bottom:237.006750px;}
.y127{bottom:237.600150px;}
.yd8{bottom:238.196250px;}
.y216{bottom:241.257000px;}
.y15d{bottom:241.509750px;}
.y1a4{bottom:241.512750px;}
.y29d{bottom:241.767750px;}
.y14e{bottom:243.554250px;}
.y259{bottom:243.893550px;}
.y46{bottom:245.424750px;}
.ya3{bottom:245.933250px;}
.y1ce{bottom:247.466250px;}
.y10e{bottom:250.440750px;}
.y47{bottom:252.056250px;}
.y126{bottom:252.566250px;}
.yd7{bottom:252.992250px;}
.y29{bottom:253.844250px;}
.y215{bottom:256.393200px;}
.y29c{bottom:256.735200px;}
.y15c{bottom:258.006750px;}
.y1a3{bottom:258.009750px;}
.y258{bottom:259.369950px;}
.y1ad{bottom:259.626000px;}
.y14d{bottom:260.222250px;}
.y45{bottom:262.178250px;}
.ya1{bottom:262.433250px;}
.y1cd{bottom:263.964750px;}
.yd6{bottom:267.874050px;}
.ya2{bottom:269.150250px;}
.y28{bottom:270.681750px;}
.y214{bottom:271.360650px;}
.y29b{bottom:271.956450px;}
.y257{bottom:274.422450px;}
.y15b{bottom:274.505250px;}
.y1a2{bottom:274.506750px;}
.y1ac{bottom:274.592100px;}
.y14c{bottom:276.974250px;}
.y44{bottom:278.760750px;}
.ya0{bottom:278.930250px;}
.y1cc{bottom:280.461750px;}
.yd5{bottom:282.756450px;}
.y213{bottom:286.498200px;}
.y29a{bottom:287.094000px;}
.y27{bottom:287.604750px;}
.y10d{bottom:287.943750px;}
.y1ab{bottom:289.644600px;}
.y256{bottom:289.898850px;}
.y15a{bottom:291.002250px;}
.y1a1{bottom:291.005250px;}
.y1e0{bottom:292.282050px;}
.y14b{bottom:293.642250px;}
.y9e{bottom:295.427250px;}
.y43{bottom:295.512750px;}
.y1cb{bottom:296.958750px;}
.yd4{bottom:297.553800px;}
.y212{bottom:301.634400px;}
.y9f{bottom:302.144250px;}
.y299{bottom:302.315250px;}
.y10c{bottom:303.081300px;}
.y26{bottom:304.442250px;}
.y1aa{bottom:304.612050px;}
.y255{bottom:305.376600px;}
.y1df{bottom:307.248150px;}
.y159{bottom:307.499250px;}
.y1a0{bottom:307.502250px;}
.y14a{bottom:310.308750px;}
.y148{bottom:310.310250px;}
.y9d{bottom:312.009750px;}
.y42{bottom:312.266250px;}
.yd3{bottom:312.434850px;}
.y1ca{bottom:313.457250px;}
.y211{bottom:316.771950px;}
.y149{bottom:317.027250px;}
.y298{bottom:317.282700px;}
.y10b{bottom:318.132450px;}
.y1a9{bottom:319.663200px;}
.y254{bottom:320.853000px;}
.y25{bottom:321.279750px;}
.y1de{bottom:322.215600px;}
.y19f{bottom:324.002250px;}
.y147{bottom:327.062250px;}
.yd2{bottom:327.317250px;}
.y9c{bottom:328.506750px;}
.y9a{bottom:328.508250px;}
.y41{bottom:329.018250px;}
.y1c9{bottom:329.954250px;}
.y210{bottom:331.908150px;}
.y297{bottom:332.420250px;}
.y10a{bottom:333.184950px;}
.y1a8{bottom:334.630650px;}
.y9b{bottom:335.139750px;}
.y253{bottom:335.905500px;}
.y1dd{bottom:337.266750px;}
.y23{bottom:338.117250px;}
.y19e{bottom:340.499250px;}
.yd1{bottom:342.113550px;}
.y146{bottom:343.730250px;}
.y24{bottom:344.750250px;}
.y98{bottom:345.005250px;}
.y40{bottom:345.770250px;}
.y1c8{bottom:346.451250px;}
.y20f{bottom:346.960650px;}
.y296{bottom:347.641500px;}
.y109{bottom:348.237450px;}
.y1a7{bottom:349.596750px;}
.y252{bottom:351.383250px;}
.y99{bottom:351.638250px;}
.y16f{bottom:352.914150px;}
.y21{bottom:354.954750px;}
.yd0{bottom:356.995950px;}
.y19d{bottom:356.997750px;}
.y58{bottom:357.195000px;}
.y145{bottom:360.482250px;}
.y143{bottom:360.483750px;}
.y97{bottom:361.503750px;}
.y57{bottom:361.515000px;}
.y22{bottom:361.671750px;}
.y20e{bottom:362.098200px;}
.y3e{bottom:362.523750px;}
.y295{bottom:362.779050px;}
.y1c7{bottom:362.949750px;}
.y108{bottom:363.288600px;}
.y251{bottom:366.859650px;}
.y144{bottom:367.115250px;}
.y16e{bottom:367.881150px;}
.y3f{bottom:369.240750px;}
.y20{bottom:371.792250px;}
.ycf{bottom:371.793300px;}
.y1e{bottom:371.793750px;}
.y19c{bottom:373.494750px;}
.y142{bottom:377.150250px;}
.y20d{bottom:377.234400px;}
.y294{bottom:377.830200px;}
.y96{bottom:378.000750px;}
.y107{bottom:378.341100px;}
.y1f{bottom:378.510750px;}
.y3b{bottom:379.273500px;}
.y3d{bottom:379.275750px;}
.y1c6{bottom:379.446750px;}
.y250{bottom:382.337400px;}
.y16d{bottom:382.933650px;}
.y3c{bottom:385.994250px;}
.yce{bottom:386.674350px;}
.y1d{bottom:388.715250px;}
.y19b{bottom:389.991750px;}
.y20c{bottom:392.371950px;}
.y293{bottom:392.967750px;}
.y106{bottom:393.392250px;}
.y141{bottom:393.818250px;}
.y95{bottom:394.497750px;}
.y93{bottom:394.499250px;}
.y1c5{bottom:395.943750px;}
.y3a{bottom:396.025500px;}
.y24f{bottom:397.303500px;}
.y16c{bottom:397.899750px;}
.y94{bottom:401.130750px;}
.ycd{bottom:401.556750px;}
.y1c{bottom:405.552750px;}
.y19a{bottom:406.490250px;}
.y20b{bottom:407.338050px;}
.y292{bottom:408.190350px;}
.y105{bottom:408.444750px;}
.y140{bottom:410.570250px;}
.y13e{bottom:410.571750px;}
.y92{bottom:410.996250px;}
.y1c4{bottom:412.526250px;}
.y39{bottom:412.777500px;}
.y24e{bottom:412.866300px;}
.ycc{bottom:416.352750px;}
.y13f{bottom:417.203250px;}
.y20a{bottom:422.475600px;}
.y199{bottom:422.987250px;}
.y291{bottom:423.326550px;}
.y104{bottom:423.580950px;}
.y13d{bottom:427.238250px;}
.y91{bottom:427.493250px;}
.y8f{bottom:427.494750px;}
.y24d{bottom:428.344050px;}
.y1b{bottom:428.937750px;}
.y1c3{bottom:429.024750px;}
.y38{bottom:429.531000px;}
.ycb{bottom:431.235150px;}
.y90{bottom:434.126250px;}
.y209{bottom:437.613150px;}
.y290{bottom:438.549150px;}
.y103{bottom:438.633450px;}
.y198{bottom:439.484250px;}
.y24c{bottom:443.820450px;}
.y13c{bottom:443.906250px;}
.y8e{bottom:443.991750px;}
.y1c2{bottom:445.521750px;}
.yca{bottom:446.117550px;}
.y208{bottom:452.749350px;}
.y28f{bottom:453.515250px;}
.y102{bottom:453.685950px;}
.y197{bottom:455.982750px;}
.y24b{bottom:458.787900px;}
.y8d{bottom:460.488750px;}
.y13b{bottom:460.659750px;}
.yc9{bottom:460.913550px;}
.y1c1{bottom:462.359250px;}
.y207{bottom:467.801850px;}
.y28e{bottom:468.652800px;}
.y101{bottom:468.737100px;}
.y196{bottom:472.479750px;}
.y24a{bottom:474.264300px;}
.yc8{bottom:475.795950px;}
.y8b{bottom:476.987250px;}
.y13a{bottom:477.326250px;}
.y1a{bottom:481.325250px;}
.y206{bottom:482.938050px;}
.y8c{bottom:483.618750px;}
.y100{bottom:483.789600px;}
.y28d{bottom:483.875400px;}
.y195{bottom:488.976750px;}
.y249{bottom:489.742050px;}
.y1c0{bottom:489.996750px;}
.yc7{bottom:490.593300px;}
.y8a{bottom:493.484250px;}
.y139{bottom:493.994250px;}
.y19{bottom:497.823750px;}
.y205{bottom:498.075600px;}
.yfd{bottom:498.840600px;}
.yff{bottom:498.840750px;}
.y28c{bottom:499.011600px;}
.y248{bottom:504.793200px;}
.yfe{bottom:504.878250px;}
.yc6{bottom:505.474350px;}
.y194{bottom:505.475250px;}
.y1bf{bottom:506.495250px;}
.y89{bottom:509.981250px;}
.y137{bottom:510.746250px;}
.y204{bottom:513.043050px;}
.yfc{bottom:513.893100px;}
.y28b{bottom:514.064100px;}
.y138{bottom:517.379250px;}
.y18{bottom:518.828250px;}
.y247{bottom:520.270950px;}
.yc5{bottom:520.356750px;}
.y193{bottom:521.972250px;}
.y1be{bottom:522.993750px;}
.y88{bottom:526.479750px;}
.y135{bottom:527.414250px;}
.y203{bottom:528.179250px;}
.yfb{bottom:528.944250px;}
.y28a{bottom:529.200300px;}
.y136{bottom:534.047250px;}
.yc4{bottom:535.152750px;}
.y17{bottom:535.325250px;}
.y246{bottom:535.748700px;}
.y192{bottom:538.469250px;}
.y1bd{bottom:539.490750px;}
.y87{bottom:542.976750px;}
.y202{bottom:543.316800px;}
.y134{bottom:544.082250px;}
.yf9{bottom:544.083450px;}
.y289{bottom:544.252800px;}
.yfa{bottom:550.034250px;}
.yc3{bottom:550.035450px;}
.y245{bottom:551.225100px;}
.y16{bottom:551.823750px;}
.y1bc{bottom:555.987750px;}
.y201{bottom:558.367950px;}
.yf8{bottom:559.134600px;}
.y288{bottom:559.390350px;}
.y86{bottom:559.473750px;}
.y191{bottom:560.069250px;}
.y133{bottom:560.834250px;}
.yc2{bottom:564.917850px;}
.y244{bottom:566.277600px;}
.y15{bottom:568.320750px;}
.y1bb{bottom:572.825250px;}
.y200{bottom:573.505500px;}
.yf7{bottom:574.187100px;}
.y287{bottom:574.611600px;}
.y85{bottom:575.972250px;}
.y132{bottom:577.502250px;}
.yc1{bottom:579.713850px;}
.y243{bottom:581.754000px;}
.y14{bottom:584.817750px;}
.y1ba{bottom:587.366250px;}
.y1ff{bottom:588.643050px;}
.yf6{bottom:589.238250px;}
.y286{bottom:589.749150px;}
.y84{bottom:592.469250px;}
.y190{bottom:592.470750px;}
.y131{bottom:594.255750px;}
.yc0{bottom:594.596250px;}
.y242{bottom:597.231750px;}
.y13{bottom:601.316250px;}
.y1fe{bottom:603.779250px;}
.y285{bottom:604.715250px;}
.y83{bottom:608.966250px;}
.y18f{bottom:608.967750px;}
.y81{bottom:608.969250px;}
.ybf{bottom:609.392250px;}
.ybd{bottom:609.392700px;}
.y130{bottom:610.923750px;}
.y241{bottom:612.708150px;}
.ybe{bottom:615.429750px;}
.y82{bottom:615.599250px;}
.y12{bottom:617.813250px;}
.y1fd{bottom:618.746700px;}
.y284{bottom:619.937850px;}
.y125{bottom:620.023050px;}
.ybc{bottom:624.273750px;}
.yba{bottom:624.274500px;}
.y1b9{bottom:625.209750px;}
.y18e{bottom:625.464750px;}
.y80{bottom:625.466250px;}
.y12f{bottom:627.590250px;}
.y240{bottom:627.760650px;}
.ybb{bottom:630.311250px;}
.y1fc{bottom:633.882900px;}
.y11{bottom:634.310250px;}
.y124{bottom:634.989150px;}
.y283{bottom:635.075400px;}
.yb9{bottom:639.155550px;}
.y1b8{bottom:641.706750px;}
.y18d{bottom:641.963250px;}
.y7f{bottom:641.964750px;}
.y23f{bottom:643.238400px;}
.y12e{bottom:644.343750px;}
.y1fb{bottom:649.020450px;}
.y123{bottom:649.956600px;}
.y282{bottom:650.296650px;}
.y10{bottom:650.808750px;}
.yb8{bottom:653.952900px;}
.y18c{bottom:658.460250px;}
.y7e{bottom:658.461750px;}
.y1b7{bottom:658.544250px;}
.y23e{bottom:658.714800px;}
.y12d{bottom:661.013250px;}
.y1fa{bottom:664.158000px;}
.y122{bottom:665.007750px;}
.y281{bottom:665.434200px;}
.yf{bottom:667.305750px;}
.yb7{bottom:668.835300px;}
.y1b6{bottom:673.001250px;}
.y23d{bottom:674.192550px;}
.y7d{bottom:674.958750px;}
.y12c{bottom:677.679750px;}
.y1f9{bottom:679.209150px;}
.y280{bottom:680.485350px;}
.yb6{bottom:683.716350px;}
.ye{bottom:683.802750px;}
.y23c{bottom:689.668950px;}
.y7c{bottom:691.457250px;}
.y1f8{bottom:694.346700px;}
.y12b{bottom:694.433250px;}
.y27f{bottom:695.622900px;}
.yb5{bottom:698.513700px;}
.yd{bottom:700.301250px;}
.y23b{bottom:704.636400px;}
.y7b{bottom:707.954250px;}
.y1f7{bottom:709.482900px;}
.y27e{bottom:710.845500px;}
.y12a{bottom:711.099750px;}
.y1dc{bottom:712.035150px;}
.yb4{bottom:713.396250px;}
.yc{bottom:716.798250px;}
.y23a{bottom:720.197850px;}
.y7a{bottom:724.451250px;}
.y1f6{bottom:724.620450px;}
.y27d{bottom:725.981700px;}
.y1db{bottom:727.002600px;}
.yb3{bottom:728.192700px;}
.yb{bottom:733.295250px;}
.y239{bottom:735.675600px;}
.y1f5{bottom:739.587900px;}
.y27c{bottom:740.949150px;}
.y79{bottom:740.949750px;}
.y1da{bottom:742.053750px;}
.yb2{bottom:743.073750px;}
.y16b{bottom:743.329650px;}
.ya{bottom:749.793750px;}
.y238{bottom:751.153350px;}
.y1f4{bottom:754.724100px;}
.y27b{bottom:756.170400px;}
.y78{bottom:757.446750px;}
.yb1{bottom:757.954800px;}
.y16a{bottom:758.382150px;}
.y9{bottom:766.290750px;}
.y237{bottom:766.629750px;}
.y1f3{bottom:769.861650px;}
.y27a{bottom:771.307950px;}
.y169{bottom:773.348250px;}
.y76{bottom:773.943750px;}
.y77{bottom:780.660750px;}
.y236{bottom:781.597200px;}
.y8{bottom:782.787750px;}
.y1f2{bottom:784.912800px;}
.y279{bottom:786.360450px;}
.y74{bottom:790.440750px;}
.y18b{bottom:790.442250px;}
.yf2{bottom:795.627750px;}
.y235{bottom:797.158650px;}
.y75{bottom:797.159250px;}
.y1f1{bottom:800.050350px;}
.y278{bottom:801.496650px;}
.y73{bottom:806.939250px;}
.yf1{bottom:812.040750px;}
.y234{bottom:812.636400px;}
.y1f0{bottom:815.187900px;}
.y277{bottom:816.719250px;}
.y7{bottom:817.994250px;}
.y72{bottom:823.436250px;}
.y233{bottom:828.112800px;}
.yf0{bottom:828.453750px;}
.y1ef{bottom:830.154000px;}
.y276{bottom:831.685350px;}
.y18a{bottom:839.929050px;}
.y71{bottom:839.933250px;}
.y232{bottom:843.080250px;}
.yef{bottom:844.866750px;}
.y1ee{bottom:845.291550px;}
.y275{bottom:846.822900px;}
.y189{bottom:856.511550px;}
.y70{bottom:856.515750px;}
.y231{bottom:858.558000px;}
.y1ed{bottom:860.427750px;}
.yee{bottom:861.279055px;}
.y274{bottom:862.045500px;}
.y6{bottom:871.908750px;}
.y188{bottom:873.008550px;}
.y6e{bottom:873.014250px;}
.y230{bottom:874.119450px;}
.y1ec{bottom:875.565300px;}
.y273{bottom:877.181700px;}
.yed{bottom:877.692055px;}
.y2b6{bottom:878.967750px;}
.y6f{bottom:879.647250px;}
.y187{bottom:889.505550px;}
.y6d{bottom:889.511250px;}
.y22f{bottom:889.597200px;}
.y1eb{bottom:890.617800px;}
.y272{bottom:892.404300px;}
.y2b5{bottom:894.020250px;}
.yec{bottom:894.104754px;}
.y22e{bottom:904.563300px;}
.y1ea{bottom:905.754000px;}
.y186{bottom:906.004050px;}
.y6b{bottom:906.009750px;}
.y271{bottom:907.370400px;}
.y2b4{bottom:908.986350px;}
.yeb{bottom:910.431750px;}
.y6c{bottom:912.642750px;}
.y22d{bottom:920.041050px;}
.y1e9{bottom:920.891550px;}
.y185{bottom:922.501050px;}
.y6a{bottom:922.508250px;}
.y270{bottom:922.593000px;}
.y2b3{bottom:923.953800px;}
.y5{bottom:923.953962px;}
.yea{bottom:926.844750px;}
.y22c{bottom:935.518800px;}
.y1e8{bottom:936.027750px;}
.y26f{bottom:937.730550px;}
.y184{bottom:938.998050px;}
.y2b2{bottom:939.004950px;}
.y69{bottom:939.005250px;}
.ye9{bottom:943.256250px;}
.y4{bottom:944.957250px;}
.y22b{bottom:950.568600px;}
.y1e7{bottom:951.761250px;}
.y26e{bottom:952.781700px;}
.y2b1{bottom:953.972400px;}
.y183{bottom:955.496550px;}
.y67{bottom:955.502250px;}
.ye8{bottom:959.669250px;}
.y68{bottom:962.135250px;}
.y22a{bottom:966.046350px;}
.y26d{bottom:967.919250px;}
.y2b0{bottom:968.939850px;}
.y182{bottom:971.993550px;}
.y66{bottom:971.999250px;}
.y64{bottom:972.000750px;}
.y3{bottom:974.978709px;}
.ye7{bottom:976.082250px;}
.y65{bottom:978.633750px;}
.y229{bottom:981.522750px;}
.y26c{bottom:983.055450px;}
.y2af{bottom:983.991000px;}
.y181{bottom:988.490550px;}
.y63{bottom:988.497750px;}
.y61{bottom:988.499250px;}
.ye6{bottom:992.494893px;}
.y62{bottom:995.130750px;}
.y1e6{bottom:995.216250px;}
.y228{bottom:996.490200px;}
.y26b{bottom:998.278050px;}
.y2ae{bottom:998.958450px;}
.y2{bottom:1002.018750px;}
.y180{bottom:1004.989050px;}
.y60{bottom:1004.996250px;}
.ye5{bottom:1011.969860px;}
.y227{bottom:1012.051650px;}
.y26a{bottom:1013.245500px;}
.y2ad{bottom:1014.009600px;}
.y1e5{bottom:1014.093750px;}
.y17f{bottom:1021.486050px;}
.y5e{bottom:1021.493250px;}
.y226{bottom:1027.529400px;}
.y5f{bottom:1028.126250px;}
.y269{bottom:1028.466750px;}
.y2ac{bottom:1028.977050px;}
.y1e4{bottom:1036.121250px;}
.y17e{bottom:1037.984550px;}
.y5d{bottom:1037.990250px;}
.y225{bottom:1043.007150px;}
.y268{bottom:1043.604300px;}
.y2ab{bottom:1043.944500px;}
.ye4{bottom:1044.794250px;}
.y51{bottom:1050.746250px;}
.y1e3{bottom:1052.787750px;}
.y17d{bottom:1054.481550px;}
.y5c{bottom:1054.488750px;}
.y224{bottom:1058.483550px;}
.y267{bottom:1058.825550px;}
.y2aa{bottom:1058.995650px;}
.y1e2{bottom:1069.370250px;}
.ye3{bottom:1070.220750px;}
.y17c{bottom:1070.978550px;}
.y5b{bottom:1070.985750px;}
.y223{bottom:1073.451000px;}
.y266{bottom:1073.793000px;}
.y2a9{bottom:1073.963100px;}
.ye2{bottom:1086.717750px;}
.y56{bottom:1087.350000px;}
.y17b{bottom:1087.477050px;}
.y59{bottom:1087.482750px;}
.y1e1{bottom:1088.249250px;}
.y222{bottom:1089.012450px;}
.y265{bottom:1089.014250px;}
.y5a{bottom:1094.117250px;}
.yf3{bottom:1117.502250px;}
.he{height:25.560000px;}
.hd{height:26.838000px;}
.h13{height:28.040261px;}
.ha{height:31.156417px;}
.h20{height:32.444567px;}
.hc{height:34.079574px;}
.h19{height:37.391533px;}
.h5{height:38.934000px;}
.h28{height:41.097000px;}
.h18{height:41.580000px;}
.hb{height:42.066000px;}
.h1f{height:43.260000px;}
.h1b{height:43.752797px;}
.h1e{height:43.756017px;}
.h1d{height:43.759238px;}
.h1c{height:43.760664px;}
.hf{height:43.804688px;}
.h9{height:45.423000px;}
.h8{height:45.840000px;}
.h29{height:46.734000px;}
.h7{height:46.740000px;}
.h26{height:46.756800px;}
.h11{height:47.109375px;}
.h2a{height:48.513600px;}
.h15{height:49.267285px;}
.h16{height:49.268485px;}
.h14{height:49.271485px;}
.h12{height:49.272085px;}
.h17{height:49.273285px;}
.h4{height:54.053584px;}
.h25{height:54.439333px;}
.h23{height:54.775333px;}
.h21{height:54.781333px;}
.h22{height:54.783733px;}
.h24{height:54.787333px;}
.h6{height:64.863281px;}
.h3{height:73.541567px;}
.h1a{height:85.352533px;}
.h27{height:149.568000px;}
.h2{height:1174.479000px;}
.h10{height:1201.350000px;}
.h0{height:1201.351500px;}
.h1{height:1201.500000px;}
.w2{width:884.239500px;}
.w0{width:911.112000px;}
.w1{width:911.250000px;}
.x0{left:0.000000px;}
.x1{left:13.436250px;}
.x1f{left:27.000000px;}
.x2{left:63.779400px;}
.x5b{left:69.732150px;}
.xd{left:77.215650px;}
.x33{left:86.399850px;}
.x3{left:99.325950px;}
.x34{left:101.366850px;}
.x20{left:107.064450px;}
.x3f{left:108.680250px;}
.x5{left:113.782500px;}
.x21{left:122.541600px;}
.x40{left:125.688150px;}
.xa{left:127.899150px;}
.x53{left:131.470800px;}
.xb{left:139.974750px;}
.x38{left:144.227250px;}
.x2f{left:150.860250px;}
.x54{left:153.836250px;}
.x50{left:157.238250px;}
.x8{left:163.785750px;}
.x2c{left:176.711250px;}
.x30{left:181.133250px;}
.x24{left:185.216250px;}
.x9{left:187.341750px;}
.x2d{left:192.699750px;}
.x51{left:198.227250px;}
.x25{left:200.267250px;}
.x52{left:211.322250px;}
.x3d{left:215.405250px;}
.x3b{left:225.779250px;}
.x22{left:229.436250px;}
.x3e{left:235.218750px;}
.x26{left:236.579250px;}
.x3c{left:241.427250px;}
.x23{left:245.933250px;}
.x4f{left:259.455750px;}
.x27{left:266.258250px;}
.x1a{left:269.489250px;}
.x43{left:275.357250px;}
.xc{left:279.354750px;}
.x44{left:288.453750px;}
.x28{left:295.341750px;}
.x1b{left:298.827720px;}
.xe{left:304.016250px;}
.x29{left:312.179250px;}
.xf{left:322.979250px;}
.x35{left:328.761750px;}
.x37{left:330.972750px;}
.x55{left:337.946250px;}
.x36{left:345.515250px;}
.x2a{left:349.427250px;}
.x56{left:354.273750px;}
.x2b{left:366.264750px;}
.x39{left:382.166250px;}
.x32{left:384.293250px;}
.x41{left:388.289250px;}
.x31{left:394.581750px;}
.x6{left:397.133250px;}
.x3a{left:400.449750px;}
.x42{left:408.699750px;}
.x7{left:411.504750px;}
.x2e{left:412.866750px;}
.x4e{left:413.970750px;}
.x4d{left:429.704250px;}
.x10{left:459.720750px;}
.x4a{left:463.211089px;}
.x5c{left:465.760050px;}
.x14{left:473.243250px;}
.x58{left:474.774750px;}
.x45{left:480.983250px;}
.x59{left:486.764250px;}
.x4{left:492.717750px;}
.x5a{left:498.755250px;}
.x46{left:499.776750px;}
.x11{left:508.535250px;}
.x12{left:540.084750px;}
.x4b{left:553.946755px;}
.x1e{left:608.550000px;}
.x1d{left:644.343450px;}
.x1c{left:665.432250px;}
.x47{left:706.506750px;}
.x48{left:723.005250px;}
.x49{left:738.311250px;}
.x4c{left:750.301500px;}
.x19{left:777.005250px;}
.x57{left:779.640750px;}
.x17{left:782.871750px;}
.x15{left:790.610250px;}
.x13{left:796.053750px;}
.x18{left:798.689250px;}
.x16{left:814.251750px;}
@media print{
.v2{vertical-align:-32.960320pt;}
.v3{vertical-align:-10.880000pt;}
.v5{vertical-align:-9.674667pt;}
.v9{vertical-align:-8.468065pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:1.814400pt;}
.v1{vertical-align:5.440000pt;}
.v6{vertical-align:9.675733pt;}
.vc{vertical-align:10.579200pt;}
.v8{vertical-align:16.623608pt;}
.v4{vertical-align:18.745600pt;}
.va{vertical-align:20.858667pt;}
.v7{vertical-align:42.632000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.004175pt;}
.ls6a{letter-spacing:0.014400pt;}
.ls6b{letter-spacing:0.028800pt;}
.ls25{letter-spacing:0.070391pt;}
.ls19{letter-spacing:0.081600pt;}
.ls14{letter-spacing:0.111014pt;}
.ls2e{letter-spacing:0.128000pt;}
.ls4a{letter-spacing:0.129600pt;}
.ls1{letter-spacing:0.154667pt;}
.ls46{letter-spacing:0.170667pt;}
.ls0{letter-spacing:0.208000pt;}
.ls45{letter-spacing:0.225854pt;}
.ls47{letter-spacing:0.228521pt;}
.ls11{letter-spacing:0.266667pt;}
.ls5f{letter-spacing:0.292800pt;}
.ls4e{letter-spacing:0.336000pt;}
.lsb{letter-spacing:0.380401pt;}
.ls18{letter-spacing:0.415014pt;}
.ls6{letter-spacing:0.426667pt;}
.ls12{letter-spacing:0.474667pt;}
.ls6f{letter-spacing:0.475200pt;}
.ls24{letter-spacing:0.479168pt;}
.ls16{letter-spacing:0.480000pt;}
.lsd{letter-spacing:0.576000pt;}
.ls5{letter-spacing:0.608000pt;}
.ls62{letter-spacing:0.619200pt;}
.ls4{letter-spacing:0.624000pt;}
.ls4d{letter-spacing:0.757333pt;}
.ls8{letter-spacing:0.762667pt;}
.ls71{letter-spacing:0.777600pt;}
.ls6e{letter-spacing:0.820800pt;}
.ls7{letter-spacing:0.885333pt;}
.ls27{letter-spacing:0.906667pt;}
.ls7c{letter-spacing:0.907200pt;}
.ls1c{letter-spacing:0.936000pt;}
.ls54{letter-spacing:0.965333pt;}
.ls74{letter-spacing:0.993600pt;}
.ls9{letter-spacing:1.018667pt;}
.ls20{letter-spacing:1.132800pt;}
.ls3{letter-spacing:1.162667pt;}
.ls58{letter-spacing:1.200000pt;}
.ls57{letter-spacing:1.280000pt;}
.ls59{letter-spacing:1.397333pt;}
.ls10{letter-spacing:1.429333pt;}
.ls4c{letter-spacing:1.560709pt;}
.ls2{letter-spacing:1.669333pt;}
.ls3f{letter-spacing:1.688533pt;}
.ls40{letter-spacing:1.737854pt;}
.lse{letter-spacing:1.738667pt;}
.ls41{letter-spacing:1.754667pt;}
.lsf{letter-spacing:1.776000pt;}
.ls65{letter-spacing:1.838400pt;}
.ls1b{letter-spacing:1.920000pt;}
.ls7b{letter-spacing:3.628800pt;}
.ls70{letter-spacing:11.496000pt;}
.ls13{letter-spacing:11.604348pt;}
.ls7d{letter-spacing:11.798400pt;}
.ls1e{letter-spacing:11.908348pt;}
.ls15{letter-spacing:12.216000pt;}
.ls75{letter-spacing:12.403200pt;}
.ls79{letter-spacing:12.528000pt;}
.ls78{letter-spacing:13.008000pt;}
.ls28{letter-spacing:13.034667pt;}
.ls34{letter-spacing:13.045333pt;}
.ls6c{letter-spacing:13.310400pt;}
.ls2a{letter-spacing:13.317333pt;}
.ls29{letter-spacing:13.333333pt;}
.ls2b{letter-spacing:13.529854pt;}
.ls48{letter-spacing:14.137854pt;}
.ls36{letter-spacing:14.245333pt;}
.ls49{letter-spacing:14.266667pt;}
.ls22{letter-spacing:14.416886pt;}
.ls23{letter-spacing:14.421153pt;}
.ls72{letter-spacing:14.520000pt;}
.ls52{letter-spacing:14.570667pt;}
.ls55{letter-spacing:15.343187pt;}
.ls56{letter-spacing:15.356886pt;}
.ls38{letter-spacing:15.466667pt;}
.ls76{letter-spacing:15.724800pt;}
.ls63{letter-spacing:15.729600pt;}
.ls69{letter-spacing:15.849600pt;}
.ls68{letter-spacing:15.854400pt;}
.ls61{letter-spacing:16.027200pt;}
.ls60{letter-spacing:16.032000pt;}
.ls64{letter-spacing:16.156800pt;}
.ls77{letter-spacing:16.334400pt;}
.ls5c{letter-spacing:16.682667pt;}
.ls1f{letter-spacing:17.044348pt;}
.ls5d{letter-spacing:17.589333pt;}
.ls51{letter-spacing:17.669333pt;}
.ls44{letter-spacing:17.778219pt;}
.ls43{letter-spacing:17.872000pt;}
.ls42{letter-spacing:17.882667pt;}
.ls5b{letter-spacing:17.893333pt;}
.lsc{letter-spacing:18.067454pt;}
.ls1d{letter-spacing:18.264000pt;}
.ls53{letter-spacing:18.367187pt;}
.ls7a{letter-spacing:18.451200pt;}
.ls4f{letter-spacing:18.665854pt;}
.ls66{letter-spacing:19.358400pt;}
.ls67{letter-spacing:19.483200pt;}
.ls32{letter-spacing:19.968000pt;}
.ls31{letter-spacing:19.989333pt;}
.ls33{letter-spacing:20.180521pt;}
.ls6d{letter-spacing:20.260800pt;}
.ls26{letter-spacing:20.367014pt;}
.ls30{letter-spacing:20.372348pt;}
.ls37{letter-spacing:21.200000pt;}
.ls4b{letter-spacing:21.279014pt;}
.ls1a{letter-spacing:21.288000pt;}
.ls39{letter-spacing:24.731286pt;}
.ls3c{letter-spacing:24.732886pt;}
.ls3b{letter-spacing:24.826667pt;}
.ls3a{letter-spacing:24.837333pt;}
.ls73{letter-spacing:25.099200pt;}
.ls50{letter-spacing:28.041854pt;}
.ls35{letter-spacing:31.081153pt;}
.ls17{letter-spacing:33.076800pt;}
.ls5e{letter-spacing:33.545067pt;}
.ls5a{letter-spacing:33.850667pt;}
.ls2d{letter-spacing:34.784000pt;}
.ls2f{letter-spacing:34.996521pt;}
.ls2c{letter-spacing:35.104000pt;}
.ls3e{letter-spacing:39.018667pt;}
.ls3d{letter-spacing:39.034667pt;}
.ws5f{word-spacing:-34.080000pt;}
.wsa8{word-spacing:-31.152000pt;}
.ws9b{word-spacing:-30.672000pt;}
.wseb{word-spacing:-27.263659pt;}
.ws2e3{word-spacing:-22.848000pt;}
.ws60{word-spacing:-22.833259pt;}
.ws17{word-spacing:-21.818667pt;}
.ws188{word-spacing:-21.717333pt;}
.wsb{word-spacing:-21.685333pt;}
.ws13d{word-spacing:-21.536000pt;}
.ws19c{word-spacing:-21.461333pt;}
.ws1a2{word-spacing:-21.456000pt;}
.ws141{word-spacing:-21.354667pt;}
.ws77{word-spacing:-21.312000pt;}
.ws30{word-spacing:-21.274667pt;}
.ws146{word-spacing:-21.226667pt;}
.ws1f1{word-spacing:-21.189333pt;}
.ws1cb{word-spacing:-21.152000pt;}
.ws142{word-spacing:-21.146667pt;}
.ws19d{word-spacing:-21.141333pt;}
.ws15b{word-spacing:-21.136000pt;}
.ws15a{word-spacing:-21.072000pt;}
.ws147{word-spacing:-21.066667pt;}
.ws11a{word-spacing:-20.981333pt;}
.ws1a0{word-spacing:-20.938667pt;}
.ws11b{word-spacing:-20.917333pt;}
.ws15d{word-spacing:-20.853333pt;}
.ws1f2{word-spacing:-20.773333pt;}
.ws1a1{word-spacing:-20.757333pt;}
.ws181{word-spacing:-20.730667pt;}
.ws197{word-spacing:-20.608000pt;}
.wsa2{word-spacing:-20.549558pt;}
.ws15c{word-spacing:-20.549333pt;}
.ws34{word-spacing:-20.528000pt;}
.ws175{word-spacing:-20.474667pt;}
.ws128{word-spacing:-20.357333pt;}
.ws82{word-spacing:-20.314667pt;}
.ws21e{word-spacing:-20.288000pt;}
.ws13e{word-spacing:-20.250667pt;}
.ws187{word-spacing:-20.165333pt;}
.ws50{word-spacing:-20.095749pt;}
.ws173{word-spacing:-20.069333pt;}
.ws1a{word-spacing:-20.064000pt;}
.ws19{word-spacing:-20.053333pt;}
.ws6f{word-spacing:-19.984000pt;}
.ws170{word-spacing:-19.978667pt;}
.ws43{word-spacing:-19.946667pt;}
.ws14a{word-spacing:-19.925333pt;}
.ws1ba{word-spacing:-19.920000pt;}
.ws17a{word-spacing:-19.850667pt;}
.ws172{word-spacing:-19.802667pt;}
.ws171{word-spacing:-19.770667pt;}
.ws17b{word-spacing:-19.760000pt;}
.ws78{word-spacing:-19.754667pt;}
.ws176{word-spacing:-19.749333pt;}
.ws16f{word-spacing:-19.733333pt;}
.ws70{word-spacing:-19.712000pt;}
.wsfc{word-spacing:-19.632000pt;}
.ws1e1{word-spacing:-19.621333pt;}
.ws22{word-spacing:-19.584000pt;}
.ws1bb{word-spacing:-19.552000pt;}
.ws5c{word-spacing:-19.514667pt;}
.ws23a{word-spacing:-19.502400pt;}
.ws250{word-spacing:-19.449600pt;}
.ws280{word-spacing:-19.411200pt;}
.ws2c0{word-spacing:-19.401600pt;}
.ws218{word-spacing:-19.396800pt;}
.ws5d{word-spacing:-19.344000pt;}
.ws136{word-spacing:-19.228800pt;}
.ws2f4{word-spacing:-19.209600pt;}
.ws96{word-spacing:-19.205333pt;}
.ws9a{word-spacing:-19.156800pt;}
.ws2fb{word-spacing:-19.147200pt;}
.ws2a3{word-spacing:-19.123200pt;}
.ws2bf{word-spacing:-19.118400pt;}
.wsd1{word-spacing:-19.099200pt;}
.ws2cb{word-spacing:-19.070400pt;}
.ws9c{word-spacing:-19.056000pt;}
.ws134{word-spacing:-19.041600pt;}
.ws12f{word-spacing:-19.029333pt;}
.wsf8{word-spacing:-19.022400pt;}
.ws282{word-spacing:-19.012800pt;}
.ws28d{word-spacing:-18.993600pt;}
.ws12e{word-spacing:-18.965333pt;}
.ws274{word-spacing:-18.964800pt;}
.wsf7{word-spacing:-18.960000pt;}
.ws153{word-spacing:-18.954667pt;}
.ws154{word-spacing:-18.949333pt;}
.wsd2{word-spacing:-18.926400pt;}
.ws126{word-spacing:-18.912000pt;}
.ws2b1{word-spacing:-18.902400pt;}
.ws1d9{word-spacing:-18.890667pt;}
.wsc8{word-spacing:-18.883200pt;}
.ws25c{word-spacing:-18.854400pt;}
.ws130{word-spacing:-18.848000pt;}
.ws1d8{word-spacing:-18.837333pt;}
.ws35{word-spacing:-18.810667pt;}
.ws1ad{word-spacing:-18.805333pt;}
.wsd3{word-spacing:-18.801600pt;}
.ws25d{word-spacing:-18.768000pt;}
.ws1ae{word-spacing:-18.757333pt;}
.wsa4{word-spacing:-18.748800pt;}
.wsa6{word-spacing:-18.715200pt;}
.wsc6{word-spacing:-18.705600pt;}
.ws2cc{word-spacing:-18.667200pt;}
.ws131{word-spacing:-18.666667pt;}
.ws1e5{word-spacing:-18.661333pt;}
.wsc7{word-spacing:-18.638400pt;}
.ws2d7{word-spacing:-18.614400pt;}
.ws47{word-spacing:-18.565333pt;}
.ws266{word-spacing:-18.547200pt;}
.ws1f5{word-spacing:-18.442667pt;}
.ws6e{word-spacing:-18.394667pt;}
.ws94{word-spacing:-18.357333pt;}
.ws12d{word-spacing:-18.352000pt;}
.ws272{word-spacing:-18.331200pt;}
.ws2c6{word-spacing:-18.326400pt;}
.ws101{word-spacing:-18.321600pt;}
.ws284{word-spacing:-18.316800pt;}
.ws195{word-spacing:-18.288000pt;}
.wsed{word-spacing:-18.265858pt;}
.ws36{word-spacing:-18.229333pt;}
.ws2c1{word-spacing:-18.206400pt;}
.ws174{word-spacing:-18.138667pt;}
.ws2d5{word-spacing:-18.086400pt;}
.ws29a{word-spacing:-18.067200pt;}
.ws121{word-spacing:-18.058667pt;}
.ws9d{word-spacing:-18.057600pt;}
.ws3a{word-spacing:-18.053333pt;}
.ws9f{word-spacing:-17.956800pt;}
.ws57{word-spacing:-17.898667pt;}
.ws18d{word-spacing:-17.884800pt;}
.ws76{word-spacing:-17.861333pt;}
.ws2d3{word-spacing:-17.827200pt;}
.ws288{word-spacing:-17.822400pt;}
.ws247{word-spacing:-17.812800pt;}
.ws1a9{word-spacing:-17.733333pt;}
.ws9e{word-spacing:-17.726400pt;}
.ws105{word-spacing:-17.721600pt;}
.wsd5{word-spacing:-17.716800pt;}
.ws2e{word-spacing:-17.712000pt;}
.ws56{word-spacing:-17.706667pt;}
.ws227{word-spacing:-17.688000pt;}
.ws1aa{word-spacing:-17.653333pt;}
.ws18e{word-spacing:-17.649600pt;}
.ws108{word-spacing:-17.616000pt;}
.ws2e6{word-spacing:-17.577600pt;}
.ws273{word-spacing:-17.558400pt;}
.ws107{word-spacing:-17.534400pt;}
.ws1cc{word-spacing:-17.530667pt;}
.ws139{word-spacing:-17.505600pt;}
.ws251{word-spacing:-17.481600pt;}
.ws26b{word-spacing:-17.472000pt;}
.ws199{word-spacing:-17.440000pt;}
.ws106{word-spacing:-17.424000pt;}
.ws143{word-spacing:-17.402667pt;}
.ws2dc{word-spacing:-17.395200pt;}
.ws1c3{word-spacing:-17.392000pt;}
.ws1ac{word-spacing:-17.344000pt;}
.ws83{word-spacing:-17.333333pt;}
.ws1d5{word-spacing:-17.312000pt;}
.wsd4{word-spacing:-17.299200pt;}
.wsa3{word-spacing:-17.260800pt;}
.ws255{word-spacing:-17.232000pt;}
.ws1ab{word-spacing:-17.226667pt;}
.wsa1{word-spacing:-17.203200pt;}
.ws8b{word-spacing:-17.146667pt;}
.ws8a{word-spacing:-17.109333pt;}
.ws164{word-spacing:-17.104000pt;}
.ws203{word-spacing:-17.082667pt;}
.wsd7{word-spacing:-17.044800pt;}
.ws1e0{word-spacing:-17.034667pt;}
.wsdb{word-spacing:-17.001600pt;}
.ws281{word-spacing:-16.987200pt;}
.wsd6{word-spacing:-16.963200pt;}
.ws66{word-spacing:-16.922667pt;}
.ws1d2{word-spacing:-16.901333pt;}
.ws2f7{word-spacing:-16.896000pt;}
.ws1f4{word-spacing:-16.890667pt;}
.ws262{word-spacing:-16.886400pt;}
.ws1bd{word-spacing:-16.821333pt;}
.ws26e{word-spacing:-16.819200pt;}
.ws265{word-spacing:-16.785600pt;}
.ws2e0{word-spacing:-16.761600pt;}
.wscf{word-spacing:-16.737600pt;}
.ws2c{word-spacing:-16.736000pt;}
.ws2f6{word-spacing:-16.728000pt;}
.ws27f{word-spacing:-16.675200pt;}
.ws291{word-spacing:-16.665600pt;}
.wsae{word-spacing:-16.660800pt;}
.ws1b9{word-spacing:-16.629333pt;}
.ws1b8{word-spacing:-16.592000pt;}
.ws31{word-spacing:-16.544000pt;}
.ws166{word-spacing:-16.533333pt;}
.ws91{word-spacing:-16.517333pt;}
.ws200{word-spacing:-16.506667pt;}
.ws7c{word-spacing:-16.501333pt;}
.ws19a{word-spacing:-16.496000pt;}
.ws278{word-spacing:-16.483200pt;}
.ws90{word-spacing:-16.474667pt;}
.ws1c{word-spacing:-16.469333pt;}
.ws1d{word-spacing:-16.442667pt;}
.ws6d{word-spacing:-16.426667pt;}
.ws16a{word-spacing:-16.410667pt;}
.ws48{word-spacing:-16.384000pt;}
.ws2f3{word-spacing:-16.377600pt;}
.ws1c9{word-spacing:-16.368000pt;}
.ws168{word-spacing:-16.362667pt;}
.ws21f{word-spacing:-16.336000pt;}
.ws235{word-spacing:-16.320000pt;}
.ws189{word-spacing:-16.314667pt;}
.ws44{word-spacing:-16.304000pt;}
.ws177{word-spacing:-16.293333pt;}
.ws1fd{word-spacing:-16.250667pt;}
.ws1e8{word-spacing:-16.245333pt;}
.ws212{word-spacing:-16.213333pt;}
.ws86{word-spacing:-16.192000pt;}
.ws2a9{word-spacing:-16.190400pt;}
.ws201{word-spacing:-16.181333pt;}
.ws20a{word-spacing:-16.176000pt;}
.ws211{word-spacing:-16.128000pt;}
.ws240{word-spacing:-16.123200pt;}
.ws120{word-spacing:-16.122667pt;}
.ws213{word-spacing:-16.117333pt;}
.ws62{word-spacing:-16.090667pt;}
.ws63{word-spacing:-16.080000pt;}
.ws10b{word-spacing:-16.075200pt;}
.ws208{word-spacing:-16.069333pt;}
.ws244{word-spacing:-16.056000pt;}
.ws109{word-spacing:-16.027200pt;}
.wsd8{word-spacing:-16.022400pt;}
.ws11f{word-spacing:-16.016000pt;}
.ws2ab{word-spacing:-16.012800pt;}
.ws178{word-spacing:-16.005333pt;}
.ws10a{word-spacing:-16.003200pt;}
.ws214{word-spacing:-15.994667pt;}
.ws20c{word-spacing:-15.989333pt;}
.ws1c2{word-spacing:-15.973333pt;}
.ws73{word-spacing:-15.882667pt;}
.ws28c{word-spacing:-15.868800pt;}
.ws13b{word-spacing:-15.835200pt;}
.ws2c3{word-spacing:-15.825600pt;}
.ws1f6{word-spacing:-15.824000pt;}
.ws179{word-spacing:-15.802667pt;}
.ws2ed{word-spacing:-15.801600pt;}
.ws292{word-spacing:-15.777600pt;}
.ws222{word-spacing:-15.772800pt;}
.ws27e{word-spacing:-15.763200pt;}
.ws254{word-spacing:-15.739200pt;}
.ws28b{word-spacing:-15.729600pt;}
.ws296{word-spacing:-15.715200pt;}
.ws2ee{word-spacing:-15.710400pt;}
.ws1c1{word-spacing:-15.696000pt;}
.ws29d{word-spacing:-15.595200pt;}
.ws2ac{word-spacing:-15.576000pt;}
.ws112{word-spacing:-15.556800pt;}
.ws3{word-spacing:-15.537480pt;}
.ws2{word-spacing:-15.509747pt;}
.ws2a6{word-spacing:-15.484800pt;}
.ws1b2{word-spacing:-15.445333pt;}
.ws219{word-spacing:-15.441600pt;}
.ws13c{word-spacing:-15.413333pt;}
.ws1b3{word-spacing:-15.392000pt;}
.ws27c{word-spacing:-15.374400pt;}
.ws1c4{word-spacing:-15.328000pt;}
.ws110{word-spacing:-15.316800pt;}
.ws21a{word-spacing:-15.307200pt;}
.ws40{word-spacing:-15.274667pt;}
.ws21b{word-spacing:-15.259200pt;}
.ws1c6{word-spacing:-15.237333pt;}
.ws145{word-spacing:-15.226667pt;}
.ws1ce{word-spacing:-15.221333pt;}
.ws1d1{word-spacing:-15.216000pt;}
.ws2b8{word-spacing:-15.120000pt;}
.ws1f3{word-spacing:-15.114667pt;}
.ws1c5{word-spacing:-15.098667pt;}
.wsb9{word-spacing:-15.086400pt;}
.ws2bc{word-spacing:-15.067200pt;}
.ws111{word-spacing:-15.014400pt;}
.ws233{word-spacing:-14.966400pt;}
.ws2d8{word-spacing:-14.961600pt;}
.wscd{word-spacing:-14.928000pt;}
.wse0{word-spacing:-14.923200pt;}
.wsdd{word-spacing:-14.918400pt;}
.ws88{word-spacing:-14.917333pt;}
.ws137{word-spacing:-14.913600pt;}
.wsbd{word-spacing:-14.899200pt;}
.ws2a4{word-spacing:-14.894400pt;}
.ws4a{word-spacing:-14.889600pt;}
.ws113{word-spacing:-14.880000pt;}
.ws23c{word-spacing:-14.870400pt;}
.wsbb{word-spacing:-14.860800pt;}
.wsdf{word-spacing:-14.856000pt;}
.ws161{word-spacing:-14.848000pt;}
.wsfd{word-spacing:-14.846400pt;}
.ws230{word-spacing:-14.812800pt;}
.ws25a{word-spacing:-14.808000pt;}
.ws4e{word-spacing:-14.803200pt;}
.wsbc{word-spacing:-14.793600pt;}
.ws2f{word-spacing:-14.778667pt;}
.ws269{word-spacing:-14.769600pt;}
.ws223{word-spacing:-14.760000pt;}
.ws22e{word-spacing:-14.736000pt;}
.ws4c{word-spacing:-14.731200pt;}
.ws162{word-spacing:-14.730667pt;}
.ws2a1{word-spacing:-14.712000pt;}
.wsde{word-spacing:-14.702400pt;}
.ws22c{word-spacing:-14.697600pt;}
.ws252{word-spacing:-14.692800pt;}
.wsad{word-spacing:-14.678400pt;}
.ws24e{word-spacing:-14.673600pt;}
.ws261{word-spacing:-14.664000pt;}
.ws24b{word-spacing:-14.654400pt;}
.wsb3{word-spacing:-14.649600pt;}
.ws2db{word-spacing:-14.630400pt;}
.ws1dd{word-spacing:-14.602667pt;}
.ws289{word-spacing:-14.601600pt;}
.ws2c9{word-spacing:-14.596800pt;}
.ws29e{word-spacing:-14.582400pt;}
.ws46{word-spacing:-14.549333pt;}
.ws294{word-spacing:-14.510400pt;}
.ws242{word-spacing:-14.505600pt;}
.ws23f{word-spacing:-14.496000pt;}
.ws2a5{word-spacing:-14.448000pt;}
.ws2ce{word-spacing:-14.438400pt;}
.ws1da{word-spacing:-14.421333pt;}
.ws226{word-spacing:-14.414400pt;}
.wsbe{word-spacing:-14.400000pt;}
.ws149{word-spacing:-14.325333pt;}
.ws231{word-spacing:-14.308800pt;}
.ws295{word-spacing:-14.275200pt;}
.ws140{word-spacing:-14.266667pt;}
.ws285{word-spacing:-14.251200pt;}
.ws80{word-spacing:-14.224000pt;}
.ws3b{word-spacing:-14.213333pt;}
.ws2d1{word-spacing:-14.208000pt;}
.ws5a{word-spacing:-14.202667pt;}
.ws5b{word-spacing:-14.170667pt;}
.ws25b{word-spacing:-14.164800pt;}
.ws41{word-spacing:-14.154667pt;}
.ws13f{word-spacing:-14.117333pt;}
.wsce{word-spacing:-14.112000pt;}
.ws26d{word-spacing:-14.092800pt;}
.ws3e{word-spacing:-14.021333pt;}
.ws2c2{word-spacing:-14.020800pt;}
.ws81{word-spacing:-14.016000pt;}
.ws2dd{word-spacing:-13.992000pt;}
.ws275{word-spacing:-13.876800pt;}
.ws169{word-spacing:-13.818667pt;}
.ws1ee{word-spacing:-13.785600pt;}
.ws2df{word-spacing:-13.756800pt;}
.ws1e9{word-spacing:-13.723200pt;}
.ws10f{word-spacing:-13.718400pt;}
.ws2e9{word-spacing:-13.670400pt;}
.ws1b1{word-spacing:-13.658667pt;}
.wse1{word-spacing:-13.656000pt;}
.ws1ed{word-spacing:-13.651200pt;}
.ws16c{word-spacing:-13.594667pt;}
.wse2{word-spacing:-13.584000pt;}
.ws1b0{word-spacing:-13.573333pt;}
.ws16e{word-spacing:-13.514667pt;}
.ws263{word-spacing:-13.454400pt;}
.ws144{word-spacing:-13.440000pt;}
.ws190{word-spacing:-13.430400pt;}
.ws16d{word-spacing:-13.418667pt;}
.ws23e{word-spacing:-13.406400pt;}
.wsfb{word-spacing:-13.387200pt;}
.ws279{word-spacing:-13.353600pt;}
.ws18a{word-spacing:-13.296000pt;}
.ws2c5{word-spacing:-13.291200pt;}
.ws2d2{word-spacing:-13.286400pt;}
.ws123{word-spacing:-13.269333pt;}
.ws125{word-spacing:-13.264000pt;}
.ws79{word-spacing:-13.253333pt;}
.wsdc{word-spacing:-13.243200pt;}
.ws85{word-spacing:-13.152000pt;}
.ws29f{word-spacing:-13.147200pt;}
.wsee{word-spacing:-13.102770pt;}
.ws1e4{word-spacing:-13.088000pt;}
.ws2c4{word-spacing:-13.075200pt;}
.ws7a{word-spacing:-13.056000pt;}
.ws1eb{word-spacing:-13.051200pt;}
.ws39{word-spacing:-13.050667pt;}
.ws67{word-spacing:-13.045333pt;}
.ws7b{word-spacing:-12.992000pt;}
.ws124{word-spacing:-12.981333pt;}
.ws14e{word-spacing:-12.970667pt;}
.ws298{word-spacing:-12.945600pt;}
.ws42{word-spacing:-12.912000pt;}
.ws14c{word-spacing:-12.906667pt;}
.ws37{word-spacing:-12.885333pt;}
.ws98{word-spacing:-12.840000pt;}
.wsf0{word-spacing:-12.808373pt;}
.ws5e{word-spacing:-12.800000pt;}
.wsf2{word-spacing:-12.778507pt;}
.ws38{word-spacing:-12.693333pt;}
.ws3f{word-spacing:-12.570667pt;}
.wsba{word-spacing:-12.552000pt;}
.wsf9{word-spacing:-12.532800pt;}
.wsbf{word-spacing:-12.508800pt;}
.ws45{word-spacing:-12.496000pt;}
.ws61{word-spacing:-12.458667pt;}
.ws17e{word-spacing:-12.437333pt;}
.wscb{word-spacing:-12.436800pt;}
.ws290{word-spacing:-12.374400pt;}
.wscc{word-spacing:-12.268800pt;}
.ws100{word-spacing:-12.240000pt;}
.ws8f{word-spacing:-12.229333pt;}
.ws1bf{word-spacing:-12.202667pt;}
.ws2e1{word-spacing:-12.187200pt;}
.ws186{word-spacing:-12.085333pt;}
.ws2de{word-spacing:-12.000000pt;}
.ws119{word-spacing:-11.909333pt;}
.ws21c{word-spacing:-11.904000pt;}
.ws17d{word-spacing:-11.866667pt;}
.ws232{word-spacing:-11.760000pt;}
.ws117{word-spacing:-11.749333pt;}
.ws65{word-spacing:-11.685333pt;}
.ws24f{word-spacing:-11.668800pt;}
.ws2e5{word-spacing:-11.616000pt;}
.ws29{word-spacing:-11.600000pt;}
.ws163{word-spacing:-11.482667pt;}
.ws118{word-spacing:-11.472000pt;}
.ws1a4{word-spacing:-11.381333pt;}
.ws28e{word-spacing:-11.352000pt;}
.ws1df{word-spacing:-11.338667pt;}
.ws2f5{word-spacing:-11.318400pt;}
.ws11c{word-spacing:-11.290667pt;}
.ws18b{word-spacing:-11.242667pt;}
.ws237{word-spacing:-11.236800pt;}
.ws2fc{word-spacing:-11.222400pt;}
.ws11e{word-spacing:-11.178667pt;}
.ws132{word-spacing:-11.173333pt;}
.ws11d{word-spacing:-11.168000pt;}
.ws68{word-spacing:-11.141333pt;}
.ws69{word-spacing:-11.136000pt;}
.ws229{word-spacing:-11.107200pt;}
.ws28f{word-spacing:-11.097600pt;}
.ws283{word-spacing:-11.073600pt;}
.ws135{word-spacing:-11.064000pt;}
.ws75{word-spacing:-11.002667pt;}
.ws185{word-spacing:-10.890667pt;}
.wsc5{word-spacing:-10.886400pt;}
.wsf{word-spacing:-10.874667pt;}
.ws1b{word-spacing:-10.848000pt;}
.ws2da{word-spacing:-10.838400pt;}
.ws27{word-spacing:-10.805333pt;}
.wsc3{word-spacing:-10.795200pt;}
.wsc4{word-spacing:-10.771200pt;}
.ws17f{word-spacing:-10.730667pt;}
.ws239{word-spacing:-10.704000pt;}
.ws104{word-spacing:-10.694400pt;}
.ws206{word-spacing:-10.677333pt;}
.ws1dc{word-spacing:-10.650667pt;}
.wsda{word-spacing:-10.646400pt;}
.ws19b{word-spacing:-10.634667pt;}
.ws205{word-spacing:-10.554667pt;}
.ws256{word-spacing:-10.536000pt;}
.ws2c7{word-spacing:-10.531200pt;}
.ws257{word-spacing:-10.526400pt;}
.ws2c8{word-spacing:-10.492800pt;}
.ws13a{word-spacing:-10.483200pt;}
.ws1ea{word-spacing:-10.363200pt;}
.ws270{word-spacing:-10.348800pt;}
.wsd0{word-spacing:-10.315200pt;}
.ws71{word-spacing:-10.298667pt;}
.ws26f{word-spacing:-10.296000pt;}
.wsc{word-spacing:-10.240000pt;}
.ws2bb{word-spacing:-10.200000pt;}
.ws29b{word-spacing:-10.190400pt;}
.ws2d6{word-spacing:-10.104000pt;}
.wsd9{word-spacing:-10.089600pt;}
.ws243{word-spacing:-10.022400pt;}
.ws194{word-spacing:-9.968000pt;}
.ws25e{word-spacing:-9.960000pt;}
.ws2e8{word-spacing:-9.888000pt;}
.ws2e7{word-spacing:-9.868800pt;}
.ws193{word-spacing:-9.850667pt;}
.ws26c{word-spacing:-9.758400pt;}
.ws122{word-spacing:-9.674667pt;}
.ws18{word-spacing:-9.653333pt;}
.ws192{word-spacing:-9.652800pt;}
.ws84{word-spacing:-9.642667pt;}
.ws191{word-spacing:-9.585600pt;}
.ws1be{word-spacing:-9.525333pt;}
.ws1a3{word-spacing:-9.477333pt;}
.wsb5{word-spacing:-9.403200pt;}
.ws1d6{word-spacing:-9.365333pt;}
.ws26a{word-spacing:-9.350400pt;}
.ws159{word-spacing:-9.226667pt;}
.ws14f{word-spacing:-9.221333pt;}
.ws156{word-spacing:-9.178667pt;}
.ws1ff{word-spacing:-9.173333pt;}
.ws157{word-spacing:-9.130667pt;}
.ws2f1{word-spacing:-9.115200pt;}
.ws2f2{word-spacing:-9.110400pt;}
.ws216{word-spacing:-9.072000pt;}
.ws28a{word-spacing:-9.052800pt;}
.ws10c{word-spacing:-8.980800pt;}
.ws15f{word-spacing:-8.917333pt;}
.wsfe{word-spacing:-8.884800pt;}
.ws1d4{word-spacing:-8.874667pt;}
.ws10e{word-spacing:-8.860800pt;}
.ws1af{word-spacing:-8.826667pt;}
.ws2fa{word-spacing:-8.808000pt;}
.ws10d{word-spacing:-8.745600pt;}
.ws204{word-spacing:-8.682667pt;}
.ws2af{word-spacing:-8.668800pt;}
.wsab{word-spacing:-8.577600pt;}
.wsa5{word-spacing:-8.535530pt;}
.ws2eb{word-spacing:-8.520000pt;}
.ws2ca{word-spacing:-8.491200pt;}
.ws14b{word-spacing:-8.472218pt;}
.ws1f0{word-spacing:-8.458667pt;}
.ws2aa{word-spacing:-8.385600pt;}
.wsca{word-spacing:-8.342400pt;}
.ws245{word-spacing:-8.294400pt;}
.ws241{word-spacing:-8.265600pt;}
.ws5{word-spacing:-8.222400pt;}
.wsf6{word-spacing:-8.217600pt;}
.ws2bd{word-spacing:-8.203200pt;}
.ws184{word-spacing:-8.138667pt;}
.ws2ef{word-spacing:-8.044800pt;}
.ws87{word-spacing:-8.026667pt;}
.ws182{word-spacing:-7.941333pt;}
.ws19e{word-spacing:-7.936000pt;}
.ws19f{word-spacing:-7.920000pt;}
.ws1fa{word-spacing:-7.866667pt;}
.ws1f{word-spacing:-7.856000pt;}
.ws183{word-spacing:-7.840000pt;}
.ws1fe{word-spacing:-7.834667pt;}
.ws20b{word-spacing:-7.813333pt;}
.ws207{word-spacing:-7.802667pt;}
.ws20{word-spacing:-7.797333pt;}
.ws202{word-spacing:-7.770667pt;}
.ws209{word-spacing:-7.765333pt;}
.ws297{word-spacing:-7.752000pt;}
.ws20d{word-spacing:-7.733333pt;}
.ws20f{word-spacing:-7.690667pt;}
.ws1ec{word-spacing:-7.675200pt;}
.ws210{word-spacing:-7.653333pt;}
.ws20e{word-spacing:-7.637333pt;}
.ws2ba{word-spacing:-7.459200pt;}
.ws29c{word-spacing:-7.411200pt;}
.ws64{word-spacing:-7.381333pt;}
.ws7f{word-spacing:-7.344000pt;}
.ws99{word-spacing:-7.310400pt;}
.wse6{word-spacing:-7.286400pt;}
.ws2d4{word-spacing:-7.137600pt;}
.ws287{word-spacing:-7.094400pt;}
.ws264{word-spacing:-7.089600pt;}
.ws2be{word-spacing:-7.084800pt;}
.ws2f8{word-spacing:-7.080000pt;}
.ws253{word-spacing:-7.070400pt;}
.ws259{word-spacing:-7.041600pt;}
.ws246{word-spacing:-7.036800pt;}
.ws225{word-spacing:-7.032000pt;}
.ws260{word-spacing:-7.008000pt;}
.ws276{word-spacing:-7.003200pt;}
.ws24c{word-spacing:-6.993600pt;}
.ws22a{word-spacing:-6.969600pt;}
.ws268{word-spacing:-6.964800pt;}
.ws22f{word-spacing:-6.960000pt;}
.ws1bc{word-spacing:-6.922667pt;}
.ws1c0{word-spacing:-6.917333pt;}
.ws224{word-spacing:-6.916800pt;}
.ws23d{word-spacing:-6.907200pt;}
.ws2f0{word-spacing:-6.888000pt;}
.ws27b{word-spacing:-6.878400pt;}
.ws2a2{word-spacing:-6.873600pt;}
.ws2d9{word-spacing:-6.868800pt;}
.ws277{word-spacing:-6.864000pt;}
.ws22b{word-spacing:-6.859200pt;}
.ws234{word-spacing:-6.840000pt;}
.wsb1{word-spacing:-6.830400pt;}
.ws2cf{word-spacing:-6.744000pt;}
.ws3d{word-spacing:-6.736000pt;}
.ws6{word-spacing:-6.734400pt;}
.ws293{word-spacing:-6.729600pt;}
.wsb2{word-spacing:-6.691200pt;}
.ws1f7{word-spacing:-6.613333pt;}
.ws24d{word-spacing:-6.561600pt;}
.ws2d0{word-spacing:-6.427200pt;}
.ws102{word-spacing:-6.379200pt;}
.ws17c{word-spacing:-6.336000pt;}
.ws1e6{word-spacing:-6.181333pt;}
.ws2b2{word-spacing:-6.158400pt;}
.ws11{word-spacing:-6.064000pt;}
.ws1b4{word-spacing:-6.037333pt;}
.ws1a8{word-spacing:-5.898667pt;}
.ws217{word-spacing:-5.865600pt;}
.ws2b3{word-spacing:-5.808000pt;}
.ws1a6{word-spacing:-5.797333pt;}
.ws1b5{word-spacing:-5.786667pt;}
.ws133{word-spacing:-5.760000pt;}
.ws28{word-spacing:-5.738667pt;}
.ws1a7{word-spacing:-5.552000pt;}
.ws1b6{word-spacing:-5.434667pt;}
.wsb4{word-spacing:-5.376000pt;}
.ws53{word-spacing:-5.372800pt;}
.ws1c7{word-spacing:-5.344000pt;}
.ws95{word-spacing:-5.333333pt;}
.ws167{word-spacing:-5.144218pt;}
.ws1b7{word-spacing:-5.120000pt;}
.ws23{word-spacing:-5.050667pt;}
.ws248{word-spacing:-5.011200pt;}
.ws2cd{word-spacing:-4.958400pt;}
.ws2a8{word-spacing:-4.929600pt;}
.ws103{word-spacing:-4.924800pt;}
.ws9{word-spacing:-4.910872pt;}
.ws89{word-spacing:-4.896000pt;}
.ws2a7{word-spacing:-4.891200pt;}
.ws52{word-spacing:-4.858560pt;}
.ws51{word-spacing:-4.811520pt;}
.ws1ef{word-spacing:-4.581333pt;}
.ws2e4{word-spacing:-4.569600pt;}
.ws180{word-spacing:-4.554667pt;}
.ws18c{word-spacing:-4.550400pt;}
.ws54{word-spacing:-4.512000pt;}
.ws1d3{word-spacing:-4.373333pt;}
.ws2e2{word-spacing:-4.358400pt;}
.ws2ae{word-spacing:-4.348800pt;}
.ws152{word-spacing:-4.341333pt;}
.ws2ad{word-spacing:-4.252800pt;}
.wsff{word-spacing:-4.132800pt;}
.wsac{word-spacing:-4.104000pt;}
.ws165{word-spacing:-3.989333pt;}
.wse7{word-spacing:-3.973333pt;}
.ws16{word-spacing:-3.952000pt;}
.ws138{word-spacing:-3.945600pt;}
.ws160{word-spacing:-3.850667pt;}
.wsb8{word-spacing:-3.676800pt;}
.wsfa{word-spacing:-3.657600pt;}
.wsaf{word-spacing:-3.456000pt;}
.ws238{word-spacing:-3.240000pt;}
.ws148{word-spacing:-3.173333pt;}
.ws74{word-spacing:-2.992000pt;}
.wsa0{word-spacing:-2.961600pt;}
.wsc0{word-spacing:-2.860800pt;}
.wsc2{word-spacing:-2.841600pt;}
.ws24{word-spacing:-2.778667pt;}
.ws299{word-spacing:-2.760000pt;}
.ws33{word-spacing:-2.752000pt;}
.wsc1{word-spacing:-2.606400pt;}
.ws6c{word-spacing:-2.576000pt;}
.ws8c{word-spacing:-2.506667pt;}
.ws8d{word-spacing:-2.474667pt;}
.ws267{word-spacing:-2.419200pt;}
.ws10{word-spacing:-2.341333pt;}
.ws271{word-spacing:-2.337600pt;}
.ws25f{word-spacing:-2.203200pt;}
.ws2b7{word-spacing:-1.924800pt;}
.ws21d{word-spacing:-1.808000pt;}
.ws27d{word-spacing:-1.766400pt;}
.ws23b{word-spacing:-1.569600pt;}
.ws14d{word-spacing:-1.519685pt;}
.wse8{word-spacing:-1.328000pt;}
.ws1e7{word-spacing:-1.205333pt;}
.ws228{word-spacing:-0.984000pt;}
.ws1d7{word-spacing:-0.853333pt;}
.ws72{word-spacing:-0.784000pt;}
.ws2b0{word-spacing:-0.734400pt;}
.ws1de{word-spacing:-0.517333pt;}
.ws2ec{word-spacing:-0.494400pt;}
.ws2ea{word-spacing:-0.427200pt;}
.ws196{word-spacing:-0.405333pt;}
.ws150{word-spacing:-0.394667pt;}
.ws127{word-spacing:-0.389333pt;}
.ws2f9{word-spacing:-0.350400pt;}
.ws116{word-spacing:-0.288000pt;}
.ws93{word-spacing:-0.266667pt;}
.ws92{word-spacing:-0.261333pt;}
.ws151{word-spacing:-0.218667pt;}
.ws18f{word-spacing:-0.124800pt;}
.ws55{word-spacing:0.000000pt;}
.ws2b9{word-spacing:0.033600pt;}
.ws58{word-spacing:0.154667pt;}
.ws59{word-spacing:0.186667pt;}
.ws1c8{word-spacing:0.336000pt;}
.wsb6{word-spacing:0.470400pt;}
.ws12a{word-spacing:0.848000pt;}
.ws221{word-spacing:0.921600pt;}
.ws129{word-spacing:0.928000pt;}
.ws1cf{word-spacing:0.949333pt;}
.ws12b{word-spacing:1.018667pt;}
.ws2a0{word-spacing:1.070400pt;}
.ws27a{word-spacing:1.075200pt;}
.ws12c{word-spacing:1.093333pt;}
.ws24a{word-spacing:1.099200pt;}
.wsaa{word-spacing:1.104000pt;}
.ws22d{word-spacing:1.118400pt;}
.ws258{word-spacing:1.123200pt;}
.ws286{word-spacing:1.132800pt;}
.ws2b6{word-spacing:1.142400pt;}
.wsa7{word-spacing:1.152000pt;}
.wse5{word-spacing:1.156800pt;}
.ws15{word-spacing:1.178667pt;}
.ws220{word-spacing:1.204800pt;}
.ws26{word-spacing:1.210667pt;}
.wsd{word-spacing:1.216000pt;}
.ws2d{word-spacing:1.221333pt;}
.wse3{word-spacing:1.228800pt;}
.ws1cd{word-spacing:1.232000pt;}
.ws1e2{word-spacing:1.237333pt;}
.ws1d0{word-spacing:1.253333pt;}
.ws6a{word-spacing:1.269333pt;}
.ws236{word-spacing:1.276800pt;}
.ws1db{word-spacing:1.280000pt;}
.wsb0{word-spacing:1.286400pt;}
.ws13{word-spacing:1.312000pt;}
.ws2a{word-spacing:1.317333pt;}
.ws12{word-spacing:1.328000pt;}
.wsb7{word-spacing:1.334400pt;}
.ws1e3{word-spacing:1.338667pt;}
.ws7e{word-spacing:1.344000pt;}
.wsc9{word-spacing:1.358400pt;}
.ws14{word-spacing:1.365333pt;}
.ws3c{word-spacing:1.376000pt;}
.wse{word-spacing:1.386667pt;}
.ws15e{word-spacing:1.402667pt;}
.ws7d{word-spacing:1.413333pt;}
.ws2b{word-spacing:1.418667pt;}
.ws16b{word-spacing:1.445333pt;}
.ws6b{word-spacing:1.456000pt;}
.ws8e{word-spacing:1.461333pt;}
.ws25{word-spacing:1.488000pt;}
.ws32{word-spacing:1.493333pt;}
.ws198{word-spacing:1.514667pt;}
.ws1a5{word-spacing:1.520000pt;}
.wse4{word-spacing:1.545600pt;}
.ws115{word-spacing:1.600000pt;}
.ws158{word-spacing:1.805115pt;}
.ws155{word-spacing:1.807782pt;}
.ws2b4{word-spacing:2.107200pt;}
.ws2b5{word-spacing:2.212800pt;}
.ws249{word-spacing:2.592000pt;}
.ws215{word-spacing:4.411200pt;}
.ws4{word-spacing:4.593600pt;}
.ws7{word-spacing:4.656000pt;}
.ws1f9{word-spacing:4.853867pt;}
.ws1fc{word-spacing:4.909600pt;}
.wsf4{word-spacing:5.088000pt;}
.ws1fb{word-spacing:5.342400pt;}
.ws114{word-spacing:5.381600pt;}
.ws1f8{word-spacing:5.488000pt;}
.ws97{word-spacing:5.622400pt;}
.ws1e{word-spacing:7.397333pt;}
.wsa{word-spacing:7.498667pt;}
.ws0{word-spacing:8.531683pt;}
.ws1{word-spacing:8.703949pt;}
.ws4f{word-spacing:10.401600pt;}
.wsa9{word-spacing:11.498966pt;}
.ws21{word-spacing:14.604800pt;}
.ws1ca{word-spacing:14.907200pt;}
.ws4d{word-spacing:23.745600pt;}
.ws49{word-spacing:28.161600pt;}
.ws4b{word-spacing:51.729600pt;}
.wsea{word-spacing:68.739407pt;}
.wse9{word-spacing:117.703062pt;}
.wsf3{word-spacing:121.645413pt;}
.wsf1{word-spacing:133.250601pt;}
.wsef{word-spacing:141.954492pt;}
.wsec{word-spacing:162.267838pt;}
.ws8{word-spacing:486.271467pt;}
.wsf5{word-spacing:692.535343pt;}
._d{margin-left:-2650.629267pt;}
._2e{margin-left:-3.100800pt;}
._16{margin-left:-0.890667pt;}
._15{width:0.912000pt;}
._2d{width:10.920000pt;}
._e{width:11.961600pt;}
._4{width:13.381333pt;}
._9{width:15.098667pt;}
._2{width:16.776000pt;}
._29{width:17.712000pt;}
._a{width:18.794667pt;}
._b{width:20.314667pt;}
._c{width:21.920000pt;}
._2c{width:22.902400pt;}
._1{width:23.899016pt;}
._8{width:25.360000pt;}
._2a{width:26.480000pt;}
._13{width:27.669333pt;}
._7{width:29.045333pt;}
._14{width:30.101333pt;}
._0{width:31.080351pt;}
._6{width:32.864000pt;}
._11{width:34.293333pt;}
._10{width:35.205333pt;}
._5{width:36.645333pt;}
._12{width:38.133333pt;}
._2b{width:70.373333pt;}
._f{width:77.500693pt;}
._1d{width:85.604407pt;}
._1a{width:86.535282pt;}
._1e{width:115.394824pt;}
._23{width:124.666175pt;}
._21{width:128.177598pt;}
._18{width:131.616488pt;}
._20{width:145.457491pt;}
._1b{width:148.909072pt;}
._17{width:163.846485pt;}
._1f{width:169.218151pt;}
._24{width:171.569165pt;}
._27{width:187.684054pt;}
._22{width:188.746441pt;}
._1c{width:214.917847pt;}
._19{width:223.075612pt;}
._25{width:230.840848pt;}
._26{width:390.544451pt;}
._28{width:665.188800pt;}
._3{width:807.873567pt;}
.fs10{font-size:28.585067pt;}
.fsf{font-size:31.995733pt;}
.fsa{font-size:32.000000pt;}
.fse{font-size:32.158933pt;}
.fs8{font-size:33.600000pt;}
.fs7{font-size:35.551467pt;}
.fsd{font-size:35.732800pt;}
.fsb{font-size:37.333333pt;}
.fs9{font-size:39.999467pt;}
.fs4{font-size:42.666133pt;}
.fsc{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs12{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fs1{font-size:69.332800pt;}
.fs3{font-size:80.000000pt;}
.fs0{font-size:90.666133pt;}
.fs11{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:11.943333pt;}
.yf5{bottom:20.107867pt;}
.y55{bottom:24.492133pt;}
.yf4{bottom:28.799867pt;}
.y53{bottom:31.295147pt;}
.y54{bottom:33.184133pt;}
.y52{bottom:39.004667pt;}
.y158{bottom:53.291333pt;}
.y17a{bottom:53.291600pt;}
.y168{bottom:53.291867pt;}
.yb0{bottom:53.292000pt;}
.y121{bottom:53.292133pt;}
.ye1{bottom:53.292267pt;}
.y1d9{bottom:53.292400pt;}
.y11a{bottom:53.292667pt;}
.y37{bottom:61.077333pt;}
.yaf{bottom:66.519600pt;}
.yad{bottom:66.519867pt;}
.y221{bottom:66.746267pt;}
.y2a8{bottom:66.822267pt;}
.y264{bottom:67.124267pt;}
.y167{bottom:67.955867pt;}
.y120{bottom:67.956133pt;}
.y1d8{bottom:67.956400pt;}
.y165{bottom:67.956667pt;}
.y179{bottom:67.956933pt;}
.y119{bottom:68.183333pt;}
.y1b5{bottom:69.847333pt;}
.yae{bottom:71.810933pt;}
.y166{bottom:73.927467pt;}
.y36{bottom:76.044000pt;}
.y34{bottom:76.044667pt;}
.yac{bottom:79.748667pt;}
.y220{bottom:80.201867pt;}
.y2a7{bottom:80.277867pt;}
.y263{bottom:80.428667pt;}
.y35{bottom:81.940000pt;}
.y164{bottom:82.620667pt;}
.y178{bottom:82.620933pt;}
.y11f{bottom:82.621467pt;}
.y1a6{bottom:82.622000pt;}
.y157{bottom:82.999333pt;}
.y118{bottom:83.074000pt;}
.y1b4{bottom:86.326000pt;}
.y1d7{bottom:87.988400pt;}
.y33{bottom:91.011333pt;}
.yab{bottom:92.900667pt;}
.y21f{bottom:93.580667pt;}
.y2a6{bottom:93.809067pt;}
.y262{bottom:94.185467pt;}
.y50{bottom:95.471467pt;}
.y163{bottom:97.284667pt;}
.y177{bottom:97.284933pt;}
.y11e{bottom:97.285467pt;}
.y1a5{bottom:97.286000pt;}
.y156{bottom:97.814000pt;}
.y117{bottom:97.890000pt;}
.y1d6{bottom:102.652400pt;}
.y1b3{bottom:102.804667pt;}
.y32{bottom:105.978000pt;}
.ye0{bottom:106.130000pt;}
.y21e{bottom:107.036267pt;}
.y2a5{bottom:107.263467pt;}
.y261{bottom:107.943467pt;}
.y4f{bottom:110.136667pt;}
.y11d{bottom:111.950000pt;}
.y175{bottom:111.951333pt;}
.yaa{bottom:112.100667pt;}
.y155{bottom:112.706000pt;}
.y116{bottom:112.782000pt;}
.y1d5{bottom:117.316400pt;}
.y176{bottom:117.921200pt;}
.ydf{bottom:119.282000pt;}
.y1b2{bottom:119.283333pt;}
.y21d{bottom:120.491867pt;}
.y2a4{bottom:120.643467pt;}
.y31{bottom:120.946000pt;}
.y260{bottom:121.700267pt;}
.y4e{bottom:124.800667pt;}
.y11c{bottom:126.614000pt;}
.y174{bottom:126.615333pt;}
.y154{bottom:127.522000pt;}
.y115{bottom:127.596667pt;}
.y1d4{bottom:131.983333pt;}
.yde{bottom:132.510800pt;}
.y21c{bottom:133.946267pt;}
.y2a3{bottom:134.097867pt;}
.y25f{bottom:135.080267pt;}
.y1b1{bottom:135.762000pt;}
.y30{bottom:135.912667pt;}
.y4d{bottom:139.464667pt;}
.y162{bottom:141.278000pt;}
.y11b{bottom:141.279333pt;}
.y153{bottom:142.336667pt;}
.y114{bottom:142.488667pt;}
.ya9{bottom:145.286000pt;}
.ydd{bottom:145.739600pt;}
.y1d3{bottom:146.647333pt;}
.y21b{bottom:147.250667pt;}
.y2a2{bottom:147.629067pt;}
.y25e{bottom:148.838267pt;}
.y2f{bottom:150.954000pt;}
.y1b0{bottom:152.316667pt;}
.y161{bottom:156.018000pt;}
.y173{bottom:156.019333pt;}
.y152{bottom:157.228667pt;}
.y113{bottom:157.304667pt;}
.ydc{bottom:158.891600pt;}
.ya8{bottom:159.950000pt;}
.y21a{bottom:160.705067pt;}
.y2a1{bottom:161.084667pt;}
.y1d2{bottom:161.312667pt;}
.y25d{bottom:162.141467pt;}
.y2d{bottom:165.772667pt;}
.y1af{bottom:168.795333pt;}
.y160{bottom:170.682000pt;}
.y172{bottom:170.684667pt;}
.y2e{bottom:171.666000pt;}
.y151{bottom:172.044667pt;}
.ydb{bottom:172.120400pt;}
.y111{bottom:172.195333pt;}
.y4b{bottom:173.480667pt;}
.y219{bottom:174.160667pt;}
.y2a0{bottom:174.387867pt;}
.ya7{bottom:174.615333pt;}
.y25c{bottom:175.899467pt;}
.y1d1{bottom:175.976667pt;}
.y112{bottom:178.091333pt;}
.y4c{bottom:179.376667pt;}
.y2c{bottom:180.739333pt;}
.y129{bottom:184.516133pt;}
.y1ae{bottom:185.274000pt;}
.y15f{bottom:185.346000pt;}
.y171{bottom:185.348667pt;}
.yda{bottom:185.349200pt;}
.y150{bottom:186.936667pt;}
.y110{bottom:187.011333pt;}
.y218{bottom:187.540667pt;}
.y29f{bottom:187.919067pt;}
.y4a{bottom:188.371333pt;}
.ya6{bottom:189.279333pt;}
.y25b{bottom:189.731867pt;}
.y1d0{bottom:190.642000pt;}
.y2b{bottom:195.706000pt;}
.y128{bottom:197.820533pt;}
.yd9{bottom:198.501200pt;}
.y15e{bottom:200.011333pt;}
.y170{bottom:200.012667pt;}
.y217{bottom:200.995067pt;}
.y29e{bottom:201.373467pt;}
.y14f{bottom:201.751333pt;}
.y10f{bottom:201.902000pt;}
.y25a{bottom:203.036267pt;}
.y48{bottom:203.263333pt;}
.ya4{bottom:203.943333pt;}
.y1cf{bottom:205.306000pt;}
.y49{bottom:209.159333pt;}
.ya5{bottom:209.915333pt;}
.y2a{bottom:210.672667pt;}
.y127{bottom:211.200133pt;}
.yd8{bottom:211.730000pt;}
.y216{bottom:214.450667pt;}
.y15d{bottom:214.675333pt;}
.y1a4{bottom:214.678000pt;}
.y29d{bottom:214.904667pt;}
.y14e{bottom:216.492667pt;}
.y259{bottom:216.794267pt;}
.y46{bottom:218.155333pt;}
.ya3{bottom:218.607333pt;}
.y1ce{bottom:219.970000pt;}
.y10e{bottom:222.614000pt;}
.y47{bottom:224.050000pt;}
.y126{bottom:224.503333pt;}
.yd7{bottom:224.882000pt;}
.y29{bottom:225.639333pt;}
.y215{bottom:227.905067pt;}
.y29c{bottom:228.209067pt;}
.y15c{bottom:229.339333pt;}
.y1a3{bottom:229.342000pt;}
.y258{bottom:230.551067pt;}
.y1ad{bottom:230.778667pt;}
.y14d{bottom:231.308667pt;}
.y45{bottom:233.047333pt;}
.ya1{bottom:233.274000pt;}
.y1cd{bottom:234.635333pt;}
.yd6{bottom:238.110267pt;}
.ya2{bottom:239.244667pt;}
.y28{bottom:240.606000pt;}
.y214{bottom:241.209467pt;}
.y29b{bottom:241.739067pt;}
.y257{bottom:243.931067pt;}
.y15b{bottom:244.004667pt;}
.y1a2{bottom:244.006000pt;}
.y1ac{bottom:244.081867pt;}
.y14c{bottom:246.199333pt;}
.y44{bottom:247.787333pt;}
.ya0{bottom:247.938000pt;}
.y1cc{bottom:249.299333pt;}
.yd5{bottom:251.339067pt;}
.y213{bottom:254.665067pt;}
.y29a{bottom:255.194667pt;}
.y27{bottom:255.648667pt;}
.y10d{bottom:255.950000pt;}
.y1ab{bottom:257.461867pt;}
.y256{bottom:257.687867pt;}
.y15a{bottom:258.668667pt;}
.y1a1{bottom:258.671333pt;}
.y1e0{bottom:259.806267pt;}
.y14b{bottom:261.015333pt;}
.y9e{bottom:262.602000pt;}
.y43{bottom:262.678000pt;}
.y1cb{bottom:263.963333pt;}
.yd4{bottom:264.492267pt;}
.y212{bottom:268.119467pt;}
.y9f{bottom:268.572667pt;}
.y299{bottom:268.724667pt;}
.y10c{bottom:269.405600pt;}
.y26{bottom:270.615333pt;}
.y1aa{bottom:270.766267pt;}
.y255{bottom:271.445867pt;}
.y1df{bottom:273.109467pt;}
.y159{bottom:273.332667pt;}
.y1a0{bottom:273.335333pt;}
.y14a{bottom:275.830000pt;}
.y148{bottom:275.831333pt;}
.y9d{bottom:277.342000pt;}
.y42{bottom:277.570000pt;}
.yd3{bottom:277.719867pt;}
.y1ca{bottom:278.628667pt;}
.y211{bottom:281.575067pt;}
.y149{bottom:281.802000pt;}
.y298{bottom:282.029067pt;}
.y10b{bottom:282.784400pt;}
.y1a9{bottom:284.145067pt;}
.y254{bottom:285.202667pt;}
.y25{bottom:285.582000pt;}
.y1de{bottom:286.413867pt;}
.y19f{bottom:288.002000pt;}
.y147{bottom:290.722000pt;}
.yd2{bottom:290.948667pt;}
.y9c{bottom:292.006000pt;}
.y9a{bottom:292.007333pt;}
.y41{bottom:292.460667pt;}
.y1c9{bottom:293.292667pt;}
.y210{bottom:295.029467pt;}
.y297{bottom:295.484667pt;}
.y10a{bottom:296.164400pt;}
.y1a8{bottom:297.449467pt;}
.y9b{bottom:297.902000pt;}
.y253{bottom:298.582667pt;}
.y1dd{bottom:299.792667pt;}
.y23{bottom:300.548667pt;}
.y19e{bottom:302.666000pt;}
.yd1{bottom:304.100933pt;}
.y146{bottom:305.538000pt;}
.y24{bottom:306.444667pt;}
.y98{bottom:306.671333pt;}
.y40{bottom:307.351333pt;}
.y1c8{bottom:307.956667pt;}
.y20f{bottom:308.409467pt;}
.y296{bottom:309.014667pt;}
.y109{bottom:309.544400pt;}
.y1a7{bottom:310.752667pt;}
.y252{bottom:312.340667pt;}
.y99{bottom:312.567333pt;}
.y16f{bottom:313.701467pt;}
.y21{bottom:315.515333pt;}
.yd0{bottom:317.329733pt;}
.y19d{bottom:317.331333pt;}
.y58{bottom:317.506667pt;}
.y145{bottom:320.428667pt;}
.y143{bottom:320.430000pt;}
.y97{bottom:321.336667pt;}
.y57{bottom:321.346667pt;}
.y22{bottom:321.486000pt;}
.y20e{bottom:321.865067pt;}
.y3e{bottom:322.243333pt;}
.y295{bottom:322.470267pt;}
.y1c7{bottom:322.622000pt;}
.y108{bottom:322.923200pt;}
.y251{bottom:326.097467pt;}
.y144{bottom:326.324667pt;}
.y16e{bottom:327.005467pt;}
.y3f{bottom:328.214000pt;}
.y20{bottom:330.482000pt;}
.ycf{bottom:330.482933pt;}
.y1e{bottom:330.483333pt;}
.y19c{bottom:331.995333pt;}
.y142{bottom:335.244667pt;}
.y20d{bottom:335.319467pt;}
.y294{bottom:335.849067pt;}
.y96{bottom:336.000667pt;}
.y107{bottom:336.303200pt;}
.y1f{bottom:336.454000pt;}
.y3b{bottom:337.132000pt;}
.y3d{bottom:337.134000pt;}
.y1c6{bottom:337.286000pt;}
.y250{bottom:339.855467pt;}
.y16d{bottom:340.385467pt;}
.y3c{bottom:343.106000pt;}
.yce{bottom:343.710533pt;}
.y1d{bottom:345.524667pt;}
.y19b{bottom:346.659333pt;}
.y20c{bottom:348.775067pt;}
.y293{bottom:349.304667pt;}
.y106{bottom:349.682000pt;}
.y141{bottom:350.060667pt;}
.y95{bottom:350.664667pt;}
.y93{bottom:350.666000pt;}
.y1c5{bottom:351.950000pt;}
.y3a{bottom:352.022667pt;}
.y24f{bottom:353.158667pt;}
.y16c{bottom:353.688667pt;}
.y94{bottom:356.560667pt;}
.ycd{bottom:356.939333pt;}
.y1c{bottom:360.491333pt;}
.y19a{bottom:361.324667pt;}
.y20b{bottom:362.078267pt;}
.y292{bottom:362.835867pt;}
.y105{bottom:363.062000pt;}
.y140{bottom:364.951333pt;}
.y13e{bottom:364.952667pt;}
.y92{bottom:365.330000pt;}
.y1c4{bottom:366.690000pt;}
.y39{bottom:366.913333pt;}
.y24e{bottom:366.992267pt;}
.ycc{bottom:370.091333pt;}
.y13f{bottom:370.847333pt;}
.y20a{bottom:375.533867pt;}
.y199{bottom:375.988667pt;}
.y291{bottom:376.290267pt;}
.y104{bottom:376.516400pt;}
.y13d{bottom:379.767333pt;}
.y91{bottom:379.994000pt;}
.y8f{bottom:379.995333pt;}
.y24d{bottom:380.750267pt;}
.y1b{bottom:381.278000pt;}
.y1c3{bottom:381.355333pt;}
.y38{bottom:381.805333pt;}
.ycb{bottom:383.320133pt;}
.y90{bottom:385.890000pt;}
.y209{bottom:388.989467pt;}
.y290{bottom:389.821467pt;}
.y103{bottom:389.896400pt;}
.y198{bottom:390.652667pt;}
.y24c{bottom:394.507067pt;}
.y13c{bottom:394.583333pt;}
.y8e{bottom:394.659333pt;}
.y1c2{bottom:396.019333pt;}
.yca{bottom:396.548933pt;}
.y208{bottom:402.443867pt;}
.y28f{bottom:403.124667pt;}
.y102{bottom:403.276400pt;}
.y197{bottom:405.318000pt;}
.y24b{bottom:407.811467pt;}
.y8d{bottom:409.323333pt;}
.y13b{bottom:409.475333pt;}
.yc9{bottom:409.700933pt;}
.y1c1{bottom:410.986000pt;}
.y207{bottom:415.823867pt;}
.y28e{bottom:416.580267pt;}
.y101{bottom:416.655200pt;}
.y196{bottom:419.982000pt;}
.y24a{bottom:421.568267pt;}
.yc8{bottom:422.929733pt;}
.y8b{bottom:423.988667pt;}
.y13a{bottom:424.290000pt;}
.y1a{bottom:427.844667pt;}
.y206{bottom:429.278267pt;}
.y8c{bottom:429.883333pt;}
.y100{bottom:430.035200pt;}
.y28d{bottom:430.111467pt;}
.y195{bottom:434.646000pt;}
.y249{bottom:435.326267pt;}
.y1c0{bottom:435.552667pt;}
.yc7{bottom:436.082933pt;}
.y8a{bottom:438.652667pt;}
.y139{bottom:439.106000pt;}
.y19{bottom:442.510000pt;}
.y205{bottom:442.733867pt;}
.yfd{bottom:443.413867pt;}
.yff{bottom:443.414000pt;}
.y28c{bottom:443.565867pt;}
.y248{bottom:448.705067pt;}
.yfe{bottom:448.780667pt;}
.yc6{bottom:449.310533pt;}
.y194{bottom:449.311333pt;}
.y1bf{bottom:450.218000pt;}
.y89{bottom:453.316667pt;}
.y137{bottom:453.996667pt;}
.y204{bottom:456.038267pt;}
.yfc{bottom:456.793867pt;}
.y28b{bottom:456.945867pt;}
.y138{bottom:459.892667pt;}
.y18{bottom:461.180667pt;}
.y247{bottom:462.463067pt;}
.yc5{bottom:462.539333pt;}
.y193{bottom:463.975333pt;}
.y1be{bottom:464.883333pt;}
.y88{bottom:467.982000pt;}
.y135{bottom:468.812667pt;}
.y203{bottom:469.492667pt;}
.yfb{bottom:470.172667pt;}
.y28a{bottom:470.400267pt;}
.y136{bottom:474.708667pt;}
.yc4{bottom:475.691333pt;}
.y17{bottom:475.844667pt;}
.y246{bottom:476.221067pt;}
.y192{bottom:478.639333pt;}
.y1bd{bottom:479.547333pt;}
.y87{bottom:482.646000pt;}
.y202{bottom:482.948267pt;}
.y134{bottom:483.628667pt;}
.yf9{bottom:483.629733pt;}
.y289{bottom:483.780267pt;}
.yfa{bottom:488.919333pt;}
.yc3{bottom:488.920400pt;}
.y245{bottom:489.977867pt;}
.y16{bottom:490.510000pt;}
.y1bc{bottom:494.211333pt;}
.y201{bottom:496.327067pt;}
.yf8{bottom:497.008533pt;}
.y288{bottom:497.235867pt;}
.y86{bottom:497.310000pt;}
.y191{bottom:497.839333pt;}
.y133{bottom:498.519333pt;}
.yc2{bottom:502.149200pt;}
.y244{bottom:503.357867pt;}
.y15{bottom:505.174000pt;}
.y1bb{bottom:509.178000pt;}
.y200{bottom:509.782667pt;}
.yf7{bottom:510.388533pt;}
.y287{bottom:510.765867pt;}
.y85{bottom:511.975333pt;}
.y132{bottom:513.335333pt;}
.yc1{bottom:515.301200pt;}
.y243{bottom:517.114667pt;}
.y14{bottom:519.838000pt;}
.y1ba{bottom:522.103333pt;}
.y1ff{bottom:523.238267pt;}
.yf6{bottom:523.767333pt;}
.y286{bottom:524.221467pt;}
.y84{bottom:526.639333pt;}
.y190{bottom:526.640667pt;}
.y131{bottom:528.227333pt;}
.yc0{bottom:528.530000pt;}
.y242{bottom:530.872667pt;}
.y13{bottom:534.503333pt;}
.y1fe{bottom:536.692667pt;}
.y285{bottom:537.524667pt;}
.y83{bottom:541.303333pt;}
.y18f{bottom:541.304667pt;}
.y81{bottom:541.306000pt;}
.ybf{bottom:541.682000pt;}
.ybd{bottom:541.682400pt;}
.y130{bottom:543.043333pt;}
.y241{bottom:544.629467pt;}
.ybe{bottom:547.048667pt;}
.y82{bottom:547.199333pt;}
.y12{bottom:549.167333pt;}
.y1fd{bottom:549.997067pt;}
.y284{bottom:551.055867pt;}
.y125{bottom:551.131600pt;}
.ybc{bottom:554.910000pt;}
.yba{bottom:554.910667pt;}
.y1b9{bottom:555.742000pt;}
.y18e{bottom:555.968667pt;}
.y80{bottom:555.970000pt;}
.y12f{bottom:557.858000pt;}
.y240{bottom:558.009467pt;}
.ybb{bottom:560.276667pt;}
.y1fc{bottom:563.451467pt;}
.y11{bottom:563.831333pt;}
.y124{bottom:564.434800pt;}
.y283{bottom:564.511467pt;}
.yb9{bottom:568.138267pt;}
.y1b8{bottom:570.406000pt;}
.y18d{bottom:570.634000pt;}
.y7f{bottom:570.635333pt;}
.y23f{bottom:571.767467pt;}
.y12e{bottom:572.750000pt;}
.y1fb{bottom:576.907067pt;}
.y123{bottom:577.739200pt;}
.y282{bottom:578.041467pt;}
.y10{bottom:578.496667pt;}
.yb8{bottom:581.291467pt;}
.y18c{bottom:585.298000pt;}
.y7e{bottom:585.299333pt;}
.y1b7{bottom:585.372667pt;}
.y23e{bottom:585.524267pt;}
.y12d{bottom:587.567333pt;}
.y1fa{bottom:590.362667pt;}
.y122{bottom:591.118000pt;}
.y281{bottom:591.497067pt;}
.yf{bottom:593.160667pt;}
.yb7{bottom:594.520267pt;}
.y1b6{bottom:598.223333pt;}
.y23d{bottom:599.282267pt;}
.y7d{bottom:599.963333pt;}
.y12c{bottom:602.382000pt;}
.y1f9{bottom:603.741467pt;}
.y280{bottom:604.875867pt;}
.yb6{bottom:607.747867pt;}
.ye{bottom:607.824667pt;}
.y23c{bottom:613.039067pt;}
.y7c{bottom:614.628667pt;}
.y1f8{bottom:617.197067pt;}
.y12b{bottom:617.274000pt;}
.y27f{bottom:618.331467pt;}
.yb5{bottom:620.901067pt;}
.yd{bottom:622.490000pt;}
.y23b{bottom:626.343467pt;}
.y7b{bottom:629.292667pt;}
.y1f7{bottom:630.651467pt;}
.y27e{bottom:631.862667pt;}
.y12a{bottom:632.088667pt;}
.y1dc{bottom:632.920133pt;}
.yb4{bottom:634.130000pt;}
.yc{bottom:637.154000pt;}
.y23a{bottom:640.175867pt;}
.y7a{bottom:643.956667pt;}
.y1f6{bottom:644.107067pt;}
.y27d{bottom:645.317067pt;}
.y1db{bottom:646.224533pt;}
.yb3{bottom:647.282400pt;}
.yb{bottom:651.818000pt;}
.y239{bottom:653.933867pt;}
.y1f5{bottom:657.411467pt;}
.y27c{bottom:658.621467pt;}
.y79{bottom:658.622000pt;}
.y1da{bottom:659.603333pt;}
.yb2{bottom:660.510000pt;}
.y16b{bottom:660.737467pt;}
.ya{bottom:666.483333pt;}
.y238{bottom:667.691867pt;}
.y1f4{bottom:670.865867pt;}
.y27b{bottom:672.151467pt;}
.y78{bottom:673.286000pt;}
.yb1{bottom:673.737600pt;}
.y16a{bottom:674.117467pt;}
.y9{bottom:681.147333pt;}
.y237{bottom:681.448667pt;}
.y1f3{bottom:684.321467pt;}
.y27a{bottom:685.607067pt;}
.y169{bottom:687.420667pt;}
.y76{bottom:687.950000pt;}
.y77{bottom:693.920667pt;}
.y236{bottom:694.753067pt;}
.y8{bottom:695.811333pt;}
.y1f2{bottom:697.700267pt;}
.y279{bottom:698.987067pt;}
.y74{bottom:702.614000pt;}
.y18b{bottom:702.615333pt;}
.yf2{bottom:707.224667pt;}
.y235{bottom:708.585467pt;}
.y75{bottom:708.586000pt;}
.y1f1{bottom:711.155867pt;}
.y278{bottom:712.441467pt;}
.y73{bottom:717.279333pt;}
.yf1{bottom:721.814000pt;}
.y234{bottom:722.343467pt;}
.y1f0{bottom:724.611467pt;}
.y277{bottom:725.972667pt;}
.y7{bottom:727.106000pt;}
.y72{bottom:731.943333pt;}
.y233{bottom:736.100267pt;}
.yf0{bottom:736.403333pt;}
.y1ef{bottom:737.914667pt;}
.y276{bottom:739.275867pt;}
.y18a{bottom:746.603600pt;}
.y71{bottom:746.607333pt;}
.y232{bottom:749.404667pt;}
.yef{bottom:750.992667pt;}
.y1ee{bottom:751.370267pt;}
.y275{bottom:752.731467pt;}
.y189{bottom:761.343600pt;}
.y70{bottom:761.347333pt;}
.y231{bottom:763.162667pt;}
.y1ed{bottom:764.824667pt;}
.yee{bottom:765.581382pt;}
.y274{bottom:766.262667pt;}
.y6{bottom:775.030000pt;}
.y188{bottom:776.007600pt;}
.y6e{bottom:776.012667pt;}
.y230{bottom:776.995067pt;}
.y1ec{bottom:778.280267pt;}
.y273{bottom:779.717067pt;}
.yed{bottom:780.170716pt;}
.y2b6{bottom:781.304667pt;}
.y6f{bottom:781.908667pt;}
.y187{bottom:790.671600pt;}
.y6d{bottom:790.676667pt;}
.y22f{bottom:790.753067pt;}
.y1eb{bottom:791.660267pt;}
.y272{bottom:793.248267pt;}
.y2b5{bottom:794.684667pt;}
.yec{bottom:794.759781pt;}
.y22e{bottom:804.056267pt;}
.y1ea{bottom:805.114667pt;}
.y186{bottom:805.336933pt;}
.y6b{bottom:805.342000pt;}
.y271{bottom:806.551467pt;}
.y2b4{bottom:807.987867pt;}
.yeb{bottom:809.272667pt;}
.y6c{bottom:811.238000pt;}
.y22d{bottom:817.814267pt;}
.y1e9{bottom:818.570267pt;}
.y185{bottom:820.000933pt;}
.y6a{bottom:820.007333pt;}
.y270{bottom:820.082667pt;}
.y2b3{bottom:821.292267pt;}
.y5{bottom:821.292410pt;}
.yea{bottom:823.862000pt;}
.y22c{bottom:831.572267pt;}
.y1e8{bottom:832.024667pt;}
.y26f{bottom:833.538267pt;}
.y184{bottom:834.664933pt;}
.y2b2{bottom:834.671067pt;}
.y69{bottom:834.671333pt;}
.ye9{bottom:838.450000pt;}
.y4{bottom:839.962000pt;}
.y22b{bottom:844.949867pt;}
.y1e7{bottom:846.010000pt;}
.y26e{bottom:846.917067pt;}
.y2b1{bottom:847.975467pt;}
.y183{bottom:849.330267pt;}
.y67{bottom:849.335333pt;}
.ye8{bottom:853.039333pt;}
.y68{bottom:855.231333pt;}
.y22a{bottom:858.707867pt;}
.y26d{bottom:860.372667pt;}
.y2b0{bottom:861.279867pt;}
.y182{bottom:863.994267pt;}
.y66{bottom:863.999333pt;}
.y64{bottom:864.000667pt;}
.y3{bottom:866.647741pt;}
.ye7{bottom:867.628667pt;}
.y65{bottom:869.896667pt;}
.y229{bottom:872.464667pt;}
.y26c{bottom:873.827067pt;}
.y2af{bottom:874.658667pt;}
.y181{bottom:878.658267pt;}
.y63{bottom:878.664667pt;}
.y61{bottom:878.666000pt;}
.ye6{bottom:882.217683pt;}
.y62{bottom:884.560667pt;}
.y1e6{bottom:884.636667pt;}
.y228{bottom:885.769067pt;}
.y26b{bottom:887.358267pt;}
.y2ae{bottom:887.963067pt;}
.y2{bottom:890.683333pt;}
.y180{bottom:893.323600pt;}
.y60{bottom:893.330000pt;}
.ye5{bottom:899.528765pt;}
.y227{bottom:899.601467pt;}
.y26a{bottom:900.662667pt;}
.y2ad{bottom:901.341867pt;}
.y1e5{bottom:901.416667pt;}
.y17f{bottom:907.987600pt;}
.y5e{bottom:907.994000pt;}
.y226{bottom:913.359467pt;}
.y5f{bottom:913.890000pt;}
.y269{bottom:914.192667pt;}
.y2ac{bottom:914.646267pt;}
.y1e4{bottom:920.996667pt;}
.y17e{bottom:922.652933pt;}
.y5d{bottom:922.658000pt;}
.y225{bottom:927.117467pt;}
.y268{bottom:927.648267pt;}
.y2ab{bottom:927.950667pt;}
.ye4{bottom:928.706000pt;}
.y51{bottom:933.996667pt;}
.y1e3{bottom:935.811333pt;}
.y17d{bottom:937.316933pt;}
.y5c{bottom:937.323333pt;}
.y224{bottom:940.874267pt;}
.y267{bottom:941.178267pt;}
.y2aa{bottom:941.329467pt;}
.y1e2{bottom:950.551333pt;}
.ye3{bottom:951.307333pt;}
.y17c{bottom:951.980933pt;}
.y5b{bottom:951.987333pt;}
.y223{bottom:954.178667pt;}
.y266{bottom:954.482667pt;}
.y2a9{bottom:954.633867pt;}
.ye2{bottom:965.971333pt;}
.y56{bottom:966.533333pt;}
.y17b{bottom:966.646267pt;}
.y59{bottom:966.651333pt;}
.y1e1{bottom:967.332667pt;}
.y222{bottom:968.011067pt;}
.y265{bottom:968.012667pt;}
.y5a{bottom:972.548667pt;}
.yf3{bottom:993.335333pt;}
.he{height:22.720000pt;}
.hd{height:23.856000pt;}
.h13{height:24.924676pt;}
.ha{height:27.694593pt;}
.h20{height:28.839615pt;}
.hc{height:30.292955pt;}
.h19{height:33.236918pt;}
.h5{height:34.608000pt;}
.h28{height:36.530667pt;}
.h18{height:36.960000pt;}
.hb{height:37.392000pt;}
.h1f{height:38.453333pt;}
.h1b{height:38.891375pt;}
.h1e{height:38.894237pt;}
.h1d{height:38.897100pt;}
.h1c{height:38.898368pt;}
.hf{height:38.937500pt;}
.h9{height:40.376000pt;}
.h8{height:40.746667pt;}
.h29{height:41.541333pt;}
.h7{height:41.546667pt;}
.h26{height:41.561600pt;}
.h11{height:41.875000pt;}
.h2a{height:43.123200pt;}
.h15{height:43.793142pt;}
.h16{height:43.794209pt;}
.h14{height:43.796876pt;}
.h12{height:43.797409pt;}
.h17{height:43.798476pt;}
.h4{height:48.047630pt;}
.h25{height:48.390518pt;}
.h23{height:48.689185pt;}
.h21{height:48.694518pt;}
.h22{height:48.696651pt;}
.h24{height:48.699851pt;}
.h6{height:57.656250pt;}
.h3{height:65.370282pt;}
.h1a{height:75.868918pt;}
.h27{height:132.949333pt;}
.h2{height:1043.981333pt;}
.h10{height:1067.866667pt;}
.h0{height:1067.868000pt;}
.h1{height:1068.000000pt;}
.w2{width:785.990667pt;}
.w0{width:809.877333pt;}
.w1{width:810.000000pt;}
.x0{left:0.000000pt;}
.x1{left:11.943333pt;}
.x1f{left:24.000000pt;}
.x2{left:56.692800pt;}
.x5b{left:61.984133pt;}
.xd{left:68.636133pt;}
.x33{left:76.799867pt;}
.x3{left:88.289733pt;}
.x34{left:90.103867pt;}
.x20{left:95.168400pt;}
.x3f{left:96.604667pt;}
.x5{left:101.140000pt;}
.x21{left:108.925867pt;}
.x40{left:111.722800pt;}
.xa{left:113.688133pt;}
.x53{left:116.862933pt;}
.xb{left:124.422000pt;}
.x38{left:128.202000pt;}
.x2f{left:134.098000pt;}
.x54{left:136.743333pt;}
.x50{left:139.767333pt;}
.x8{left:145.587333pt;}
.x2c{left:157.076667pt;}
.x30{left:161.007333pt;}
.x24{left:164.636667pt;}
.x9{left:166.526000pt;}
.x2d{left:171.288667pt;}
.x51{left:176.202000pt;}
.x25{left:178.015333pt;}
.x52{left:187.842000pt;}
.x3d{left:191.471333pt;}
.x3b{left:200.692667pt;}
.x22{left:203.943333pt;}
.x3e{left:209.083333pt;}
.x26{left:210.292667pt;}
.x3c{left:214.602000pt;}
.x23{left:218.607333pt;}
.x4f{left:230.627333pt;}
.x27{left:236.674000pt;}
.x1a{left:239.546000pt;}
.x43{left:244.762000pt;}
.xc{left:248.315333pt;}
.x44{left:256.403333pt;}
.x28{left:262.526000pt;}
.x1b{left:265.624640pt;}
.xe{left:270.236667pt;}
.x29{left:277.492667pt;}
.xf{left:287.092667pt;}
.x35{left:292.232667pt;}
.x37{left:294.198000pt;}
.x55{left:300.396667pt;}
.x36{left:307.124667pt;}
.x2a{left:310.602000pt;}
.x56{left:314.910000pt;}
.x2b{left:325.568667pt;}
.x39{left:339.703333pt;}
.x32{left:341.594000pt;}
.x41{left:345.146000pt;}
.x31{left:350.739333pt;}
.x6{left:353.007333pt;}
.x3a{left:355.955333pt;}
.x42{left:363.288667pt;}
.x7{left:365.782000pt;}
.x2e{left:366.992667pt;}
.x4e{left:367.974000pt;}
.x4d{left:381.959333pt;}
.x10{left:408.640667pt;}
.x4a{left:411.743190pt;}
.x5c{left:414.008933pt;}
.x14{left:420.660667pt;}
.x58{left:422.022000pt;}
.x45{left:427.540667pt;}
.x59{left:432.679333pt;}
.x4{left:437.971333pt;}
.x5a{left:443.338000pt;}
.x46{left:444.246000pt;}
.x11{left:452.031333pt;}
.x12{left:480.075333pt;}
.x4b{left:492.397115pt;}
.x1e{left:540.933333pt;}
.x1d{left:572.749733pt;}
.x1c{left:591.495333pt;}
.x47{left:628.006000pt;}
.x48{left:642.671333pt;}
.x49{left:656.276667pt;}
.x4c{left:666.934667pt;}
.x19{left:690.671333pt;}
.x57{left:693.014000pt;}
.x17{left:695.886000pt;}
.x15{left:702.764667pt;}
.x13{left:707.603333pt;}
.x18{left:709.946000pt;}
.x16{left:723.779333pt;}
}




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