
    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_473856307b0c92a9fc2c50d4.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7cf1d3187515568d66954459.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.940000;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_71575b28b85f5b31c792c990.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.927000;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_21ae8fca6ac838b626ca85d0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.967000;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_8183b85a012aeeb7d0cb71c3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.383000;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_874d922c76411b180ef92f92.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.889000;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_f38af742d8d2d85c740421b8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.877000;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_91db06bad10aa888938cdb9b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.392000;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_82d0f8a037059ff6a4da2e01.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.926000;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_24a9ce751257ee423c0f821a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e3f0d2eda215cafb8e03de7a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740000;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_70c3eec2b0908b5340fba56c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938000;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_0d707c4f2ffbd136fd9c18cf.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938000;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_3af61b1c3807af22b2a86190.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.969000;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_a0d8abd2ff6b4bf1539441d6.woff2')format("woff");}.fff{font-family:fff;line-height:0.969000;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_f5d4206bdf8580c2f38ff004.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.515000;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_17f7381d9b4e6d031a5112d7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.869000;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_af3d719514db204236a90584.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.514000;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_3795d2ff467e8e2190a02aff.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.470000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_d09455eb858bed8500589ea3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.705000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_f4bf7aa71ac5211982a1b598.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.579000;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:ff16;src:url('chunks/assets/font_8eede5b568e807b9ce6e0513.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.948000;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);}
