
    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_4642cd03ab7f4b31f4b7750d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_8553885ad4fbdd2dc6bc428e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5b8d3688c54253781a720c4d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.913000;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_d2dee6aa7f7bd643b632b3d5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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_5fc4aa492d05a35b7a1d0d0c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7043cfdd15d88f4af6232d81.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_33e6b42010d4abed480d8b71.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b5799718b61992390a31a01a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5702390c57a4dbae77cb7ff2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.431000;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_16c98c55c866d9c0ccffb6eb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d111f99ab54dbe74328bf311.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.697000;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_37c2d3ed330aca08654e5250.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.697000;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_f3c1dd24bb0af76ae95fdcf6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910645;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_2020c1c6a6af00ea886858af.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.922000;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_79015d27822423f2763d31e1.woff2')format("woff");}.fff{font-family:fff;line-height:0.672000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_c97bdfaedf8e0a266e0557b5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_5d5cb3fda725dd58e4dfcc1d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.725000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_652dad49d90dd70103dba8b2.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.820000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_59c370d6537fa0a2234ccaa5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.916000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-22.854000px;}
.v4{vertical-align:-9.816000px;}
.v9{vertical-align:-8.343600px;}
.v5{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:22.572000px;}
.v3{vertical-align:23.748000px;}
.v6{vertical-align:25.770000px;}
.v1{vertical-align:31.236000px;}
.v8{vertical-align:62.178000px;}
.ls3{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.001500px;}
.lsb{letter-spacing:0.002103px;}
.ls4{letter-spacing:0.031376px;}
.ls3a{letter-spacing:2.348446px;}
.ls13{letter-spacing:2.985234px;}
.ls2{letter-spacing:2.987065px;}
.ls2c{letter-spacing:2.989506px;}
.ls37{letter-spacing:2.995506px;}
.ls2a{letter-spacing:9.089471px;}
.ls34{letter-spacing:9.092532px;}
.ls2b{letter-spacing:9.095471px;}
.ls21{letter-spacing:14.849050px;}
.ls29{letter-spacing:15.741000px;}
.lsf{letter-spacing:16.187065px;}
.ls10{letter-spacing:16.193065px;}
.ls18{letter-spacing:17.429879px;}
.ls28{letter-spacing:18.079405px;}
.ls23{letter-spacing:18.105234px;}
.ls20{letter-spacing:18.119050px;}
.ls1d{letter-spacing:19.245000px;}
.ls3c{letter-spacing:19.701654px;}
.ls1f{letter-spacing:20.223000px;}
.ls1c{letter-spacing:20.421000px;}
.ls31{letter-spacing:20.609879px;}
.ls3e{letter-spacing:20.617133px;}
.ls35{letter-spacing:21.181133px;}
.ls26{letter-spacing:21.537000px;}
.ls43{letter-spacing:21.795000px;}
.ls41{letter-spacing:22.400939px;}
.ls33{letter-spacing:22.562939px;}
.ls32{letter-spacing:22.571879px;}
.ls14{letter-spacing:23.487234px;}
.ls42{letter-spacing:23.951879px;}
.ls27{letter-spacing:24.301405px;}
.lsc{letter-spacing:24.807234px;}
.ls24{letter-spacing:24.873000px;}
.ls1e{letter-spacing:26.247000px;}
.ls3d{letter-spacing:26.660939px;}
.ls1a{letter-spacing:26.925234px;}
.ls1b{letter-spacing:26.967000px;}
.ls39{letter-spacing:28.688939px;}
.ls38{letter-spacing:28.694879px;}
.ls3b{letter-spacing:28.820939px;}
.ls36{letter-spacing:29.190230px;}
.ls30{letter-spacing:29.885879px;}
.ls17{letter-spacing:29.887133px;}
.ls15{letter-spacing:29.888939px;}
.ls44{letter-spacing:29.889000px;}
.ls19{letter-spacing:29.892230px;}
.ls1{letter-spacing:30.153234px;}
.ls12{letter-spacing:30.405234px;}
.ls6{letter-spacing:30.645234px;}
.ls2f{letter-spacing:30.703379px;}
.ls2e{letter-spacing:30.722879px;}
.ls16{letter-spacing:30.728803px;}
.ls5{letter-spacing:31.953234px;}
.ls3f{letter-spacing:31.998230px;}
.ls22{letter-spacing:32.349234px;}
.ls0{letter-spacing:32.373935px;}
.ls40{letter-spacing:32.777879px;}
.ls7{letter-spacing:33.267234px;}
.ls8{letter-spacing:35.013234px;}
.lsd{letter-spacing:38.615065px;}
.ls11{letter-spacing:38.885065px;}
.ls9{letter-spacing:41.511234px;}
.lse{letter-spacing:42.269065px;}
.lsa{letter-spacing:50.361234px;}
.ls25{letter-spacing:51.947879px;}
.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;}
}
.ws2e{word-spacing:-42.636736px;}
.ws3{word-spacing:-21.282291px;}
.ws12c{word-spacing:-19.571167px;}
.ws65{word-spacing:-18.183121px;}
.wsd{word-spacing:-16.730042px;}
.ws7e{word-spacing:-15.358758px;}
.ws10c{word-spacing:-12.756658px;}
.ws108{word-spacing:-12.749663px;}
.ws103{word-spacing:-12.748760px;}
.ws109{word-spacing:-12.744566px;}
.ws19e{word-spacing:-3.652333px;}
.ws191{word-spacing:-3.521687px;}
.ws192{word-spacing:-3.455644px;}
.ws14d{word-spacing:-3.390844px;}
.ws14f{word-spacing:-3.390714px;}
.wsa0{word-spacing:-3.390255px;}
.ws14e{word-spacing:-3.325456px;}
.ws26f{word-spacing:-3.325325px;}
.ws107{word-spacing:-3.194090px;}
.wsea{word-spacing:-3.128636px;}
.ws115{word-spacing:-3.067738px;}
.ws114{word-spacing:-3.063247px;}
.ws56{word-spacing:-2.932339px;}
.wsa1{word-spacing:-2.823337px;}
.ws2b{word-spacing:-2.802086px;}
.wsa3{word-spacing:-2.801693px;}
.wsa7{word-spacing:-2.801497px;}
.ws35{word-spacing:-2.735977px;}
.ws36{word-spacing:-2.735650px;}
.ws1be{word-spacing:-2.539942px;}
.ws258{word-spacing:-2.539615px;}
.ws19a{word-spacing:-2.474685px;}
.ws2ac{word-spacing:-2.473899px;}
.ws3e{word-spacing:-2.408642px;}
.ws33{word-spacing:-2.286545px;}
.ws1fb{word-spacing:-2.277734px;}
.ws89{word-spacing:-2.226606px;}
.ws8b{word-spacing:-2.212345px;}
.ws8a{word-spacing:-2.211887px;}
.ws80{word-spacing:-2.124565px;}
.ws10b{word-spacing:-2.081437px;}
.ws147{word-spacing:-2.016114px;}
.ws294{word-spacing:-1.950856px;}
.ws146{word-spacing:-1.950267px;}
.ws101{word-spacing:-1.884748px;}
.ws153{word-spacing:-1.754691px;}
.ws111{word-spacing:-1.754494px;}
.ws154{word-spacing:-1.754102px;}
.ws124{word-spacing:-1.753905px;}
.wsdb{word-spacing:-1.688713px;}
.ws25e{word-spacing:-1.688517px;}
.ws13a{word-spacing:-1.623259px;}
.ws27{word-spacing:-1.557740px;}
.ws18f{word-spacing:-1.492286px;}
.ws235{word-spacing:-1.426897px;}
.ws136{word-spacing:-1.361509px;}
.ws254{word-spacing:-1.295989px;}
.ws181{word-spacing:-1.268443px;}
.wsdd{word-spacing:-1.230535px;}
.wsf5{word-spacing:-1.165343px;}
.ws14b{word-spacing:-1.099496px;}
.ws84{word-spacing:-0.995387px;}
.ws211{word-spacing:-0.969112px;}
.ws4f{word-spacing:-0.968523px;}
.ws79{word-spacing:-0.941376px;}
.ws231{word-spacing:-0.903134px;}
.ws183{word-spacing:-0.878825px;}
.ws8c{word-spacing:-0.837877px;}
.ws1f7{word-spacing:-0.801254px;}
.ws9d{word-spacing:-0.772488px;}
.ws9c{word-spacing:-0.758677px;}
.ws91{word-spacing:-0.707100px;}
.ws1ba{word-spacing:-0.706903px;}
.ws297{word-spacing:-0.641515px;}
.ws286{word-spacing:-0.576257px;}
.wsd4{word-spacing:-0.511062px;}
.ws13b{word-spacing:-0.444891px;}
.ws293{word-spacing:-0.444694px;}
.ws152{word-spacing:-0.379502px;}
.ws17d{word-spacing:-0.322911px;}
.ws15b{word-spacing:-0.320438px;}
.ws15d{word-spacing:-0.295878px;}
.ws3d{word-spacing:-0.248529px;}
.ws1ab{word-spacing:-0.183140px;}
.ws14a{word-spacing:-0.117883px;}
.ws6{word-spacing:-0.071730px;}
.ws208{word-spacing:-0.065454px;}
.ws15a{word-spacing:-0.053796px;}
.ws149{word-spacing:-0.052494px;}
.ws24b{word-spacing:-0.052363px;}
.ws50{word-spacing:-0.052298px;}
.ws12d{word-spacing:-0.047820px;}
.ws134{word-spacing:-0.035868px;}
.ws19d{word-spacing:-0.019576px;}
.ws48{word-spacing:0.000000px;}
.ws274{word-spacing:0.013091px;}
.ws28{word-spacing:0.078479px;}
.ws43{word-spacing:0.134436px;}
.ws22c{word-spacing:0.143868px;}
.ws257{word-spacing:0.143999px;}
.ws2b4{word-spacing:0.209126px;}
.ws244{word-spacing:0.209256px;}
.ws1d4{word-spacing:0.209453px;}
.ws9f{word-spacing:0.222216px;}
.ws59{word-spacing:0.274907px;}
.ws24d{word-spacing:0.275300px;}
.ws212{word-spacing:0.340099px;}
.ws5a{word-spacing:0.340688px;}
.ws250{word-spacing:0.405488px;}
.ws22f{word-spacing:0.406077px;}
.ws1ea{word-spacing:0.471465px;}
.ws116{word-spacing:0.484360px;}
.ws40{word-spacing:0.536265px;}
.ws3f{word-spacing:0.536723px;}
.ws1c0{word-spacing:0.602111px;}
.ws73{word-spacing:0.618654px;}
.ws263{word-spacing:0.647129px;}
.ws150{word-spacing:0.667500px;}
.ws265{word-spacing:0.667631px;}
.ws17e{word-spacing:0.678202px;}
.ws12{word-spacing:0.797884px;}
.wsae{word-spacing:0.798277px;}
.ws18d{word-spacing:0.798539px;}
.ws199{word-spacing:0.863862px;}
.ws113{word-spacing:0.863993px;}
.ws15{word-spacing:0.904996px;}
.ws23{word-spacing:0.917855px;}
.wsaf{word-spacing:0.929120px;}
.wsee{word-spacing:0.994704px;}
.ws157{word-spacing:0.995097px;}
.wsdc{word-spacing:1.060093px;}
.wsb7{word-spacing:1.060486px;}
.wsb6{word-spacing:1.112673px;}
.ws145{word-spacing:1.126071px;}
.ws9e{word-spacing:1.191263px;}
.ws233{word-spacing:1.191459px;}
.ws2a2{word-spacing:1.256717px;}
.ws1c9{word-spacing:1.256913px;}
.ws15f{word-spacing:1.264260px;}
.wsdf{word-spacing:1.322105px;}
.wsde{word-spacing:1.322171px;}
.wsbd{word-spacing:1.371637px;}
.wsda{word-spacing:1.387494px;}
.wsd9{word-spacing:1.387625px;}
.ws19{word-spacing:1.453079px;}
.ws1fc{word-spacing:1.518467px;}
.ws190{word-spacing:1.518533px;}
.ws1a3{word-spacing:1.583987px;}
.ws240{word-spacing:1.631642px;}
.ws77{word-spacing:1.641047px;}
.ws241{word-spacing:1.649703px;}
.ws246{word-spacing:1.845803px;}
.ws148{word-spacing:1.911257px;}
.wsbb{word-spacing:1.976711px;}
.wsba{word-spacing:2.042099px;}
.ws104{word-spacing:2.042165px;}
.ws105{word-spacing:2.042296px;}
.ws1a{word-spacing:2.107488px;}
.ws5b{word-spacing:2.173073px;}
.ws45{word-spacing:2.178630px;}
.ws2c8{word-spacing:2.237872px;}
.ws2bb{word-spacing:2.238265px;}
.ws169{word-spacing:2.238461px;}
.wsb3{word-spacing:2.239116px;}
.ws2a{word-spacing:2.303915px;}
.ws8f{word-spacing:2.304308px;}
.ws1bb{word-spacing:2.369697px;}
.ws18{word-spacing:2.434692px;}
.ws1a7{word-spacing:2.434889px;}
.ws123{word-spacing:2.435282px;}
.ws210{word-spacing:2.438065px;}
.ws248{word-spacing:2.499885px;}
.wsf0{word-spacing:2.500474px;}
.wsf1{word-spacing:2.500670px;}
.wsc0{word-spacing:2.609214px;}
.ws158{word-spacing:2.631251px;}
.wsbe{word-spacing:2.662902px;}
.wsbf{word-spacing:2.663279px;}
.ws1fa{word-spacing:2.696705px;}
.ws90{word-spacing:2.709796px;}
.ws27c{word-spacing:2.752766px;}
.wsc4{word-spacing:2.753962px;}
.ws275{word-spacing:2.761450px;}
.ws119{word-spacing:2.762093px;}
.wsc6{word-spacing:2.765890px;}
.ws2cb{word-spacing:2.827482px;}
.ws24a{word-spacing:2.827613px;}
.ws2d7{word-spacing:2.827678px;}
.ws285{word-spacing:2.841162px;}
.ws20c{word-spacing:2.893067px;}
.wsc1{word-spacing:2.932043px;}
.ws1c4{word-spacing:2.957866px;}
.ws1c3{word-spacing:2.958259px;}
.ws28c{word-spacing:3.024302px;}
.ws78{word-spacing:3.039420px;}
.ws161{word-spacing:3.039474px;}
.ws34{word-spacing:3.039635px;}
.ws175{word-spacing:3.070601px;}
.ws16e{word-spacing:3.071102px;}
.ws221{word-spacing:3.074162px;}
.ws4a{word-spacing:3.089102px;}
.ws51{word-spacing:3.089429px;}
.ws74{word-spacing:3.093431px;}
.ws172{word-spacing:3.126738px;}
.wsa8{word-spacing:3.154686px;}
.ws24e{word-spacing:3.154883px;}
.ws137{word-spacing:3.220075px;}
.ws138{word-spacing:3.220664px;}
.ws32{word-spacing:3.254281px;}
.wsb4{word-spacing:3.285464px;}
.ws135{word-spacing:3.285856px;}
.ws71{word-spacing:3.308454px;}
.ws29{word-spacing:3.351245px;}
.ws164{word-spacing:3.351507px;}
.ws1bf{word-spacing:3.416699px;}
.ws185{word-spacing:3.538721px;}
.ws242{word-spacing:3.547672px;}
.ws2ca{word-spacing:3.560174px;}
.ws2b5{word-spacing:3.560567px;}
.ws173{word-spacing:3.594302px;}
.wsff{word-spacing:3.612472px;}
.ws14{word-spacing:3.612864px;}
.ws16{word-spacing:3.613061px;}
.ws2bf{word-spacing:3.613454px;}
.ws121{word-spacing:3.613715px;}
.ws295{word-spacing:3.626152px;}
.ws1f3{word-spacing:3.638879px;}
.wsa2{word-spacing:3.661195px;}
.ws1af{word-spacing:3.678253px;}
.ws22{word-spacing:3.678515px;}
.ws267{word-spacing:3.743903px;}
.ws266{word-spacing:3.743969px;}
.ws1ae{word-spacing:3.809423px;}
.ws10a{word-spacing:3.809881px;}
.wsfa{word-spacing:3.874484px;}
.ws193{word-spacing:3.875073px;}
.wsc2{word-spacing:3.876925px;}
.ws264{word-spacing:3.888164px;}
.wsc3{word-spacing:3.900371px;}
.ws19b{word-spacing:3.910945px;}
.ws1fe{word-spacing:3.939873px;}
.wsfb{word-spacing:3.940462px;}
.ws1e3{word-spacing:4.005458px;}
.ws1d0{word-spacing:4.071239px;}
.ws2a7{word-spacing:4.084330px;}
.ws31{word-spacing:4.115448px;}
.ws1e1{word-spacing:4.136693px;}
.ws2cc{word-spacing:4.202081px;}
.ws1b1{word-spacing:4.202147px;}
.ws219{word-spacing:4.202278px;}
.ws216{word-spacing:4.211152px;}
.ws160{word-spacing:4.276836px;}
.ws243{word-spacing:4.333055px;}
.ws72{word-spacing:4.384213px;}
.ws1c1{word-spacing:4.398247px;}
.ws87{word-spacing:4.398509px;}
.ws2a1{word-spacing:4.477381px;}
.ws4{word-spacing:4.482982px;}
.ws10e{word-spacing:4.483125px;}
.ws29f{word-spacing:4.528697px;}
.ws5e{word-spacing:4.529417px;}
.ws1cb{word-spacing:4.529875px;}
.ws4e{word-spacing:4.594674px;}
.ws110{word-spacing:4.595067px;}
.wsf2{word-spacing:4.659867px;}
.ws1e{word-spacing:4.660063px;}
.ws1b4{word-spacing:4.660325px;}
.ws198{word-spacing:4.660456px;}
.ws2c3{word-spacing:4.725844px;}
.ws0{word-spacing:4.777218px;}
.ws168{word-spacing:4.790906px;}
.ws1a4{word-spacing:4.804324px;}
.wsf8{word-spacing:4.856687px;}
.wsa{word-spacing:4.856883px;}
.ws252{word-spacing:4.922075px;}
.ws8d{word-spacing:4.987464px;}
.wsef{word-spacing:5.052852px;}
.ws162{word-spacing:5.118503px;}
.ws13f{word-spacing:5.183891px;}
.ws20{word-spacing:5.184284px;}
.ws2bd{word-spacing:5.314472px;}
.ws52{word-spacing:5.314865px;}
.ws1{word-spacing:5.379492px;}
.ws1a1{word-spacing:5.380319px;}
.ws21{word-spacing:5.445511px;}
.ws247{word-spacing:5.510900px;}
.ws1a6{word-spacing:5.524579px;}
.ws8e{word-spacing:5.576681px;}
.ws1c5{word-spacing:5.576877px;}
.ws272{word-spacing:5.589772px;}
.ws10{word-spacing:5.641677px;}
.wse6{word-spacing:5.707654px;}
.wsa9{word-spacing:5.708047px;}
.ws76{word-spacing:5.729113px;}
.wsaa{word-spacing:5.772846px;}
.ws18c{word-spacing:5.773043px;}
.ws299{word-spacing:5.838235px;}
.ws49{word-spacing:5.838497px;}
.ws142{word-spacing:5.851326px;}
.ws276{word-spacing:5.851588px;}
.ws234{word-spacing:5.903885px;}
.ws129{word-spacing:5.904474px;}
.wsca{word-spacing:5.943866px;}
.ws2d2{word-spacing:5.969078px;}
.ws1b6{word-spacing:5.969405px;}
.wsc{word-spacing:5.969667px;}
.wsc9{word-spacing:5.980652px;}
.wsf{word-spacing:6.100444px;}
.ws204{word-spacing:6.165505px;}
.ws291{word-spacing:6.165832px;}
.ws30{word-spacing:6.231221px;}
.wsa6{word-spacing:6.231483px;}
.ws18e{word-spacing:6.296871px;}
.ws25b{word-spacing:6.362260px;}
.ws197{word-spacing:6.427452px;}
.ws174{word-spacing:6.464669px;}
.ws126{word-spacing:6.492513px;}
.wsfc{word-spacing:6.493102px;}
.ws12f{word-spacing:6.558229px;}
.ws1bd{word-spacing:6.558491px;}
.ws25c{word-spacing:6.590010px;}
.ws64{word-spacing:6.623618px;}
.ws12b{word-spacing:6.623879px;}
.wsa4{word-spacing:6.624272px;}
.ws125{word-spacing:6.624468px;}
.ws2da{word-spacing:6.636708px;}
.ws2b6{word-spacing:6.637559px;}
.ws12a{word-spacing:6.667935px;}
.ws1da{word-spacing:6.689072px;}
.ws2d1{word-spacing:6.689661px;}
.ws230{word-spacing:6.702359px;}
.ws54{word-spacing:6.702490px;}
.ws2b1{word-spacing:6.702751px;}
.wsad{word-spacing:6.754656px;}
.ws2c{word-spacing:6.755049px;}
.ws19c{word-spacing:6.755311px;}
.ws1b7{word-spacing:6.820307px;}
.ws24f{word-spacing:6.820700px;}
.ws62{word-spacing:6.951215px;}
.ws21c{word-spacing:7.016276px;}
.wsbc{word-spacing:7.020055px;}
.ws47{word-spacing:7.074013px;}
.ws127{word-spacing:7.081665px;}
.wse4{word-spacing:7.147446px;}
.ws1f0{word-spacing:7.147708px;}
.ws218{word-spacing:7.209342px;}
.wseb{word-spacing:7.212507px;}
.wsfe{word-spacing:7.212834px;}
.ws112{word-spacing:7.213031px;}
.ws217{word-spacing:7.220607px;}
.ws14c{word-spacing:7.278223px;}
.ws205{word-spacing:7.278485px;}
.ws44{word-spacing:7.343423px;}
.ws1f9{word-spacing:7.343612px;}
.wsfd{word-spacing:7.343873px;}
.ws98{word-spacing:7.344266px;}
.ws1f6{word-spacing:7.474847px;}
.ws163{word-spacing:7.475043px;}
.ws1cf{word-spacing:7.539515px;}
.ws95{word-spacing:7.539843px;}
.ws1fd{word-spacing:7.540301px;}
.ws94{word-spacing:7.540432px;}
.ws2f{word-spacing:7.540694px;}
.ws2a0{word-spacing:7.553523px;}
.wsb5{word-spacing:7.605493px;}
.ws2d{word-spacing:7.605820px;}
.ws196{word-spacing:7.670882px;}
.ws29c{word-spacing:7.671471px;}
.ws277{word-spacing:7.684300px;}
.ws1a8{word-spacing:7.749754px;}
.ws46{word-spacing:7.827049px;}
.ws281{word-spacing:7.867571px;}
.ws23f{word-spacing:7.932828px;}
.ws2aa{word-spacing:7.998217px;}
.ws1f8{word-spacing:7.998479px;}
.wsb9{word-spacing:8.063606px;}
.ws1e7{word-spacing:8.063933px;}
.ws2d5{word-spacing:8.077547px;}
.wsb8{word-spacing:8.078430px;}
.ws215{word-spacing:8.129256px;}
.ws1e0{word-spacing:8.129387px;}
.ws140{word-spacing:8.129649px;}
.wsac{word-spacing:8.195037px;}
.ws53{word-spacing:8.207932px;}
.ws1ef{word-spacing:8.260098px;}
.ws41{word-spacing:8.260426px;}
.wsf3{word-spacing:8.325814px;}
.ws2a9{word-spacing:8.338905px;}
.ws1a0{word-spacing:8.391203px;}
.ws2be{word-spacing:8.404294px;}
.ws2{word-spacing:8.414072px;}
.ws256{word-spacing:8.414216px;}
.ws20b{word-spacing:8.456657px;}
.wsd5{word-spacing:8.485516px;}
.ws93{word-spacing:8.521345px;}
.wsf6{word-spacing:8.522045px;}
.ws106{word-spacing:8.522307px;}
.ws289{word-spacing:8.535136px;}
.wsf7{word-spacing:8.587434px;}
.ws10f{word-spacing:8.587565px;}
.ws2a6{word-spacing:8.665586px;}
.ws298{word-spacing:8.718473px;}
.ws21b{word-spacing:8.783272px;}
.wsb1{word-spacing:8.783600px;}
.wsb2{word-spacing:8.783861px;}
.ws13{word-spacing:8.980092px;}
.ws3a{word-spacing:8.980420px;}
.wse{word-spacing:8.993511px;}
.ws70{word-spacing:9.010830px;}
.ws96{word-spacing:9.045481px;}
.ws201{word-spacing:9.071882px;}
.ws37{word-spacing:9.101394px;}
.ws144{word-spacing:9.110870px;}
.ws38{word-spacing:9.176651px;}
.ws117{word-spacing:9.229913px;}
.ws88{word-spacing:9.242039px;}
.ws207{word-spacing:9.242105px;}
.ws156{word-spacing:9.307101px;}
.ws155{word-spacing:9.307428px;}
.ws11{word-spacing:9.307690px;}
.ws260{word-spacing:9.372816px;}
.wse3{word-spacing:9.373013px;}
.ws249{word-spacing:9.373078px;}
.ws1bc{word-spacing:9.385907px;}
.ws159{word-spacing:9.438205px;}
.ws1f{word-spacing:9.438467px;}
.ws2d0{word-spacing:9.451296px;}
.ws23d{word-spacing:9.503594px;}
.ws63{word-spacing:9.503921px;}
.ws2b8{word-spacing:9.569048px;}
.ws23e{word-spacing:9.569637px;}
.ws2c9{word-spacing:9.587518px;}
.ws188{word-spacing:9.609024px;}
.ws21a{word-spacing:9.634698px;}
.ws167{word-spacing:9.635025px;}
.ws165{word-spacing:9.635287px;}
.ws189{word-spacing:9.691440px;}
.ws1ed{word-spacing:9.765737px;}
.ws1eb{word-spacing:9.809636px;}
.ws1ff{word-spacing:9.831191px;}
.ws7a{word-spacing:9.871297px;}
.ws1db{word-spacing:9.896645px;}
.ws28e{word-spacing:9.909736px;}
.ws25d{word-spacing:9.962099px;}
.ws1f4{word-spacing:9.983141px;}
.ws253{word-spacing:10.027553px;}
.ws102{word-spacing:10.032954px;}
.ws290{word-spacing:10.092810px;}
.wse2{word-spacing:10.093007px;}
.ws270{word-spacing:10.093072px;}
.ws1c2{word-spacing:10.158199px;}
.wse5{word-spacing:10.158788px;}
.ws21e{word-spacing:10.218297px;}
.ws5d{word-spacing:10.354692px;}
.ws271{word-spacing:10.381136px;}
.ws128{word-spacing:10.420080px;}
.ws5c{word-spacing:10.420277px;}
.ws2c4{word-spacing:10.440248px;}
.wsd0{word-spacing:10.463483px;}
.ws2a4{word-spacing:10.485796px;}
.ws1ca{word-spacing:10.551185px;}
.ws1cc{word-spacing:10.614150px;}
.ws1ce{word-spacing:10.616639px;}
.ws1cd{word-spacing:10.616901px;}
.ws245{word-spacing:10.681700px;}
.ws28d{word-spacing:10.747416px;}
.ws1d3{word-spacing:10.747547px;}
.ws57{word-spacing:10.813001px;}
.ws2b7{word-spacing:10.813066px;}
.ws232{word-spacing:10.877866px;}
.ws1f1{word-spacing:10.929638px;}
.ws1f2{word-spacing:10.943909px;}
.ws1c7{word-spacing:11.008129px;}
.ws1c8{word-spacing:11.008708px;}
.ws28b{word-spacing:11.008970px;}
.ws22e{word-spacing:11.009297px;}
.ws1e6{word-spacing:11.009363px;}
.ws1e4{word-spacing:11.021636px;}
.wsec{word-spacing:11.140402px;}
.wscb{word-spacing:11.149204px;}
.ws20a{word-spacing:11.153362px;}
.wscf{word-spacing:11.162455px;}
.wscd{word-spacing:11.163047px;}
.wsed{word-spacing:11.205463px;}
.ws195{word-spacing:11.205790px;}
.ws1b{word-spacing:11.206118px;}
.ws2c2{word-spacing:11.218881px;}
.ws17b{word-spacing:11.249968px;}
.wsa5{word-spacing:11.271179px;}
.ws2cd{word-spacing:11.334607px;}
.ws4b{word-spacing:11.336567px;}
.ws4c{word-spacing:11.336895px;}
.ws60{word-spacing:11.402087px;}
.ws151{word-spacing:11.598187px;}
.ws20f{word-spacing:11.598514px;}
.ws1e2{word-spacing:11.663903px;}
.ws27e{word-spacing:11.676994px;}
.ws16c{word-spacing:11.742292px;}
.ws16d{word-spacing:11.750302px;}
.wsab{word-spacing:11.794418px;}
.ws1b9{word-spacing:11.794811px;}
.wse8{word-spacing:11.860396px;}
.ws1d{word-spacing:11.925093px;}
.ws10d{word-spacing:11.925457px;}
.ws1b3{word-spacing:11.990911px;}
.ws1b2{word-spacing:11.991173px;}
.ws66{word-spacing:12.056627px;}
.ws292{word-spacing:12.122015px;}
.wsf4{word-spacing:12.122277px;}
.ws278{word-spacing:12.135172px;}
.ws2a8{word-spacing:12.135368px;}
.ws26{word-spacing:12.187077px;}
.ws42{word-spacing:12.187404px;}
.ws141{word-spacing:12.187666px;}
.ws166{word-spacing:12.200167px;}
.wsb{word-spacing:12.252465px;}
.ws25a{word-spacing:12.253120px;}
.ws1a2{word-spacing:12.318508px;}
.ws2ab{word-spacing:12.383308px;}
.ws9{word-spacing:12.383897px;}
.ws2d3{word-spacing:12.448696px;}
.ws8{word-spacing:12.514674px;}
.ws26a{word-spacing:12.580259px;}
.ws268{word-spacing:12.587129px;}
.ws28f{word-spacing:12.592564px;}
.wsb0{word-spacing:12.645778px;}
.wse1{word-spacing:12.658804px;}
.ws22d{word-spacing:12.710905px;}
.wsf9{word-spacing:12.711167px;}
.ws3c{word-spacing:12.776294px;}
.ws21f{word-spacing:12.789973px;}
.ws81{word-spacing:12.830346px;}
.ws2c7{word-spacing:12.842009px;}
.ws261{word-spacing:12.907660px;}
.ws2c5{word-spacing:12.920489px;}
.ws200{word-spacing:12.973114px;}
.ws2b0{word-spacing:12.986139px;}
.wse9{word-spacing:13.038764px;}
.ws206{word-spacing:13.103891px;}
.ws1d8{word-spacing:13.234799px;}
.ws58{word-spacing:13.247890px;}
.ws27b{word-spacing:13.300711px;}
.wse7{word-spacing:13.365772px;}
.ws1c6{word-spacing:13.366100px;}
.ws29b{word-spacing:13.378536px;}
.ws1b5{word-spacing:13.431161px;}
.ws20e{word-spacing:13.431488px;}
.ws20d{word-spacing:13.496877px;}
.ws1e5{word-spacing:13.509706px;}
.ws25f{word-spacing:13.562003px;}
.ws1ee{word-spacing:13.627392px;}
.ws24c{word-spacing:13.692977px;}
.ws1c{word-spacing:13.705871px;}
.wse0{word-spacing:13.706068px;}
.ws214{word-spacing:13.757907px;}
.ws1d7{word-spacing:13.758431px;}
.ws97{word-spacing:13.819432px;}
.ws67{word-spacing:13.823885px;}
.ws2ce{word-spacing:13.836387px;}
.ws86{word-spacing:13.889273px;}
.ws85{word-spacing:13.889339px;}
.ws1ad{word-spacing:14.085701px;}
.ws6c{word-spacing:14.111490px;}
.ws1e8{word-spacing:14.151155px;}
.ws1b8{word-spacing:14.281670px;}
.ws3b{word-spacing:14.281997px;}
.ws2a5{word-spacing:14.412774px;}
.ws1dd{word-spacing:14.412971px;}
.ws4d{word-spacing:14.413102px;}
.ws2b9{word-spacing:14.544141px;}
.ws1a5{word-spacing:14.818589px;}
.ws1aa{word-spacing:14.884240px;}
.ws1d6{word-spacing:14.936537px;}
.ws269{word-spacing:14.949694px;}
.ws251{word-spacing:15.002057px;}
.ws92{word-spacing:15.004137px;}
.ws26e{word-spacing:15.067380px;}
.ws2c6{word-spacing:15.145597px;}
.ws259{word-spacing:15.394781px;}
.ws2af{word-spacing:15.525754px;}
.ws1d5{word-spacing:15.590881px;}
.ws186{word-spacing:15.644648px;}
.ws7d{word-spacing:15.735007px;}
.ws18b{word-spacing:15.755864px;}
.ws2b2{word-spacing:15.787374px;}
.ws61{word-spacing:15.852959px;}
.ws27d{word-spacing:15.931504px;}
.ws262{word-spacing:15.983867px;}
.ws213{word-spacing:16.040607px;}
.ws83{word-spacing:16.058106px;}
.ws6f{word-spacing:16.075241px;}
.ws1d1{word-spacing:16.180229px;}
.ws1f5{word-spacing:16.245486px;}
.ws55{word-spacing:16.311137px;}
.ws1ac{word-spacing:16.324228px;}
.ws1a9{word-spacing:16.386087px;}
.wsd3{word-spacing:16.407780px;}
.ws2a3{word-spacing:16.572495px;}
.ws1df{word-spacing:16.572756px;}
.ws1de{word-spacing:16.572953px;}
.ws21d{word-spacing:16.592888px;}
.ws15c{word-spacing:16.623072px;}
.ws2d4{word-spacing:16.638145px;}
.ws2ba{word-spacing:16.651236px;}
.ws202{word-spacing:16.703861px;}
.ws203{word-spacing:16.704123px;}
.ws75{word-spacing:16.757454px;}
.ws9b{word-spacing:16.768922px;}
.ws282{word-spacing:16.769315px;}
.ws99{word-spacing:16.771718px;}
.ws288{word-spacing:16.811758px;}
.ws28a{word-spacing:16.834965px;}
.ws26d{word-spacing:16.848056px;}
.ws1e9{word-spacing:16.900223px;}
.ws1ec{word-spacing:17.053430px;}
.ws39{word-spacing:17.358139px;}
.ws29e{word-spacing:17.358728px;}
.ws194{word-spacing:17.645673px;}
.ws2cf{word-spacing:17.764216px;}
.ws2b3{word-spacing:17.829604px;}
.ws143{word-spacing:17.881967px;}
.ws13c{word-spacing:18.340342px;}
.ws287{word-spacing:18.733328px;}
.ws283{word-spacing:18.746026px;}
.wsd2{word-spacing:18.836186px;}
.ws280{word-spacing:19.060205px;}
.ws2bc{word-spacing:19.256305px;}
.ws2d9{word-spacing:19.334784px;}
.ws19f{word-spacing:19.387475px;}
.ws25{word-spacing:19.583313px;}
.ws279{word-spacing:19.596928px;}
.ws2ae{word-spacing:20.041949px;}
.ws2ad{word-spacing:20.068644px;}
.ws179{word-spacing:20.176246px;}
.ws177{word-spacing:20.206625px;}
.ws7c{word-spacing:20.253871px;}
.ws68{word-spacing:20.303831px;}
.ws7b{word-spacing:20.307613px;}
.ws29d{word-spacing:20.368696px;}
.ws69{word-spacing:20.369285px;}
.ws17{word-spacing:20.386385px;}
.ws82{word-spacing:20.523174px;}
.wsd8{word-spacing:20.565516px;}
.ws284{word-spacing:20.775100px;}
.ws13e{word-spacing:20.892459px;}
.ws26b{word-spacing:21.220187px;}
.ws255{word-spacing:21.350898px;}
.wsd7{word-spacing:21.547457px;}
.ws296{word-spacing:22.084180px;}
.ws1dc{word-spacing:22.136281px;}
.ws1d9{word-spacing:22.201866px;}
.wsc5{word-spacing:22.317001px;}
.wsc7{word-spacing:22.326920px;}
.ws273{word-spacing:22.529267px;}
.ws1d2{word-spacing:22.725629px;}
.ws5f{word-spacing:22.856537px;}
.ws26c{word-spacing:22.869628px;}
.ws9a{word-spacing:23.220424px;}
.ws5{word-spacing:23.312250px;}
.ws139{word-spacing:23.838085px;}
.ws118{word-spacing:23.886648px;}
.ws7f{word-spacing:23.912430px;}
.ws27f{word-spacing:24.492887px;}
.wsd6{word-spacing:24.754703px;}
.wsc8{word-spacing:25.547755px;}
.ws178{word-spacing:25.691859px;}
.wsd1{word-spacing:26.521428px;}
.ws170{word-spacing:27.217082px;}
.ws6e{word-spacing:28.184296px;}
.ws2d6{word-spacing:28.354869px;}
.ws6a{word-spacing:29.205509px;}
.ws23c{word-spacing:29.205575px;}
.ws2c0{word-spacing:29.336417px;}
.ws18a{word-spacing:29.464606px;}
.ws6d{word-spacing:30.082724px;}
.ws15e{word-spacing:30.152604px;}
.wscc{word-spacing:30.739334px;}
.ws27a{word-spacing:30.776471px;}
.wsce{word-spacing:31.788404px;}
.ws12e{word-spacing:31.875582px;}
.ws29a{word-spacing:32.500200px;}
.ws2c1{word-spacing:32.609379px;}
.ws6b{word-spacing:33.551262px;}
.ws23b{word-spacing:34.808148px;}
.ws1b0{word-spacing:34.965527px;}
.ws23a{word-spacing:35.358251px;}
.ws122{word-spacing:37.452517px;}
.ws17f{word-spacing:39.924656px;}
.ws7{word-spacing:40.560679px;}
.ws13d{word-spacing:42.024648px;}
.ws11a{word-spacing:44.223699px;}
.ws184{word-spacing:44.931330px;}
.ws220{word-spacing:45.524020px;}
.ws228{word-spacing:45.558097px;}
.ws236{word-spacing:45.791304px;}
.ws22b{word-spacing:48.988518px;}
.ws229{word-spacing:48.989019px;}
.ws130{word-spacing:50.831576px;}
.ws2d8{word-spacing:51.840505px;}
.ws227{word-spacing:56.409318px;}
.ws223{word-spacing:56.409819px;}
.ws100{word-spacing:58.280625px;}
.ws17c{word-spacing:58.895705px;}
.ws209{word-spacing:63.502569px;}
.ws24{word-spacing:63.502856px;}
.ws11f{word-spacing:64.494545px;}
.ws176{word-spacing:67.012983px;}
.ws120{word-spacing:69.507270px;}
.ws239{word-spacing:95.484640px;}
.ws224{word-spacing:96.192162px;}
.ws22a{word-spacing:96.192462px;}
.ws222{word-spacing:103.470361px;}
.ws11b{word-spacing:113.159071px;}
.ws11c{word-spacing:113.161178px;}
.ws11d{word-spacing:113.170391px;}
.ws237{word-spacing:120.354459px;}
.ws171{word-spacing:126.432180px;}
.ws132{word-spacing:130.070189px;}
.ws17a{word-spacing:139.295144px;}
.ws238{word-spacing:145.459583px;}
.ws131{word-spacing:156.450008px;}
.ws133{word-spacing:193.300610px;}
.ws187{word-spacing:193.428819px;}
.ws11e{word-spacing:193.937746px;}
.ws226{word-spacing:196.480518px;}
.ws16b{word-spacing:226.841237px;}
.ws182{word-spacing:246.204700px;}
.ws16a{word-spacing:271.046927px;}
.ws16f{word-spacing:283.642543px;}
.ws180{word-spacing:304.433178px;}
.ws225{word-spacing:372.840980px;}
._3{margin-left:-48.374109px;}
._1{margin-left:-45.620538px;}
._15{margin-left:-42.606974px;}
._30{margin-left:-40.585092px;}
._5{margin-left:-37.701632px;}
._b{margin-left:-34.950839px;}
._18{margin-left:-33.892806px;}
._f{margin-left:-32.726673px;}
._24{margin-left:-31.402266px;}
._d{margin-left:-30.317044px;}
._20{margin-left:-28.997534px;}
._1b{margin-left:-27.651521px;}
._a{margin-left:-26.414105px;}
._16{margin-left:-25.358568px;}
._1f{margin-left:-21.516323px;}
._4{margin-left:-11.017470px;}
._31{margin-left:-8.765435px;}
._11{margin-left:-7.367973px;}
._7{margin-left:-6.312240px;}
._19{margin-left:-5.175603px;}
._6{margin-left:-4.160627px;}
._0{margin-left:-2.409956px;}
._c{margin-left:-1.125346px;}
._13{width:1.020340px;}
._8{width:2.223773px;}
._e{width:3.665359px;}
._2{width:5.336970px;}
._23{width:6.622525px;}
._2e{width:7.815819px;}
._34{width:9.340727px;}
._1a{width:16.505638px;}
._21{width:18.430990px;}
._1e{width:19.678310px;}
._32{width:20.893000px;}
._14{width:22.819827px;}
._9{width:24.402202px;}
._12{width:25.449698px;}
._17{width:26.760786px;}
._44{width:28.199159px;}
._10{width:29.956031px;}
._49{width:31.747350px;}
._38{width:32.945252px;}
._36{width:35.014042px;}
._1c{width:36.860482px;}
._42{width:38.637835px;}
._37{width:40.348320px;}
._4b{width:41.890429px;}
._50{width:44.392163px;}
._4d{width:47.614630px;}
._4a{width:49.977969px;}
._35{width:51.315740px;}
._47{width:54.261890px;}
._45{width:58.096726px;}
._4e{width:61.376260px;}
._4c{width:64.341086px;}
._1d{width:65.454000px;}
._51{width:67.991173px;}
._46{width:69.017368px;}
._33{width:74.799296px;}
._3c{width:77.279322px;}
._48{width:78.873379px;}
._25{width:80.696250px;}
._43{width:82.291444px;}
._22{width:84.784860px;}
._3a{width:87.655447px;}
._52{width:102.696737px;}
._4f{width:105.708210px;}
._3d{width:119.484060px;}
._29{width:131.452019px;}
._40{width:136.079764px;}
._3f{width:137.109543px;}
._28{width:146.463855px;}
._2c{width:157.956950px;}
._26{width:168.215585px;}
._41{width:174.940757px;}
._2f{width:181.532598px;}
._2b{width:186.837447px;}
._2a{width:192.360199px;}
._3b{width:198.691989px;}
._2d{width:216.849331px;}
._3e{width:263.446528px;}
._39{width:285.174101px;}
._27{width:310.315297px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.868000px;}
.fsb{font-size:40.647000px;}
.fs7{font-size:42.000000px;}
.fs6{font-size:47.820000px;}
.fs8{font-size:48.000000px;}
.fs5{font-size:53.796000px;}
.fsa{font-size:55.635900px;}
.fsc{font-size:55.963170px;}
.fs9{font-size:56.944980px;}
.fs1{font-size:59.778000px;}
.fs3{font-size:65.454000px;}
.fs2{font-size:71.730000px;}
.fs0{font-size:86.076000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:3.223500px;}
.y9f{bottom:3.684000px;}
.ya0{bottom:70.746100px;}
.y3e{bottom:72.532609px;}
.y2e{bottom:95.169000px;}
.yfe{bottom:100.882500px;}
.y2d{bottom:110.562000px;}
.y15a{bottom:113.998500px;}
.y194{bottom:115.498500px;}
.y22c{bottom:116.275500px;}
.yfd{bottom:117.007500px;}
.y2c{bottom:125.953500px;}
.yd2{bottom:131.667000px;}
.y159{bottom:132.828000px;}
.y193{bottom:134.328000px;}
.y22b{bottom:140.788500px;}
.y2b{bottom:141.346500px;}
.y12b{bottom:142.078500px;}
.y2a5{bottom:145.818000px;}
.yfc{bottom:147.697500px;}
.y1bb{bottom:151.657500px;}
.y158{bottom:152.287500px;}
.y192{bottom:153.157500px;}
.yd1{bottom:153.438000px;}
.y3b{bottom:156.738000px;}
.y73{bottom:156.739500px;}
.y12a{bottom:157.471500px;}
.y22a{bottom:159.618000px;}
.y2a{bottom:162.453000px;}
.y2a4{bottom:164.647500px;}
.y1ba{bottom:170.487000px;}
.y157{bottom:171.117000px;}
.y191{bottom:171.987000px;}
.y72{bottom:172.131000px;}
.yd0{bottom:172.267500px;}
.y3a{bottom:177.844500px;}
.y229{bottom:178.447500px;}
.y129{bottom:178.576500px;}
.yfb{bottom:181.746000px;}
.y2a3{bottom:183.477000px;}
.y71{bottom:187.524000px;}
.y1b9{bottom:189.316500px;}
.y156{bottom:189.945000px;}
.y190{bottom:190.816500px;}
.ycf{bottom:191.097000px;}
.y29{bottom:191.392500px;}
.y128{bottom:194.701500px;}
.y228{bottom:197.425500px;}
.y39{bottom:200.539500px;}
.yfa{bottom:200.575500px;}
.y2a2{bottom:202.306500px;}
.y70{bottom:202.915500px;}
.y1b8{bottom:208.146000px;}
.y9d{bottom:208.629000px;}
.y155{bottom:208.774500px;}
.y18f{bottom:209.646000px;}
.y28{bottom:210.222000px;}
.yce{bottom:213.646500px;}
.y227{bottom:216.255000px;}
.y279{bottom:217.431000px;}
.y6f{bottom:218.308500px;}
.y9c{bottom:219.040500px;}
.y38{bottom:219.369000px;}
.y127{bottom:219.732000px;}
.yf9{bottom:220.002000px;}
.y1b7{bottom:226.975500px;}
.y154{bottom:227.604000px;}
.y18e{bottom:228.475500px;}
.y27{bottom:229.051500px;}
.y2a1{bottom:230.101500px;}
.y9b{bottom:234.432000px;}
.y226{bottom:235.084500px;}
.y278{bottom:236.260500px;}
.y253{bottom:237.949500px;}
.y37{bottom:238.198500px;}
.y126{bottom:238.561500px;}
.ycd{bottom:239.191500px;}
.y6e{bottom:239.413500px;}
.y1b6{bottom:245.805000px;}
.y153{bottom:246.433500px;}
.y18d{bottom:247.305000px;}
.y26{bottom:248.908500px;}
.y2a0{bottom:248.931000px;}
.y6d{bottom:249.825000px;}
.yf8{bottom:251.512500px;}
.y225{bottom:253.914000px;}
.y277{bottom:255.090000px;}
.y252{bottom:256.777500px;}
.y36{bottom:257.028000px;}
.y125{bottom:257.391000px;}
.y1fc{bottom:260.076000px;}
.y1b5{bottom:264.634500px;}
.yf7{bottom:264.699000px;}
.y6c{bottom:265.216500px;}
.y152{bottom:265.263000px;}
.y18c{bottom:267.634500px;}
.y25{bottom:267.738000px;}
.y29f{bottom:267.760500px;}
.yf6{bottom:270.342000px;}
.y1da{bottom:271.858500px;}
.ycc{bottom:272.683500px;}
.y224{bottom:272.743500px;}
.y276{bottom:273.919500px;}
.y251{bottom:275.607000px;}
.y35{bottom:275.857500px;}
.y124{bottom:276.220500px;}
.y1b4{bottom:283.464000px;}
.y151{bottom:284.092500px;}
.y6b{bottom:286.323000px;}
.y18b{bottom:286.464000px;}
.y24{bottom:286.567500px;}
.y29e{bottom:286.590000px;}
.yf5{bottom:290.863500px;}
.ycb{bottom:291.513000px;}
.y223{bottom:291.573000px;}
.y275{bottom:292.749000px;}
.y1fb{bottom:293.218275px;}
.y250{bottom:294.436500px;}
.y34{bottom:294.687000px;}
.y123{bottom:295.050000px;}
.y6a{bottom:296.734500px;}
.y1b3{bottom:302.293500px;}
.y150{bottom:302.922000px;}
.y18a{bottom:305.293500px;}
.y23{bottom:305.397000px;}
.y29d{bottom:305.419500px;}
.y1d9{bottom:309.079500px;}
.y1fa{bottom:309.317550px;}
.yf4{bottom:309.693000px;}
.yca{bottom:310.342500px;}
.y222{bottom:310.402500px;}
.y274{bottom:311.578500px;}
.y24f{bottom:313.266000px;}
.y33{bottom:313.516500px;}
.y122{bottom:313.879500px;}
.y69{bottom:317.839500px;}
.y1b2{bottom:321.123000px;}
.y14f{bottom:321.751500px;}
.y189{bottom:324.123000px;}
.y22{bottom:324.226500px;}
.y1f9{bottom:325.928400px;}
.y1d8{bottom:327.909000px;}
.y9a{bottom:327.997500px;}
.y68{bottom:328.251000px;}
.yf3{bottom:328.522500px;}
.yc9{bottom:329.172000px;}
.y221{bottom:329.232000px;}
.y273{bottom:330.408000px;}
.y24e{bottom:332.095500px;}
.y32{bottom:332.346000px;}
.y121{bottom:332.709000px;}
.y29c{bottom:333.216000px;}
.y1b1{bottom:339.951000px;}
.y14e{bottom:340.581000px;}
.y188{bottom:342.951000px;}
.y21{bottom:343.056000px;}
.y67{bottom:343.642500px;}
.y1d7{bottom:346.738500px;}
.y99{bottom:346.827000px;}
.yf2{bottom:347.352000px;}
.yc8{bottom:348.001500px;}
.y220{bottom:348.061500px;}
.y272{bottom:349.236000px;}
.y24d{bottom:350.925000px;}
.y31{bottom:351.174000px;}
.y120{bottom:351.538500px;}
.y29b{bottom:352.045500px;}
.y1f8{bottom:353.859000px;}
.y1b0{bottom:358.780500px;}
.y66{bottom:359.035500px;}
.y14d{bottom:359.410500px;}
.y20{bottom:361.885500px;}
.y187{bottom:363.280500px;}
.y1d6{bottom:365.568000px;}
.y98{bottom:365.656500px;}
.yf1{bottom:366.181500px;}
.yc7{bottom:366.831000px;}
.y21f{bottom:366.889500px;}
.y24c{bottom:369.754500px;}
.y30{bottom:370.003500px;}
.y29a{bottom:370.873500px;}
.y1f7{bottom:372.688500px;}
.y65{bottom:374.427000px;}
.y11f{bottom:375.135000px;}
.y271{bottom:377.350500px;}
.y1af{bottom:377.610000px;}
.y14c{bottom:378.868500px;}
.y1f{bottom:380.715000px;}
.y186{bottom:382.110000px;}
.y1d5{bottom:384.397500px;}
.y97{bottom:384.486000px;}
.yf0{bottom:385.011000px;}
.yc6{bottom:385.660500px;}
.y21e{bottom:385.719000px;}
.y2f{bottom:388.833000px;}
.y299{bottom:389.703000px;}
.y1f6{bottom:391.518000px;}
.y64{bottom:395.533500px;}
.y270{bottom:396.180000px;}
.y1ae{bottom:396.439500px;}
.y14b{bottom:397.698000px;}
.y24b{bottom:399.558000px;}
.y185{bottom:400.939500px;}
.y1d4{bottom:403.227000px;}
.y96{bottom:403.315500px;}
.yef{bottom:403.840500px;}
.yc5{bottom:404.490000px;}
.y11e{bottom:406.722000px;}
.y1e{bottom:407.662500px;}
.y298{bottom:408.532500px;}
.y1f5{bottom:410.347500px;}
.y21d{bottom:410.544000px;}
.y26f{bottom:415.009500px;}
.y1ad{bottom:415.269000px;}
.y14a{bottom:416.527500px;}
.y24a{bottom:418.387500px;}
.y184{bottom:419.769000px;}
.y1d3{bottom:422.056500px;}
.y95{bottom:422.145000px;}
.yee{bottom:422.670000px;}
.y63{bottom:423.016500px;}
.yc4{bottom:423.319500px;}
.y11d{bottom:425.551500px;}
.y297{bottom:427.362000px;}
.y1f4{bottom:429.177000px;}
.y26e{bottom:433.839000px;}
.y1ac{bottom:434.098500px;}
.y149{bottom:435.357000px;}
.y249{bottom:437.217000px;}
.y183{bottom:438.598500px;}
.y1d2{bottom:440.886000px;}
.y94{bottom:440.974500px;}
.yed{bottom:441.499500px;}
.y62{bottom:441.846000px;}
.yc3{bottom:442.149000px;}
.y11c{bottom:444.381000px;}
.y21c{bottom:446.055000px;}
.y296{bottom:446.191500px;}
.y1f3{bottom:448.006500px;}
.y26d{bottom:452.668500px;}
.y1ab{bottom:455.287500px;}
.y248{bottom:456.046500px;}
.y182{bottom:457.428000px;}
.y148{bottom:459.636000px;}
.y1d1{bottom:459.715500px;}
.y93{bottom:459.804000px;}
.yec{bottom:460.329000px;}
.y61{bottom:460.675500px;}
.yc2{bottom:460.977000px;}
.y11b{bottom:463.209000px;}
.y21b{bottom:464.884500px;}
.y1f2{bottom:466.836000px;}
.y26c{bottom:471.498000px;}
.y295{bottom:473.988000px;}
.y1aa{bottom:474.117000px;}
.y247{bottom:474.874500px;}
.y181{bottom:476.257500px;}
.y1d0{bottom:478.545000px;}
.y92{bottom:479.040000px;}
.yeb{bottom:479.158500px;}
.y60{bottom:479.505000px;}
.yc1{bottom:479.806500px;}
.y11a{bottom:482.038500px;}
.y21a{bottom:483.714000px;}
.y1f1{bottom:485.665500px;}
.y26b{bottom:490.327500px;}
.y294{bottom:492.817500px;}
.y180{bottom:495.087000px;}
.y1a9{bottom:495.304500px;}
.y1d{bottom:495.460500px;}
.y1cf{bottom:497.374500px;}
.y91{bottom:497.869500px;}
.y5f{bottom:498.333000px;}
.yc0{bottom:498.636000px;}
.y119{bottom:500.868000px;}
.y219{bottom:502.543500px;}
.y1f0{bottom:504.495000px;}
.y246{bottom:504.678000px;}
.y147{bottom:507.810000px;}
.y293{bottom:511.647000px;}
.y17f{bottom:513.916500px;}
.y1a8{bottom:514.134000px;}
.y1c{bottom:514.290000px;}
.y1ce{bottom:516.204000px;}
.y90{bottom:516.699000px;}
.y5e{bottom:517.162500px;}
.ybf{bottom:517.465500px;}
.y26a{bottom:518.442000px;}
.yea{bottom:519.498000px;}
.y118{bottom:519.697500px;}
.y1ef{bottom:523.324500px;}
.y245{bottom:523.507500px;}
.y292{bottom:530.476500px;}
.y17e{bottom:532.746000px;}
.y1a7{bottom:532.963500px;}
.y1b{bottom:533.119500px;}
.y8f{bottom:535.528500px;}
.y5d{bottom:535.992000px;}
.ybe{bottom:536.295000px;}
.y269{bottom:537.271500px;}
.y218{bottom:538.405500px;}
.y117{bottom:538.527000px;}
.y1cd{bottom:540.538500px;}
.y146{bottom:540.923250px;}
.y1ee{bottom:542.154000px;}
.y244{bottom:542.337000px;}
.y291{bottom:549.304500px;}
.y17d{bottom:551.575500px;}
.y1a6{bottom:551.793000px;}
.y1a{bottom:551.949000px;}
.ye9{bottom:552.214800px;}
.y8e{bottom:554.358000px;}
.y5c{bottom:554.821500px;}
.ybd{bottom:555.124500px;}
.y268{bottom:556.101000px;}
.y145{bottom:556.928325px;}
.y217{bottom:557.235000px;}
.y116{bottom:557.356500px;}
.y1ed{bottom:560.983500px;}
.y243{bottom:561.166500px;}
.ye8{bottom:569.115885px;}
.y17c{bottom:570.405000px;}
.y1a5{bottom:570.622500px;}
.y19{bottom:570.778500px;}
.y144{bottom:572.933400px;}
.y8d{bottom:573.187500px;}
.y1cc{bottom:573.222000px;}
.y5b{bottom:573.651000px;}
.ybc{bottom:573.954000px;}
.y267{bottom:574.930500px;}
.y216{bottom:576.064500px;}
.y115{bottom:576.186000px;}
.y290{bottom:577.101000px;}
.y1ec{bottom:579.813000px;}
.ye7{bottom:585.497550px;}
.y242{bottom:587.247000px;}
.y143{bottom:588.938400px;}
.y17b{bottom:589.233000px;}
.y1a4{bottom:589.452000px;}
.y18{bottom:589.608000px;}
.y8c{bottom:592.017000px;}
.y1cb{bottom:592.051500px;}
.y5a{bottom:592.480500px;}
.ybb{bottom:592.783500px;}
.y266{bottom:593.760000px;}
.y215{bottom:594.894000px;}
.y114{bottom:595.015500px;}
.y28f{bottom:595.930500px;}
.y1eb{bottom:598.642500px;}
.ye6{bottom:602.399820px;}
.y142{bottom:605.451000px;}
.y1a3{bottom:608.281500px;}
.y17{bottom:608.437500px;}
.y17a{bottom:609.562500px;}
.y8b{bottom:610.846500px;}
.y1ca{bottom:610.881000px;}
.y59{bottom:611.310000px;}
.yba{bottom:611.613000px;}
.y265{bottom:612.589500px;}
.y214{bottom:613.723500px;}
.y113{bottom:613.845000px;}
.y28e{bottom:614.760000px;}
.y1ea{bottom:617.472000px;}
.ye5{bottom:618.781485px;}
.y141{bottom:621.456075px;}
.y241{bottom:624.505500px;}
.y1a2{bottom:627.111000px;}
.y16{bottom:627.267000px;}
.y179{bottom:628.392000px;}
.y1c9{bottom:629.710500px;}
.y8a{bottom:630.084000px;}
.y58{bottom:630.139500px;}
.yb9{bottom:630.442500px;}
.y213{bottom:632.553000px;}
.y112{bottom:632.952000px;}
.y28d{bottom:633.589500px;}
.ye4{bottom:635.163150px;}
.y1e9{bottom:636.412500px;}
.y140{bottom:637.461150px;}
.y264{bottom:640.702500px;}
.y240{bottom:643.335000px;}
.y15{bottom:646.095000px;}
.y178{bottom:647.221500px;}
.y1c8{bottom:648.540000px;}
.y89{bottom:648.913500px;}
.y57{bottom:648.969000px;}
.yb8{bottom:649.272000px;}
.y212{bottom:651.382500px;}
.y111{bottom:651.781500px;}
.ye3{bottom:652.064250px;}
.y28c{bottom:652.419000px;}
.y13f{bottom:653.466225px;}
.y1a1{bottom:654.750000px;}
.y1e8{bottom:655.242000px;}
.y263{bottom:659.532000px;}
.y23f{bottom:662.164500px;}
.y14{bottom:664.924500px;}
.y177{bottom:666.051000px;}
.y1c7{bottom:667.369500px;}
.y88{bottom:667.743000px;}
.y56{bottom:667.798500px;}
.yb7{bottom:668.101500px;}
.y13e{bottom:669.471300px;}
.y211{bottom:670.212000px;}
.y1e7{bottom:674.071500px;}
.y110{bottom:675.378000px;}
.y1a0{bottom:675.672000px;}
.y262{bottom:678.361500px;}
.y28b{bottom:680.214000px;}
.ye2{bottom:681.859500px;}
.y176{bottom:684.880500px;}
.y13d{bottom:685.476375px;}
.y1c6{bottom:686.199000px;}
.y87{bottom:686.572500px;}
.y55{bottom:686.628000px;}
.yb6{bottom:686.931000px;}
.y23e{bottom:688.309500px;}
.y210{bottom:689.040000px;}
.y1e6{bottom:692.901000px;}
.y19f{bottom:696.594000px;}
.y13{bottom:697.164000px;}
.y261{bottom:697.191000px;}
.y28a{bottom:699.043500px;}
.ye1{bottom:700.689000px;}
.y13c{bottom:701.481450px;}
.y175{bottom:703.710000px;}
.y86{bottom:705.400500px;}
.y54{bottom:705.457500px;}
.yb5{bottom:705.760500px;}
.y10f{bottom:706.965000px;}
.y23d{bottom:707.139000px;}
.y20f{bottom:707.869500px;}
.y1c5{bottom:710.533500px;}
.y12{bottom:715.993500px;}
.y260{bottom:716.020500px;}
.y1e5{bottom:716.175000px;}
.y13b{bottom:717.485250px;}
.y289{bottom:717.873000px;}
.ye0{bottom:719.518500px;}
.y174{bottom:722.539500px;}
.y85{bottom:724.230000px;}
.yb4{bottom:724.588500px;}
.y10e{bottom:725.794500px;}
.y23c{bottom:725.968500px;}
.y20e{bottom:726.699000px;}
.y13a{bottom:733.490325px;}
.y19e{bottom:734.185500px;}
.y11{bottom:734.823000px;}
.y25f{bottom:734.850000px;}
.y288{bottom:736.702500px;}
.ydf{bottom:738.348000px;}
.y173{bottom:741.369000px;}
.y53{bottom:741.885000px;}
.y84{bottom:743.059500px;}
.y1c4{bottom:743.217000px;}
.yb3{bottom:743.418000px;}
.y10d{bottom:744.624000px;}
.y20d{bottom:745.528500px;}
.y139{bottom:749.495400px;}
.y19d{bottom:753.015000px;}
.y10{bottom:753.652500px;}
.y25e{bottom:753.679500px;}
.yde{bottom:757.177500px;}
.y23b{bottom:758.347500px;}
.y172{bottom:760.198500px;}
.y52{bottom:760.714500px;}
.y83{bottom:761.889000px;}
.y1c3{bottom:762.046500px;}
.yb2{bottom:762.247500px;}
.y10c{bottom:763.453500px;}
.y20c{bottom:764.358000px;}
.y287{bottom:764.499000px;}
.y138{bottom:765.500475px;}
.y19c{bottom:771.844500px;}
.yf{bottom:772.482000px;}
.ydd{bottom:776.007000px;}
.y1e4{bottom:777.090000px;}
.y23a{bottom:777.177000px;}
.y171{bottom:779.028000px;}
.y51{bottom:779.544000px;}
.y82{bottom:780.718500px;}
.y1c2{bottom:780.876000px;}
.yb1{bottom:781.077000px;}
.y137{bottom:781.505550px;}
.y25d{bottom:781.794000px;}
.y10b{bottom:782.283000px;}
.y286{bottom:783.327000px;}
.y19b{bottom:790.674000px;}
.ye{bottom:791.311500px;}
.y20b{bottom:792.600000px;}
.ydc{bottom:794.836500px;}
.y239{bottom:796.006500px;}
.y136{bottom:797.510625px;}
.y170{bottom:797.857500px;}
.y50{bottom:799.036500px;}
.y81{bottom:799.548000px;}
.y1c1{bottom:799.705500px;}
.yb0{bottom:799.906500px;}
.y25c{bottom:800.623500px;}
.y10a{bottom:801.112500px;}
.y285{bottom:802.156500px;}
.y19a{bottom:809.503500px;}
.yd{bottom:810.141000px;}
.y1e3{bottom:810.202425px;}
.y20a{bottom:811.429500px;}
.y135{bottom:813.515700px;}
.ydb{bottom:813.666000px;}
.y16f{bottom:816.687000px;}
.y4f{bottom:817.866000px;}
.y1e2{bottom:818.205600px;}
.y80{bottom:818.377500px;}
.y1c0{bottom:818.535000px;}
.yaf{bottom:818.736000px;}
.y25b{bottom:819.453000px;}
.y109{bottom:819.942000px;}
.y284{bottom:820.986000px;}
.y238{bottom:825.810000px;}
.y199{bottom:828.333000px;}
.yc{bottom:828.970500px;}
.y134{bottom:829.520775px;}
.y209{bottom:830.259000px;}
.yda{bottom:832.495500px;}
.y16e{bottom:835.516500px;}
.y4e{bottom:836.695500px;}
.y7f{bottom:837.207000px;}
.y1bf{bottom:837.364500px;}
.yae{bottom:837.565500px;}
.y25a{bottom:838.282500px;}
.y108{bottom:839.049000px;}
.y283{bottom:839.815500px;}
.y1e1{bottom:842.720025px;}
.y237{bottom:844.639500px;}
.y133{bottom:845.525850px;}
.y198{bottom:847.162500px;}
.yb{bottom:847.800000px;}
.y1e0{bottom:850.723200px;}
.yd9{bottom:851.325000px;}
.y16d{bottom:854.344500px;}
.y4d{bottom:855.525000px;}
.y7e{bottom:856.036500px;}
.y1be{bottom:856.194000px;}
.yad{bottom:856.395000px;}
.y259{bottom:857.112000px;}
.y107{bottom:857.878500px;}
.y208{bottom:858.499500px;}
.y132{bottom:861.530925px;}
.y236{bottom:863.469000px;}
.y197{bottom:865.992000px;}
.ya{bottom:866.629500px;}
.y282{bottom:867.612000px;}
.y4c{bottom:874.354500px;}
.y7d{bottom:874.866000px;}
.y1bd{bottom:875.023500px;}
.yac{bottom:875.224500px;}
.y1df{bottom:875.238825px;}
.y258{bottom:875.941500px;}
.y106{bottom:876.708000px;}
.y207{bottom:877.329000px;}
.y131{bottom:877.536000px;}
.yd8{bottom:877.671000px;}
.y16c{bottom:882.432000px;}
.y1de{bottom:883.240800px;}
.y196{bottom:884.821500px;}
.y9{bottom:885.457500px;}
.y281{bottom:886.441500px;}
.y4b{bottom:893.184000px;}
.y235{bottom:893.271000px;}
.y130{bottom:893.541075px;}
.y7c{bottom:893.695500px;}
.yab{bottom:894.054000px;}
.y1bc{bottom:894.510000px;}
.y206{bottom:896.158500px;}
.y105{bottom:900.304500px;}
.y195{bottom:903.651000px;}
.y257{bottom:904.054500px;}
.y8{bottom:904.287000px;}
.y280{bottom:905.271000px;}
.y1dd{bottom:907.756425px;}
.y12f{bottom:909.546150px;}
.y234{bottom:912.100500px;}
.y7b{bottom:912.525000px;}
.y4a{bottom:912.676500px;}
.yaa{bottom:912.883500px;}
.yd7{bottom:913.339500px;}
.y205{bottom:914.988000px;}
.y1dc{bottom:915.759750px;}
.y16b{bottom:922.480500px;}
.y256{bottom:922.884000px;}
.y12e{bottom:925.549950px;}
.y233{bottom:930.930000px;}
.y7a{bottom:931.354500px;}
.y49{bottom:931.506000px;}
.ya9{bottom:931.713000px;}
.y104{bottom:931.891500px;}
.yd6{bottom:932.169000px;}
.y27f{bottom:933.066000px;}
.y204{bottom:933.817500px;}
.y1db{bottom:940.274100px;}
.y12d{bottom:941.554950px;}
.y255{bottom:941.713500px;}
.y7{bottom:944.574000px;}
.y79{bottom:950.184000px;}
.y48{bottom:950.335500px;}
.ya8{bottom:950.542500px;}
.y103{bottom:950.721000px;}
.yd5{bottom:950.998500px;}
.y27e{bottom:951.895500px;}
.y203{bottom:952.647000px;}
.y12c{bottom:958.068750px;}
.y254{bottom:960.543000px;}
.y16a{bottom:962.829000px;}
.y232{bottom:963.721500px;}
.y6{bottom:964.000500px;}
.y47{bottom:969.165000px;}
.ya7{bottom:969.372000px;}
.y78{bottom:969.420000px;}
.y102{bottom:969.550500px;}
.yd4{bottom:969.828000px;}
.y202{bottom:971.476500px;}
.y27d{bottom:979.692000px;}
.y231{bottom:982.551000px;}
.y5{bottom:983.428500px;}
.y46{bottom:987.994500px;}
.ya6{bottom:988.201500px;}
.y77{bottom:988.249500px;}
.y101{bottom:988.380000px;}
.yd3{bottom:988.657500px;}
.y201{bottom:990.306000px;}
.y27c{bottom:998.521500px;}
.y230{bottom:1001.380500px;}
.ya5{bottom:1007.029500px;}
.y76{bottom:1007.079000px;}
.y100{bottom:1007.209500px;}
.y45{bottom:1007.487000px;}
.y200{bottom:1009.135500px;}
.y27b{bottom:1017.349500px;}
.y22f{bottom:1020.210000px;}
.y169{bottom:1021.588500px;}
.ya4{bottom:1025.859000px;}
.y75{bottom:1025.908500px;}
.yff{bottom:1026.039000px;}
.y4{bottom:1026.186000px;}
.y44{bottom:1026.316500px;}
.y165{bottom:1030.545000px;}
.y164{bottom:1035.454500px;}
.y27a{bottom:1036.179000px;}
.y15c{bottom:1036.279500px;}
.y163{bottom:1040.364000px;}
.y168{bottom:1044.184500px;}
.ya3{bottom:1044.688500px;}
.y74{bottom:1044.738000px;}
.y1ff{bottom:1044.997500px;}
.y43{bottom:1045.146000px;}
.y162{bottom:1045.273500px;}
.y3{bottom:1047.108000px;}
.y22e{bottom:1053.001500px;}
.y15b{bottom:1055.910000px;}
.ya2{bottom:1063.518000px;}
.y1fe{bottom:1063.827000px;}
.y42{bottom:1063.975500px;}
.y167{bottom:1066.779000px;}
.y22d{bottom:1071.831000px;}
.y161{bottom:1074.727500px;}
.y160{bottom:1079.637000px;}
.y1fd{bottom:1082.656500px;}
.y41{bottom:1082.805000px;}
.y15f{bottom:1084.546500px;}
.ya1{bottom:1086.970500px;}
.y166{bottom:1089.375000px;}
.y15e{bottom:1089.456000px;}
.y2{bottom:1089.628500px;}
.y40{bottom:1101.634500px;}
.y15d{bottom:1104.183000px;}
.y1{bottom:1108.458000px;}
.y3f{bottom:1120.464000px;}
.y9e{bottom:1176.701849px;}
.y3c{bottom:1176.838349px;}
.h1a{height:0.654540px;}
.hd{height:13.797000px;}
.h10{height:15.768000px;}
.h9{height:17.493000px;}
.hc{height:24.246768px;}
.he{height:29.182617px;}
.h11{height:33.351562px;}
.h19{height:33.665280px;}
.h12{height:37.334424px;}
.ha{height:40.347000px;}
.h16{height:41.726925px;}
.h17{height:41.727225px;}
.h1e{height:41.972378px;}
.h1d{height:41.972528px;}
.h13{height:42.708735px;}
.h8{height:49.090500px;}
.h5{height:50.497920px;}
.h4{height:51.000030px;}
.h6{height:51.215220px;}
.h7{height:53.797500px;}
.hb{height:56.074320px;}
.hf{height:56.080320px;}
.h14{height:59.435280px;}
.h2{height:60.597504px;}
.h18{height:62.832540px;}
.h15{height:71.662500px;}
.h1b{height:73.734525px;}
.h1c{height:73.739625px;}
.h3{height:76.069500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w7{width:12.000000px;}
.w3{width:70.875000px;}
.w6{width:245.599500px;}
.w2{width:267.388489px;}
.w4{width:300.439500px;}
.w5{width:327.207000px;}
.w8{width:548.778000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:106.299591px;}
.x1{left:108.000000px;}
.x21{left:109.980000px;}
.x2{left:115.938000px;}
.x1f{left:121.254000px;}
.xf{left:124.363500px;}
.x3{left:125.901000px;}
.x8{left:129.259500px;}
.x20{left:140.727000px;}
.x7{left:150.519000px;}
.x10{left:161.637000px;}
.x1e{left:172.082245px;}
.x23{left:207.559500px;}
.x5{left:214.669500px;}
.x6{left:269.619000px;}
.x26{left:298.884000px;}
.x15{left:323.664734px;}
.x4{left:423.463500px;}
.x16{left:440.457001px;}
.x9{left:469.417500px;}
.x14{left:471.396000px;}
.x19{left:473.214000px;}
.x24{left:474.729000px;}
.x1a{left:475.971000px;}
.x13{left:477.034500px;}
.x18{left:478.852500px;}
.x11{left:482.671500px;}
.x17{left:484.489500px;}
.xe{left:486.200409px;}
.xb{left:488.073000px;}
.xa{left:490.677000px;}
.x1d{left:497.116500px;}
.x12{left:502.144500px;}
.x1b{left:513.843000px;}
.x27{left:515.370000px;}
.xc{left:519.230438px;}
.x25{left:522.345000px;}
.x28{left:526.933500px;}
.x2a{left:530.934000px;}
.x2b{left:534.871500px;}
.x1c{left:596.508000px;}
.x29{left:600.962250px;}
.x22{left:605.342775px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v4{vertical-align:-8.725333pt;}
.v9{vertical-align:-7.416533pt;}
.v5{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:20.064000pt;}
.v3{vertical-align:21.109333pt;}
.v6{vertical-align:22.906667pt;}
.v1{vertical-align:27.765333pt;}
.v8{vertical-align:55.269333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.001333pt;}
.lsb{letter-spacing:0.001869pt;}
.ls4{letter-spacing:0.027890pt;}
.ls3a{letter-spacing:2.087508pt;}
.ls13{letter-spacing:2.653541pt;}
.ls2{letter-spacing:2.655169pt;}
.ls2c{letter-spacing:2.657339pt;}
.ls37{letter-spacing:2.662672pt;}
.ls2a{letter-spacing:8.079530pt;}
.ls34{letter-spacing:8.082251pt;}
.ls2b{letter-spacing:8.084863pt;}
.ls21{letter-spacing:13.199155pt;}
.ls29{letter-spacing:13.992000pt;}
.lsf{letter-spacing:14.388502pt;}
.ls10{letter-spacing:14.393836pt;}
.ls18{letter-spacing:15.493226pt;}
.ls28{letter-spacing:16.070582pt;}
.ls23{letter-spacing:16.093541pt;}
.ls20{letter-spacing:16.105822pt;}
.ls1d{letter-spacing:17.106667pt;}
.ls3c{letter-spacing:17.512581pt;}
.ls1f{letter-spacing:17.976000pt;}
.ls1c{letter-spacing:18.152000pt;}
.ls31{letter-spacing:18.319892pt;}
.ls3e{letter-spacing:18.326341pt;}
.ls35{letter-spacing:18.827674pt;}
.ls26{letter-spacing:19.144000pt;}
.ls43{letter-spacing:19.373333pt;}
.ls41{letter-spacing:19.911946pt;}
.ls33{letter-spacing:20.055946pt;}
.ls32{letter-spacing:20.063892pt;}
.ls14{letter-spacing:20.877541pt;}
.ls42{letter-spacing:21.290559pt;}
.ls27{letter-spacing:21.601249pt;}
.lsc{letter-spacing:22.050875pt;}
.ls24{letter-spacing:22.109333pt;}
.ls1e{letter-spacing:23.330667pt;}
.ls3d{letter-spacing:23.698613pt;}
.ls1a{letter-spacing:23.933541pt;}
.ls1b{letter-spacing:23.970667pt;}
.ls39{letter-spacing:25.501279pt;}
.ls38{letter-spacing:25.506559pt;}
.ls3b{letter-spacing:25.618613pt;}
.ls36{letter-spacing:25.946871pt;}
.ls30{letter-spacing:26.565226pt;}
.ls17{letter-spacing:26.566341pt;}
.ls15{letter-spacing:26.567946pt;}
.ls44{letter-spacing:26.568000pt;}
.ls19{letter-spacing:26.570871pt;}
.ls1{letter-spacing:26.802875pt;}
.ls12{letter-spacing:27.026875pt;}
.ls6{letter-spacing:27.240208pt;}
.ls2f{letter-spacing:27.291892pt;}
.ls2e{letter-spacing:27.309226pt;}
.ls16{letter-spacing:27.314491pt;}
.ls5{letter-spacing:28.402875pt;}
.ls3f{letter-spacing:28.442871pt;}
.ls22{letter-spacing:28.754875pt;}
.ls0{letter-spacing:28.776831pt;}
.ls40{letter-spacing:29.135892pt;}
.ls7{letter-spacing:29.570875pt;}
.ls8{letter-spacing:31.122875pt;}
.lsd{letter-spacing:34.324502pt;}
.ls11{letter-spacing:34.564502pt;}
.ls9{letter-spacing:36.898875pt;}
.lse{letter-spacing:37.572502pt;}
.lsa{letter-spacing:44.765541pt;}
.ls25{letter-spacing:46.175892pt;}
.ws2e{word-spacing:-37.899321pt;}
.ws3{word-spacing:-18.917592pt;}
.ws12c{word-spacing:-17.396593pt;}
.ws65{word-spacing:-16.162774pt;}
.wsd{word-spacing:-14.871149pt;}
.ws7e{word-spacing:-13.652229pt;}
.ws10c{word-spacing:-11.339251pt;}
.ws108{word-spacing:-11.333034pt;}
.ws103{word-spacing:-11.332231pt;}
.ws109{word-spacing:-11.328503pt;}
.ws19e{word-spacing:-3.246518pt;}
.ws191{word-spacing:-3.130388pt;}
.ws192{word-spacing:-3.071683pt;}
.ws14d{word-spacing:-3.014084pt;}
.ws14f{word-spacing:-3.013968pt;}
.wsa0{word-spacing:-3.013560pt;}
.ws14e{word-spacing:-2.955961pt;}
.ws26f{word-spacing:-2.955844pt;}
.ws107{word-spacing:-2.839191pt;}
.wsea{word-spacing:-2.781010pt;}
.ws115{word-spacing:-2.726878pt;}
.ws114{word-spacing:-2.722886pt;}
.ws56{word-spacing:-2.606524pt;}
.wsa1{word-spacing:-2.509633pt;}
.ws2b{word-spacing:-2.490743pt;}
.wsa3{word-spacing:-2.490394pt;}
.wsa7{word-spacing:-2.490219pt;}
.ws35{word-spacing:-2.431980pt;}
.ws36{word-spacing:-2.431689pt;}
.ws1be{word-spacing:-2.257727pt;}
.ws258{word-spacing:-2.257436pt;}
.ws19a{word-spacing:-2.199720pt;}
.ws2ac{word-spacing:-2.199022pt;}
.ws3e{word-spacing:-2.141015pt;}
.ws33{word-spacing:-2.032485pt;}
.ws1fb{word-spacing:-2.024652pt;}
.ws89{word-spacing:-1.979205pt;}
.ws8b{word-spacing:-1.966529pt;}
.ws8a{word-spacing:-1.966122pt;}
.ws80{word-spacing:-1.888503pt;}
.ws10b{word-spacing:-1.850166pt;}
.ws147{word-spacing:-1.792101pt;}
.ws294{word-spacing:-1.734095pt;}
.ws146{word-spacing:-1.733571pt;}
.ws101{word-spacing:-1.675331pt;}
.ws153{word-spacing:-1.559725pt;}
.ws111{word-spacing:-1.559551pt;}
.ws154{word-spacing:-1.559202pt;}
.ws124{word-spacing:-1.559027pt;}
.wsdb{word-spacing:-1.501078pt;}
.ws25e{word-spacing:-1.500904pt;}
.ws13a{word-spacing:-1.442897pt;}
.ws27{word-spacing:-1.384658pt;}
.ws18f{word-spacing:-1.326476pt;}
.ws235{word-spacing:-1.268353pt;}
.ws136{word-spacing:-1.210230pt;}
.ws254{word-spacing:-1.151990pt;}
.ws181{word-spacing:-1.127505pt;}
.wsdd{word-spacing:-1.093809pt;}
.wsf5{word-spacing:-1.035860pt;}
.ws14b{word-spacing:-0.977330pt;}
.ws84{word-spacing:-0.884789pt;}
.ws211{word-spacing:-0.861433pt;}
.ws4f{word-spacing:-0.860909pt;}
.ws79{word-spacing:-0.836779pt;}
.ws231{word-spacing:-0.802786pt;}
.ws183{word-spacing:-0.781177pt;}
.ws8c{word-spacing:-0.744779pt;}
.ws1f7{word-spacing:-0.712226pt;}
.ws9d{word-spacing:-0.686656pt;}
.ws9c{word-spacing:-0.674380pt;}
.ws91{word-spacing:-0.628533pt;}
.ws1ba{word-spacing:-0.628358pt;}
.ws297{word-spacing:-0.570235pt;}
.ws286{word-spacing:-0.512228pt;}
.wsd4{word-spacing:-0.454277pt;}
.ws13b{word-spacing:-0.395459pt;}
.ws293{word-spacing:-0.395284pt;}
.ws152{word-spacing:-0.337335pt;}
.ws17d{word-spacing:-0.287032pt;}
.ws15b{word-spacing:-0.284834pt;}
.ws15d{word-spacing:-0.263003pt;}
.ws3d{word-spacing:-0.220915pt;}
.ws1ab{word-spacing:-0.162791pt;}
.ws14a{word-spacing:-0.104785pt;}
.ws6{word-spacing:-0.063760pt;}
.ws208{word-spacing:-0.058181pt;}
.ws15a{word-spacing:-0.047819pt;}
.ws149{word-spacing:-0.046661pt;}
.ws24b{word-spacing:-0.046545pt;}
.ws50{word-spacing:-0.046487pt;}
.ws12d{word-spacing:-0.042507pt;}
.ws134{word-spacing:-0.031883pt;}
.ws19d{word-spacing:-0.017401pt;}
.ws48{word-spacing:0.000000pt;}
.ws274{word-spacing:0.011636pt;}
.ws28{word-spacing:0.069759pt;}
.ws43{word-spacing:0.119499pt;}
.ws22c{word-spacing:0.127883pt;}
.ws257{word-spacing:0.127999pt;}
.ws2b4{word-spacing:0.185889pt;}
.ws244{word-spacing:0.186006pt;}
.ws1d4{word-spacing:0.186180pt;}
.ws9f{word-spacing:0.197526pt;}
.ws59{word-spacing:0.244362pt;}
.ws24d{word-spacing:0.244711pt;}
.ws212{word-spacing:0.302310pt;}
.ws5a{word-spacing:0.302834pt;}
.ws250{word-spacing:0.360433pt;}
.ws22f{word-spacing:0.360957pt;}
.ws1ea{word-spacing:0.419080pt;}
.ws116{word-spacing:0.430542pt;}
.ws40{word-spacing:0.476680pt;}
.ws3f{word-spacing:0.477087pt;}
.ws1c0{word-spacing:0.535210pt;}
.ws73{word-spacing:0.549915pt;}
.ws263{word-spacing:0.575226pt;}
.ws150{word-spacing:0.593333pt;}
.ws265{word-spacing:0.593450pt;}
.ws17e{word-spacing:0.602846pt;}
.ws12{word-spacing:0.709230pt;}
.wsae{word-spacing:0.709580pt;}
.ws18d{word-spacing:0.709812pt;}
.ws199{word-spacing:0.767877pt;}
.ws113{word-spacing:0.767994pt;}
.ws15{word-spacing:0.804441pt;}
.ws23{word-spacing:0.815871pt;}
.wsaf{word-spacing:0.825884pt;}
.wsee{word-spacing:0.884182pt;}
.ws157{word-spacing:0.884531pt;}
.wsdc{word-spacing:0.942305pt;}
.wsb7{word-spacing:0.942654pt;}
.wsb6{word-spacing:0.989042pt;}
.ws145{word-spacing:1.000952pt;}
.ws9e{word-spacing:1.058900pt;}
.ws233{word-spacing:1.059075pt;}
.ws2a2{word-spacing:1.117082pt;}
.ws1c9{word-spacing:1.117256pt;}
.ws15f{word-spacing:1.123786pt;}
.wsdf{word-spacing:1.175205pt;}
.wsde{word-spacing:1.175263pt;}
.wsbd{word-spacing:1.219233pt;}
.wsda{word-spacing:1.233328pt;}
.wsd9{word-spacing:1.233444pt;}
.ws19{word-spacing:1.291626pt;}
.ws1fc{word-spacing:1.349749pt;}
.ws190{word-spacing:1.349807pt;}
.ws1a3{word-spacing:1.407988pt;}
.ws240{word-spacing:1.450348pt;}
.ws77{word-spacing:1.458708pt;}
.ws241{word-spacing:1.466402pt;}
.ws246{word-spacing:1.640714pt;}
.ws148{word-spacing:1.698895pt;}
.wsbb{word-spacing:1.757076pt;}
.wsba{word-spacing:1.815199pt;}
.ws104{word-spacing:1.815258pt;}
.ws105{word-spacing:1.815374pt;}
.ws1a{word-spacing:1.873323pt;}
.ws5b{word-spacing:1.931620pt;}
.ws45{word-spacing:1.936560pt;}
.ws2c8{word-spacing:1.989220pt;}
.ws2bb{word-spacing:1.989569pt;}
.ws169{word-spacing:1.989743pt;}
.wsb3{word-spacing:1.990325pt;}
.ws2a{word-spacing:2.047925pt;}
.ws8f{word-spacing:2.048274pt;}
.ws1bb{word-spacing:2.106397pt;}
.ws18{word-spacing:2.164171pt;}
.ws1a7{word-spacing:2.164346pt;}
.ws123{word-spacing:2.164695pt;}
.ws210{word-spacing:2.167169pt;}
.ws248{word-spacing:2.222120pt;}
.wsf0{word-spacing:2.222643pt;}
.wsf1{word-spacing:2.222818pt;}
.wsc0{word-spacing:2.319301pt;}
.ws158{word-spacing:2.338890pt;}
.wsbe{word-spacing:2.367024pt;}
.wsbf{word-spacing:2.367359pt;}
.ws1fa{word-spacing:2.397071pt;}
.ws90{word-spacing:2.408707pt;}
.ws27c{word-spacing:2.446903pt;}
.wsc4{word-spacing:2.447966pt;}
.ws275{word-spacing:2.454622pt;}
.ws119{word-spacing:2.455194pt;}
.wsc6{word-spacing:2.458569pt;}
.ws2cb{word-spacing:2.513317pt;}
.ws24a{word-spacing:2.513434pt;}
.ws2d7{word-spacing:2.513492pt;}
.ws285{word-spacing:2.525477pt;}
.ws20c{word-spacing:2.571615pt;}
.wsc1{word-spacing:2.606261pt;}
.ws1c4{word-spacing:2.629214pt;}
.ws1c3{word-spacing:2.629564pt;}
.ws28c{word-spacing:2.688269pt;}
.ws78{word-spacing:2.701707pt;}
.ws161{word-spacing:2.701755pt;}
.ws34{word-spacing:2.701898pt;}
.ws175{word-spacing:2.729423pt;}
.ws16e{word-spacing:2.729868pt;}
.ws221{word-spacing:2.732588pt;}
.ws4a{word-spacing:2.745868pt;}
.ws51{word-spacing:2.746159pt;}
.ws74{word-spacing:2.749717pt;}
.ws172{word-spacing:2.779322pt;}
.wsa8{word-spacing:2.804166pt;}
.ws24e{word-spacing:2.804340pt;}
.ws137{word-spacing:2.862289pt;}
.ws138{word-spacing:2.862813pt;}
.ws32{word-spacing:2.892695pt;}
.wsb4{word-spacing:2.920412pt;}
.ws135{word-spacing:2.920761pt;}
.ws71{word-spacing:2.940848pt;}
.ws29{word-spacing:2.978884pt;}
.ws164{word-spacing:2.979117pt;}
.ws1bf{word-spacing:3.037066pt;}
.ws185{word-spacing:3.145530pt;}
.ws242{word-spacing:3.153486pt;}
.ws2ca{word-spacing:3.164599pt;}
.ws2b5{word-spacing:3.164948pt;}
.ws173{word-spacing:3.194935pt;}
.wsff{word-spacing:3.211086pt;}
.ws14{word-spacing:3.211435pt;}
.ws16{word-spacing:3.211610pt;}
.ws2bf{word-spacing:3.211959pt;}
.ws121{word-spacing:3.212191pt;}
.ws295{word-spacing:3.223246pt;}
.ws1f3{word-spacing:3.234559pt;}
.wsa2{word-spacing:3.254396pt;}
.ws1af{word-spacing:3.269558pt;}
.ws22{word-spacing:3.269791pt;}
.ws267{word-spacing:3.327914pt;}
.ws266{word-spacing:3.327972pt;}
.ws1ae{word-spacing:3.386154pt;}
.ws10a{word-spacing:3.386561pt;}
.wsfa{word-spacing:3.443986pt;}
.ws193{word-spacing:3.444509pt;}
.wsc2{word-spacing:3.446156pt;}
.ws264{word-spacing:3.456146pt;}
.wsc3{word-spacing:3.466997pt;}
.ws19b{word-spacing:3.476396pt;}
.ws1fe{word-spacing:3.502109pt;}
.wsfb{word-spacing:3.502633pt;}
.ws1e3{word-spacing:3.560407pt;}
.ws1d0{word-spacing:3.618879pt;}
.ws2a7{word-spacing:3.630515pt;}
.ws31{word-spacing:3.658176pt;}
.ws1e1{word-spacing:3.677060pt;}
.ws2cc{word-spacing:3.735183pt;}
.ws1b1{word-spacing:3.735242pt;}
.ws219{word-spacing:3.735358pt;}
.ws216{word-spacing:3.743246pt;}
.ws160{word-spacing:3.801632pt;}
.ws243{word-spacing:3.851604pt;}
.ws72{word-spacing:3.897078pt;}
.ws1c1{word-spacing:3.909553pt;}
.ws87{word-spacing:3.909786pt;}
.ws2a1{word-spacing:3.979894pt;}
.ws4{word-spacing:3.984872pt;}
.ws10e{word-spacing:3.985000pt;}
.ws29f{word-spacing:4.025508pt;}
.ws5e{word-spacing:4.026148pt;}
.ws1cb{word-spacing:4.026556pt;}
.ws4e{word-spacing:4.084155pt;}
.ws110{word-spacing:4.084504pt;}
.wsf2{word-spacing:4.142104pt;}
.ws1e{word-spacing:4.142278pt;}
.ws1b4{word-spacing:4.142511pt;}
.ws198{word-spacing:4.142627pt;}
.ws2c3{word-spacing:4.200750pt;}
.ws0{word-spacing:4.246416pt;}
.ws168{word-spacing:4.258583pt;}
.ws1a4{word-spacing:4.270510pt;}
.wsf8{word-spacing:4.317055pt;}
.wsa{word-spacing:4.317229pt;}
.ws252{word-spacing:4.375178pt;}
.ws8d{word-spacing:4.433301pt;}
.wsef{word-spacing:4.491424pt;}
.ws162{word-spacing:4.549780pt;}
.ws13f{word-spacing:4.607903pt;}
.ws20{word-spacing:4.608253pt;}
.ws2bd{word-spacing:4.723975pt;}
.ws52{word-spacing:4.724324pt;}
.ws1{word-spacing:4.781770pt;}
.ws1a1{word-spacing:4.782506pt;}
.ws21{word-spacing:4.840454pt;}
.ws247{word-spacing:4.898577pt;}
.ws1a6{word-spacing:4.910737pt;}
.ws8e{word-spacing:4.957050pt;}
.ws1c5{word-spacing:4.957224pt;}
.ws272{word-spacing:4.968686pt;}
.ws10{word-spacing:5.014824pt;}
.wse6{word-spacing:5.073470pt;}
.wsa9{word-spacing:5.073820pt;}
.ws76{word-spacing:5.092545pt;}
.wsaa{word-spacing:5.131419pt;}
.ws18c{word-spacing:5.131594pt;}
.ws299{word-spacing:5.189542pt;}
.ws49{word-spacing:5.189775pt;}
.ws142{word-spacing:5.201178pt;}
.ws276{word-spacing:5.201411pt;}
.ws234{word-spacing:5.247898pt;}
.ws129{word-spacing:5.248422pt;}
.wsca{word-spacing:5.283437pt;}
.ws2d2{word-spacing:5.305847pt;}
.ws1b6{word-spacing:5.306138pt;}
.wsc{word-spacing:5.306370pt;}
.wsc9{word-spacing:5.316135pt;}
.wsf{word-spacing:5.422617pt;}
.ws204{word-spacing:5.480449pt;}
.ws291{word-spacing:5.480740pt;}
.ws30{word-spacing:5.538863pt;}
.wsa6{word-spacing:5.539096pt;}
.ws18e{word-spacing:5.597219pt;}
.ws25b{word-spacing:5.655342pt;}
.ws197{word-spacing:5.713291pt;}
.ws174{word-spacing:5.746372pt;}
.ws126{word-spacing:5.771123pt;}
.wsfc{word-spacing:5.771646pt;}
.ws12f{word-spacing:5.829537pt;}
.ws1bd{word-spacing:5.829770pt;}
.ws25c{word-spacing:5.857787pt;}
.ws64{word-spacing:5.887660pt;}
.ws12b{word-spacing:5.887893pt;}
.wsa4{word-spacing:5.888242pt;}
.ws125{word-spacing:5.888416pt;}
.ws2da{word-spacing:5.899296pt;}
.ws2b6{word-spacing:5.900053pt;}
.ws12a{word-spacing:5.927053pt;}
.ws1da{word-spacing:5.945841pt;}
.ws2d1{word-spacing:5.946365pt;}
.ws230{word-spacing:5.957652pt;}
.ws54{word-spacing:5.957769pt;}
.ws2b1{word-spacing:5.958001pt;}
.wsad{word-spacing:6.004139pt;}
.ws2c{word-spacing:6.004488pt;}
.ws19c{word-spacing:6.004721pt;}
.ws1b7{word-spacing:6.062495pt;}
.ws24f{word-spacing:6.062844pt;}
.ws62{word-spacing:6.178858pt;}
.ws21c{word-spacing:6.236690pt;}
.wsbc{word-spacing:6.240049pt;}
.ws47{word-spacing:6.288011pt;}
.ws127{word-spacing:6.294813pt;}
.wse4{word-spacing:6.353285pt;}
.ws1f0{word-spacing:6.353518pt;}
.ws218{word-spacing:6.408304pt;}
.wseb{word-spacing:6.411117pt;}
.wsfe{word-spacing:6.411408pt;}
.ws112{word-spacing:6.411583pt;}
.ws217{word-spacing:6.418317pt;}
.ws14c{word-spacing:6.469532pt;}
.ws205{word-spacing:6.469764pt;}
.ws44{word-spacing:6.527487pt;}
.ws1f9{word-spacing:6.527655pt;}
.wsfd{word-spacing:6.527887pt;}
.ws98{word-spacing:6.528237pt;}
.ws1f6{word-spacing:6.644308pt;}
.ws163{word-spacing:6.644483pt;}
.ws1cf{word-spacing:6.701791pt;}
.ws95{word-spacing:6.702082pt;}
.ws1fd{word-spacing:6.702490pt;}
.ws94{word-spacing:6.702606pt;}
.ws2f{word-spacing:6.702839pt;}
.ws2a0{word-spacing:6.714242pt;}
.wsb5{word-spacing:6.760438pt;}
.ws2d{word-spacing:6.760729pt;}
.ws196{word-spacing:6.818561pt;}
.ws29c{word-spacing:6.819085pt;}
.ws277{word-spacing:6.830489pt;}
.ws1a8{word-spacing:6.888670pt;}
.ws46{word-spacing:6.957377pt;}
.ws281{word-spacing:6.993396pt;}
.ws23f{word-spacing:7.051403pt;}
.ws2aa{word-spacing:7.109526pt;}
.ws1f8{word-spacing:7.109759pt;}
.wsb9{word-spacing:7.167649pt;}
.ws1e7{word-spacing:7.167940pt;}
.ws2d5{word-spacing:7.180042pt;}
.wsb8{word-spacing:7.180827pt;}
.ws215{word-spacing:7.226005pt;}
.ws1e0{word-spacing:7.226122pt;}
.ws140{word-spacing:7.226354pt;}
.wsac{word-spacing:7.284477pt;}
.ws53{word-spacing:7.295939pt;}
.ws1ef{word-spacing:7.342310pt;}
.ws41{word-spacing:7.342601pt;}
.wsf3{word-spacing:7.400724pt;}
.ws2a9{word-spacing:7.412360pt;}
.ws1a0{word-spacing:7.458847pt;}
.ws2be{word-spacing:7.470483pt;}
.ws2{word-spacing:7.479176pt;}
.ws256{word-spacing:7.479303pt;}
.ws20b{word-spacing:7.517028pt;}
.wsd5{word-spacing:7.542680pt;}
.ws93{word-spacing:7.574529pt;}
.wsf6{word-spacing:7.575151pt;}
.ws106{word-spacing:7.575384pt;}
.ws289{word-spacing:7.586788pt;}
.wsf7{word-spacing:7.633275pt;}
.ws10f{word-spacing:7.633391pt;}
.ws2a6{word-spacing:7.702743pt;}
.ws298{word-spacing:7.749754pt;}
.ws21b{word-spacing:7.807353pt;}
.wsb1{word-spacing:7.807644pt;}
.wsb2{word-spacing:7.807877pt;}
.ws13{word-spacing:7.982304pt;}
.ws3a{word-spacing:7.982595pt;}
.wse{word-spacing:7.994232pt;}
.ws70{word-spacing:8.009627pt;}
.ws96{word-spacing:8.040428pt;}
.ws201{word-spacing:8.063895pt;}
.ws37{word-spacing:8.090128pt;}
.ws144{word-spacing:8.098551pt;}
.ws38{word-spacing:8.157023pt;}
.ws117{word-spacing:8.204367pt;}
.ws88{word-spacing:8.215146pt;}
.ws207{word-spacing:8.215204pt;}
.ws156{word-spacing:8.272978pt;}
.ws155{word-spacing:8.273269pt;}
.ws11{word-spacing:8.273502pt;}
.ws260{word-spacing:8.331392pt;}
.wse3{word-spacing:8.331567pt;}
.ws249{word-spacing:8.331625pt;}
.ws1bc{word-spacing:8.343029pt;}
.ws159{word-spacing:8.389516pt;}
.ws1f{word-spacing:8.389748pt;}
.ws2d0{word-spacing:8.401152pt;}
.ws23d{word-spacing:8.447639pt;}
.ws63{word-spacing:8.447930pt;}
.ws2b8{word-spacing:8.505820pt;}
.ws23e{word-spacing:8.506344pt;}
.ws2c9{word-spacing:8.522238pt;}
.ws188{word-spacing:8.541355pt;}
.ws21a{word-spacing:8.564176pt;}
.ws167{word-spacing:8.564467pt;}
.ws165{word-spacing:8.564700pt;}
.ws189{word-spacing:8.614613pt;}
.ws1ed{word-spacing:8.680655pt;}
.ws1eb{word-spacing:8.719677pt;}
.ws1ff{word-spacing:8.738836pt;}
.ws7a{word-spacing:8.774486pt;}
.ws1db{word-spacing:8.797018pt;}
.ws28e{word-spacing:8.808654pt;}
.ws25d{word-spacing:8.855199pt;}
.ws1f4{word-spacing:8.873903pt;}
.ws253{word-spacing:8.913380pt;}
.ws102{word-spacing:8.918181pt;}
.ws290{word-spacing:8.971387pt;}
.wse2{word-spacing:8.971562pt;}
.ws270{word-spacing:8.971620pt;}
.ws1c2{word-spacing:9.029510pt;}
.wse5{word-spacing:9.030034pt;}
.ws21e{word-spacing:9.082931pt;}
.ws5d{word-spacing:9.204171pt;}
.ws271{word-spacing:9.227677pt;}
.ws128{word-spacing:9.262294pt;}
.ws5c{word-spacing:9.262468pt;}
.ws2c4{word-spacing:9.280221pt;}
.wsd0{word-spacing:9.300874pt;}
.ws2a4{word-spacing:9.320708pt;}
.ws1ca{word-spacing:9.378831pt;}
.ws1cc{word-spacing:9.434800pt;}
.ws1ce{word-spacing:9.437012pt;}
.ws1cd{word-spacing:9.437245pt;}
.ws245{word-spacing:9.494845pt;}
.ws28d{word-spacing:9.553259pt;}
.ws1d3{word-spacing:9.553375pt;}
.ws57{word-spacing:9.611556pt;}
.ws2b7{word-spacing:9.611614pt;}
.ws232{word-spacing:9.669214pt;}
.ws1f1{word-spacing:9.715234pt;}
.ws1f2{word-spacing:9.727919pt;}
.ws1c7{word-spacing:9.785003pt;}
.ws1c8{word-spacing:9.785518pt;}
.ws28b{word-spacing:9.785751pt;}
.ws22e{word-spacing:9.786042pt;}
.ws1e6{word-spacing:9.786100pt;}
.ws1e4{word-spacing:9.797010pt;}
.wsec{word-spacing:9.902579pt;}
.wscb{word-spacing:9.910403pt;}
.ws20a{word-spacing:9.914099pt;}
.wscf{word-spacing:9.922182pt;}
.wscd{word-spacing:9.922708pt;}
.wsed{word-spacing:9.960412pt;}
.ws195{word-spacing:9.960702pt;}
.ws1b{word-spacing:9.960993pt;}
.ws2c2{word-spacing:9.972339pt;}
.ws17b{word-spacing:9.999972pt;}
.wsa5{word-spacing:10.018826pt;}
.ws2cd{word-spacing:10.075206pt;}
.ws4b{word-spacing:10.076949pt;}
.ws4c{word-spacing:10.077240pt;}
.ws60{word-spacing:10.135188pt;}
.ws151{word-spacing:10.309500pt;}
.ws20f{word-spacing:10.309790pt;}
.ws1e2{word-spacing:10.367914pt;}
.ws27e{word-spacing:10.379550pt;}
.ws16c{word-spacing:10.437593pt;}
.ws16d{word-spacing:10.444713pt;}
.wsab{word-spacing:10.483927pt;}
.ws1b9{word-spacing:10.484276pt;}
.wse8{word-spacing:10.542574pt;}
.ws1d{word-spacing:10.600082pt;}
.ws10d{word-spacing:10.600406pt;}
.ws1b3{word-spacing:10.658588pt;}
.ws1b2{word-spacing:10.658820pt;}
.ws66{word-spacing:10.717002pt;}
.ws292{word-spacing:10.775125pt;}
.wsf4{word-spacing:10.775357pt;}
.ws278{word-spacing:10.786819pt;}
.ws2a8{word-spacing:10.786994pt;}
.ws26{word-spacing:10.832957pt;}
.ws42{word-spacing:10.833248pt;}
.ws141{word-spacing:10.833481pt;}
.ws166{word-spacing:10.844593pt;}
.wsb{word-spacing:10.891080pt;}
.ws25a{word-spacing:10.891662pt;}
.ws1a2{word-spacing:10.949785pt;}
.ws2ab{word-spacing:11.007385pt;}
.ws9{word-spacing:11.007908pt;}
.ws2d3{word-spacing:11.065508pt;}
.ws8{word-spacing:11.124155pt;}
.ws26a{word-spacing:11.182452pt;}
.ws268{word-spacing:11.188559pt;}
.ws28f{word-spacing:11.193390pt;}
.wsb0{word-spacing:11.240692pt;}
.wse1{word-spacing:11.252270pt;}
.ws22d{word-spacing:11.298582pt;}
.wsf9{word-spacing:11.298815pt;}
.ws3c{word-spacing:11.356705pt;}
.ws21f{word-spacing:11.368865pt;}
.ws81{word-spacing:11.404752pt;}
.ws2c7{word-spacing:11.415119pt;}
.ws261{word-spacing:11.473475pt;}
.ws2c5{word-spacing:11.484879pt;}
.ws200{word-spacing:11.531657pt;}
.ws2b0{word-spacing:11.543235pt;}
.wse9{word-spacing:11.590013pt;}
.ws206{word-spacing:11.647903pt;}
.ws1d8{word-spacing:11.764266pt;}
.ws58{word-spacing:11.775902pt;}
.ws27b{word-spacing:11.822854pt;}
.wse7{word-spacing:11.880686pt;}
.ws1c6{word-spacing:11.880977pt;}
.ws29b{word-spacing:11.892032pt;}
.ws1b5{word-spacing:11.938810pt;}
.ws20e{word-spacing:11.939101pt;}
.ws20d{word-spacing:11.997224pt;}
.ws1e5{word-spacing:12.008627pt;}
.ws25f{word-spacing:12.055114pt;}
.ws1ee{word-spacing:12.113237pt;}
.ws24c{word-spacing:12.171535pt;}
.ws1c{word-spacing:12.182997pt;}
.wse0{word-spacing:12.183171pt;}
.ws214{word-spacing:12.229251pt;}
.ws1d7{word-spacing:12.229716pt;}
.ws97{word-spacing:12.283939pt;}
.ws67{word-spacing:12.287898pt;}
.ws2ce{word-spacing:12.299010pt;}
.ws86{word-spacing:12.346021pt;}
.ws85{word-spacing:12.346079pt;}
.ws1ad{word-spacing:12.520623pt;}
.ws6c{word-spacing:12.543546pt;}
.ws1e8{word-spacing:12.578804pt;}
.ws1b8{word-spacing:12.694818pt;}
.ws3b{word-spacing:12.695109pt;}
.ws2a5{word-spacing:12.811355pt;}
.ws1dd{word-spacing:12.811530pt;}
.ws4d{word-spacing:12.811646pt;}
.ws2b9{word-spacing:12.928125pt;}
.ws1a5{word-spacing:13.172079pt;}
.ws1aa{word-spacing:13.230435pt;}
.ws1d6{word-spacing:13.276922pt;}
.ws269{word-spacing:13.288617pt;}
.ws251{word-spacing:13.335162pt;}
.ws92{word-spacing:13.337011pt;}
.ws26e{word-spacing:13.393227pt;}
.ws2c6{word-spacing:13.462753pt;}
.ws259{word-spacing:13.684250pt;}
.ws2af{word-spacing:13.800670pt;}
.ws1d5{word-spacing:13.858561pt;}
.ws186{word-spacing:13.906354pt;}
.ws7d{word-spacing:13.986673pt;}
.ws18b{word-spacing:14.005213pt;}
.ws2b2{word-spacing:14.033221pt;}
.ws61{word-spacing:14.091519pt;}
.ws27d{word-spacing:14.161337pt;}
.ws262{word-spacing:14.207882pt;}
.ws213{word-spacing:14.258317pt;}
.ws83{word-spacing:14.273872pt;}
.ws6f{word-spacing:14.289103pt;}
.ws1d1{word-spacing:14.382426pt;}
.ws1f5{word-spacing:14.440432pt;}
.ws55{word-spacing:14.498788pt;}
.ws1ac{word-spacing:14.510425pt;}
.ws1a9{word-spacing:14.565411pt;}
.wsd3{word-spacing:14.584693pt;}
.ws2a3{word-spacing:14.731106pt;}
.ws1df{word-spacing:14.731339pt;}
.ws1de{word-spacing:14.731514pt;}
.ws21d{word-spacing:14.749234pt;}
.ws15c{word-spacing:14.776064pt;}
.ws2d4{word-spacing:14.789462pt;}
.ws2ba{word-spacing:14.801098pt;}
.ws202{word-spacing:14.847876pt;}
.ws203{word-spacing:14.848109pt;}
.ws75{word-spacing:14.895515pt;}
.ws9b{word-spacing:14.905709pt;}
.ws282{word-spacing:14.906058pt;}
.ws99{word-spacing:14.908194pt;}
.ws288{word-spacing:14.943785pt;}
.ws28a{word-spacing:14.964413pt;}
.ws26d{word-spacing:14.976050pt;}
.ws1e9{word-spacing:15.022420pt;}
.ws1ec{word-spacing:15.158605pt;}
.ws39{word-spacing:15.429457pt;}
.ws29e{word-spacing:15.429981pt;}
.ws194{word-spacing:15.685043pt;}
.ws2cf{word-spacing:15.790414pt;}
.ws2b3{word-spacing:15.848537pt;}
.ws143{word-spacing:15.895082pt;}
.ws13c{word-spacing:16.302526pt;}
.ws287{word-spacing:16.651847pt;}
.ws283{word-spacing:16.663134pt;}
.wsd2{word-spacing:16.743277pt;}
.ws280{word-spacing:16.942404pt;}
.ws2bc{word-spacing:17.116716pt;}
.ws2d9{word-spacing:17.186475pt;}
.ws19f{word-spacing:17.233311pt;}
.ws25{word-spacing:17.407389pt;}
.ws279{word-spacing:17.419491pt;}
.ws2ae{word-spacing:17.815066pt;}
.ws2ad{word-spacing:17.838795pt;}
.ws179{word-spacing:17.934441pt;}
.ws177{word-spacing:17.961445pt;}
.ws7c{word-spacing:18.003441pt;}
.ws68{word-spacing:18.047850pt;}
.ws7b{word-spacing:18.051212pt;}
.ws29d{word-spacing:18.105507pt;}
.ws69{word-spacing:18.106031pt;}
.ws17{word-spacing:18.121231pt;}
.ws82{word-spacing:18.242821pt;}
.wsd8{word-spacing:18.280459pt;}
.ws284{word-spacing:18.466755pt;}
.ws13e{word-spacing:18.571074pt;}
.ws26b{word-spacing:18.862388pt;}
.ws255{word-spacing:18.978576pt;}
.wsd7{word-spacing:19.153295pt;}
.ws296{word-spacing:19.630382pt;}
.ws1dc{word-spacing:19.676694pt;}
.ws1d9{word-spacing:19.734992pt;}
.wsc5{word-spacing:19.837334pt;}
.wsc7{word-spacing:19.846151pt;}
.ws273{word-spacing:20.026015pt;}
.ws1d2{word-spacing:20.200559pt;}
.ws5f{word-spacing:20.316922pt;}
.ws26c{word-spacing:20.328558pt;}
.ws9a{word-spacing:20.640377pt;}
.ws5{word-spacing:20.722000pt;}
.ws139{word-spacing:21.189409pt;}
.ws118{word-spacing:21.232576pt;}
.ws7f{word-spacing:21.255493pt;}
.ws27f{word-spacing:21.771455pt;}
.wsd6{word-spacing:22.004180pt;}
.wsc8{word-spacing:22.709116pt;}
.ws178{word-spacing:22.837208pt;}
.wsd1{word-spacing:23.574603pt;}
.ws170{word-spacing:24.192962pt;}
.ws6e{word-spacing:25.052708pt;}
.ws2d6{word-spacing:25.204328pt;}
.ws6a{word-spacing:25.960453pt;}
.ws23c{word-spacing:25.960511pt;}
.ws2c0{word-spacing:26.076815pt;}
.ws18a{word-spacing:26.190761pt;}
.ws6d{word-spacing:26.740199pt;}
.ws15e{word-spacing:26.802315pt;}
.wscc{word-spacing:27.323853pt;}
.ws27a{word-spacing:27.356863pt;}
.wsce{word-spacing:28.256359pt;}
.ws12e{word-spacing:28.333851pt;}
.ws29a{word-spacing:28.889067pt;}
.ws2c1{word-spacing:28.986115pt;}
.ws6b{word-spacing:29.823344pt;}
.ws23b{word-spacing:30.940576pt;}
.ws1b0{word-spacing:31.080468pt;}
.ws23a{word-spacing:31.429556pt;}
.ws122{word-spacing:33.291126pt;}
.ws17f{word-spacing:35.488583pt;}
.ws7{word-spacing:36.053937pt;}
.ws13d{word-spacing:37.355243pt;}
.ws11a{word-spacing:39.309955pt;}
.ws184{word-spacing:39.938960pt;}
.ws220{word-spacing:40.465795pt;}
.ws228{word-spacing:40.496086pt;}
.ws236{word-spacing:40.703382pt;}
.ws22b{word-spacing:43.545349pt;}
.ws229{word-spacing:43.545794pt;}
.ws130{word-spacing:45.183623pt;}
.ws2d8{word-spacing:46.080449pt;}
.ws227{word-spacing:50.141616pt;}
.ws223{word-spacing:50.142061pt;}
.ws100{word-spacing:51.805000pt;}
.ws17c{word-spacing:52.351738pt;}
.ws209{word-spacing:56.446728pt;}
.ws24{word-spacing:56.446983pt;}
.ws11f{word-spacing:57.328485pt;}
.ws176{word-spacing:59.567096pt;}
.ws120{word-spacing:61.784240pt;}
.ws239{word-spacing:84.875236pt;}
.ws224{word-spacing:85.504144pt;}
.ws22a{word-spacing:85.504411pt;}
.ws222{word-spacing:91.973654pt;}
.ws11b{word-spacing:100.585841pt;}
.ws11c{word-spacing:100.587714pt;}
.ws11d{word-spacing:100.595903pt;}
.ws237{word-spacing:106.981741pt;}
.ws171{word-spacing:112.384160pt;}
.ws132{word-spacing:115.617946pt;}
.ws17a{word-spacing:123.817906pt;}
.ws238{word-spacing:129.297407pt;}
.ws131{word-spacing:139.066674pt;}
.ws133{word-spacing:171.822764pt;}
.ws187{word-spacing:171.936728pt;}
.ws11e{word-spacing:172.389107pt;}
.ws226{word-spacing:174.649349pt;}
.ws16b{word-spacing:201.636655pt;}
.ws182{word-spacing:218.848623pt;}
.ws16a{word-spacing:240.930602pt;}
.ws16f{word-spacing:252.126705pt;}
.ws180{word-spacing:270.607269pt;}
.ws225{word-spacing:331.414204pt;}
._3{margin-left:-42.999208pt;}
._1{margin-left:-40.551590pt;}
._15{margin-left:-37.872866pt;}
._30{margin-left:-36.075638pt;}
._5{margin-left:-33.512562pt;}
._b{margin-left:-31.067412pt;}
._18{margin-left:-30.126939pt;}
._f{margin-left:-29.090376pt;}
._24{margin-left:-27.913125pt;}
._d{margin-left:-26.948484pt;}
._20{margin-left:-25.775586pt;}
._1b{margin-left:-24.579129pt;}
._a{margin-left:-23.479205pt;}
._16{margin-left:-22.540950pt;}
._1f{margin-left:-19.125620pt;}
._4{margin-left:-9.793306pt;}
._31{margin-left:-7.791498pt;}
._11{margin-left:-6.549310pt;}
._7{margin-left:-5.610880pt;}
._19{margin-left:-4.600536pt;}
._6{margin-left:-3.698335pt;}
._0{margin-left:-2.142183pt;}
._c{margin-left:-1.000307pt;}
._13{width:0.906969pt;}
._8{width:1.976688pt;}
._e{width:3.258096pt;}
._2{width:4.743974pt;}
._23{width:5.886689pt;}
._2e{width:6.947394pt;}
._34{width:8.302868pt;}
._1a{width:14.671678pt;}
._21{width:16.383102pt;}
._1e{width:17.491832pt;}
._32{width:18.571556pt;}
._14{width:20.284291pt;}
._9{width:21.690846pt;}
._12{width:22.621954pt;}
._17{width:23.787366pt;}
._44{width:25.065919pt;}
._10{width:26.627583pt;}
._49{width:28.219867pt;}
._38{width:29.284668pt;}
._36{width:31.123593pt;}
._1c{width:32.764873pt;}
._42{width:34.344743pt;}
._37{width:35.865173pt;}
._4b{width:37.235937pt;}
._50{width:39.459700pt;}
._4d{width:42.324116pt;}
._4a{width:44.424861pt;}
._35{width:45.613991pt;}
._47{width:48.232791pt;}
._45{width:51.641534pt;}
._4e{width:54.556675pt;}
._4c{width:57.192076pt;}
._1d{width:58.181333pt;}
._51{width:60.436598pt;}
._46{width:61.348772pt;}
._33{width:66.488263pt;}
._3c{width:68.692731pt;}
._48{width:70.109670pt;}
._25{width:71.730000pt;}
._43{width:73.147950pt;}
._22{width:75.364320pt;}
._3a{width:77.915953pt;}
._52{width:91.285988pt;}
._4f{width:93.962853pt;}
._3d{width:106.208053pt;}
._29{width:116.846239pt;}
._40{width:120.959790pt;}
._3f{width:121.875149pt;}
._28{width:130.190094pt;}
._2c{width:140.406177pt;}
._26{width:149.524964pt;}
._41{width:155.502896pt;}
._2f{width:161.362309pt;}
._2b{width:166.077731pt;}
._2a{width:170.986844pt;}
._3b{width:176.615102pt;}
._2d{width:192.754961pt;}
._3e{width:234.174691pt;}
._39{width:253.488090pt;}
._27{width:275.835819pt;}
.fs4{font-size:31.882667pt;}
.fsb{font-size:36.130667pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:42.506667pt;}
.fs8{font-size:42.666667pt;}
.fs5{font-size:47.818667pt;}
.fsa{font-size:49.454133pt;}
.fsc{font-size:49.745040pt;}
.fs9{font-size:50.617760pt;}
.fs1{font-size:53.136000pt;}
.fs3{font-size:58.181333pt;}
.fs2{font-size:63.760000pt;}
.fs0{font-size:76.512000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:2.865333pt;}
.y9f{bottom:3.274667pt;}
.ya0{bottom:62.885422pt;}
.y3e{bottom:64.473430pt;}
.y2e{bottom:84.594667pt;}
.yfe{bottom:89.673333pt;}
.y2d{bottom:98.277333pt;}
.y15a{bottom:101.332000pt;}
.y194{bottom:102.665333pt;}
.y22c{bottom:103.356000pt;}
.yfd{bottom:104.006667pt;}
.y2c{bottom:111.958667pt;}
.yd2{bottom:117.037333pt;}
.y159{bottom:118.069333pt;}
.y193{bottom:119.402667pt;}
.y22b{bottom:125.145333pt;}
.y2b{bottom:125.641333pt;}
.y12b{bottom:126.292000pt;}
.y2a5{bottom:129.616000pt;}
.yfc{bottom:131.286667pt;}
.y1bb{bottom:134.806667pt;}
.y158{bottom:135.366667pt;}
.y192{bottom:136.140000pt;}
.yd1{bottom:136.389333pt;}
.y3b{bottom:139.322667pt;}
.y73{bottom:139.324000pt;}
.y12a{bottom:139.974667pt;}
.y22a{bottom:141.882667pt;}
.y2a{bottom:144.402667pt;}
.y2a4{bottom:146.353333pt;}
.y1ba{bottom:151.544000pt;}
.y157{bottom:152.104000pt;}
.y191{bottom:152.877333pt;}
.y72{bottom:153.005333pt;}
.yd0{bottom:153.126667pt;}
.y3a{bottom:158.084000pt;}
.y229{bottom:158.620000pt;}
.y129{bottom:158.734667pt;}
.yfb{bottom:161.552000pt;}
.y2a3{bottom:163.090667pt;}
.y71{bottom:166.688000pt;}
.y1b9{bottom:168.281333pt;}
.y156{bottom:168.840000pt;}
.y190{bottom:169.614667pt;}
.ycf{bottom:169.864000pt;}
.y29{bottom:170.126667pt;}
.y128{bottom:173.068000pt;}
.y228{bottom:175.489333pt;}
.y39{bottom:178.257333pt;}
.yfa{bottom:178.289333pt;}
.y2a2{bottom:179.828000pt;}
.y70{bottom:180.369333pt;}
.y1b8{bottom:185.018667pt;}
.y9d{bottom:185.448000pt;}
.y155{bottom:185.577333pt;}
.y18f{bottom:186.352000pt;}
.y28{bottom:186.864000pt;}
.yce{bottom:189.908000pt;}
.y227{bottom:192.226667pt;}
.y279{bottom:193.272000pt;}
.y6f{bottom:194.052000pt;}
.y9c{bottom:194.702667pt;}
.y38{bottom:194.994667pt;}
.y127{bottom:195.317333pt;}
.yf9{bottom:195.557333pt;}
.y1b7{bottom:201.756000pt;}
.y154{bottom:202.314667pt;}
.y18e{bottom:203.089333pt;}
.y27{bottom:203.601333pt;}
.y2a1{bottom:204.534667pt;}
.y9b{bottom:208.384000pt;}
.y226{bottom:208.964000pt;}
.y278{bottom:210.009333pt;}
.y253{bottom:211.510667pt;}
.y37{bottom:211.732000pt;}
.y126{bottom:212.054667pt;}
.ycd{bottom:212.614667pt;}
.y6e{bottom:212.812000pt;}
.y1b6{bottom:218.493333pt;}
.y153{bottom:219.052000pt;}
.y18d{bottom:219.826667pt;}
.y26{bottom:221.252000pt;}
.y2a0{bottom:221.272000pt;}
.y6d{bottom:222.066667pt;}
.yf8{bottom:223.566667pt;}
.y225{bottom:225.701333pt;}
.y277{bottom:226.746667pt;}
.y252{bottom:228.246667pt;}
.y36{bottom:228.469333pt;}
.y125{bottom:228.792000pt;}
.y1fc{bottom:231.178667pt;}
.y1b5{bottom:235.230667pt;}
.yf7{bottom:235.288000pt;}
.y6c{bottom:235.748000pt;}
.y152{bottom:235.789333pt;}
.y18c{bottom:237.897333pt;}
.y25{bottom:237.989333pt;}
.y29f{bottom:238.009333pt;}
.yf6{bottom:240.304000pt;}
.y1da{bottom:241.652000pt;}
.ycc{bottom:242.385333pt;}
.y224{bottom:242.438667pt;}
.y276{bottom:243.484000pt;}
.y251{bottom:244.984000pt;}
.y35{bottom:245.206667pt;}
.y124{bottom:245.529333pt;}
.y1b4{bottom:251.968000pt;}
.y151{bottom:252.526667pt;}
.y6b{bottom:254.509333pt;}
.y18b{bottom:254.634667pt;}
.y24{bottom:254.726667pt;}
.y29e{bottom:254.746667pt;}
.yf5{bottom:258.545333pt;}
.ycb{bottom:259.122667pt;}
.y223{bottom:259.176000pt;}
.y275{bottom:260.221333pt;}
.y1fb{bottom:260.638467pt;}
.y250{bottom:261.721333pt;}
.y34{bottom:261.944000pt;}
.y123{bottom:262.266667pt;}
.y6a{bottom:263.764000pt;}
.y1b3{bottom:268.705333pt;}
.y150{bottom:269.264000pt;}
.y18a{bottom:271.372000pt;}
.y23{bottom:271.464000pt;}
.y29d{bottom:271.484000pt;}
.y1d9{bottom:274.737333pt;}
.y1fa{bottom:274.948933pt;}
.yf4{bottom:275.282667pt;}
.yca{bottom:275.860000pt;}
.y222{bottom:275.913333pt;}
.y274{bottom:276.958667pt;}
.y24f{bottom:278.458667pt;}
.y33{bottom:278.681333pt;}
.y122{bottom:279.004000pt;}
.y69{bottom:282.524000pt;}
.y1b2{bottom:285.442667pt;}
.y14f{bottom:286.001333pt;}
.y189{bottom:288.109333pt;}
.y22{bottom:288.201333pt;}
.y1f9{bottom:289.714133pt;}
.y1d8{bottom:291.474667pt;}
.y9a{bottom:291.553333pt;}
.y68{bottom:291.778667pt;}
.yf3{bottom:292.020000pt;}
.yc9{bottom:292.597333pt;}
.y221{bottom:292.650667pt;}
.y273{bottom:293.696000pt;}
.y24e{bottom:295.196000pt;}
.y32{bottom:295.418667pt;}
.y121{bottom:295.741333pt;}
.y29c{bottom:296.192000pt;}
.y1b1{bottom:302.178667pt;}
.y14e{bottom:302.738667pt;}
.y188{bottom:304.845333pt;}
.y21{bottom:304.938667pt;}
.y67{bottom:305.460000pt;}
.y1d7{bottom:308.212000pt;}
.y99{bottom:308.290667pt;}
.yf2{bottom:308.757333pt;}
.yc8{bottom:309.334667pt;}
.y220{bottom:309.388000pt;}
.y272{bottom:310.432000pt;}
.y24d{bottom:311.933333pt;}
.y31{bottom:312.154667pt;}
.y120{bottom:312.478667pt;}
.y29b{bottom:312.929333pt;}
.y1f8{bottom:314.541333pt;}
.y1b0{bottom:318.916000pt;}
.y66{bottom:319.142667pt;}
.y14d{bottom:319.476000pt;}
.y20{bottom:321.676000pt;}
.y187{bottom:322.916000pt;}
.y1d6{bottom:324.949333pt;}
.y98{bottom:325.028000pt;}
.yf1{bottom:325.494667pt;}
.yc7{bottom:326.072000pt;}
.y21f{bottom:326.124000pt;}
.y24c{bottom:328.670667pt;}
.y30{bottom:328.892000pt;}
.y29a{bottom:329.665333pt;}
.y1f7{bottom:331.278667pt;}
.y65{bottom:332.824000pt;}
.y11f{bottom:333.453333pt;}
.y271{bottom:335.422667pt;}
.y1af{bottom:335.653333pt;}
.y14c{bottom:336.772000pt;}
.y1f{bottom:338.413333pt;}
.y186{bottom:339.653333pt;}
.y1d5{bottom:341.686667pt;}
.y97{bottom:341.765333pt;}
.yf0{bottom:342.232000pt;}
.yc6{bottom:342.809333pt;}
.y21e{bottom:342.861333pt;}
.y2f{bottom:345.629333pt;}
.y299{bottom:346.402667pt;}
.y1f6{bottom:348.016000pt;}
.y64{bottom:351.585333pt;}
.y270{bottom:352.160000pt;}
.y1ae{bottom:352.390667pt;}
.y14b{bottom:353.509333pt;}
.y24b{bottom:355.162667pt;}
.y185{bottom:356.390667pt;}
.y1d4{bottom:358.424000pt;}
.y96{bottom:358.502667pt;}
.yef{bottom:358.969333pt;}
.yc5{bottom:359.546667pt;}
.y11e{bottom:361.530667pt;}
.y1e{bottom:362.366667pt;}
.y298{bottom:363.140000pt;}
.y1f5{bottom:364.753333pt;}
.y21d{bottom:364.928000pt;}
.y26f{bottom:368.897333pt;}
.y1ad{bottom:369.128000pt;}
.y14a{bottom:370.246667pt;}
.y24a{bottom:371.900000pt;}
.y184{bottom:373.128000pt;}
.y1d3{bottom:375.161333pt;}
.y95{bottom:375.240000pt;}
.yee{bottom:375.706667pt;}
.y63{bottom:376.014667pt;}
.yc4{bottom:376.284000pt;}
.y11d{bottom:378.268000pt;}
.y297{bottom:379.877333pt;}
.y1f4{bottom:381.490667pt;}
.y26e{bottom:385.634667pt;}
.y1ac{bottom:385.865333pt;}
.y149{bottom:386.984000pt;}
.y249{bottom:388.637333pt;}
.y183{bottom:389.865333pt;}
.y1d2{bottom:391.898667pt;}
.y94{bottom:391.977333pt;}
.yed{bottom:392.444000pt;}
.y62{bottom:392.752000pt;}
.yc3{bottom:393.021333pt;}
.y11c{bottom:395.005333pt;}
.y21c{bottom:396.493333pt;}
.y296{bottom:396.614667pt;}
.y1f3{bottom:398.228000pt;}
.y26d{bottom:402.372000pt;}
.y1ab{bottom:404.700000pt;}
.y248{bottom:405.374667pt;}
.y182{bottom:406.602667pt;}
.y148{bottom:408.565333pt;}
.y1d1{bottom:408.636000pt;}
.y93{bottom:408.714667pt;}
.yec{bottom:409.181333pt;}
.y61{bottom:409.489333pt;}
.yc2{bottom:409.757333pt;}
.y11b{bottom:411.741333pt;}
.y21b{bottom:413.230667pt;}
.y1f2{bottom:414.965333pt;}
.y26c{bottom:419.109333pt;}
.y295{bottom:421.322667pt;}
.y1aa{bottom:421.437333pt;}
.y247{bottom:422.110667pt;}
.y181{bottom:423.340000pt;}
.y1d0{bottom:425.373333pt;}
.y92{bottom:425.813333pt;}
.yeb{bottom:425.918667pt;}
.y60{bottom:426.226667pt;}
.yc1{bottom:426.494667pt;}
.y11a{bottom:428.478667pt;}
.y21a{bottom:429.968000pt;}
.y1f1{bottom:431.702667pt;}
.y26b{bottom:435.846667pt;}
.y294{bottom:438.060000pt;}
.y180{bottom:440.077333pt;}
.y1a9{bottom:440.270667pt;}
.y1d{bottom:440.409333pt;}
.y1cf{bottom:442.110667pt;}
.y91{bottom:442.550667pt;}
.y5f{bottom:442.962667pt;}
.yc0{bottom:443.232000pt;}
.y119{bottom:445.216000pt;}
.y219{bottom:446.705333pt;}
.y1f0{bottom:448.440000pt;}
.y246{bottom:448.602667pt;}
.y147{bottom:451.386667pt;}
.y293{bottom:454.797333pt;}
.y17f{bottom:456.814667pt;}
.y1a8{bottom:457.008000pt;}
.y1c{bottom:457.146667pt;}
.y1ce{bottom:458.848000pt;}
.y90{bottom:459.288000pt;}
.y5e{bottom:459.700000pt;}
.ybf{bottom:459.969333pt;}
.y26a{bottom:460.837333pt;}
.yea{bottom:461.776000pt;}
.y118{bottom:461.953333pt;}
.y1ef{bottom:465.177333pt;}
.y245{bottom:465.340000pt;}
.y292{bottom:471.534667pt;}
.y17e{bottom:473.552000pt;}
.y1a7{bottom:473.745333pt;}
.y1b{bottom:473.884000pt;}
.y8f{bottom:476.025333pt;}
.y5d{bottom:476.437333pt;}
.ybe{bottom:476.706667pt;}
.y269{bottom:477.574667pt;}
.y218{bottom:478.582667pt;}
.y117{bottom:478.690667pt;}
.y1cd{bottom:480.478667pt;}
.y146{bottom:480.820667pt;}
.y1ee{bottom:481.914667pt;}
.y244{bottom:482.077333pt;}
.y291{bottom:488.270667pt;}
.y17d{bottom:490.289333pt;}
.y1a6{bottom:490.482667pt;}
.y1a{bottom:490.621333pt;}
.ye9{bottom:490.857600pt;}
.y8e{bottom:492.762667pt;}
.y5c{bottom:493.174667pt;}
.ybd{bottom:493.444000pt;}
.y268{bottom:494.312000pt;}
.y145{bottom:495.047400pt;}
.y217{bottom:495.320000pt;}
.y116{bottom:495.428000pt;}
.y1ed{bottom:498.652000pt;}
.y243{bottom:498.814667pt;}
.ye8{bottom:505.880787pt;}
.y17c{bottom:507.026667pt;}
.y1a5{bottom:507.220000pt;}
.y19{bottom:507.358667pt;}
.y144{bottom:509.274133pt;}
.y8d{bottom:509.500000pt;}
.y1cc{bottom:509.530667pt;}
.y5b{bottom:509.912000pt;}
.ybc{bottom:510.181333pt;}
.y267{bottom:511.049333pt;}
.y216{bottom:512.057333pt;}
.y115{bottom:512.165333pt;}
.y290{bottom:512.978667pt;}
.y1ec{bottom:515.389333pt;}
.ye7{bottom:520.442267pt;}
.y242{bottom:521.997333pt;}
.y143{bottom:523.500800pt;}
.y17b{bottom:523.762667pt;}
.y1a4{bottom:523.957333pt;}
.y18{bottom:524.096000pt;}
.y8c{bottom:526.237333pt;}
.y1cb{bottom:526.268000pt;}
.y5a{bottom:526.649333pt;}
.ybb{bottom:526.918667pt;}
.y266{bottom:527.786667pt;}
.y215{bottom:528.794667pt;}
.y114{bottom:528.902667pt;}
.y28f{bottom:529.716000pt;}
.y1eb{bottom:532.126667pt;}
.ye6{bottom:535.466507pt;}
.y142{bottom:538.178667pt;}
.y1a3{bottom:540.694667pt;}
.y17{bottom:540.833333pt;}
.y17a{bottom:541.833333pt;}
.y8b{bottom:542.974667pt;}
.y1ca{bottom:543.005333pt;}
.y59{bottom:543.386667pt;}
.yba{bottom:543.656000pt;}
.y265{bottom:544.524000pt;}
.y214{bottom:545.532000pt;}
.y113{bottom:545.640000pt;}
.y28e{bottom:546.453333pt;}
.y1ea{bottom:548.864000pt;}
.ye5{bottom:550.027987pt;}
.y141{bottom:552.405400pt;}
.y241{bottom:555.116000pt;}
.y1a2{bottom:557.432000pt;}
.y16{bottom:557.570667pt;}
.y179{bottom:558.570667pt;}
.y1c9{bottom:559.742667pt;}
.y8a{bottom:560.074667pt;}
.y58{bottom:560.124000pt;}
.yb9{bottom:560.393333pt;}
.y213{bottom:562.269333pt;}
.y112{bottom:562.624000pt;}
.y28d{bottom:563.190667pt;}
.ye4{bottom:564.589467pt;}
.y1e9{bottom:565.700000pt;}
.y140{bottom:566.632133pt;}
.y264{bottom:569.513333pt;}
.y240{bottom:571.853333pt;}
.y15{bottom:574.306667pt;}
.y178{bottom:575.308000pt;}
.y1c8{bottom:576.480000pt;}
.y89{bottom:576.812000pt;}
.y57{bottom:576.861333pt;}
.yb8{bottom:577.130667pt;}
.y212{bottom:579.006667pt;}
.y111{bottom:579.361333pt;}
.ye3{bottom:579.612667pt;}
.y28c{bottom:579.928000pt;}
.y13f{bottom:580.858867pt;}
.y1a1{bottom:582.000000pt;}
.y1e8{bottom:582.437333pt;}
.y263{bottom:586.250667pt;}
.y23f{bottom:588.590667pt;}
.y14{bottom:591.044000pt;}
.y177{bottom:592.045333pt;}
.y1c7{bottom:593.217333pt;}
.y88{bottom:593.549333pt;}
.y56{bottom:593.598667pt;}
.yb7{bottom:593.868000pt;}
.y13e{bottom:595.085600pt;}
.y211{bottom:595.744000pt;}
.y1e7{bottom:599.174667pt;}
.y110{bottom:600.336000pt;}
.y1a0{bottom:600.597333pt;}
.y262{bottom:602.988000pt;}
.y28b{bottom:604.634667pt;}
.ye2{bottom:606.097333pt;}
.y176{bottom:608.782667pt;}
.y13d{bottom:609.312333pt;}
.y1c6{bottom:609.954667pt;}
.y87{bottom:610.286667pt;}
.y55{bottom:610.336000pt;}
.yb6{bottom:610.605333pt;}
.y23e{bottom:611.830667pt;}
.y210{bottom:612.480000pt;}
.y1e6{bottom:615.912000pt;}
.y19f{bottom:619.194667pt;}
.y13{bottom:619.701333pt;}
.y261{bottom:619.725333pt;}
.y28a{bottom:621.372000pt;}
.ye1{bottom:622.834667pt;}
.y13c{bottom:623.539067pt;}
.y175{bottom:625.520000pt;}
.y86{bottom:627.022667pt;}
.y54{bottom:627.073333pt;}
.yb5{bottom:627.342667pt;}
.y10f{bottom:628.413333pt;}
.y23d{bottom:628.568000pt;}
.y20f{bottom:629.217333pt;}
.y1c5{bottom:631.585333pt;}
.y12{bottom:636.438667pt;}
.y260{bottom:636.462667pt;}
.y1e5{bottom:636.600000pt;}
.y13b{bottom:637.764667pt;}
.y289{bottom:638.109333pt;}
.ye0{bottom:639.572000pt;}
.y174{bottom:642.257333pt;}
.y85{bottom:643.760000pt;}
.yb4{bottom:644.078667pt;}
.y10e{bottom:645.150667pt;}
.y23c{bottom:645.305333pt;}
.y20e{bottom:645.954667pt;}
.y13a{bottom:651.991400pt;}
.y19e{bottom:652.609333pt;}
.y11{bottom:653.176000pt;}
.y25f{bottom:653.200000pt;}
.y288{bottom:654.846667pt;}
.ydf{bottom:656.309333pt;}
.y173{bottom:658.994667pt;}
.y53{bottom:659.453333pt;}
.y84{bottom:660.497333pt;}
.y1c4{bottom:660.637333pt;}
.yb3{bottom:660.816000pt;}
.y10d{bottom:661.888000pt;}
.y20d{bottom:662.692000pt;}
.y139{bottom:666.218133pt;}
.y19d{bottom:669.346667pt;}
.y10{bottom:669.913333pt;}
.y25e{bottom:669.937333pt;}
.yde{bottom:673.046667pt;}
.y23b{bottom:674.086667pt;}
.y172{bottom:675.732000pt;}
.y52{bottom:676.190667pt;}
.y83{bottom:677.234667pt;}
.y1c3{bottom:677.374667pt;}
.yb2{bottom:677.553333pt;}
.y10c{bottom:678.625333pt;}
.y20c{bottom:679.429333pt;}
.y287{bottom:679.554667pt;}
.y138{bottom:680.444867pt;}
.y19c{bottom:686.084000pt;}
.yf{bottom:686.650667pt;}
.ydd{bottom:689.784000pt;}
.y1e4{bottom:690.746667pt;}
.y23a{bottom:690.824000pt;}
.y171{bottom:692.469333pt;}
.y51{bottom:692.928000pt;}
.y82{bottom:693.972000pt;}
.y1c2{bottom:694.112000pt;}
.yb1{bottom:694.290667pt;}
.y137{bottom:694.671600pt;}
.y25d{bottom:694.928000pt;}
.y10b{bottom:695.362667pt;}
.y286{bottom:696.290667pt;}
.y19b{bottom:702.821333pt;}
.ye{bottom:703.388000pt;}
.y20b{bottom:704.533333pt;}
.ydc{bottom:706.521333pt;}
.y239{bottom:707.561333pt;}
.y136{bottom:708.898333pt;}
.y170{bottom:709.206667pt;}
.y50{bottom:710.254667pt;}
.y81{bottom:710.709333pt;}
.y1c1{bottom:710.849333pt;}
.yb0{bottom:711.028000pt;}
.y25c{bottom:711.665333pt;}
.y10a{bottom:712.100000pt;}
.y285{bottom:713.028000pt;}
.y19a{bottom:719.558667pt;}
.yd{bottom:720.125333pt;}
.y1e3{bottom:720.179933pt;}
.y20a{bottom:721.270667pt;}
.y135{bottom:723.125067pt;}
.ydb{bottom:723.258667pt;}
.y16f{bottom:725.944000pt;}
.y4f{bottom:726.992000pt;}
.y1e2{bottom:727.293867pt;}
.y80{bottom:727.446667pt;}
.y1c0{bottom:727.586667pt;}
.yaf{bottom:727.765333pt;}
.y25b{bottom:728.402667pt;}
.y109{bottom:728.837333pt;}
.y284{bottom:729.765333pt;}
.y238{bottom:734.053333pt;}
.y199{bottom:736.296000pt;}
.yc{bottom:736.862667pt;}
.y134{bottom:737.351800pt;}
.y209{bottom:738.008000pt;}
.yda{bottom:739.996000pt;}
.y16e{bottom:742.681333pt;}
.y4e{bottom:743.729333pt;}
.y7f{bottom:744.184000pt;}
.y1bf{bottom:744.324000pt;}
.yae{bottom:744.502667pt;}
.y25a{bottom:745.140000pt;}
.y108{bottom:745.821333pt;}
.y283{bottom:746.502667pt;}
.y1e1{bottom:749.084467pt;}
.y237{bottom:750.790667pt;}
.y133{bottom:751.578533pt;}
.y198{bottom:753.033333pt;}
.yb{bottom:753.600000pt;}
.y1e0{bottom:756.198400pt;}
.yd9{bottom:756.733333pt;}
.y16d{bottom:759.417333pt;}
.y4d{bottom:760.466667pt;}
.y7e{bottom:760.921333pt;}
.y1be{bottom:761.061333pt;}
.yad{bottom:761.240000pt;}
.y259{bottom:761.877333pt;}
.y107{bottom:762.558667pt;}
.y208{bottom:763.110667pt;}
.y132{bottom:765.805267pt;}
.y236{bottom:767.528000pt;}
.y197{bottom:769.770667pt;}
.ya{bottom:770.337333pt;}
.y282{bottom:771.210667pt;}
.y4c{bottom:777.204000pt;}
.y7d{bottom:777.658667pt;}
.y1bd{bottom:777.798667pt;}
.yac{bottom:777.977333pt;}
.y1df{bottom:777.990067pt;}
.y258{bottom:778.614667pt;}
.y106{bottom:779.296000pt;}
.y207{bottom:779.848000pt;}
.y131{bottom:780.032000pt;}
.yd8{bottom:780.152000pt;}
.y16c{bottom:784.384000pt;}
.y1de{bottom:785.102933pt;}
.y196{bottom:786.508000pt;}
.y9{bottom:787.073333pt;}
.y281{bottom:787.948000pt;}
.y4b{bottom:793.941333pt;}
.y235{bottom:794.018667pt;}
.y130{bottom:794.258733pt;}
.y7c{bottom:794.396000pt;}
.yab{bottom:794.714667pt;}
.y1bc{bottom:795.120000pt;}
.y206{bottom:796.585333pt;}
.y105{bottom:800.270667pt;}
.y195{bottom:803.245333pt;}
.y257{bottom:803.604000pt;}
.y8{bottom:803.810667pt;}
.y280{bottom:804.685333pt;}
.y1dd{bottom:806.894600pt;}
.y12f{bottom:808.485467pt;}
.y234{bottom:810.756000pt;}
.y7b{bottom:811.133333pt;}
.y4a{bottom:811.268000pt;}
.yaa{bottom:811.452000pt;}
.yd7{bottom:811.857333pt;}
.y205{bottom:813.322667pt;}
.y1dc{bottom:814.008667pt;}
.y16b{bottom:819.982667pt;}
.y256{bottom:820.341333pt;}
.y12e{bottom:822.711067pt;}
.y233{bottom:827.493333pt;}
.y7a{bottom:827.870667pt;}
.y49{bottom:828.005333pt;}
.ya9{bottom:828.189333pt;}
.y104{bottom:828.348000pt;}
.yd6{bottom:828.594667pt;}
.y27f{bottom:829.392000pt;}
.y204{bottom:830.060000pt;}
.y1db{bottom:835.799200pt;}
.y12d{bottom:836.937733pt;}
.y255{bottom:837.078667pt;}
.y7{bottom:839.621333pt;}
.y79{bottom:844.608000pt;}
.y48{bottom:844.742667pt;}
.ya8{bottom:844.926667pt;}
.y103{bottom:845.085333pt;}
.yd5{bottom:845.332000pt;}
.y27e{bottom:846.129333pt;}
.y203{bottom:846.797333pt;}
.y12c{bottom:851.616667pt;}
.y254{bottom:853.816000pt;}
.y16a{bottom:855.848000pt;}
.y232{bottom:856.641333pt;}
.y6{bottom:856.889333pt;}
.y47{bottom:861.480000pt;}
.ya7{bottom:861.664000pt;}
.y78{bottom:861.706667pt;}
.y102{bottom:861.822667pt;}
.yd4{bottom:862.069333pt;}
.y202{bottom:863.534667pt;}
.y27d{bottom:870.837333pt;}
.y231{bottom:873.378667pt;}
.y5{bottom:874.158667pt;}
.y46{bottom:878.217333pt;}
.ya6{bottom:878.401333pt;}
.y77{bottom:878.444000pt;}
.y101{bottom:878.560000pt;}
.yd3{bottom:878.806667pt;}
.y201{bottom:880.272000pt;}
.y27c{bottom:887.574667pt;}
.y230{bottom:890.116000pt;}
.ya5{bottom:895.137333pt;}
.y76{bottom:895.181333pt;}
.y100{bottom:895.297333pt;}
.y45{bottom:895.544000pt;}
.y200{bottom:897.009333pt;}
.y27b{bottom:904.310667pt;}
.y22f{bottom:906.853333pt;}
.y169{bottom:908.078667pt;}
.ya4{bottom:911.874667pt;}
.y75{bottom:911.918667pt;}
.yff{bottom:912.034667pt;}
.y4{bottom:912.165333pt;}
.y44{bottom:912.281333pt;}
.y165{bottom:916.040000pt;}
.y164{bottom:920.404000pt;}
.y27a{bottom:921.048000pt;}
.y15c{bottom:921.137333pt;}
.y163{bottom:924.768000pt;}
.y168{bottom:928.164000pt;}
.ya3{bottom:928.612000pt;}
.y74{bottom:928.656000pt;}
.y1ff{bottom:928.886667pt;}
.y43{bottom:929.018667pt;}
.y162{bottom:929.132000pt;}
.y3{bottom:930.762667pt;}
.y22e{bottom:936.001333pt;}
.y15b{bottom:938.586667pt;}
.ya2{bottom:945.349333pt;}
.y1fe{bottom:945.624000pt;}
.y42{bottom:945.756000pt;}
.y167{bottom:948.248000pt;}
.y22d{bottom:952.738667pt;}
.y161{bottom:955.313333pt;}
.y160{bottom:959.677333pt;}
.y1fd{bottom:962.361333pt;}
.y41{bottom:962.493333pt;}
.y15f{bottom:964.041333pt;}
.ya1{bottom:966.196000pt;}
.y166{bottom:968.333333pt;}
.y15e{bottom:968.405333pt;}
.y2{bottom:968.558667pt;}
.y40{bottom:979.230667pt;}
.y15d{bottom:981.496000pt;}
.y1{bottom:985.296000pt;}
.y3f{bottom:995.968000pt;}
.y9e{bottom:1045.957199pt;}
.y3c{bottom:1046.078533pt;}
.h1a{height:0.581813pt;}
.hd{height:12.264000pt;}
.h10{height:14.016000pt;}
.h9{height:15.549333pt;}
.hc{height:21.552683pt;}
.he{height:25.940104pt;}
.h11{height:29.645833pt;}
.h19{height:29.924693pt;}
.h12{height:33.186155pt;}
.ha{height:35.864000pt;}
.h16{height:37.090600pt;}
.h17{height:37.090867pt;}
.h1e{height:37.308780pt;}
.h1d{height:37.308913pt;}
.h13{height:37.963320pt;}
.h8{height:43.636000pt;}
.h5{height:44.887040pt;}
.h4{height:45.333360pt;}
.h6{height:45.524640pt;}
.h7{height:47.820000pt;}
.hb{height:49.843840pt;}
.hf{height:49.849173pt;}
.h14{height:52.831360pt;}
.h2{height:53.864448pt;}
.h18{height:55.851147pt;}
.h15{height:63.700000pt;}
.h1b{height:65.541800pt;}
.h1c{height:65.546333pt;}
.h3{height:67.617333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w7{width:10.666667pt;}
.w3{width:63.000000pt;}
.w6{width:218.310667pt;}
.w2{width:237.678657pt;}
.w4{width:267.057333pt;}
.w5{width:290.850667pt;}
.w8{width:487.802667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:94.488525pt;}
.x1{left:96.000000pt;}
.x21{left:97.760000pt;}
.x2{left:103.056000pt;}
.x1f{left:107.781333pt;}
.xf{left:110.545333pt;}
.x3{left:111.912000pt;}
.x8{left:114.897333pt;}
.x20{left:125.090667pt;}
.x7{left:133.794667pt;}
.x10{left:143.677333pt;}
.x1e{left:152.961995pt;}
.x23{left:184.497333pt;}
.x5{left:190.817333pt;}
.x6{left:239.661333pt;}
.x26{left:265.674667pt;}
.x15{left:287.701986pt;}
.x4{left:376.412000pt;}
.x16{left:391.517334pt;}
.x9{left:417.260000pt;}
.x14{left:419.018667pt;}
.x19{left:420.634667pt;}
.x24{left:421.981333pt;}
.x1a{left:423.085333pt;}
.x13{left:424.030667pt;}
.x18{left:425.646667pt;}
.x11{left:429.041333pt;}
.x17{left:430.657333pt;}
.xe{left:432.178141pt;}
.xb{left:433.842667pt;}
.xa{left:436.157333pt;}
.x1d{left:441.881333pt;}
.x12{left:446.350667pt;}
.x1b{left:456.749333pt;}
.x27{left:458.106667pt;}
.xc{left:461.538167pt;}
.x25{left:464.306667pt;}
.x28{left:468.385333pt;}
.x2a{left:471.941333pt;}
.x2b{left:475.441333pt;}
.x1c{left:530.229333pt;}
.x29{left:534.188667pt;}
.x22{left:538.082467pt;}
}




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