.m3{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.813182px;}
.ls48{letter-spacing:-2.683166px;}
.ls57{letter-spacing:-2.347171px;}
.ls53{letter-spacing:-2.342371px;}
.ls66{letter-spacing:-0.014400px;}
.ls9{letter-spacing:0.000000px;}
.ls47{letter-spacing:0.004800px;}
.lsd{letter-spacing:0.012000px;}
.ls6a{letter-spacing:0.033600px;}
.ls61{letter-spacing:0.036000px;}
.ls46{letter-spacing:0.038400px;}
.lsa{letter-spacing:0.043194px;}
.ls6{letter-spacing:0.051300px;}
.ls50{letter-spacing:0.060001px;}
.ls69{letter-spacing:0.081599px;}
.ls4c{letter-spacing:0.095999px;}
.ls5d{letter-spacing:0.108001px;}
.ls42{letter-spacing:0.115199px;}
.ls8{letter-spacing:0.124798px;}
.ls5a{letter-spacing:0.138001px;}
.ls0{letter-spacing:0.144001px;}
.ls40{letter-spacing:0.150001px;}
.ls4f{letter-spacing:0.156002px;}
.lsb{letter-spacing:0.168002px;}
.lsc{letter-spacing:0.174002px;}
.lse{letter-spacing:0.186002px;}
.ls54{letter-spacing:0.225597px;}
.lsf{letter-spacing:0.252003px;}
.ls43{letter-spacing:0.307196px;}
.ls4b{letter-spacing:0.316797px;}
.ls3e{letter-spacing:0.354004px;}
.ls4a{letter-spacing:0.374395px;}
.ls58{letter-spacing:0.379195px;}
.ls3{letter-spacing:0.393300px;}
.ls51{letter-spacing:0.402004px;}
.ls62{letter-spacing:0.450004px;}
.ls1a{letter-spacing:0.510005px;}
.ls37{letter-spacing:0.516005px;}
.ls18{letter-spacing:0.528005px;}
.ls63{letter-spacing:0.564006px;}
.ls60{letter-spacing:0.570006px;}
.ls14{letter-spacing:0.576006px;}
.ls17{letter-spacing:0.582006px;}
.ls11{letter-spacing:0.594006px;}
.ls13{letter-spacing:0.600006px;}
.ls16{letter-spacing:0.606006px;}
.ls10{letter-spacing:0.612006px;}
.ls1c{letter-spacing:0.618006px;}
.ls5f{letter-spacing:0.624006px;}
.ls36{letter-spacing:0.630006px;}
.ls12{letter-spacing:0.642006px;}
.ls3a{letter-spacing:0.660007px;}
.ls19{letter-spacing:0.666007px;}
.ls39{letter-spacing:0.690007px;}
.ls15{letter-spacing:0.696007px;}
.ls32{letter-spacing:0.702007px;}
.ls34{letter-spacing:0.708007px;}
.ls38{letter-spacing:0.714007px;}
.ls5b{letter-spacing:0.715191px;}
.ls2f{letter-spacing:0.720007px;}
.ls20{letter-spacing:0.726007px;}
.ls2a{letter-spacing:0.750008px;}
.ls1f{letter-spacing:0.756008px;}
.ls2d{letter-spacing:0.762008px;}
.ls25{letter-spacing:0.768008px;}
.ls29{letter-spacing:0.774008px;}
.ls1e{letter-spacing:0.780008px;}
.ls21{letter-spacing:0.786008px;}
.ls28{letter-spacing:0.792008px;}
.ls33{letter-spacing:0.798008px;}
.ls27{letter-spacing:0.804008px;}
.ls23{letter-spacing:0.810008px;}
.ls26{letter-spacing:0.822008px;}
.ls35{letter-spacing:0.828008px;}
.ls2c{letter-spacing:0.834008px;}
.ls1d{letter-spacing:0.840008px;}
.ls3d{letter-spacing:0.846008px;}
.ls2b{letter-spacing:0.852009px;}
.ls1b{letter-spacing:0.864009px;}
.ls3c{letter-spacing:0.870009px;}
.ls3b{letter-spacing:0.876009px;}
.ls22{letter-spacing:0.936009px;}
.ls24{letter-spacing:3.286962px;}
.ls2{letter-spacing:10.243072px;}
.ls41{letter-spacing:10.396670px;}
.ls55{letter-spacing:10.468669px;}
.ls49{letter-spacing:10.511869px;}
.ls7{letter-spacing:10.550268px;}
.ls56{letter-spacing:10.660667px;}
.ls45{letter-spacing:10.737466px;}
.ls44{letter-spacing:10.852664px;}
.ls5{letter-spacing:12.500100px;}
.ls4{letter-spacing:12.842100px;}
.ls65{letter-spacing:13.098131px;}
.ls4d{letter-spacing:13.110131px;}
.ls59{letter-spacing:13.182132px;}
.ls68{letter-spacing:13.194132px;}
.ls64{letter-spacing:13.230132px;}
.ls67{letter-spacing:13.326133px;}
.ls5e{letter-spacing:13.380134px;}
.ls3f{letter-spacing:13.404134px;}
.ls5c{letter-spacing:13.422134px;}
.ls52{letter-spacing:13.434134px;}
.ls4e{letter-spacing:13.452135px;}
.ls2e{letter-spacing:13.794138px;}
.ls30{letter-spacing:14.130141px;}
.ls31{letter-spacing:14.160142px;}
.ls1{letter-spacing:21.124536px;}
.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;}
}
.wsf0{word-spacing:-13.494135px;}
.ws157{word-spacing:-13.254133px;}
.ws2a{word-spacing:-10.598268px;}
.wscb{word-spacing:-10.559868px;}
.ws8d{word-spacing:-0.936009px;}
.ws76{word-spacing:-0.912009px;}
.ws85{word-spacing:-0.822008px;}
.ws8c{word-spacing:-0.780008px;}
.ws128{word-spacing:-0.763190px;}
.ws8b{word-spacing:-0.756008px;}
.ws136{word-spacing:-0.642006px;}
.ws64{word-spacing:-0.576006px;}
.ws114{word-spacing:-0.427195px;}
.wscc{word-spacing:-0.422395px;}
.ws159{word-spacing:-0.071999px;}
.ws4d{word-spacing:-0.060001px;}
.ws1f{word-spacing:-0.057000px;}
.wsc{word-spacing:-0.047999px;}
.wsa{word-spacing:-0.035995px;}
.ws47{word-spacing:0.000000px;}
.ws103{word-spacing:2.294371px;}
.ws10e{word-spacing:2.299171px;}
.wsc9{word-spacing:2.635167px;}
.ws33{word-spacing:9.614280px;}
.ws2f{word-spacing:9.619080px;}
.ws95{word-spacing:9.633480px;}
.ws98{word-spacing:9.647879px;}
.ws30{word-spacing:9.671879px;}
.ws40{word-spacing:9.681479px;}
.ws46{word-spacing:9.686279px;}
.ws31{word-spacing:9.700679px;}
.wsea{word-spacing:9.705479px;}
.ws3f{word-spacing:9.715079px;}
.ws44{word-spacing:9.719878px;}
.ws32{word-spacing:9.739078px;}
.ws189{word-spacing:9.743878px;}
.ws96{word-spacing:9.748678px;}
.ws188{word-spacing:9.767878px;}
.ws182{word-spacing:9.782278px;}
.ws173{word-spacing:9.791878px;}
.ws184{word-spacing:9.796678px;}
.wse4{word-spacing:9.811077px;}
.ws105{word-spacing:9.815877px;}
.ws101{word-spacing:9.820677px;}
.wsd{word-spacing:9.825477px;}
.ws16f{word-spacing:9.830277px;}
.ws112{word-spacing:9.835077px;}
.ws99{word-spacing:9.844677px;}
.ws3a{word-spacing:9.849477px;}
.ws111{word-spacing:9.854277px;}
.ws160{word-spacing:9.859077px;}
.ws126{word-spacing:9.863877px;}
.ws37{word-spacing:9.873477px;}
.ws35{word-spacing:9.883076px;}
.ws36{word-spacing:9.892676px;}
.wse8{word-spacing:9.897476px;}
.ws107{word-spacing:9.902276px;}
.ws10a{word-spacing:9.907076px;}
.wsfc{word-spacing:9.911876px;}
.ws97{word-spacing:9.916676px;}
.ws3c{word-spacing:9.921476px;}
.ws9b{word-spacing:9.926276px;}
.ws12{word-spacing:9.931076px;}
.ws187{word-spacing:9.935876px;}
.ws172{word-spacing:9.940676px;}
.wsd8{word-spacing:9.945476px;}
.wse5{word-spacing:9.950276px;}
.wse9{word-spacing:9.955076px;}
.wsc4{word-spacing:9.964675px;}
.ws115{word-spacing:9.969475px;}
.wsf{word-spacing:9.974275px;}
.ws34{word-spacing:9.979075px;}
.ws116{word-spacing:9.988675px;}
.ws45{word-spacing:9.998275px;}
.wsd0{word-spacing:10.003075px;}
.ws2d{word-spacing:10.007875px;}
.wsc2{word-spacing:10.012675px;}
.wsb{word-spacing:10.017475px;}
.ws185{word-spacing:10.022275px;}
.ws43{word-spacing:10.031875px;}
.ws9a{word-spacing:10.036675px;}
.ws17b{word-spacing:10.041474px;}
.ws3b{word-spacing:10.046274px;}
.ws16e{word-spacing:10.051074px;}
.ws11{word-spacing:10.055874px;}
.wsff{word-spacing:10.065474px;}
.ws181{word-spacing:10.070274px;}
.ws3e{word-spacing:10.079874px;}
.ws17f{word-spacing:10.084674px;}
.wsfb{word-spacing:10.089474px;}
.ws17e{word-spacing:10.094274px;}
.wsd2{word-spacing:10.099074px;}
.ws2c{word-spacing:10.103874px;}
.ws183{word-spacing:10.108674px;}
.ws10f{word-spacing:10.113474px;}
.ws15e{word-spacing:10.118274px;}
.ws42{word-spacing:10.123073px;}
.wseb{word-spacing:10.127873px;}
.ws38{word-spacing:10.132673px;}
.ws2e{word-spacing:10.137473px;}
.ws16c{word-spacing:10.147073px;}
.ws165{word-spacing:10.151873px;}
.wscf{word-spacing:10.156673px;}
.wsc8{word-spacing:10.161473px;}
.wsd7{word-spacing:10.166273px;}
.wscd{word-spacing:10.171073px;}
.ws29{word-spacing:10.175873px;}
.ws2b{word-spacing:10.180673px;}
.ws109{word-spacing:10.190273px;}
.wsd6{word-spacing:10.195073px;}
.ws175{word-spacing:10.199872px;}
.ws94{word-spacing:10.204672px;}
.wsfd{word-spacing:10.209472px;}
.wse6{word-spacing:10.219072px;}
.ws10d{word-spacing:10.228672px;}
.ws127{word-spacing:10.233472px;}
.ws16a{word-spacing:10.238272px;}
.ws106{word-spacing:10.243072px;}
.ws176{word-spacing:10.262272px;}
.wsc7{word-spacing:10.267072px;}
.ws162{word-spacing:10.271872px;}
.ws15d{word-spacing:10.276672px;}
.ws0{word-spacing:10.281471px;}
.ws17c{word-spacing:10.286271px;}
.ws113{word-spacing:10.291071px;}
.ws169{word-spacing:10.300671px;}
.wse7{word-spacing:10.305471px;}
.ws110{word-spacing:10.310271px;}
.ws16d{word-spacing:10.315071px;}
.wsca{word-spacing:10.319871px;}
.wsce{word-spacing:10.329471px;}
.ws186{word-spacing:10.334271px;}
.ws174{word-spacing:10.339071px;}
.ws17a{word-spacing:10.343871px;}
.wsfe{word-spacing:10.348671px;}
.ws41{word-spacing:10.353471px;}
.wsd1{word-spacing:10.358271px;}
.ws178{word-spacing:10.363070px;}
.ws104{word-spacing:10.382270px;}
.ws15f{word-spacing:10.387070px;}
.ws10c{word-spacing:10.406270px;}
.ws39{word-spacing:10.425470px;}
.ws170{word-spacing:10.430270px;}
.ws3d{word-spacing:10.444669px;}
.ws166{word-spacing:10.454269px;}
.wse{word-spacing:10.463869px;}
.ws161{word-spacing:10.468669px;}
.wsc5{word-spacing:10.473469px;}
.wsd9{word-spacing:10.478269px;}
.wsc3{word-spacing:10.497469px;}
.ws102{word-spacing:10.502269px;}
.ws168{word-spacing:10.526268px;}
.ws100{word-spacing:10.531068px;}
.ws10b{word-spacing:10.550268px;}
.ws16b{word-spacing:10.564668px;}
.ws177{word-spacing:10.569468px;}
.ws164{word-spacing:10.574268px;}
.ws179{word-spacing:10.579068px;}
.ws171{word-spacing:10.603067px;}
.ws10{word-spacing:10.612667px;}
.ws163{word-spacing:10.617467px;}
.ws108{word-spacing:10.622267px;}
.ws15c{word-spacing:10.646267px;}
.wsc6{word-spacing:10.655867px;}
.ws180{word-spacing:10.804665px;}
.ws1b{word-spacing:11.496900px;}
.ws5{word-spacing:11.685600px;}
.ws9{word-spacing:11.728800px;}
.ws8{word-spacing:11.809800px;}
.ws7{word-spacing:11.858400px;}
.ws6{word-spacing:11.896200px;}
.ws8a{word-spacing:11.982120px;}
.ws90{word-spacing:12.000120px;}
.ws93{word-spacing:12.012120px;}
.ws91{word-spacing:12.030120px;}
.ws7d{word-spacing:12.036120px;}
.ws83{word-spacing:12.066121px;}
.ws7a{word-spacing:12.114121px;}
.ws87{word-spacing:12.132121px;}
.ws71{word-spacing:12.138121px;}
.ws7c{word-spacing:12.150122px;}
.ws89{word-spacing:12.168122px;}
.ws7f{word-spacing:12.174122px;}
.ws79{word-spacing:12.186122px;}
.ws69{word-spacing:12.192122px;}
.ws84{word-spacing:12.216122px;}
.ws132{word-spacing:12.240122px;}
.ws24{word-spacing:12.260700px;}
.ws7b{word-spacing:12.264123px;}
.ws80{word-spacing:12.270123px;}
.ws77{word-spacing:12.282123px;}
.ws6a{word-spacing:12.288123px;}
.ws72{word-spacing:12.294123px;}
.ws73{word-spacing:12.300123px;}
.ws75{word-spacing:12.306123px;}
.ws6e{word-spacing:12.330123px;}
.ws25{word-spacing:12.340500px;}
.ws14{word-spacing:12.357600px;}
.ws74{word-spacing:12.366124px;}
.ws7e{word-spacing:12.396124px;}
.ws92{word-spacing:12.402124px;}
.ws65{word-spacing:12.408124px;}
.ws6b{word-spacing:12.414124px;}
.ws6d{word-spacing:12.420124px;}
.ws23{word-spacing:12.420300px;}
.ws66{word-spacing:12.426124px;}
.ws1e{word-spacing:12.431700px;}
.ws8e{word-spacing:12.438124px;}
.ws16{word-spacing:12.443100px;}
.ws137{word-spacing:12.450125px;}
.ws81{word-spacing:12.456125px;}
.ws5f{word-spacing:12.474125px;}
.ws1c{word-spacing:12.494400px;}
.ws86{word-spacing:12.498125px;}
.ws13e{word-spacing:12.504125px;}
.ws70{word-spacing:12.510125px;}
.ws62{word-spacing:12.516125px;}
.ws27{word-spacing:12.517200px;}
.ws6f{word-spacing:12.522125px;}
.ws133{word-spacing:12.528125px;}
.ws20{word-spacing:12.528600px;}
.ws138{word-spacing:12.534125px;}
.ws134{word-spacing:12.552126px;}
.ws60{word-spacing:12.558126px;}
.ws61{word-spacing:12.564126px;}
.ws68{word-spacing:12.570126px;}
.ws26{word-spacing:12.574200px;}
.ws82{word-spacing:12.582126px;}
.ws5e{word-spacing:12.594126px;}
.ws21{word-spacing:12.597000px;}
.ws78{word-spacing:12.600126px;}
.ws63{word-spacing:12.606126px;}
.ws19{word-spacing:12.608400px;}
.ws13{word-spacing:12.614100px;}
.ws125{word-spacing:12.630126px;}
.ws15{word-spacing:12.642600px;}
.ws67{word-spacing:12.654127px;}
.ws17{word-spacing:12.665400px;}
.ws8f{word-spacing:12.678127px;}
.ws28{word-spacing:12.682500px;}
.ws12b{word-spacing:12.690127px;}
.ws22{word-spacing:12.699600px;}
.ws1a{word-spacing:12.705300px;}
.ws14b{word-spacing:12.714127px;}
.ws1d{word-spacing:12.768000px;}
.ws18{word-spacing:12.773700px;}
.ws151{word-spacing:12.774128px;}
.ws123{word-spacing:12.786128px;}
.ws88{word-spacing:12.798128px;}
.ws12e{word-spacing:12.816128px;}
.ws11d{word-spacing:12.834128px;}
.ws14a{word-spacing:12.852129px;}
.ws14d{word-spacing:12.870129px;}
.ws11f{word-spacing:12.882129px;}
.ws13f{word-spacing:12.912129px;}
.ws146{word-spacing:12.918129px;}
.ws4c{word-spacing:12.936129px;}
.ws149{word-spacing:12.942129px;}
.ws14f{word-spacing:12.948129px;}
.ws53{word-spacing:12.960130px;}
.ws48{word-spacing:12.966130px;}
.ws9d{word-spacing:12.972130px;}
.wse0{word-spacing:12.978130px;}
.ws117{word-spacing:12.984130px;}
.ws129{word-spacing:12.990130px;}
.ws4f{word-spacing:12.996130px;}
.ws13c{word-spacing:13.002130px;}
.wsee{word-spacing:13.008130px;}
.wsdf{word-spacing:13.014130px;}
.wsb0{word-spacing:13.020130px;}
.ws4e{word-spacing:13.026130px;}
.ws122{word-spacing:13.032130px;}
.ws55{word-spacing:13.038130px;}
.ws131{word-spacing:13.044130px;}
.ws58{word-spacing:13.050131px;}
.ws145{word-spacing:13.056131px;}
.ws54{word-spacing:13.062131px;}
.ws9f{word-spacing:13.068131px;}
.wsf7{word-spacing:13.074131px;}
.ws50{word-spacing:13.080131px;}
.ws5d{word-spacing:13.086131px;}
.wsb7{word-spacing:13.092131px;}
.wsb3{word-spacing:13.098131px;}
.ws5a{word-spacing:13.104131px;}
.ws52{word-spacing:13.110131px;}
.wsae{word-spacing:13.116131px;}
.wsbe{word-spacing:13.122131px;}
.wsa1{word-spacing:13.128131px;}
.wsa6{word-spacing:13.134131px;}
.wsf5{word-spacing:13.140131px;}
.wsb4{word-spacing:13.146131px;}
.wsb1{word-spacing:13.152132px;}
.ws4b{word-spacing:13.158132px;}
.ws56{word-spacing:13.164132px;}
.wsaa{word-spacing:13.170132px;}
.wsd4{word-spacing:13.176132px;}
.wsb6{word-spacing:13.182132px;}
.wsa2{word-spacing:13.188132px;}
.ws118{word-spacing:13.194132px;}
.wsa0{word-spacing:13.200132px;}
.wsdd{word-spacing:13.206132px;}
.ws9e{word-spacing:13.212132px;}
.ws13a{word-spacing:13.218132px;}
.wsa4{word-spacing:13.224132px;}
.ws12c{word-spacing:13.230132px;}
.ws13b{word-spacing:13.242132px;}
.wsbc{word-spacing:13.248132px;}
.ws15a{word-spacing:13.254133px;}
.wsb8{word-spacing:13.260133px;}
.wsa3{word-spacing:13.266133px;}
.ws150{word-spacing:13.272133px;}
.wsac{word-spacing:13.278133px;}
.ws12f{word-spacing:13.284133px;}
.wsab{word-spacing:13.290133px;}
.ws59{word-spacing:13.296133px;}
.wsf2{word-spacing:13.302133px;}
.wsa9{word-spacing:13.308133px;}
.ws124{word-spacing:13.320133px;}
.ws11c{word-spacing:13.326133px;}
.wse1{word-spacing:13.332133px;}
.wsda{word-spacing:13.338133px;}
.ws11e{word-spacing:13.344133px;}
.wsf8{word-spacing:13.350134px;}
.ws13d{word-spacing:13.356134px;}
.wsbf{word-spacing:13.362134px;}
.wsad{word-spacing:13.368134px;}
.ws11a{word-spacing:13.374134px;}
.ws5b{word-spacing:13.380134px;}
.wsdb{word-spacing:13.386134px;}
.wsfa{word-spacing:13.392134px;}
.wsc0{word-spacing:13.398134px;}
.ws120{word-spacing:13.404134px;}
.ws11b{word-spacing:13.410134px;}
.ws57{word-spacing:13.416134px;}
.wsf4{word-spacing:13.422134px;}
.ws152{word-spacing:13.428134px;}
.wsf3{word-spacing:13.434134px;}
.ws130{word-spacing:13.437705px;}
.wsf9{word-spacing:13.440134px;}
.wsec{word-spacing:13.446134px;}
.wsef{word-spacing:13.452135px;}
.wsc1{word-spacing:13.464135px;}
.wsb9{word-spacing:13.470135px;}
.wsa8{word-spacing:13.476135px;}
.wsdc{word-spacing:13.482135px;}
.wsd3{word-spacing:13.488135px;}
.wsf1{word-spacing:13.494135px;}
.wsb2{word-spacing:13.500135px;}
.wsde{word-spacing:13.506135px;}
.ws147{word-spacing:13.512135px;}
.wsaf{word-spacing:13.530135px;}
.ws49{word-spacing:13.536135px;}
.ws4a{word-spacing:13.542135px;}
.ws155{word-spacing:13.554136px;}
.wsed{word-spacing:13.560136px;}
.wsba{word-spacing:13.566136px;}
.wsa5{word-spacing:13.578136px;}
.ws154{word-spacing:13.584136px;}
.ws51{word-spacing:13.590136px;}
.wsbd{word-spacing:13.596136px;}
.wsa7{word-spacing:13.608136px;}
.ws12d{word-spacing:13.620136px;}
.ws12a{word-spacing:13.632136px;}
.ws142{word-spacing:13.638136px;}
.ws5c{word-spacing:13.650136px;}
.ws6c{word-spacing:13.662137px;}
.ws139{word-spacing:13.686137px;}
.ws121{word-spacing:13.692137px;}
.ws135{word-spacing:13.698137px;}
.wsbb{word-spacing:13.728137px;}
.ws143{word-spacing:13.740137px;}
.ws119{word-spacing:13.806138px;}
.wse2{word-spacing:13.848138px;}
.ws153{word-spacing:15.523071px;}
.wsf6{word-spacing:15.530271px;}
.wsb5{word-spacing:15.573470px;}
.ws144{word-spacing:15.580670px;}
.ws14e{word-spacing:15.587870px;}
.ws14c{word-spacing:15.609470px;}
.ws158{word-spacing:15.631070px;}
.wsd5{word-spacing:15.645470px;}
.ws9c{word-spacing:15.652670px;}
.ws140{word-spacing:15.731869px;}
.wse3{word-spacing:15.839868px;}
.ws156{word-spacing:15.854268px;}
.ws141{word-spacing:15.883068px;}
.ws148{word-spacing:16.055866px;}
.ws1{word-spacing:26.124131px;}
.ws4{word-spacing:26.136131px;}
.ws3{word-spacing:26.280131px;}
.ws2{word-spacing:26.304132px;}
.ws17d{word-spacing:59.816026px;}
.ws15b{word-spacing:59.821652px;}
.ws167{word-spacing:59.860052px;}
._e{margin-left:-13.464135px;}
._8{margin-left:-10.550268px;}
._10{margin-left:-9.499099px;}
._9{margin-left:-4.060749px;}
._a{margin-left:-2.428770px;}
._2{margin-left:-1.281584px;}
._3{width:1.459200px;}
._d{width:2.990363px;}
._b{width:9.374283px;}
._1{width:11.337458px;}
._5{width:12.887700px;}
._4{width:13.925100px;}
._c{width:16.775860px;}
._11{width:20.572543px;}
._0{width:27.396137px;}
._6{width:46.545018px;}
._f{width:1713.924176px;}
._7{width:1740.458244px;}
.fc1{color:rgb(66,93,177);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:31.995000px;}
.fs3{font-size:35.995200px;}
.fs9{font-size:39.996000px;}
.fs8{font-size:41.999400px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs7{font-size:60.000600px;}
.fs6{font-size:71.999400px;}
.fs4{font-size:95.999400px;}
.fs1{font-size:120.000600px;}
.y0{bottom:0.000000px;}
.y28{bottom:54.000000px;}
.y127{bottom:119.647537px;}
.yd6{bottom:119.648652px;}
.y11c{bottom:124.491780px;}
.yb9{bottom:124.492170px;}
.y19f{bottom:124.492965px;}
.y1ca{bottom:124.494495px;}
.y201{bottom:124.495530px;}
.y245{bottom:124.495837px;}
.yea{bottom:124.496955px;}
.y46{bottom:124.504170px;}
.y18f{bottom:125.087520px;}
.y12f{bottom:126.961546px;}
.yc5{bottom:131.215379px;}
.yf4{bottom:133.340362px;}
.y15b{bottom:138.688290px;}
.y244{bottom:138.782859px;}
.y45{bottom:141.001564px;}
.y12e{bottom:141.163368px;}
.y126{bottom:142.863647px;}
.yd5{bottom:142.864762px;}
.y11b{bottom:143.966475px;}
.yb8{bottom:143.966865px;}
.y19e{bottom:143.967660px;}
.y1c9{bottom:143.969190px;}
.y200{bottom:143.970225px;}
.ye9{bottom:143.971650px;}
.y18e{bottom:144.562215px;}
.yc2{bottom:145.501978px;}
.yc4{bottom:145.502400px;}
.y27c{bottom:145.841615px;}
.yf3{bottom:147.542185px;}
.yc3{bottom:150.859800px;}
.y243{bottom:152.984681px;}
.y12d{bottom:155.450390px;}
.y77{bottom:156.127515px;}
.y125{bottom:157.150668px;}
.yd4{bottom:157.151784px;}
.y44{bottom:157.498958px;}
.y15a{bottom:158.162985px;}
.ybf{bottom:159.702141px;}
.yc1{bottom:159.703800px;}
.y27b{bottom:160.043438px;}
.yf2{bottom:161.829206px;}
.y11a{bottom:163.525170px;}
.yb7{bottom:163.525561px;}
.y19d{bottom:163.526355px;}
.y1c8{bottom:163.527885px;}
.y1ff{bottom:163.528920px;}
.y18d{bottom:164.120911px;}
.yc0{bottom:165.061350px;}
.y2ac{bottom:169.057922px;}
.ye8{bottom:169.483500px;}
.y12c{bottom:169.652212px;}
.y124{bottom:171.352491px;}
.yd3{bottom:171.353606px;}
.y242{bottom:172.458038px;}
.ybe{bottom:173.989162px;}
.y43{bottom:173.996351px;}
.y27a{bottom:174.330459px;}
.y76{bottom:175.602210px;}
.yf1{bottom:176.031029px;}
.y159{bottom:177.637680px;}
.y27{bottom:177.992400px;}
.y119{bottom:182.999865px;}
.yb6{bottom:183.000255px;}
.y19c{bottom:183.001050px;}
.y1c7{bottom:183.002580px;}
.y1fe{bottom:183.003615px;}
.y2ab{bottom:183.344943px;}
.y18c{bottom:183.595605px;}
.y12b{bottom:183.939234px;}
.y123{bottom:185.639512px;}
.yd2{bottom:185.640628px;}
.y241{bottom:186.745059px;}
.ybd{bottom:188.276184px;}
.yf0{bottom:190.318050px;}
.y42{bottom:190.493745px;}
.y279{bottom:193.803816px;}
.y75{bottom:195.076904px;}
.y158{bottom:197.196375px;}
.y2aa{bottom:197.546766px;}
.y12a{bottom:198.141056px;}
.y26{bottom:198.996900px;}
.y122{bottom:199.841335px;}
.yd1{bottom:199.842450px;}
.y240{bottom:201.032081px;}
.y118{bottom:202.474560px;}
.yb5{bottom:202.474950px;}
.y19b{bottom:202.475745px;}
.y1c6{bottom:202.477275px;}
.ybc{bottom:202.478006px;}
.y1fd{bottom:202.478310px;}
.y18b{bottom:203.070300px;}
.y41{bottom:206.991139px;}
.y278{bottom:208.090837px;}
.y129{bottom:212.428078px;}
.ye7{bottom:212.677680px;}
.y121{bottom:214.128356px;}
.y74{bottom:214.635600px;}
.y157{bottom:216.671070px;}
.ybb{bottom:216.765028px;}
.y2a9{bottom:217.105321px;}
.y25{bottom:220.001400px;}
.y23f{bottom:220.506637px;}
.y117{bottom:222.033255px;}
.yb4{bottom:222.033646px;}
.y19a{bottom:222.034440px;}
.y1c5{bottom:222.035970px;}
.y1fc{bottom:222.037005px;}
.y277{bottom:222.292660px;}
.y18a{bottom:222.628996px;}
.y40{bottom:223.488533px;}
.y128{bottom:226.629900px;}
.y120{bottom:228.415378px;}
.yba{bottom:230.966850px;}
.y2a8{bottom:231.307144px;}
.ye6{bottom:232.152375px;}
.y73{bottom:234.110295px;}
.y23e{bottom:234.708460px;}
.y156{bottom:236.145765px;}
.y24{bottom:240.920400px;}
.y116{bottom:241.507950px;}
.yb3{bottom:241.508340px;}
.y199{bottom:241.509135px;}
.y1c4{bottom:241.510665px;}
.y1fb{bottom:241.511700px;}
.y276{bottom:241.851215px;}
.y189{bottom:242.103690px;}
.y11f{bottom:242.617200px;}
.y3f{bottom:249.000214px;}
.y2a7{bottom:250.865699px;}
.ye5{bottom:251.711070px;}
.y72{bottom:253.584990px;}
.y23d{bottom:254.267015px;}
.y155{bottom:255.704461px;}
.y275{bottom:256.053038px;}
.y115{bottom:260.982645px;}
.yb2{bottom:260.983035px;}
.y198{bottom:260.983830px;}
.y1c3{bottom:260.985360px;}
.y188{bottom:261.578385px;}
.y23{bottom:261.924900px;}
.y2a6{bottom:265.067522px;}
.y3e{bottom:265.497608px;}
.y1fa{bottom:267.023550px;}
.y23c{bottom:268.468838px;}
.ye4{bottom:271.185765px;}
.y71{bottom:273.143685px;}
.y154{bottom:275.179155px;}
.y274{bottom:275.611593px;}
.y2a5{bottom:279.354543px;}
.y114{bottom:280.457340px;}
.yb1{bottom:280.457730px;}
.y197{bottom:280.458525px;}
.y1c2{bottom:280.460054px;}
.y187{bottom:281.137081px;}
.y3d{bottom:281.995001px;}
.y22{bottom:282.929400px;}
.y23b{bottom:288.027393px;}
.y273{bottom:289.813416px;}
.ye3{bottom:290.660460px;}
.y70{bottom:292.618380px;}
.y153{bottom:294.653850px;}
.y3c{bottom:298.492395px;}
.y2a4{bottom:298.827900px;}
.y113{bottom:300.016035px;}
.yb0{bottom:300.016425px;}
.y196{bottom:300.017220px;}
.y1c1{bottom:300.018750px;}
.y186{bottom:300.611775px;}
.y23a{bottom:302.229216px;}
.y21{bottom:303.933900px;}
.y272{bottom:304.100437px;}
.y1f9{bottom:309.881040px;}
.ye2{bottom:310.219155px;}
.y6f{bottom:312.093075px;}
.y2a3{bottom:313.114921px;}
.y152{bottom:314.128545px;}
.y112{bottom:319.490730px;}
.yaf{bottom:319.491120px;}
.y195{bottom:319.491915px;}
.y185{bottom:320.086470px;}
.y239{bottom:321.787771px;}
.y271{bottom:323.573794px;}
.y3b{bottom:324.004076px;}
.y20{bottom:324.938400px;}
.y1c0{bottom:325.530600px;}
.y2a2{bottom:327.316744px;}
.y1f8{bottom:329.439735px;}
.ye1{bottom:329.693850px;}
.y6e{bottom:331.651770px;}
.y151{bottom:333.687240px;}
.y238{bottom:335.989594px;}
.y270{bottom:337.860815px;}
.y111{bottom:338.965425px;}
.yae{bottom:338.965815px;}
.y194{bottom:338.966610px;}
.y184{bottom:339.561165px;}
.y3a{bottom:340.501470px;}
.y1f{bottom:345.942900px;}
.y2a1{bottom:346.790100px;}
.y1f7{bottom:348.914430px;}
.ye0{bottom:349.168545px;}
.y237{bottom:350.276615px;}
.y6d{bottom:351.126465px;}
.y26f{bottom:352.062638px;}
.y150{bottom:353.161935px;}
.y39{bottom:356.998864px;}
.y110{bottom:358.524120px;}
.yad{bottom:358.524511px;}
.y193{bottom:358.525305px;}
.y183{bottom:359.119861px;}
.y2a0{bottom:361.077122px;}
.y1e{bottom:366.947400px;}
.y1f6{bottom:368.389125px;}
.y1bf{bottom:368.552355px;}
.ydf{bottom:368.643240px;}
.y236{bottom:369.749972px;}
.y6c{bottom:370.601160px;}
.y26e{bottom:371.535994px;}
.y14f{bottom:372.636630px;}
.y38{bottom:373.496258px;}
.y10f{bottom:377.998815px;}
.yac{bottom:377.999205px;}
.y192{bottom:378.000000px;}
.y182{bottom:378.594555px;}
.y29f{bottom:380.550478px;}
.y235{bottom:384.036993px;}
.y26d{bottom:385.823016px;}
.y1f5{bottom:387.863819px;}
.y1d{bottom:387.951900px;}
.y1be{bottom:388.027050px;}
.yde{bottom:388.201935px;}
.y37{bottom:389.993651px;}
.y6b{bottom:390.159855px;}
.y14e{bottom:392.195325px;}
.y29e{bottom:394.837500px;}
.y10e{bottom:397.473510px;}
.yab{bottom:397.473900px;}
.y181{bottom:398.057219px;}
.y234{bottom:403.510350px;}
.y191{bottom:403.510725px;}
.y21b{bottom:403.511700px;}
.y26c{bottom:405.297572px;}
.y36{bottom:406.491045px;}
.y1f4{bottom:407.422515px;}
.y1bd{bottom:407.501745px;}
.ydd{bottom:407.676630px;}
.y1c{bottom:408.956400px;}
.y68{bottom:409.633755px;}
.y6a{bottom:409.634550px;}
.y14d{bottom:411.670020px;}
.y29d{bottom:414.310856px;}
.y69{bottom:416.267550px;}
.y10d{bottom:417.032205px;}
.y180{bottom:417.615915px;}
.y233{bottom:417.712172px;}
.y26b{bottom:419.584594px;}
.yaa{bottom:422.986375px;}
.y1f3{bottom:426.897210px;}
.y1bc{bottom:427.060440px;}
.ydc{bottom:427.151325px;}
.y29c{bottom:428.597878px;}
.y67{bottom:429.097755px;}
.y1b{bottom:429.960900px;}
.y190{bottom:430.469100px;}
.y14c{bottom:431.144715px;}
.y35{bottom:432.002726px;}
.y10c{bottom:436.506900px;}
.y17f{bottom:437.090610px;}
.y232{bottom:437.270728px;}
.y26a{bottom:439.057950px;}
.y29b{bottom:442.799700px;}
.y21a{bottom:443.223030px;}
.ya9{bottom:443.990400px;}
.y1f2{bottom:446.371904px;}
.y1bb{bottom:446.535135px;}
.ydb{bottom:446.710020px;}
.y66{bottom:448.572449px;}
.y14b{bottom:450.703411px;}
.y1a{bottom:450.965400px;}
.y231{bottom:451.472550px;}
.y269{bottom:453.344972px;}
.y17e{bottom:456.565305px;}
.y34{bottom:457.514407px;}
.y10b{bottom:462.018750px;}
.y29a{bottom:462.358256px;}
.y219{bottom:462.697725px;}
.y1f1{bottom:465.930600px;}
.y1ba{bottom:466.009830px;}
.yda{bottom:466.184715px;}
.y268{bottom:467.546794px;}
.y65{bottom:468.131145px;}
.y14a{bottom:470.178105px;}
.y230{bottom:471.031106px;}
.y19{bottom:471.969900px;}
.y17d{bottom:476.124000px;}
.y299{bottom:476.560078px;}
.y218{bottom:482.172419px;}
.y33{bottom:483.026089px;}
.y22f{bottom:485.232928px;}
.y1b9{bottom:485.568525px;}
.yd9{bottom:485.659410px;}
.y267{bottom:487.105350px;}
.y64{bottom:487.605840px;}
.y149{bottom:489.652800px;}
.y298{bottom:490.847100px;}
.y1f0{bottom:491.442450px;}
.y18{bottom:492.974400px;}
.y17c{bottom:495.598695px;}
.y22e{bottom:499.519950px;}
.ya8{bottom:499.603095px;}
.y266{bottom:501.307172px;}
.y217{bottom:501.731115px;}
.y1b8{bottom:505.043220px;}
.yd8{bottom:505.218105px;}
.y63{bottom:507.080534px;}
.y32{bottom:508.537770px;}
.y148{bottom:509.211496px;}
.y297{bottom:510.320456px;}
.y17{bottom:513.978900px;}
.y17b{bottom:515.073390px;}
.y2bb{bottom:515.589694px;}
.y265{bottom:515.594193px;}
.y22d{bottom:518.994506px;}
.ya7{bottom:519.077790px;}
.y10a{bottom:520.942905px;}
.y216{bottom:521.205810px;}
.y1b7{bottom:524.517915px;}
.y296{bottom:524.607478px;}
.yd7{bottom:524.692800px;}
.y31{bottom:525.035163px;}
.y62{bottom:526.639230px;}
.y147{bottom:528.686190px;}
.y2ba{bottom:529.791516px;}
.y22c{bottom:533.281528px;}
.y1ed{bottom:534.301860px;}
.y1ef{bottom:534.302250px;}
.y17a{bottom:534.632085px;}
.y16{bottom:534.983400px;}
.y264{bottom:535.067550px;}
.ya6{bottom:538.636485px;}
.y295{bottom:538.807003px;}
.y109{bottom:540.417600px;}
.y215{bottom:540.680504px;}
.y1ee{bottom:540.935250px;}
.y1b6{bottom:544.076611px;}
.y2b9{bottom:544.078538px;}
.y61{bottom:546.113925px;}
.y22b{bottom:547.483350px;}
.y146{bottom:548.160885px;}
.y263{bottom:549.353672px;}
.y30{bottom:550.546845px;}
.y1ec{bottom:553.776554px;}
.y179{bottom:554.106780px;}
.y15{bottom:555.987900px;}
.yef{bottom:556.667176px;}
.ya5{bottom:558.111180px;}
.y294{bottom:558.365559px;}
.y108{bottom:559.892295px;}
.y214{bottom:560.239200px;}
.y1b5{bottom:563.551305px;}
.y2b8{bottom:563.553094px;}
.y262{bottom:563.555494px;}
.y60{bottom:565.588619px;}
.y2f{bottom:567.044238px;}
.y145{bottom:567.635580px;}
.y22a{bottom:567.722700px;}
.y293{bottom:572.567381px;}
.y1e9{bottom:573.334605px;}
.y1eb{bottom:573.335250px;}
.y178{bottom:573.581475px;}
.y14{bottom:576.992400px;}
.ya4{bottom:577.585875px;}
.y2b7{bottom:577.840116px;}
.y107{bottom:579.450990px;}
.yee{bottom:579.967285px;}
.y1ea{bottom:579.968250px;}
.y1b4{bottom:583.026000px;}
.y261{bottom:583.114050px;}
.y2e{bottom:583.541632px;}
.y5f{bottom:585.147315px;}
.y213{bottom:585.666000px;}
.y292{bottom:586.854403px;}
.y144{bottom:587.194275px;}
.y2b6{bottom:592.041938px;}
.y1e6{bottom:592.808910px;}
.y1e8{bottom:592.809300px;}
.y177{bottom:593.056169px;}
.yed{bottom:594.169107px;}
.ya3{bottom:597.144570px;}
.y260{bottom:597.315872px;}
.y13{bottom:597.996900px;}
.y106{bottom:598.925685px;}
.y1e7{bottom:599.442300px;}
.y2d{bottom:600.039026px;}
.y1b3{bottom:602.584696px;}
.y5e{bottom:604.622010px;}
.y291{bottom:606.327759px;}
.y143{bottom:606.668970px;}
.y229{bottom:607.349611px;}
.yec{bottom:608.456129px;}
.y2b5{bottom:611.600494px;}
.y25f{bottom:611.602893px;}
.y1e5{bottom:612.283604px;}
.y176{bottom:612.614865px;}
.y2c{bottom:616.536420px;}
.ya2{bottom:616.619265px;}
.y105{bottom:618.400380px;}
.y12{bottom:619.001400px;}
.y290{bottom:620.614781px;}
.y1b2{bottom:622.059390px;}
.yeb{bottom:622.743150px;}
.y5d{bottom:624.096704px;}
.y212{bottom:625.374225px;}
.y2b4{bottom:625.802316px;}
.y142{bottom:626.143665px;}
.y228{bottom:626.824305px;}
.y25e{bottom:631.076250px;}
.y1e2{bottom:631.841011px;}
.y1e4{bottom:631.842300px;}
.y175{bottom:632.089560px;}
.y2b{bottom:633.033813px;}
.y28f{bottom:634.816603px;}
.ya1{bottom:636.093960px;}
.y104{bottom:637.959075px;}
.y1e3{bottom:638.475450px;}
.y2b3{bottom:640.089337px;}
.y1b1{bottom:641.534085px;}
.y5c{bottom:643.655400px;}
.y211{bottom:644.932920px;}
.y25d{bottom:645.363271px;}
.y141{bottom:645.702361px;}
.y227{bottom:646.299000px;}
.y2a{bottom:649.531207px;}
.y1e1{bottom:651.315705px;}
.y174{bottom:651.564254px;}
.y11{bottom:651.996750px;}
.y28e{bottom:654.291160px;}
.ya0{bottom:655.652655px;}
.y103{bottom:657.433770px;}
.y2b2{bottom:659.563894px;}
.y25c{bottom:659.565094px;}
.y1b0{bottom:661.008780px;}
.y5b{bottom:663.130095px;}
.y210{bottom:664.407615px;}
.y140{bottom:665.177055px;}
.y28d{bottom:668.578181px;}
.y1de{bottom:670.789755px;}
.y1e0{bottom:670.790400px;}
.y173{bottom:671.122950px;}
.y226{bottom:671.810850px;}
.y2b1{bottom:673.850915px;}
.y29{bottom:674.106900px;}
.y9d{bottom:675.126705px;}
.y9f{bottom:675.127350px;}
.y102{bottom:676.908465px;}
.y1df{bottom:677.423400px;}
.y25b{bottom:679.038451px;}
.y1af{bottom:680.567475px;}
.y9e{bottom:681.760500px;}
.y5a{bottom:682.604790px;}
.y20f{bottom:683.882310px;}
.y13d{bottom:684.647760px;}
.y13f{bottom:684.651750px;}
.y28c{bottom:688.051538px;}
.y2b0{bottom:688.052738px;}
.y1dd{bottom:690.264450px;}
.y172{bottom:690.597645px;}
.y13e{bottom:691.369800px;}
.y25a{bottom:693.325472px;}
.y9c{bottom:694.601400px;}
.y9a{bottom:694.601804px;}
.y101{bottom:696.383160px;}
.y1ae{bottom:700.042170px;}
.y9b{bottom:701.319450px;}
.y59{bottom:702.079484px;}
.y28b{bottom:702.338559px;}
.y20e{bottom:703.357004px;}
.y13c{bottom:704.206455px;}
.y2af{bottom:707.611293px;}
.y171{bottom:710.072340px;}
.y225{bottom:711.354150px;}
.y259{bottom:712.798829px;}
.y99{bottom:714.160500px;}
.y10{bottom:714.926026px;}
.y1dc{bottom:715.776150px;}
.y100{bottom:715.941855px;}
.y1ad{bottom:719.516865px;}
.y58{bottom:721.638180px;}
.y28a{bottom:721.813116px;}
.y20d{bottom:722.915700px;}
.y13b{bottom:723.681150px;}
.y258{bottom:727.085850px;}
.y170{bottom:729.631035px;}
.yf{bottom:729.977438px;}
.y97{bottom:733.633755px;}
.yff{bottom:735.416550px;}
.y289{bottom:736.100137px;}
.y224{bottom:736.866000px;}
.y1ac{bottom:739.075561px;}
.y98{bottom:740.267550px;}
.y57{bottom:741.112875px;}
.y20c{bottom:742.390395px;}
.y13a{bottom:743.155845px;}
.y257{bottom:746.559207px;}
.y16f{bottom:749.105730px;}
.y94{bottom:753.107805px;}
.y96{bottom:753.108450px;}
.yfe{bottom:754.891245px;}
.y288{bottom:755.574694px;}
.y1ab{bottom:758.550255px;}
.y1db{bottom:758.716996px;}
.y95{bottom:759.826500px;}
.ye{bottom:759.996262px;}
.y56{bottom:760.587569px;}
.y256{bottom:760.846228px;}
.y20b{bottom:761.865090px;}
.y139{bottom:762.714540px;}
.y16e{bottom:768.580425px;}
.y287{bottom:769.861715px;}
.y93{bottom:772.582500px;}
.y91{bottom:772.582904px;}
.yfd{bottom:774.449940px;}
.yd{bottom:774.963675px;}
.y255{bottom:775.048050px;}
.y1aa{bottom:778.024950px;}
.y1da{bottom:778.191690px;}
.y92{bottom:779.300550px;}
.y55{bottom:780.146265px;}
.y20a{bottom:781.423785px;}
.y138{bottom:782.189235px;}
.y286{bottom:784.063538px;}
.y223{bottom:785.423025px;}
.y16d{bottom:788.055119px;}
.yc{bottom:789.931088px;}
.y8e{bottom:792.137205px;}
.y90{bottom:792.141600px;}
.yfc{bottom:793.924635px;}
.y254{bottom:794.606606px;}
.y1d9{bottom:797.666385px;}
.y8f{bottom:798.774600px;}
.y54{bottom:799.620960px;}
.y209{bottom:800.898480px;}
.y137{bottom:801.663930px;}
.y1a9{bottom:803.536800px;}
.y285{bottom:803.622093px;}
.y222{bottom:804.981720px;}
.yb{bottom:804.982500px;}
.y16c{bottom:807.613815px;}
.y253{bottom:808.808428px;}
.y8d{bottom:811.611900px;}
.yfb{bottom:813.399330px;}
.y1d8{bottom:817.225081px;}
.y284{bottom:817.823916px;}
.y53{bottom:819.095654px;}
.ycd{bottom:819.523605px;}
.y208{bottom:820.373175px;}
.y136{bottom:821.138625px;}
.y252{bottom:823.095450px;}
.y16b{bottom:827.088510px;}
.y8c{bottom:831.086595px;}
.ya{bottom:831.939900px;}
.y8{bottom:831.940650px;}
.y283{bottom:832.110937px;}
.yfa{bottom:832.958025px;}
.y221{bottom:833.470005px;}
.y1d7{bottom:836.699775px;}
.y2ae{bottom:837.297272px;}
.y9{bottom:837.977850px;}
.y52{bottom:838.654350px;}
.ycc{bottom:838.998300px;}
.y207{bottom:839.931870px;}
.y135{bottom:840.697320px;}
.y251{bottom:842.568806px;}
.y16a{bottom:846.563204px;}
.y1a8{bottom:846.565034px;}
.y6{bottom:848.437650px;}
.y8b{bottom:850.645290px;}
.y282{bottom:851.584294px;}
.yf9{bottom:852.432720px;}
.y220{bottom:852.944700px;}
.y7{bottom:854.475450px;}
.y1d6{bottom:856.174470px;}
.y250{bottom:856.855828px;}
.y51{bottom:858.129045px;}
.y206{bottom:859.406565px;}
.y134{bottom:860.172015px;}
.ycb{bottom:864.510000px;}
.y281{bottom:865.871315px;}
.y169{bottom:866.121900px;}
.y1a7{bottom:866.123730px;}
.y8a{bottom:870.119985px;}
.y24f{bottom:871.057650px;}
.yf8{bottom:871.907415px;}
.y1d5{bottom:875.733166px;}
.y50{bottom:877.603740px;}
.y21f{bottom:878.456400px;}
.y205{bottom:878.881260px;}
.y133{bottom:879.646710px;}
.y280{bottom:885.344672px;}
.y168{bottom:885.596595px;}
.y1a6{bottom:885.598425px;}
.y5{bottom:885.937387px;}
.y89{bottom:889.594680px;}
.y24e{bottom:890.616206px;}
.yf7{bottom:891.382110px;}
.y1d4{bottom:895.207861px;}
.y4f{bottom:897.078434px;}
.y204{bottom:898.439955px;}
.y132{bottom:899.205405px;}
.y27f{bottom:899.546494px;}
.y24d{bottom:904.818028px;}
.y167{bottom:905.071290px;}
.y1a5{bottom:905.073119px;}
.y88{bottom:909.153375px;}
.yca{bottom:909.409020px;}
.yf6{bottom:910.940805px;}
.y1d3{bottom:914.682555px;}
.y4e{bottom:916.637130px;}
.y203{bottom:917.914650px;}
.y21e{bottom:918.000104px;}
.y131{bottom:918.680100px;}
.y24c{bottom:919.105050px;}
.y81{bottom:922.078749px;}
.y4{bottom:923.440575px;}
.y166{bottom:924.629985px;}
.y1a4{bottom:924.631815px;}
.y87{bottom:928.628070px;}
.yc9{bottom:928.883715px;}
.yf5{bottom:930.415500px;}
.y1d1{bottom:931.691100px;}
.y27e{bottom:933.306872px;}
.y1d2{bottom:934.157250px;}
.y1d0{bottom:934.157654px;}
.y4d{bottom:936.111825px;}
.y21d{bottom:937.558800px;}
.y80{bottom:938.576143px;}
.y24b{bottom:938.578406px;}
.y202{bottom:943.426500px;}
.y165{bottom:944.104680px;}
.y1a3{bottom:944.106510px;}
.y130{bottom:944.191800px;}
.y2ad{bottom:947.593894px;}
.y86{bottom:948.102765px;}
.yc8{bottom:948.358410px;}
.y1ce{bottom:951.165000px;}
.y24a{bottom:952.865428px;}
.y1cd{bottom:953.715555px;}
.y1cf{bottom:953.716350px;}
.y4c{bottom:955.586519px;}
.y3{bottom:960.943762px;}
.y21c{bottom:963.070650px;}
.y164{bottom:963.579375px;}
.y1a2{bottom:963.581204px;}
.y7f{bottom:964.087824px;}
.y249{bottom:967.067250px;}
.y85{bottom:967.577460px;}
.yc7{bottom:967.917105px;}
.y1cc{bottom:973.190250px;}
.y4b{bottom:975.145215px;}
.y7e{bottom:980.585218px;}
.y27d{bottom:981.354272px;}
.y15e{bottom:982.799053px;}
.y163{bottom:983.138070px;}
.y1a1{bottom:983.139900px;}
.y248{bottom:986.540607px;}
.y84{bottom:987.136155px;}
.yc6{bottom:987.391800px;}
.y4a{bottom:994.619910px;}
.y7d{bottom:997.082611px;}
.y2{bottom:998.446950px;}
.y1cb{bottom:998.702100px;}
.y247{bottom:1000.827628px;}
.y162{bottom:1002.612765px;}
.y15d{bottom:1006.099162px;}
.y83{bottom:1006.610850px;}
.y1a0{bottom:1009.246950px;}
.y11e{bottom:1011.287897px;}
.y7c{bottom:1013.580005px;}
.y49{bottom:1014.094604px;}
.y246{bottom:1015.114650px;}
.y15c{bottom:1020.300985px;}
.y161{bottom:1022.087460px;}
.yd0{bottom:1025.573719px;}
.y7b{bottom:1030.077399px;}
.y82{bottom:1032.121575px;}
.y48{bottom:1033.653300px;}
.y11d{bottom:1034.588006px;}
.y1{bottom:1035.949350px;}
.y160{bottom:1041.562154px;}
.y7a{bottom:1046.574793px;}
.ycf{bottom:1048.789829px;}
.y47{bottom:1059.079950px;}
.y15f{bottom:1061.120850px;}
.y79{bottom:1063.072186px;}
.yce{bottom:1063.076850px;}
.y78{bottom:1118.692500px;}
.h11{height:24.796125px;}
.h7{height:25.844554px;}
.h5{height:26.996400px;}
.hf{height:28.477152px;}
.ha{height:34.943563px;}
.h1{height:37.199535px;}
.h14{height:37.208721px;}
.h6{height:37.908000px;}
.h4{height:40.500000px;}
.h13{height:42.180422px;}
.hc{height:42.720427px;}
.h12{height:42.768549px;}
.hd{height:42.960430px;}
.h9{height:44.175000px;}
.he{height:45.248847px;}
.hb{height:53.999550px;}
.h10{height:55.799535px;}
.h8{height:69.215567px;}
.h2{height:86.520433px;}
.h3{height:87.360437px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:54.000000px;}
.x12{left:71.433000px;}
.x1{left:300.018750px;}
.x3d{left:306.651900px;}
.x39{left:316.431450px;}
.x13{left:317.960429px;}
.x3a{left:331.568400px;}
.x2d{left:353.508600px;}
.x2e{left:358.866000px;}
.x20{left:363.373050px;}
.x8{left:365.329050px;}
.x9{left:370.941600px;}
.x21{left:378.510150px;}
.x37{left:385.908450px;}
.x2f{left:387.184050px;}
.x24{left:388.884900px;}
.x25{left:401.725800px;}
.x2{left:403.256550px;}
.x36{left:414.651900px;}
.x3{left:417.203100px;}
.x22{left:429.193500px;}
.x17{left:431.574750px;}
.x26{left:435.826650px;}
.x23{left:444.330600px;}
.x18{left:446.711700px;}
.x27{left:448.667550px;}
.xa{left:452.579400px;}
.x1d{left:453.599850px;}
.xb{left:458.191950px;}
.x19{left:463.634550px;}
.x1e{left:468.736800px;}
.x1a{left:478.771500px;}
.x30{left:487.190400px;}
.x28{left:532.006050px;}
.x4{left:540.510150px;}
.x29{left:547.143150px;}
.x5{left:554.456550px;}
.x31{left:570.273900px;}
.x32{left:578.947800px;}
.x14{left:581.413950px;}
.x15{left:588.047100px;}
.xc{left:593.404500px;}
.x38{left:600.547800px;}
.xd{left:607.351050px;}
.xe{left:615.769950px;}
.xf{left:621.382500px;}
.x33{left:633.373050px;}
.x3b{left:637.795050px;}
.x16{left:642.727350px;}
.x3c{left:652.932150px;}
.x6{left:693.070650px;}
.x7{left:698.598300px;}
.x10{left:706.677000px;}
.x2b{left:739.927350px;}
.x2c{left:748.686450px;}
.x1b{left:779.215650px;}
.x1c{left:794.352600px;}
.x34{left:815.187150px;}
.x1f{left:817.738350px;}
.x35{left:830.409150px;}
.x2a{left:836.021700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.389495pt;}
.ls48{letter-spacing:-2.385037pt;}
.ls57{letter-spacing:-2.086374pt;}
.ls53{letter-spacing:-2.082107pt;}
.ls66{letter-spacing:-0.012800pt;}
.ls9{letter-spacing:0.000000pt;}
.ls47{letter-spacing:0.004267pt;}
.lsd{letter-spacing:0.010667pt;}
.ls6a{letter-spacing:0.029866pt;}
.ls61{letter-spacing:0.032000pt;}
.ls46{letter-spacing:0.034133pt;}
.lsa{letter-spacing:0.038395pt;}
.ls6{letter-spacing:0.045600pt;}
.ls50{letter-spacing:0.053334pt;}
.ls69{letter-spacing:0.072532pt;}
.ls4c{letter-spacing:0.085332pt;}
.ls5d{letter-spacing:0.096001pt;}
.ls42{letter-spacing:0.102399pt;}
.ls8{letter-spacing:0.110932pt;}
.ls5a{letter-spacing:0.122668pt;}
.ls0{letter-spacing:0.128001pt;}
.ls40{letter-spacing:0.133335pt;}
.ls4f{letter-spacing:0.138668pt;}
.lsb{letter-spacing:0.149335pt;}
.lsc{letter-spacing:0.154668pt;}
.lse{letter-spacing:0.165335pt;}
.ls54{letter-spacing:0.200531pt;}
.lsf{letter-spacing:0.224002pt;}
.ls43{letter-spacing:0.273063pt;}
.ls4b{letter-spacing:0.281598pt;}
.ls3e{letter-spacing:0.314670pt;}
.ls4a{letter-spacing:0.332796pt;}
.ls58{letter-spacing:0.337062pt;}
.ls3{letter-spacing:0.349600pt;}
.ls51{letter-spacing:0.357337pt;}
.ls62{letter-spacing:0.400004pt;}
.ls1a{letter-spacing:0.453338pt;}
.ls37{letter-spacing:0.458671pt;}
.ls18{letter-spacing:0.469338pt;}
.ls63{letter-spacing:0.501338pt;}
.ls60{letter-spacing:0.506672pt;}
.ls14{letter-spacing:0.512005pt;}
.ls17{letter-spacing:0.517339pt;}
.ls11{letter-spacing:0.528005pt;}
.ls13{letter-spacing:0.533339pt;}
.ls16{letter-spacing:0.538672pt;}
.ls10{letter-spacing:0.544005pt;}
.ls1c{letter-spacing:0.549339pt;}
.ls5f{letter-spacing:0.554672pt;}
.ls36{letter-spacing:0.560006pt;}
.ls12{letter-spacing:0.570672pt;}
.ls3a{letter-spacing:0.586673pt;}
.ls19{letter-spacing:0.592006pt;}
.ls39{letter-spacing:0.613339pt;}
.ls15{letter-spacing:0.618673pt;}
.ls32{letter-spacing:0.624006pt;}
.ls34{letter-spacing:0.629340pt;}
.ls38{letter-spacing:0.634673pt;}
.ls5b{letter-spacing:0.635725pt;}
.ls2f{letter-spacing:0.640006pt;}
.ls20{letter-spacing:0.645340pt;}
.ls2a{letter-spacing:0.666673pt;}
.ls1f{letter-spacing:0.672007pt;}
.ls2d{letter-spacing:0.677340pt;}
.ls25{letter-spacing:0.682673pt;}
.ls29{letter-spacing:0.688007pt;}
.ls1e{letter-spacing:0.693340pt;}
.ls21{letter-spacing:0.698674pt;}
.ls28{letter-spacing:0.704007pt;}
.ls33{letter-spacing:0.709340pt;}
.ls27{letter-spacing:0.714674pt;}
.ls23{letter-spacing:0.720007pt;}
.ls26{letter-spacing:0.730674pt;}
.ls35{letter-spacing:0.736007pt;}
.ls2c{letter-spacing:0.741341pt;}
.ls1d{letter-spacing:0.746674pt;}
.ls3d{letter-spacing:0.752008pt;}
.ls2b{letter-spacing:0.757341pt;}
.ls1b{letter-spacing:0.768008pt;}
.ls3c{letter-spacing:0.773341pt;}
.ls3b{letter-spacing:0.778674pt;}
.ls22{letter-spacing:0.832008pt;}
.ls24{letter-spacing:2.921744pt;}
.ls2{letter-spacing:9.104953pt;}
.ls41{letter-spacing:9.241484pt;}
.ls55{letter-spacing:9.305484pt;}
.ls49{letter-spacing:9.343883pt;}
.ls7{letter-spacing:9.378016pt;}
.ls56{letter-spacing:9.476148pt;}
.ls45{letter-spacing:9.544414pt;}
.ls44{letter-spacing:9.646813pt;}
.ls5{letter-spacing:11.111200pt;}
.ls4{letter-spacing:11.415200pt;}
.ls65{letter-spacing:11.642783pt;}
.ls4d{letter-spacing:11.653450pt;}
.ls59{letter-spacing:11.717451pt;}
.ls68{letter-spacing:11.728117pt;}
.ls64{letter-spacing:11.760118pt;}
.ls67{letter-spacing:11.845452pt;}
.ls5e{letter-spacing:11.893452pt;}
.ls3f{letter-spacing:11.914786pt;}
.ls5c{letter-spacing:11.930786pt;}
.ls52{letter-spacing:11.941453pt;}
.ls4e{letter-spacing:11.957453pt;}
.ls2e{letter-spacing:12.261456pt;}
.ls30{letter-spacing:12.560126pt;}
.ls31{letter-spacing:12.586793pt;}
.ls1{letter-spacing:18.777365pt;}
.wsf0{word-spacing:-11.994787pt;}
.ws157{word-spacing:-11.781451pt;}
.ws2a{word-spacing:-9.420682pt;}
.wscb{word-spacing:-9.386549pt;}
.ws8d{word-spacing:-0.832008pt;}
.ws76{word-spacing:-0.810675pt;}
.ws85{word-spacing:-0.730674pt;}
.ws8c{word-spacing:-0.693340pt;}
.ws128{word-spacing:-0.678392pt;}
.ws8b{word-spacing:-0.672007pt;}
.ws136{word-spacing:-0.570672pt;}
.ws64{word-spacing:-0.512005pt;}
.ws114{word-spacing:-0.379729pt;}
.wscc{word-spacing:-0.375462pt;}
.ws159{word-spacing:-0.063999pt;}
.ws4d{word-spacing:-0.053334pt;}
.ws1f{word-spacing:-0.050667pt;}
.wsc{word-spacing:-0.042666pt;}
.wsa{word-spacing:-0.031996pt;}
.ws47{word-spacing:0.000000pt;}
.ws103{word-spacing:2.039441pt;}
.ws10e{word-spacing:2.043708pt;}
.wsc9{word-spacing:2.342371pt;}
.ws33{word-spacing:8.546027pt;}
.ws2f{word-spacing:8.550293pt;}
.ws95{word-spacing:8.563093pt;}
.ws98{word-spacing:8.575893pt;}
.ws30{word-spacing:8.597226pt;}
.ws40{word-spacing:8.605759pt;}
.ws46{word-spacing:8.610026pt;}
.ws31{word-spacing:8.622826pt;}
.wsea{word-spacing:8.627092pt;}
.ws3f{word-spacing:8.635625pt;}
.ws44{word-spacing:8.639892pt;}
.ws32{word-spacing:8.656958pt;}
.ws189{word-spacing:8.661225pt;}
.ws96{word-spacing:8.665492pt;}
.ws188{word-spacing:8.682558pt;}
.ws182{word-spacing:8.695358pt;}
.ws173{word-spacing:8.703891pt;}
.ws184{word-spacing:8.708158pt;}
.wse4{word-spacing:8.720958pt;}
.ws105{word-spacing:8.725224pt;}
.ws101{word-spacing:8.729491pt;}
.wsd{word-spacing:8.733757pt;}
.ws16f{word-spacing:8.738024pt;}
.ws112{word-spacing:8.742291pt;}
.ws99{word-spacing:8.750824pt;}
.ws3a{word-spacing:8.755091pt;}
.ws111{word-spacing:8.759357pt;}
.ws160{word-spacing:8.763624pt;}
.ws126{word-spacing:8.767890pt;}
.ws37{word-spacing:8.776424pt;}
.ws35{word-spacing:8.784957pt;}
.ws36{word-spacing:8.793490pt;}
.wse8{word-spacing:8.797757pt;}
.ws107{word-spacing:8.802023pt;}
.ws10a{word-spacing:8.806290pt;}
.wsfc{word-spacing:8.810557pt;}
.ws97{word-spacing:8.814823pt;}
.ws3c{word-spacing:8.819090pt;}
.ws9b{word-spacing:8.823356pt;}
.ws12{word-spacing:8.827623pt;}
.ws187{word-spacing:8.831890pt;}
.ws172{word-spacing:8.836156pt;}
.wsd8{word-spacing:8.840423pt;}
.wse5{word-spacing:8.844689pt;}
.wse9{word-spacing:8.848956pt;}
.wsc4{word-spacing:8.857489pt;}
.ws115{word-spacing:8.861756pt;}
.wsf{word-spacing:8.866023pt;}
.ws34{word-spacing:8.870289pt;}
.ws116{word-spacing:8.878822pt;}
.ws45{word-spacing:8.887356pt;}
.wsd0{word-spacing:8.891622pt;}
.ws2d{word-spacing:8.895889pt;}
.wsc2{word-spacing:8.900155pt;}
.wsb{word-spacing:8.904422pt;}
.ws185{word-spacing:8.908689pt;}
.ws43{word-spacing:8.917222pt;}
.ws9a{word-spacing:8.921488pt;}
.ws17b{word-spacing:8.925755pt;}
.ws3b{word-spacing:8.930022pt;}
.ws16e{word-spacing:8.934288pt;}
.ws11{word-spacing:8.938555pt;}
.wsff{word-spacing:8.947088pt;}
.ws181{word-spacing:8.951355pt;}
.ws3e{word-spacing:8.959888pt;}
.ws17f{word-spacing:8.964155pt;}
.wsfb{word-spacing:8.968421pt;}
.ws17e{word-spacing:8.972688pt;}
.wsd2{word-spacing:8.976954pt;}
.ws2c{word-spacing:8.981221pt;}
.ws183{word-spacing:8.985488pt;}
.ws10f{word-spacing:8.989754pt;}
.ws15e{word-spacing:8.994021pt;}
.ws42{word-spacing:8.998288pt;}
.wseb{word-spacing:9.002554pt;}
.ws38{word-spacing:9.006821pt;}
.ws2e{word-spacing:9.011087pt;}
.ws16c{word-spacing:9.019621pt;}
.ws165{word-spacing:9.023887pt;}
.wscf{word-spacing:9.028154pt;}
.wsc8{word-spacing:9.032420pt;}
.wsd7{word-spacing:9.036687pt;}
.wscd{word-spacing:9.040954pt;}
.ws29{word-spacing:9.045220pt;}
.ws2b{word-spacing:9.049487pt;}
.ws109{word-spacing:9.058020pt;}
.wsd6{word-spacing:9.062287pt;}
.ws175{word-spacing:9.066553pt;}
.ws94{word-spacing:9.070820pt;}
.wsfd{word-spacing:9.075087pt;}
.wse6{word-spacing:9.083620pt;}
.ws10d{word-spacing:9.092153pt;}
.ws127{word-spacing:9.096420pt;}
.ws16a{word-spacing:9.100686pt;}
.ws106{word-spacing:9.104953pt;}
.ws176{word-spacing:9.122019pt;}
.wsc7{word-spacing:9.126286pt;}
.ws162{word-spacing:9.130553pt;}
.ws15d{word-spacing:9.134819pt;}
.ws0{word-spacing:9.139086pt;}
.ws17c{word-spacing:9.143352pt;}
.ws113{word-spacing:9.147619pt;}
.ws169{word-spacing:9.156152pt;}
.wse7{word-spacing:9.160419pt;}
.ws110{word-spacing:9.164685pt;}
.ws16d{word-spacing:9.168952pt;}
.wsca{word-spacing:9.173219pt;}
.wsce{word-spacing:9.181752pt;}
.ws186{word-spacing:9.186019pt;}
.ws174{word-spacing:9.190285pt;}
.ws17a{word-spacing:9.194552pt;}
.wsfe{word-spacing:9.198818pt;}
.ws41{word-spacing:9.203085pt;}
.wsd1{word-spacing:9.207352pt;}
.ws178{word-spacing:9.211618pt;}
.ws104{word-spacing:9.228685pt;}
.ws15f{word-spacing:9.232951pt;}
.ws10c{word-spacing:9.250018pt;}
.ws39{word-spacing:9.267084pt;}
.ws170{word-spacing:9.271351pt;}
.ws3d{word-spacing:9.284151pt;}
.ws166{word-spacing:9.292684pt;}
.wse{word-spacing:9.301217pt;}
.ws161{word-spacing:9.305484pt;}
.wsc5{word-spacing:9.309750pt;}
.wsd9{word-spacing:9.314017pt;}
.wsc3{word-spacing:9.331083pt;}
.ws102{word-spacing:9.335350pt;}
.ws168{word-spacing:9.356683pt;}
.ws100{word-spacing:9.360950pt;}
.ws10b{word-spacing:9.378016pt;}
.ws16b{word-spacing:9.390816pt;}
.ws177{word-spacing:9.395083pt;}
.ws164{word-spacing:9.399349pt;}
.ws179{word-spacing:9.403616pt;}
.ws171{word-spacing:9.424949pt;}
.ws10{word-spacing:9.433482pt;}
.ws163{word-spacing:9.437749pt;}
.ws108{word-spacing:9.442015pt;}
.ws15c{word-spacing:9.463348pt;}
.wsc6{word-spacing:9.471882pt;}
.ws180{word-spacing:9.604147pt;}
.ws1b{word-spacing:10.219467pt;}
.ws5{word-spacing:10.387200pt;}
.ws9{word-spacing:10.425600pt;}
.ws8{word-spacing:10.497600pt;}
.ws7{word-spacing:10.540800pt;}
.ws6{word-spacing:10.574400pt;}
.ws8a{word-spacing:10.650773pt;}
.ws90{word-spacing:10.666773pt;}
.ws93{word-spacing:10.677440pt;}
.ws91{word-spacing:10.693440pt;}
.ws7d{word-spacing:10.698774pt;}
.ws83{word-spacing:10.725441pt;}
.ws7a{word-spacing:10.768108pt;}
.ws87{word-spacing:10.784108pt;}
.ws71{word-spacing:10.789441pt;}
.ws7c{word-spacing:10.800108pt;}
.ws89{word-spacing:10.816108pt;}
.ws7f{word-spacing:10.821442pt;}
.ws79{word-spacing:10.832108pt;}
.ws69{word-spacing:10.837442pt;}
.ws84{word-spacing:10.858775pt;}
.ws132{word-spacing:10.880109pt;}
.ws24{word-spacing:10.898400pt;}
.ws7b{word-spacing:10.901442pt;}
.ws80{word-spacing:10.906776pt;}
.ws77{word-spacing:10.917443pt;}
.ws6a{word-spacing:10.922776pt;}
.ws72{word-spacing:10.928109pt;}
.ws73{word-spacing:10.933443pt;}
.ws75{word-spacing:10.938776pt;}
.ws6e{word-spacing:10.960110pt;}
.ws25{word-spacing:10.969333pt;}
.ws14{word-spacing:10.984533pt;}
.ws74{word-spacing:10.992110pt;}
.ws7e{word-spacing:11.018777pt;}
.ws92{word-spacing:11.024110pt;}
.ws65{word-spacing:11.029444pt;}
.ws6b{word-spacing:11.034777pt;}
.ws6d{word-spacing:11.040110pt;}
.ws23{word-spacing:11.040267pt;}
.ws66{word-spacing:11.045444pt;}
.ws1e{word-spacing:11.050400pt;}
.ws8e{word-spacing:11.056111pt;}
.ws16{word-spacing:11.060533pt;}
.ws137{word-spacing:11.066777pt;}
.ws81{word-spacing:11.072111pt;}
.ws5f{word-spacing:11.088111pt;}
.ws1c{word-spacing:11.106133pt;}
.ws86{word-spacing:11.109444pt;}
.ws13e{word-spacing:11.114778pt;}
.ws70{word-spacing:11.120111pt;}
.ws62{word-spacing:11.125445pt;}
.ws27{word-spacing:11.126400pt;}
.ws6f{word-spacing:11.130778pt;}
.ws133{word-spacing:11.136111pt;}
.ws20{word-spacing:11.136533pt;}
.ws138{word-spacing:11.141445pt;}
.ws134{word-spacing:11.157445pt;}
.ws60{word-spacing:11.162778pt;}
.ws61{word-spacing:11.168112pt;}
.ws68{word-spacing:11.173445pt;}
.ws26{word-spacing:11.177067pt;}
.ws82{word-spacing:11.184112pt;}
.ws5e{word-spacing:11.194779pt;}
.ws21{word-spacing:11.197333pt;}
.ws78{word-spacing:11.200112pt;}
.ws63{word-spacing:11.205445pt;}
.ws19{word-spacing:11.207467pt;}
.ws13{word-spacing:11.212533pt;}
.ws125{word-spacing:11.226779pt;}
.ws15{word-spacing:11.237867pt;}
.ws67{word-spacing:11.248112pt;}
.ws17{word-spacing:11.258133pt;}
.ws8f{word-spacing:11.269446pt;}
.ws28{word-spacing:11.273333pt;}
.ws12b{word-spacing:11.280113pt;}
.ws22{word-spacing:11.288533pt;}
.ws1a{word-spacing:11.293600pt;}
.ws14b{word-spacing:11.301446pt;}
.ws1d{word-spacing:11.349333pt;}
.ws18{word-spacing:11.354400pt;}
.ws151{word-spacing:11.354780pt;}
.ws123{word-spacing:11.365447pt;}
.ws88{word-spacing:11.376114pt;}
.ws12e{word-spacing:11.392114pt;}
.ws11d{word-spacing:11.408114pt;}
.ws14a{word-spacing:11.424114pt;}
.ws14d{word-spacing:11.440114pt;}
.ws11f{word-spacing:11.450781pt;}
.ws13f{word-spacing:11.477448pt;}
.ws146{word-spacing:11.482781pt;}
.ws4c{word-spacing:11.498782pt;}
.ws149{word-spacing:11.504115pt;}
.ws14f{word-spacing:11.509448pt;}
.ws53{word-spacing:11.520115pt;}
.ws48{word-spacing:11.525449pt;}
.ws9d{word-spacing:11.530782pt;}
.wse0{word-spacing:11.536115pt;}
.ws117{word-spacing:11.541449pt;}
.ws129{word-spacing:11.546782pt;}
.ws4f{word-spacing:11.552116pt;}
.ws13c{word-spacing:11.557449pt;}
.wsee{word-spacing:11.562782pt;}
.wsdf{word-spacing:11.568116pt;}
.wsb0{word-spacing:11.573449pt;}
.ws4e{word-spacing:11.578782pt;}
.ws122{word-spacing:11.584116pt;}
.ws55{word-spacing:11.589449pt;}
.ws131{word-spacing:11.594783pt;}
.ws58{word-spacing:11.600116pt;}
.ws145{word-spacing:11.605449pt;}
.ws54{word-spacing:11.610783pt;}
.ws9f{word-spacing:11.616116pt;}
.wsf7{word-spacing:11.621450pt;}
.ws50{word-spacing:11.626783pt;}
.ws5d{word-spacing:11.632116pt;}
.wsb7{word-spacing:11.637450pt;}
.wsb3{word-spacing:11.642783pt;}
.ws5a{word-spacing:11.648116pt;}
.ws52{word-spacing:11.653450pt;}
.wsae{word-spacing:11.658783pt;}
.wsbe{word-spacing:11.664117pt;}
.wsa1{word-spacing:11.669450pt;}
.wsa6{word-spacing:11.674783pt;}
.wsf5{word-spacing:11.680117pt;}
.wsb4{word-spacing:11.685450pt;}
.wsb1{word-spacing:11.690784pt;}
.ws4b{word-spacing:11.696117pt;}
.ws56{word-spacing:11.701450pt;}
.wsaa{word-spacing:11.706784pt;}
.wsd4{word-spacing:11.712117pt;}
.wsb6{word-spacing:11.717451pt;}
.wsa2{word-spacing:11.722784pt;}
.ws118{word-spacing:11.728117pt;}
.wsa0{word-spacing:11.733451pt;}
.wsdd{word-spacing:11.738784pt;}
.ws9e{word-spacing:11.744117pt;}
.ws13a{word-spacing:11.749451pt;}
.wsa4{word-spacing:11.754784pt;}
.ws12c{word-spacing:11.760118pt;}
.ws13b{word-spacing:11.770784pt;}
.wsbc{word-spacing:11.776118pt;}
.ws15a{word-spacing:11.781451pt;}
.wsb8{word-spacing:11.786785pt;}
.wsa3{word-spacing:11.792118pt;}
.ws150{word-spacing:11.797451pt;}
.wsac{word-spacing:11.802785pt;}
.ws12f{word-spacing:11.808118pt;}
.wsab{word-spacing:11.813451pt;}
.ws59{word-spacing:11.818785pt;}
.wsf2{word-spacing:11.824118pt;}
.wsa9{word-spacing:11.829452pt;}
.ws124{word-spacing:11.840118pt;}
.ws11c{word-spacing:11.845452pt;}
.wse1{word-spacing:11.850785pt;}
.wsda{word-spacing:11.856119pt;}
.ws11e{word-spacing:11.861452pt;}
.wsf8{word-spacing:11.866785pt;}
.ws13d{word-spacing:11.872119pt;}
.wsbf{word-spacing:11.877452pt;}
.wsad{word-spacing:11.882785pt;}
.ws11a{word-spacing:11.888119pt;}
.ws5b{word-spacing:11.893452pt;}
.wsdb{word-spacing:11.898786pt;}
.wsfa{word-spacing:11.904119pt;}
.wsc0{word-spacing:11.909452pt;}
.ws120{word-spacing:11.914786pt;}
.ws11b{word-spacing:11.920119pt;}
.ws57{word-spacing:11.925453pt;}
.wsf4{word-spacing:11.930786pt;}
.ws152{word-spacing:11.936119pt;}
.wsf3{word-spacing:11.941453pt;}
.ws130{word-spacing:11.944627pt;}
.wsf9{word-spacing:11.946786pt;}
.wsec{word-spacing:11.952120pt;}
.wsef{word-spacing:11.957453pt;}
.wsc1{word-spacing:11.968120pt;}
.wsb9{word-spacing:11.973453pt;}
.wsa8{word-spacing:11.978786pt;}
.wsdc{word-spacing:11.984120pt;}
.wsd3{word-spacing:11.989453pt;}
.wsf1{word-spacing:11.994787pt;}
.wsb2{word-spacing:12.000120pt;}
.wsde{word-spacing:12.005453pt;}
.ws147{word-spacing:12.010787pt;}
.wsaf{word-spacing:12.026787pt;}
.ws49{word-spacing:12.032120pt;}
.ws4a{word-spacing:12.037454pt;}
.ws155{word-spacing:12.048120pt;}
.wsed{word-spacing:12.053454pt;}
.wsba{word-spacing:12.058787pt;}
.wsa5{word-spacing:12.069454pt;}
.ws154{word-spacing:12.074787pt;}
.ws51{word-spacing:12.080121pt;}
.wsbd{word-spacing:12.085454pt;}
.wsa7{word-spacing:12.096121pt;}
.ws12d{word-spacing:12.106788pt;}
.ws12a{word-spacing:12.117455pt;}
.ws142{word-spacing:12.122788pt;}
.ws5c{word-spacing:12.133455pt;}
.ws6c{word-spacing:12.144121pt;}
.ws139{word-spacing:12.165455pt;}
.ws121{word-spacing:12.170788pt;}
.ws135{word-spacing:12.176122pt;}
.wsbb{word-spacing:12.202789pt;}
.ws143{word-spacing:12.213455pt;}
.ws119{word-spacing:12.272123pt;}
.wse2{word-spacing:12.309456pt;}
.ws153{word-spacing:13.798285pt;}
.wsf6{word-spacing:13.804685pt;}
.wsb5{word-spacing:13.843085pt;}
.ws144{word-spacing:13.849485pt;}
.ws14e{word-spacing:13.855885pt;}
.ws14c{word-spacing:13.875084pt;}
.ws158{word-spacing:13.894284pt;}
.wsd5{word-spacing:13.907084pt;}
.ws9c{word-spacing:13.913484pt;}
.ws140{word-spacing:13.983883pt;}
.wse3{word-spacing:14.079883pt;}
.ws156{word-spacing:14.092683pt;}
.ws141{word-spacing:14.118282pt;}
.ws148{word-spacing:14.271881pt;}
.ws1{word-spacing:23.221449pt;}
.ws4{word-spacing:23.232116pt;}
.ws3{word-spacing:23.360117pt;}
.ws2{word-spacing:23.381450pt;}
.ws17d{word-spacing:53.169800pt;}
.ws15b{word-spacing:53.174802pt;}
.ws167{word-spacing:53.208935pt;}
._e{margin-left:-11.968120pt;}
._8{margin-left:-9.378016pt;}
._10{margin-left:-8.443644pt;}
._9{margin-left:-3.609555pt;}
._a{margin-left:-2.158906pt;}
._2{margin-left:-1.139186pt;}
._3{width:1.297067pt;}
._d{width:2.658100pt;}
._b{width:8.332696pt;}
._1{width:10.077741pt;}
._5{width:11.455733pt;}
._4{width:12.377867pt;}
._c{width:14.911876pt;}
._11{width:18.286705pt;}
._0{width:24.352122pt;}
._6{width:41.373349pt;}
._f{width:1523.488156pt;}
._7{width:1547.073995pt;}
.fsa{font-size:28.440000pt;}
.fs3{font-size:31.995733pt;}
.fs9{font-size:35.552000pt;}
.fs8{font-size:37.332800pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs7{font-size:53.333867pt;}
.fs6{font-size:63.999467pt;}
.fs4{font-size:85.332800pt;}
.fs1{font-size:106.667200pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:48.000000pt;}
.y127{bottom:106.353366pt;}
.yd6{bottom:106.354358pt;}
.y11c{bottom:110.659360pt;}
.yb9{bottom:110.659707pt;}
.y19f{bottom:110.660413pt;}
.y1ca{bottom:110.661773pt;}
.y201{bottom:110.662693pt;}
.y245{bottom:110.662967pt;}
.yea{bottom:110.663960pt;}
.y46{bottom:110.670373pt;}
.y18f{bottom:111.188907pt;}
.y12f{bottom:112.854707pt;}
.yc5{bottom:116.635892pt;}
.yf4{bottom:118.524766pt;}
.y15b{bottom:123.278480pt;}
.y244{bottom:123.362541pt;}
.y45{bottom:125.334723pt;}
.y12e{bottom:125.478550pt;}
.y126{bottom:126.989908pt;}
.yd5{bottom:126.990900pt;}
.y11b{bottom:127.970200pt;}
.yb8{bottom:127.970547pt;}
.y19e{bottom:127.971253pt;}
.y1c9{bottom:127.972613pt;}
.y200{bottom:127.973533pt;}
.ye9{bottom:127.974800pt;}
.y18e{bottom:128.499747pt;}
.yc2{bottom:129.335091pt;}
.yc4{bottom:129.335467pt;}
.y27c{bottom:129.636991pt;}
.yf3{bottom:131.148609pt;}
.yc3{bottom:134.097600pt;}
.y243{bottom:135.986383pt;}
.y12d{bottom:138.178124pt;}
.y77{bottom:138.780013pt;}
.y125{bottom:139.689483pt;}
.yd4{bottom:139.690474pt;}
.y44{bottom:139.999073pt;}
.y15a{bottom:140.589320pt;}
.ybf{bottom:141.957459pt;}
.yc1{bottom:141.958933pt;}
.y27b{bottom:142.260834pt;}
.yf2{bottom:143.848183pt;}
.y11a{bottom:145.355707pt;}
.yb7{bottom:145.356054pt;}
.y19d{bottom:145.356760pt;}
.y1c8{bottom:145.358120pt;}
.y1ff{bottom:145.359040pt;}
.y18d{bottom:145.885254pt;}
.yc0{bottom:146.721200pt;}
.y2ac{bottom:150.273708pt;}
.ye8{bottom:150.652000pt;}
.y12c{bottom:150.801966pt;}
.y124{bottom:152.313325pt;}
.yd3{bottom:152.314317pt;}
.y242{bottom:153.296034pt;}
.ybe{bottom:154.657033pt;}
.y43{bottom:154.663424pt;}
.y27a{bottom:154.960408pt;}
.y76{bottom:156.090853pt;}
.yf1{bottom:156.472025pt;}
.y159{bottom:157.900160pt;}
.y27{bottom:158.215467pt;}
.y119{bottom:162.666547pt;}
.yb6{bottom:162.666894pt;}
.y19c{bottom:162.667600pt;}
.y1c7{bottom:162.668960pt;}
.y1fe{bottom:162.669880pt;}
.y2ab{bottom:162.973283pt;}
.y18c{bottom:163.196094pt;}
.y12b{bottom:163.501541pt;}
.y123{bottom:165.012900pt;}
.yd2{bottom:165.013891pt;}
.y241{bottom:165.995608pt;}
.ybd{bottom:167.356608pt;}
.yf0{bottom:169.171600pt;}
.y42{bottom:169.327774pt;}
.y279{bottom:172.270059pt;}
.y75{bottom:173.401693pt;}
.y158{bottom:175.285667pt;}
.y2aa{bottom:175.597125pt;}
.y12a{bottom:176.125383pt;}
.y26{bottom:176.886133pt;}
.y122{bottom:177.636742pt;}
.yd1{bottom:177.637733pt;}
.y240{bottom:178.695183pt;}
.y118{bottom:179.977386pt;}
.yb5{bottom:179.977733pt;}
.y19b{bottom:179.978440pt;}
.y1c6{bottom:179.979800pt;}
.ybc{bottom:179.980450pt;}
.y1fd{bottom:179.980720pt;}
.y18b{bottom:180.506933pt;}
.y41{bottom:183.992124pt;}
.y278{bottom:184.969633pt;}
.y129{bottom:188.824958pt;}
.ye7{bottom:189.046827pt;}
.y121{bottom:190.336317pt;}
.y74{bottom:190.787200pt;}
.y157{bottom:192.596507pt;}
.ybb{bottom:192.680024pt;}
.y2a9{bottom:192.982508pt;}
.y25{bottom:195.556800pt;}
.y23f{bottom:196.005900pt;}
.y117{bottom:197.362894pt;}
.yb4{bottom:197.363241pt;}
.y19a{bottom:197.363947pt;}
.y1c5{bottom:197.365307pt;}
.y1fc{bottom:197.366227pt;}
.y277{bottom:197.593475pt;}
.y18a{bottom:197.892441pt;}
.y40{bottom:198.656474pt;}
.y128{bottom:201.448800pt;}
.y120{bottom:203.035891pt;}
.yba{bottom:205.303867pt;}
.y2a8{bottom:205.606350pt;}
.ye6{bottom:206.357666pt;}
.y73{bottom:208.098040pt;}
.y23e{bottom:208.629742pt;}
.y156{bottom:209.907347pt;}
.y24{bottom:214.151467pt;}
.y116{bottom:214.673733pt;}
.yb3{bottom:214.674080pt;}
.y199{bottom:214.674787pt;}
.y1c4{bottom:214.676147pt;}
.y1fb{bottom:214.677067pt;}
.y276{bottom:214.978858pt;}
.y189{bottom:215.203280pt;}
.y11f{bottom:215.659733pt;}
.y3f{bottom:221.333523pt;}
.y2a7{bottom:222.991733pt;}
.ye5{bottom:223.743174pt;}
.y72{bottom:225.408880pt;}
.y23d{bottom:226.015125pt;}
.y155{bottom:227.292854pt;}
.y275{bottom:227.602700pt;}
.y115{bottom:231.984573pt;}
.yb2{bottom:231.984920pt;}
.y198{bottom:231.985627pt;}
.y1c3{bottom:231.986986pt;}
.y188{bottom:232.514120pt;}
.y23{bottom:232.822133pt;}
.y2a6{bottom:235.615575pt;}
.y3e{bottom:235.997873pt;}
.y1fa{bottom:237.354267pt;}
.y23c{bottom:238.638967pt;}
.ye4{bottom:241.054013pt;}
.y71{bottom:242.794387pt;}
.y154{bottom:244.603694pt;}
.y274{bottom:244.988083pt;}
.y2a5{bottom:248.315150pt;}
.y114{bottom:249.295413pt;}
.yb1{bottom:249.295760pt;}
.y197{bottom:249.296466pt;}
.y1c2{bottom:249.297826pt;}
.y187{bottom:249.899627pt;}
.y3d{bottom:250.662224pt;}
.y22{bottom:251.492800pt;}
.y23b{bottom:256.024350pt;}
.y273{bottom:257.611925pt;}
.ye3{bottom:258.364853pt;}
.y70{bottom:260.105227pt;}
.y153{bottom:261.914533pt;}
.y3c{bottom:265.326574pt;}
.y2a4{bottom:265.624800pt;}
.y113{bottom:266.680920pt;}
.yb0{bottom:266.681267pt;}
.y196{bottom:266.681973pt;}
.y1c1{bottom:266.683333pt;}
.y186{bottom:267.210467pt;}
.y23a{bottom:268.648192pt;}
.y21{bottom:270.163467pt;}
.y272{bottom:270.311500pt;}
.y1f9{bottom:275.449813pt;}
.ye2{bottom:275.750360pt;}
.y6f{bottom:277.416066pt;}
.y2a3{bottom:278.324374pt;}
.y152{bottom:279.225373pt;}
.y112{bottom:283.991760pt;}
.yaf{bottom:283.992107pt;}
.y195{bottom:283.992813pt;}
.y185{bottom:284.521307pt;}
.y239{bottom:286.033574pt;}
.y271{bottom:287.621150pt;}
.y3b{bottom:288.003623pt;}
.y20{bottom:288.834133pt;}
.y1c0{bottom:289.360533pt;}
.y2a2{bottom:290.948217pt;}
.y1f8{bottom:292.835320pt;}
.ye1{bottom:293.061200pt;}
.y6e{bottom:294.801573pt;}
.y151{bottom:296.610880pt;}
.y238{bottom:298.657417pt;}
.y270{bottom:300.320725pt;}
.y111{bottom:301.302600pt;}
.yae{bottom:301.302947pt;}
.y194{bottom:301.303653pt;}
.y184{bottom:301.832147pt;}
.y3a{bottom:302.667973pt;}
.y1f{bottom:307.504800pt;}
.y2a1{bottom:308.257867pt;}
.y1f7{bottom:310.146160pt;}
.ye0{bottom:310.372040pt;}
.y237{bottom:311.356991pt;}
.y6d{bottom:312.112413pt;}
.y26f{bottom:312.944567pt;}
.y150{bottom:313.921720pt;}
.y39{bottom:317.332323pt;}
.y110{bottom:318.688107pt;}
.yad{bottom:318.688454pt;}
.y193{bottom:318.689160pt;}
.y183{bottom:319.217654pt;}
.y2a0{bottom:320.957441pt;}
.y1e{bottom:326.175467pt;}
.y1f6{bottom:327.457000pt;}
.y1bf{bottom:327.602094pt;}
.ydf{bottom:327.682880pt;}
.y236{bottom:328.666642pt;}
.y6c{bottom:329.423253pt;}
.y26e{bottom:330.254217pt;}
.y14f{bottom:331.232560pt;}
.y38{bottom:331.996673pt;}
.y10f{bottom:335.998947pt;}
.yac{bottom:335.999294pt;}
.y192{bottom:336.000000pt;}
.y182{bottom:336.528494pt;}
.y29f{bottom:338.267092pt;}
.y235{bottom:341.366216pt;}
.y26d{bottom:342.953792pt;}
.y1f5{bottom:344.767839pt;}
.y1d{bottom:344.846133pt;}
.y1be{bottom:344.912933pt;}
.yde{bottom:345.068387pt;}
.y37{bottom:346.661024pt;}
.y6b{bottom:346.808760pt;}
.y14e{bottom:348.618067pt;}
.y29e{bottom:350.966666pt;}
.y10e{bottom:353.309786pt;}
.yab{bottom:353.310133pt;}
.y181{bottom:353.828639pt;}
.y234{bottom:358.675866pt;}
.y191{bottom:358.676200pt;}
.y21b{bottom:358.677067pt;}
.y26c{bottom:360.264509pt;}
.y36{bottom:361.325374pt;}
.y1f4{bottom:362.153347pt;}
.y1bd{bottom:362.223773pt;}
.ydd{bottom:362.379227pt;}
.y1c{bottom:363.516800pt;}
.y68{bottom:364.118894pt;}
.y6a{bottom:364.119600pt;}
.y14d{bottom:365.928907pt;}
.y29d{bottom:368.276317pt;}
.y69{bottom:370.015600pt;}
.y10d{bottom:370.695294pt;}
.y180{bottom:371.214147pt;}
.y233{bottom:371.299709pt;}
.y26b{bottom:372.964083pt;}
.yaa{bottom:375.987889pt;}
.y1f3{bottom:379.464186pt;}
.y1bc{bottom:379.609280pt;}
.ydc{bottom:379.690066pt;}
.y29c{bottom:380.975891pt;}
.y67{bottom:381.420226pt;}
.y1b{bottom:382.187467pt;}
.y190{bottom:382.639200pt;}
.y14c{bottom:383.239747pt;}
.y35{bottom:384.002423pt;}
.y10c{bottom:388.006133pt;}
.y17f{bottom:388.524986pt;}
.y232{bottom:388.685091pt;}
.y26a{bottom:390.273733pt;}
.y29b{bottom:393.599733pt;}
.y21a{bottom:393.976027pt;}
.ya9{bottom:394.658133pt;}
.y1f2{bottom:396.775026pt;}
.y1bb{bottom:396.920120pt;}
.ydb{bottom:397.075573pt;}
.y66{bottom:398.731066pt;}
.y14b{bottom:400.625254pt;}
.y1a{bottom:400.858133pt;}
.y231{bottom:401.308933pt;}
.y269{bottom:402.973308pt;}
.y17e{bottom:405.835826pt;}
.y34{bottom:406.679473pt;}
.y10b{bottom:410.683333pt;}
.y29a{bottom:410.985116pt;}
.y219{bottom:411.286866pt;}
.y1f1{bottom:414.160533pt;}
.y1ba{bottom:414.230960pt;}
.yda{bottom:414.386413pt;}
.y268{bottom:415.597150pt;}
.y65{bottom:416.116573pt;}
.y14a{bottom:417.936094pt;}
.y230{bottom:418.694316pt;}
.y19{bottom:419.528800pt;}
.y17d{bottom:423.221333pt;}
.y299{bottom:423.608958pt;}
.y218{bottom:428.597706pt;}
.y33{bottom:429.356523pt;}
.y22f{bottom:431.318158pt;}
.y1b9{bottom:431.616467pt;}
.yd9{bottom:431.697253pt;}
.y267{bottom:432.982533pt;}
.y64{bottom:433.427413pt;}
.y149{bottom:435.246933pt;}
.y298{bottom:436.308533pt;}
.y1f0{bottom:436.837733pt;}
.y18{bottom:438.199467pt;}
.y17c{bottom:440.532173pt;}
.y22e{bottom:444.017733pt;}
.ya8{bottom:444.091640pt;}
.y266{bottom:445.606375pt;}
.y217{bottom:445.983213pt;}
.y1b8{bottom:448.927307pt;}
.yd8{bottom:449.082760pt;}
.y63{bottom:450.738253pt;}
.y32{bottom:452.033573pt;}
.y148{bottom:452.632441pt;}
.y297{bottom:453.618183pt;}
.y17{bottom:456.870133pt;}
.y17b{bottom:457.843013pt;}
.y2bb{bottom:458.301950pt;}
.y265{bottom:458.305950pt;}
.y22d{bottom:461.328450pt;}
.ya7{bottom:461.402480pt;}
.y10a{bottom:463.060360pt;}
.y216{bottom:463.294053pt;}
.y1b7{bottom:466.238147pt;}
.y296{bottom:466.317758pt;}
.yd7{bottom:466.393600pt;}
.y31{bottom:466.697923pt;}
.y62{bottom:468.123760pt;}
.y147{bottom:469.943280pt;}
.y2ba{bottom:470.925792pt;}
.y22c{bottom:474.028024pt;}
.y1ed{bottom:474.934986pt;}
.y1ef{bottom:474.935333pt;}
.y17a{bottom:475.228520pt;}
.y16{bottom:475.540800pt;}
.y264{bottom:475.615600pt;}
.ya6{bottom:478.787987pt;}
.y295{bottom:478.939559pt;}
.y109{bottom:480.371200pt;}
.y215{bottom:480.604893pt;}
.y1ee{bottom:480.831333pt;}
.y1b6{bottom:483.623654pt;}
.y2b9{bottom:483.625367pt;}
.y61{bottom:485.434600pt;}
.y22b{bottom:486.651867pt;}
.y146{bottom:487.254120pt;}
.y263{bottom:488.314375pt;}
.y30{bottom:489.374973pt;}
.y1ec{bottom:492.245826pt;}
.y179{bottom:492.539360pt;}
.y15{bottom:494.211467pt;}
.yef{bottom:494.815268pt;}
.ya5{bottom:496.098827pt;}
.y294{bottom:496.324941pt;}
.y108{bottom:497.682040pt;}
.y214{bottom:497.990400pt;}
.y1b5{bottom:500.934494pt;}
.y2b8{bottom:500.936084pt;}
.y262{bottom:500.938217pt;}
.y60{bottom:502.745439pt;}
.y2f{bottom:504.039323pt;}
.y145{bottom:504.564960pt;}
.y22a{bottom:504.642400pt;}
.y293{bottom:508.948784pt;}
.y1e9{bottom:509.630760pt;}
.y1eb{bottom:509.631333pt;}
.y178{bottom:509.850200pt;}
.y14{bottom:512.882133pt;}
.ya4{bottom:513.409666pt;}
.y2b7{bottom:513.635658pt;}
.y107{bottom:515.067547pt;}
.yee{bottom:515.526475pt;}
.y1ea{bottom:515.527333pt;}
.y1b4{bottom:518.245333pt;}
.y261{bottom:518.323600pt;}
.y2e{bottom:518.703673pt;}
.y5f{bottom:520.130947pt;}
.y213{bottom:520.592000pt;}
.y292{bottom:521.648358pt;}
.y144{bottom:521.950467pt;}
.y2b6{bottom:526.259500pt;}
.y1e6{bottom:526.941253pt;}
.y1e8{bottom:526.941600pt;}
.y177{bottom:527.161039pt;}
.yed{bottom:528.150317pt;}
.ya3{bottom:530.795173pt;}
.y260{bottom:530.947442pt;}
.y13{bottom:531.552800pt;}
.y106{bottom:532.378387pt;}
.y1e7{bottom:532.837600pt;}
.y2d{bottom:533.368023pt;}
.y1b3{bottom:535.630841pt;}
.y5e{bottom:537.441786pt;}
.y291{bottom:538.958008pt;}
.y143{bottom:539.261307pt;}
.y229{bottom:539.866320pt;}
.yec{bottom:540.849892pt;}
.y2b5{bottom:543.644883pt;}
.y25f{bottom:543.647016pt;}
.y1e5{bottom:544.252093pt;}
.y176{bottom:544.546547pt;}
.y2c{bottom:548.032373pt;}
.ya2{bottom:548.106013pt;}
.y105{bottom:549.689227pt;}
.y12{bottom:550.223467pt;}
.y290{bottom:551.657583pt;}
.y1b2{bottom:552.941680pt;}
.yeb{bottom:553.549467pt;}
.y5d{bottom:554.752626pt;}
.y212{bottom:555.888200pt;}
.y2b4{bottom:556.268725pt;}
.y142{bottom:556.572147pt;}
.y228{bottom:557.177160pt;}
.y25e{bottom:560.956667pt;}
.y1e2{bottom:561.636454pt;}
.y1e4{bottom:561.637600pt;}
.y175{bottom:561.857386pt;}
.y2b{bottom:562.696723pt;}
.y28f{bottom:564.281425pt;}
.ya1{bottom:565.416853pt;}
.y104{bottom:567.074734pt;}
.y1e3{bottom:567.533733pt;}
.y2b3{bottom:568.968300pt;}
.y1b1{bottom:570.252520pt;}
.y5c{bottom:572.138133pt;}
.y211{bottom:573.273707pt;}
.y25d{bottom:573.656241pt;}
.y141{bottom:573.957654pt;}
.y227{bottom:574.488000pt;}
.y2a{bottom:577.361073pt;}
.y1e1{bottom:578.947294pt;}
.y174{bottom:579.168226pt;}
.y11{bottom:579.552667pt;}
.y28e{bottom:581.592142pt;}
.ya0{bottom:582.802360pt;}
.y103{bottom:584.385574pt;}
.y2b2{bottom:586.279017pt;}
.y25c{bottom:586.280084pt;}
.y1b0{bottom:587.563360pt;}
.y5b{bottom:589.448973pt;}
.y210{bottom:590.584547pt;}
.y140{bottom:591.268494pt;}
.y28d{bottom:594.291717pt;}
.y1de{bottom:596.257560pt;}
.y1e0{bottom:596.258133pt;}
.y173{bottom:596.553733pt;}
.y226{bottom:597.165200pt;}
.y2b1{bottom:598.978591pt;}
.y29{bottom:599.206133pt;}
.y9d{bottom:600.112627pt;}
.y9f{bottom:600.113200pt;}
.y102{bottom:601.696413pt;}
.y1df{bottom:602.154133pt;}
.y25b{bottom:603.589734pt;}
.y1af{bottom:604.948867pt;}
.y9e{bottom:606.009333pt;}
.y5a{bottom:606.759813pt;}
.y20f{bottom:607.895386pt;}
.y13d{bottom:608.575786pt;}
.y13f{bottom:608.579333pt;}
.y28c{bottom:611.601367pt;}
.y2b0{bottom:611.602434pt;}
.y1dd{bottom:613.568400pt;}
.y172{bottom:613.864573pt;}
.y13e{bottom:614.550933pt;}
.y25a{bottom:616.289308pt;}
.y9c{bottom:617.423467pt;}
.y9a{bottom:617.423826pt;}
.y101{bottom:619.007253pt;}
.y1ae{bottom:622.259707pt;}
.y9b{bottom:623.395067pt;}
.y59{bottom:624.070653pt;}
.y28b{bottom:624.300942pt;}
.y20e{bottom:625.206226pt;}
.y13c{bottom:625.961294pt;}
.y2af{bottom:628.987816pt;}
.y171{bottom:631.175413pt;}
.y225{bottom:632.314800pt;}
.y259{bottom:633.598959pt;}
.y99{bottom:634.809333pt;}
.y10{bottom:635.489801pt;}
.y1dc{bottom:636.245467pt;}
.y100{bottom:636.392760pt;}
.y1ad{bottom:639.570547pt;}
.y58{bottom:641.456160pt;}
.y28a{bottom:641.611659pt;}
.y20d{bottom:642.591733pt;}
.y13b{bottom:643.272133pt;}
.y258{bottom:646.298533pt;}
.y170{bottom:648.560920pt;}
.yf{bottom:648.868833pt;}
.y97{bottom:652.118894pt;}
.yff{bottom:653.703600pt;}
.y289{bottom:654.311233pt;}
.y224{bottom:654.992000pt;}
.y1ac{bottom:656.956054pt;}
.y98{bottom:658.015600pt;}
.y57{bottom:658.767000pt;}
.y20c{bottom:659.902573pt;}
.y13a{bottom:660.582973pt;}
.y257{bottom:663.608184pt;}
.y16f{bottom:665.871760pt;}
.y94{bottom:669.429160pt;}
.y96{bottom:669.429733pt;}
.yfe{bottom:671.014440pt;}
.y288{bottom:671.621950pt;}
.y1ab{bottom:674.266894pt;}
.y1db{bottom:674.415107pt;}
.y95{bottom:675.401333pt;}
.ye{bottom:675.552233pt;}
.y56{bottom:676.077839pt;}
.y256{bottom:676.307758pt;}
.y20b{bottom:677.213413pt;}
.y139{bottom:677.968480pt;}
.y16e{bottom:683.182600pt;}
.y287{bottom:684.321525pt;}
.y93{bottom:686.740000pt;}
.y91{bottom:686.740359pt;}
.yfd{bottom:688.399947pt;}
.yd{bottom:688.856600pt;}
.y255{bottom:688.931600pt;}
.y1aa{bottom:691.577733pt;}
.y1da{bottom:691.725947pt;}
.y92{bottom:692.711600pt;}
.y55{bottom:693.463347pt;}
.y20a{bottom:694.598920pt;}
.y138{bottom:695.279320pt;}
.y286{bottom:696.945367pt;}
.y223{bottom:698.153800pt;}
.y16d{bottom:700.493439pt;}
.yc{bottom:702.160967pt;}
.y8e{bottom:704.121960pt;}
.y90{bottom:704.125867pt;}
.yfc{bottom:705.710787pt;}
.y254{bottom:706.316983pt;}
.y1d9{bottom:709.036787pt;}
.y8f{bottom:710.021867pt;}
.y54{bottom:710.774186pt;}
.y209{bottom:711.909760pt;}
.y137{bottom:712.590160pt;}
.y1a9{bottom:714.254933pt;}
.y285{bottom:714.330750pt;}
.y222{bottom:715.539307pt;}
.yb{bottom:715.540000pt;}
.y16c{bottom:717.878947pt;}
.y253{bottom:718.940825pt;}
.y8d{bottom:721.432800pt;}
.yfb{bottom:723.021627pt;}
.y1d8{bottom:726.422294pt;}
.y284{bottom:726.954592pt;}
.y53{bottom:728.085026pt;}
.ycd{bottom:728.465427pt;}
.y208{bottom:729.220600pt;}
.y136{bottom:729.901000pt;}
.y252{bottom:731.640400pt;}
.y16b{bottom:735.189786pt;}
.y8c{bottom:738.743640pt;}
.ya{bottom:739.502133pt;}
.y8{bottom:739.502800pt;}
.y283{bottom:739.654166pt;}
.yfa{bottom:740.407134pt;}
.y221{bottom:740.862227pt;}
.y1d7{bottom:743.733134pt;}
.y2ae{bottom:744.264242pt;}
.y9{bottom:744.869200pt;}
.y52{bottom:745.470533pt;}
.ycc{bottom:745.776267pt;}
.y207{bottom:746.606107pt;}
.y135{bottom:747.286507pt;}
.y251{bottom:748.950050pt;}
.y16a{bottom:752.500626pt;}
.y1a8{bottom:752.502253pt;}
.y6{bottom:754.166800pt;}
.y8b{bottom:756.129147pt;}
.y282{bottom:756.963817pt;}
.yf9{bottom:757.717973pt;}
.y220{bottom:758.173067pt;}
.y7{bottom:759.533733pt;}
.y1d6{bottom:761.043973pt;}
.y250{bottom:761.649625pt;}
.y51{bottom:762.781373pt;}
.y206{bottom:763.916947pt;}
.y134{bottom:764.597347pt;}
.ycb{bottom:768.453333pt;}
.y281{bottom:769.663391pt;}
.y169{bottom:769.886133pt;}
.y1a7{bottom:769.887760pt;}
.y8a{bottom:773.439987pt;}
.y24f{bottom:774.273467pt;}
.yf8{bottom:775.028813pt;}
.y1d5{bottom:778.429481pt;}
.y50{bottom:780.092213pt;}
.y21f{bottom:780.850133pt;}
.y205{bottom:781.227786pt;}
.y133{bottom:781.908186pt;}
.y280{bottom:786.973041pt;}
.y168{bottom:787.196973pt;}
.y1a6{bottom:787.198600pt;}
.y5{bottom:787.499900pt;}
.y89{bottom:790.750827pt;}
.y24e{bottom:791.658850pt;}
.yf7{bottom:792.339653pt;}
.y1d4{bottom:795.740320pt;}
.y4f{bottom:797.403053pt;}
.y204{bottom:798.613294pt;}
.y132{bottom:799.293694pt;}
.y27f{bottom:799.596884pt;}
.y24d{bottom:804.282692pt;}
.y167{bottom:804.507813pt;}
.y1a5{bottom:804.509439pt;}
.y88{bottom:808.136334pt;}
.yca{bottom:808.363573pt;}
.yf6{bottom:809.725160pt;}
.y1d3{bottom:813.051160pt;}
.y4e{bottom:814.788560pt;}
.y203{bottom:815.924133pt;}
.y21e{bottom:816.000093pt;}
.y131{bottom:816.604533pt;}
.y24c{bottom:816.982266pt;}
.y81{bottom:819.625555pt;}
.y4{bottom:820.836067pt;}
.y166{bottom:821.893320pt;}
.y1a4{bottom:821.894947pt;}
.y87{bottom:825.447173pt;}
.yc9{bottom:825.674413pt;}
.yf5{bottom:827.036000pt;}
.y1d1{bottom:828.169867pt;}
.y27e{bottom:829.606109pt;}
.y1d2{bottom:830.362000pt;}
.y1d0{bottom:830.362359pt;}
.y4d{bottom:832.099400pt;}
.y21d{bottom:833.385600pt;}
.y80{bottom:834.289905pt;}
.y24b{bottom:834.291917pt;}
.y202{bottom:838.601333pt;}
.y165{bottom:839.204160pt;}
.y1a3{bottom:839.205786pt;}
.y130{bottom:839.281600pt;}
.y2ad{bottom:842.305683pt;}
.y86{bottom:842.758013pt;}
.yc8{bottom:842.985253pt;}
.y1ce{bottom:845.480000pt;}
.y24a{bottom:846.991491pt;}
.y1cd{bottom:847.747160pt;}
.y1cf{bottom:847.747867pt;}
.y4c{bottom:849.410239pt;}
.y3{bottom:854.172233pt;}
.y21c{bottom:856.062800pt;}
.y164{bottom:856.515000pt;}
.y1a2{bottom:856.516626pt;}
.y7f{bottom:856.966954pt;}
.y249{bottom:859.615333pt;}
.y85{bottom:860.068853pt;}
.yc7{bottom:860.370760pt;}
.y1cc{bottom:865.058000pt;}
.y4b{bottom:866.795747pt;}
.y7e{bottom:871.631304pt;}
.y27d{bottom:872.314908pt;}
.y15e{bottom:873.599159pt;}
.y163{bottom:873.900507pt;}
.y1a1{bottom:873.902133pt;}
.y248{bottom:876.924984pt;}
.y84{bottom:877.454360pt;}
.yc6{bottom:877.681600pt;}
.y4a{bottom:884.106586pt;}
.y7d{bottom:886.295655pt;}
.y2{bottom:887.508400pt;}
.y1cb{bottom:887.735200pt;}
.y247{bottom:889.624558pt;}
.y162{bottom:891.211347pt;}
.y15d{bottom:894.310366pt;}
.y83{bottom:894.765200pt;}
.y1a0{bottom:897.108400pt;}
.y11e{bottom:898.922575pt;}
.y7c{bottom:900.960005pt;}
.y49{bottom:901.417426pt;}
.y246{bottom:902.324133pt;}
.y15c{bottom:906.934209pt;}
.y161{bottom:908.522186pt;}
.yd0{bottom:911.621083pt;}
.y7b{bottom:915.624355pt;}
.y82{bottom:917.441400pt;}
.y48{bottom:918.802933pt;}
.y11d{bottom:919.633783pt;}
.y1{bottom:920.843867pt;}
.y160{bottom:925.833026pt;}
.y7a{bottom:930.288705pt;}
.ycf{bottom:932.257625pt;}
.y47{bottom:941.404400pt;}
.y15f{bottom:943.218533pt;}
.y79{bottom:944.953055pt;}
.yce{bottom:944.957200pt;}
.y78{bottom:994.393333pt;}
.h11{height:22.041000pt;}
.h7{height:22.972937pt;}
.h5{height:23.996800pt;}
.hf{height:25.313024pt;}
.ha{height:31.060945pt;}
.h1{height:33.066253pt;}
.h14{height:33.074419pt;}
.h6{height:33.696000pt;}
.h4{height:36.000000pt;}
.h13{height:37.493708pt;}
.hc{height:37.973713pt;}
.h12{height:38.016488pt;}
.hd{height:38.187049pt;}
.h9{height:39.266667pt;}
.he{height:40.221197pt;}
.hb{height:47.999600pt;}
.h10{height:49.599587pt;}
.h8{height:61.524949pt;}
.h2{height:76.907051pt;}
.h3{height:77.653722pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:48.000000pt;}
.x12{left:63.496000pt;}
.x1{left:266.683333pt;}
.x3d{left:272.579467pt;}
.x39{left:281.272400pt;}
.x13{left:282.631493pt;}
.x3a{left:294.727467pt;}
.x2d{left:314.229867pt;}
.x2e{left:318.992000pt;}
.x20{left:322.998267pt;}
.x8{left:324.736933pt;}
.x9{left:329.725867pt;}
.x21{left:336.453467pt;}
.x37{left:343.029733pt;}
.x2f{left:344.163600pt;}
.x24{left:345.675467pt;}
.x25{left:357.089600pt;}
.x2{left:358.450267pt;}
.x36{left:368.579467pt;}
.x3{left:370.847200pt;}
.x22{left:381.505333pt;}
.x17{left:383.622000pt;}
.x26{left:387.401467pt;}
.x23{left:394.960533pt;}
.x18{left:397.077067pt;}
.x27{left:398.815600pt;}
.xa{left:402.292800pt;}
.x1d{left:403.199867pt;}
.xb{left:407.281733pt;}
.x19{left:412.119600pt;}
.x1e{left:416.654933pt;}
.x1a{left:425.574667pt;}
.x30{left:433.058133pt;}
.x28{left:472.894267pt;}
.x4{left:480.453467pt;}
.x29{left:486.349467pt;}
.x5{left:492.850267pt;}
.x31{left:506.910133pt;}
.x32{left:514.620267pt;}
.x14{left:516.812400pt;}
.x15{left:522.708533pt;}
.xc{left:527.470667pt;}
.x38{left:533.820267pt;}
.xd{left:539.867600pt;}
.xe{left:547.351067pt;}
.xf{left:552.340000pt;}
.x33{left:562.998267pt;}
.x3b{left:566.928933pt;}
.x16{left:571.313200pt;}
.x3c{left:580.384133pt;}
.x6{left:616.062800pt;}
.x7{left:620.976267pt;}
.x10{left:628.157333pt;}
.x2b{left:657.713200pt;}
.x2c{left:665.499067pt;}
.x1b{left:692.636133pt;}
.x1c{left:706.091200pt;}
.x34{left:724.610800pt;}
.x1f{left:726.878533pt;}
.x35{left:738.141467pt;}
.x2a{left:743.130400pt;}
}




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