
    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_267c58ec5706e45504bc4b72.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_41e20f7f8da39efce61f3555.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_64cb2186bd5af0ac23304735.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9c751c871c91f96f13d23315.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_99143a960f72d26ca23ab2be.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_bcc18534df410c2c4baf24eb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.142090;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_4736e9efe3953cd0bb09bf41.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.810547;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_67dcdaa7508724bba09b090f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.690918;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;}
.mb{transform:matrix(0.128223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128223,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.157265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157265,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.174043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174043,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.176188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176188,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.179630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179630,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.179682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179682,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.180553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180553,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.180898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180898,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.182258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182258,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.241539,0.000000,-0.064491,0.241539,0,0);-ms-transform:matrix(0.241539,0.000000,-0.064491,0.241539,0,0);-webkit-transform:matrix(0.241539,0.000000,-0.064491,0.241539,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(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);}
.v9{vertical-align:-51.840000px;}
.vc{vertical-align:-48.960000px;}
.vd{vertical-align:-47.514000px;}
.v2{vertical-align:-33.114000px;}
.v14{vertical-align:-27.354000px;}
.v6{vertical-align:-24.480000px;}
.v12{vertical-align:-20.154000px;}
.v5{vertical-align:-17.274000px;}
.vb{vertical-align:-15.840000px;}
.v8{vertical-align:-8.634000px;}
.v19{vertical-align:-4.320000px;}
.v11{vertical-align:-2.880000px;}
.v7{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v15{vertical-align:1.440000px;}
.v4{vertical-align:8.646000px;}
.va{vertical-align:21.600000px;}
.ve{vertical-align:23.034000px;}
.vf{vertical-align:25.920000px;}
.v13{vertical-align:27.354000px;}
.v18{vertical-align:28.794000px;}
.v16{vertical-align:30.240000px;}
.v1{vertical-align:33.114000px;}
.v10{vertical-align:34.554000px;}
.v3{vertical-align:36.000000px;}
.v17{vertical-align:56.154000px;}
.ls72{letter-spacing:-1.626000px;}
.ls24{letter-spacing:-1.440000px;}
.ls42{letter-spacing:-1.434000px;}
.ls43{letter-spacing:-1.428000px;}
.ls8e{letter-spacing:-1.422000px;}
.ls50{letter-spacing:-1.380000px;}
.ls4b{letter-spacing:-1.326000px;}
.ls86{letter-spacing:-1.188000px;}
.ls6d{letter-spacing:-0.972000px;}
.ls29{letter-spacing:-0.968789px;}
.ls4f{letter-spacing:-0.966000px;}
.ls48{letter-spacing:-0.954000px;}
.ls20{letter-spacing:-0.936000px;}
.ls4e{letter-spacing:-0.876000px;}
.ls4d{letter-spacing:-0.870000px;}
.ls44{letter-spacing:-0.846000px;}
.ls59{letter-spacing:-0.720000px;}
.ls87{letter-spacing:-0.612000px;}
.ls1a{letter-spacing:-0.504000px;}
.ls22{letter-spacing:-0.492000px;}
.ls25{letter-spacing:-0.486000px;}
.ls7d{letter-spacing:-0.450000px;}
.ls1d{letter-spacing:-0.378000px;}
.ls58{letter-spacing:-0.360000px;}
.ls23{letter-spacing:-0.300000px;}
.ls1b{letter-spacing:-0.252000px;}
.ls6f{letter-spacing:-0.240000px;}
.ls93{letter-spacing:-0.234000px;}
.ls70{letter-spacing:-0.228000px;}
.ls7c{letter-spacing:-0.192000px;}
.ls73{letter-spacing:-0.186000px;}
.ls5a{letter-spacing:-0.180000px;}
.ls1e{letter-spacing:-0.144000px;}
.ls5c{letter-spacing:-0.102000px;}
.ls78{letter-spacing:-0.084000px;}
.ls96{letter-spacing:-0.018000px;}
.ls6e{letter-spacing:-0.012000px;}
.ls21{letter-spacing:-0.006000px;}
.ls1f{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.006000px;}
.ls26{letter-spacing:0.012000px;}
.ls2f{letter-spacing:0.012960px;}
.ls15{letter-spacing:0.014160px;}
.ls5b{letter-spacing:0.018000px;}
.ls66{letter-spacing:0.096000px;}
.ls4{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.132000px;}
.ls1{letter-spacing:0.144000px;}
.ls81{letter-spacing:0.234000px;}
.lsb{letter-spacing:0.246000px;}
.ls3{letter-spacing:0.252000px;}
.ls52{letter-spacing:0.288000px;}
.ls71{letter-spacing:0.300000px;}
.ls80{letter-spacing:0.303954px;}
.ls8{letter-spacing:0.306000px;}
.ls85{letter-spacing:0.309954px;}
.ls10{letter-spacing:0.360000px;}
.ls75{letter-spacing:0.414000px;}
.ls16{letter-spacing:0.460560px;}
.ls6{letter-spacing:0.462000px;}
.lsf{letter-spacing:0.468000px;}
.ls89{letter-spacing:0.480000px;}
.ls2a{letter-spacing:0.484394px;}
.ls57{letter-spacing:0.492000px;}
.ls14{letter-spacing:0.500880px;}
.ls53{letter-spacing:0.504000px;}
.ls7a{letter-spacing:0.540000px;}
.ls7b{letter-spacing:0.558917px;}
.ls6c{letter-spacing:0.570000px;}
.ls8d{letter-spacing:0.576000px;}
.ls8c{letter-spacing:0.594000px;}
.ls88{letter-spacing:0.600000px;}
.ls7f{letter-spacing:0.606000px;}
.ls8b{letter-spacing:0.612000px;}
.ls84{letter-spacing:0.618000px;}
.ls56{letter-spacing:0.630000px;}
.ls82{letter-spacing:0.636000px;}
.ls4a{letter-spacing:0.642000px;}
.lsd{letter-spacing:0.648000px;}
.ls17{letter-spacing:0.714000px;}
.ls28{letter-spacing:0.720000px;}
.lse{letter-spacing:0.723000px;}
.ls3c{letter-spacing:0.828000px;}
.ls9{letter-spacing:0.936000px;}
.lsa{letter-spacing:0.978000px;}
.ls8a{letter-spacing:1.080000px;}
.ls7{letter-spacing:1.140000px;}
.ls1c{letter-spacing:1.188000px;}
.lsc{letter-spacing:1.410000px;}
.ls18{letter-spacing:1.440000px;}
.ls27{letter-spacing:1.458000px;}
.ls5{letter-spacing:1.728000px;}
.ls76{letter-spacing:2.160000px;}
.ls91{letter-spacing:2.520000px;}
.ls92{letter-spacing:3.960000px;}
.ls5e{letter-spacing:5.040000px;}
.ls94{letter-spacing:6.834000px;}
.ls8f{letter-spacing:7.920000px;}
.ls95{letter-spacing:12.600000px;}
.ls2{letter-spacing:13.566360px;}
.ls51{letter-spacing:14.414160px;}
.ls83{letter-spacing:14.823360px;}
.ls13{letter-spacing:15.120000px;}
.ls90{letter-spacing:15.480000px;}
.ls7e{letter-spacing:16.554000px;}
.ls5d{letter-spacing:22.320000px;}
.ls77{letter-spacing:23.760000px;}
.ls49{letter-spacing:24.678000px;}
.ls45{letter-spacing:24.786000px;}
.ls2d{letter-spacing:26.331762px;}
.ls46{letter-spacing:26.778000px;}
.ls4c{letter-spacing:26.784000px;}
.ls47{letter-spacing:27.716058px;}
.ls63{letter-spacing:67.066152px;}
.ls34{letter-spacing:75.457836px;}
.ls74{letter-spacing:84.516000px;}
.ls79{letter-spacing:89.112000px;}
.ls64{letter-spacing:102.038484px;}
.ls36{letter-spacing:154.583400px;}
.ls69{letter-spacing:173.520000px;}
.ls55{letter-spacing:176.400000px;}
.ls3d{letter-spacing:183.884376px;}
.ls68{letter-spacing:199.527000px;}
.ls2c{letter-spacing:215.274000px;}
.ls6a{letter-spacing:217.149546px;}
.ls41{letter-spacing:225.354000px;}
.ls60{letter-spacing:229.073760px;}
.ls3b{letter-spacing:234.000000px;}
.ls3f{letter-spacing:235.434000px;}
.ls32{letter-spacing:241.902360px;}
.ls5f{letter-spacing:278.640000px;}
.ls61{letter-spacing:291.251052px;}
.ls35{letter-spacing:301.674000px;}
.ls67{letter-spacing:333.149400px;}
.ls19{letter-spacing:337.674000px;}
.ls31{letter-spacing:343.434000px;}
.ls3a{letter-spacing:407.578710px;}
.ls6b{letter-spacing:409.674000px;}
.ls30{letter-spacing:409.940400px;}
.ls33{letter-spacing:412.560000px;}
.ls12{letter-spacing:416.880000px;}
.ls54{letter-spacing:418.838484px;}
.ls2e{letter-spacing:421.194000px;}
.ls62{letter-spacing:424.074000px;}
.ls37{letter-spacing:461.514000px;}
.ls65{letter-spacing:488.880000px;}
.ls3e{letter-spacing:660.357720px;}
.ls40{letter-spacing:690.314160px;}
.ls2b{letter-spacing:694.497762px;}
.ls39{letter-spacing:877.219056px;}
.ls38{letter-spacing:894.467952px;}
.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;}
}
.ws125{word-spacing:-117.264948px;}
.ws12d{word-spacing:-103.962000px;}
.ws126{word-spacing:-99.429000px;}
.ws12b{word-spacing:-84.240000px;}
.ws18{word-spacing:-60.948000px;}
.ws83{word-spacing:-59.839290px;}
.ws12a{word-spacing:-59.544000px;}
.wsdd{word-spacing:-48.234000px;}
.ws84{word-spacing:-41.836500px;}
.ws7c{word-spacing:-41.628000px;}
.ws12c{word-spacing:-38.880000px;}
.ws85{word-spacing:-37.321500px;}
.ws130{word-spacing:-34.661520px;}
.ws8e{word-spacing:-33.605640px;}
.wsd7{word-spacing:-33.213516px;}
.ws75{word-spacing:-32.784190px;}
.ws82{word-spacing:-31.534944px;}
.ws88{word-spacing:-31.140954px;}
.ws12e{word-spacing:-29.820000px;}
.ws7{word-spacing:-28.140000px;}
.ws6{word-spacing:-27.462000px;}
.ws4{word-spacing:-26.622000px;}
.wsa{word-spacing:-23.010000px;}
.wsc{word-spacing:-21.238500px;}
.wse{word-spacing:-20.578500px;}
.ws1c2{word-spacing:-20.518500px;}
.ws134{word-spacing:-20.428500px;}
.ws13{word-spacing:-16.578000px;}
.ws1a{word-spacing:-16.560000px;}
.ws14{word-spacing:-15.840000px;}
.ws8a{word-spacing:-15.664500px;}
.wsd4{word-spacing:-15.639000px;}
.wsd9{word-spacing:-15.612000px;}
.ws7e{word-spacing:-15.606000px;}
.ws17{word-spacing:-15.588000px;}
.wsd2{word-spacing:-15.138000px;}
.ws8d{word-spacing:-15.132000px;}
.ws11{word-spacing:-15.124500px;}
.ws10{word-spacing:-15.120000px;}
.wsb{word-spacing:-15.114000px;}
.ws11f{word-spacing:-15.108000px;}
.wsd5{word-spacing:-15.069000px;}
.ws6c{word-spacing:-14.833500px;}
.ws69{word-spacing:-14.827500px;}
.wsf{word-spacing:-14.634000px;}
.ws16{word-spacing:-14.184000px;}
.ws77{word-spacing:-14.154000px;}
.ws6e{word-spacing:-14.116500px;}
.ws8b{word-spacing:-13.966500px;}
.ws8c{word-spacing:-13.960500px;}
.ws73{word-spacing:-13.914000px;}
.ws90{word-spacing:-13.710000px;}
.ws129{word-spacing:-13.680000px;}
.ws7f{word-spacing:-13.638000px;}
.ws122{word-spacing:-13.585500px;}
.ws1{word-spacing:-13.460892px;}
.wsdf{word-spacing:-12.598500px;}
.ws167{word-spacing:-12.526500px;}
.ws1c7{word-spacing:-12.454500px;}
.ws140{word-spacing:-12.240000px;}
.ws162{word-spacing:-12.130500px;}
.ws179{word-spacing:-12.112500px;}
.ws1c5{word-spacing:-11.644500px;}
.ws16f{word-spacing:-11.374500px;}
.ws89{word-spacing:-11.214000px;}
.wsdb{word-spacing:-11.158500px;}
.ws131{word-spacing:-10.954500px;}
.ws132{word-spacing:-10.456500px;}
.ws87{word-spacing:-10.434000px;}
.ws8f{word-spacing:-9.595500px;}
.ws81{word-spacing:-9.150000px;}
.ws19{word-spacing:-8.784000px;}
.ws1f6{word-spacing:-3.240000px;}
.ws71{word-spacing:-3.094560px;}
.ws9{word-spacing:-2.420400px;}
.ws3{word-spacing:-2.169600px;}
.wsa2{word-spacing:-2.160000px;}
.wsde{word-spacing:-2.039424px;}
.wsed{word-spacing:-1.728000px;}
.ws133{word-spacing:-1.697124px;}
.ws1e9{word-spacing:-1.560000px;}
.ws1c9{word-spacing:-1.440000px;}
.ws13f{word-spacing:-1.224000px;}
.ws1f{word-spacing:-1.188000px;}
.ws21{word-spacing:-1.140000px;}
.ws64{word-spacing:-1.080000px;}
.ws8{word-spacing:-0.956400px;}
.ws1b{word-spacing:-0.954000px;}
.ws115{word-spacing:-0.936000px;}
.ws20{word-spacing:-0.864000px;}
.ws1d2{word-spacing:-0.840000px;}
.ws1f1{word-spacing:-0.792000px;}
.wse5{word-spacing:-0.732000px;}
.ws207{word-spacing:-0.720000px;}
.ws1ee{word-spacing:-0.600000px;}
.wsd1{word-spacing:-0.570000px;}
.ws1c8{word-spacing:-0.558000px;}
.ws1d8{word-spacing:-0.540000px;}
.wsee{word-spacing:-0.504000px;}
.ws5{word-spacing:-0.386400px;}
.ws187{word-spacing:-0.378000px;}
.ws40{word-spacing:-0.366000px;}
.ws116{word-spacing:-0.360000px;}
.ws1fb{word-spacing:-0.288000px;}
.ws63{word-spacing:-0.240000px;}
.ws12f{word-spacing:-0.214560px;}
.ws160{word-spacing:-0.210000px;}
.ws10e{word-spacing:-0.180000px;}
.ws24{word-spacing:-0.138000px;}
.ws1ba{word-spacing:-0.120000px;}
.ws190{word-spacing:-0.114000px;}
.ws61{word-spacing:-0.111783px;}
.ws56{word-spacing:-0.108000px;}
.ws1aa{word-spacing:-0.096000px;}
.ws194{word-spacing:-0.048000px;}
.ws1d{word-spacing:0.000000px;}
.ws22{word-spacing:0.072000px;}
.ws14b{word-spacing:0.084000px;}
.ws10a{word-spacing:0.090000px;}
.ws23{word-spacing:0.144000px;}
.ws1d5{word-spacing:0.162000px;}
.ws1ea{word-spacing:0.180000px;}
.ws72{word-spacing:0.192720px;}
.ws26{word-spacing:0.216000px;}
.ws35{word-spacing:0.240000px;}
.wsa9{word-spacing:0.252000px;}
.wsa7{word-spacing:0.300000px;}
.ws99{word-spacing:0.354000px;}
.ws4e{word-spacing:0.360000px;}
.wsf7{word-spacing:0.432000px;}
.wse0{word-spacing:0.456000px;}
.ws9c{word-spacing:0.474000px;}
.ws10c{word-spacing:0.480000px;}
.ws150{word-spacing:0.534000px;}
.ws151{word-spacing:0.552707px;}
.ws13c{word-spacing:0.576000px;}
.ws144{word-spacing:0.624000px;}
.wse2{word-spacing:0.678000px;}
.ws139{word-spacing:0.708000px;}
.ws25{word-spacing:0.720000px;}
.ws5b{word-spacing:0.745222px;}
.ws1a4{word-spacing:0.894000px;}
.wsfe{word-spacing:0.900000px;}
.ws135{word-spacing:0.918000px;}
.wsaa{word-spacing:0.936000px;}
.ws2{word-spacing:0.977490px;}
.ws4a{word-spacing:1.038000px;}
.ws1e{word-spacing:1.044000px;}
.wsff{word-spacing:1.080000px;}
.ws14e{word-spacing:1.176000px;}
.ws14a{word-spacing:1.200000px;}
.ws159{word-spacing:1.242000px;}
.ws109{word-spacing:1.296000px;}
.ws136{word-spacing:1.332000px;}
.wsb1{word-spacing:1.368000px;}
.wsa8{word-spacing:1.404000px;}
.wscc{word-spacing:1.422000px;}
.ws118{word-spacing:1.446000px;}
.ws1a2{word-spacing:1.494000px;}
.ws46{word-spacing:1.656000px;}
.wsa4{word-spacing:1.668000px;}
.ws1c{word-spacing:1.692000px;}
.ws0{word-spacing:1.782066px;}
.ws9a{word-spacing:1.800000px;}
.ws195{word-spacing:1.944000px;}
.ws4f{word-spacing:1.980000px;}
.ws13d{word-spacing:2.010000px;}
.ws3e{word-spacing:2.064000px;}
.ws143{word-spacing:2.154000px;}
.wscd{word-spacing:2.160000px;}
.ws1f4{word-spacing:2.268000px;}
.ws1d6{word-spacing:2.292000px;}
.ws27{word-spacing:2.328000px;}
.ws142{word-spacing:2.376000px;}
.ws1f5{word-spacing:2.520000px;}
.wsb5{word-spacing:2.772000px;}
.ws153{word-spacing:2.808000px;}
.ws145{word-spacing:2.880000px;}
.ws3f{word-spacing:2.928000px;}
.ws11c{word-spacing:3.096000px;}
.ws39{word-spacing:3.186000px;}
.ws152{word-spacing:3.456000px;}
.ws33{word-spacing:3.600000px;}
.wsc1{word-spacing:3.816000px;}
.wsb8{word-spacing:3.918000px;}
.ws185{word-spacing:3.924000px;}
.wsab{word-spacing:3.996000px;}
.ws45{word-spacing:4.032000px;}
.ws186{word-spacing:4.074000px;}
.ws3d{word-spacing:4.122000px;}
.ws38{word-spacing:4.176000px;}
.wsb6{word-spacing:4.326000px;}
.ws55{word-spacing:4.536000px;}
.ws36{word-spacing:4.560000px;}
.ws1b8{word-spacing:4.752000px;}
.ws1e1{word-spacing:4.782000px;}
.ws1cc{word-spacing:4.788000px;}
.ws1cd{word-spacing:4.968000px;}
.ws9b{word-spacing:5.034000px;}
.wscb{word-spacing:5.148000px;}
.ws192{word-spacing:5.298000px;}
.wsb7{word-spacing:5.400000px;}
.wsa5{word-spacing:5.532000px;}
.ws41{word-spacing:5.616000px;}
.wsf2{word-spacing:5.688000px;}
.ws54{word-spacing:5.724000px;}
.ws3b{word-spacing:5.796000px;}
.ws18f{word-spacing:5.838000px;}
.wsc4{word-spacing:5.934000px;}
.wsc0{word-spacing:5.976000px;}
.ws2b{word-spacing:6.012000px;}
.ws201{word-spacing:6.108000px;}
.ws1af{word-spacing:6.156000px;}
.wse4{word-spacing:6.216000px;}
.ws34{word-spacing:6.276000px;}
.ws1a8{word-spacing:6.288000px;}
.ws1e4{word-spacing:6.336000px;}
.wsbf{word-spacing:6.588000px;}
.ws1c4{word-spacing:6.858642px;}
.ws1cf{word-spacing:6.906000px;}
.ws128{word-spacing:6.985440px;}
.wse9{word-spacing:7.086000px;}
.ws5e{word-spacing:7.170000px;}
.wsf1{word-spacing:7.206000px;}
.ws62{word-spacing:7.242000px;}
.ws206{word-spacing:7.266000px;}
.wsf4{word-spacing:7.290000px;}
.ws1a3{word-spacing:7.374000px;}
.ws4c{word-spacing:7.416000px;}
.ws155{word-spacing:7.452000px;}
.ws1a7{word-spacing:7.488000px;}
.wsa6{word-spacing:7.560000px;}
.ws1d1{word-spacing:7.644000px;}
.wsfd{word-spacing:7.668000px;}
.ws1bb{word-spacing:7.680000px;}
.ws9d{word-spacing:7.776000px;}
.ws10b{word-spacing:7.932000px;}
.ws100{word-spacing:8.136000px;}
.ws15a{word-spacing:8.394000px;}
.ws106{word-spacing:8.442000px;}
.ws1ab{word-spacing:8.586000px;}
.ws66{word-spacing:8.670000px;}
.ws18b{word-spacing:8.694000px;}
.wsea{word-spacing:8.856000px;}
.wsf0{word-spacing:8.874000px;}
.ws1a5{word-spacing:8.892000px;}
.ws42{word-spacing:9.000000px;}
.ws1e5{word-spacing:9.108000px;}
.ws96{word-spacing:9.144000px;}
.ws1d0{word-spacing:9.216000px;}
.ws10d{word-spacing:9.348000px;}
.ws1f7{word-spacing:9.378000px;}
.ws1fc{word-spacing:9.432000px;}
.ws9f{word-spacing:9.468000px;}
.ws110{word-spacing:9.672000px;}
.ws5a{word-spacing:9.846000px;}
.ws1ac{word-spacing:9.870000px;}
.ws11b{word-spacing:9.966000px;}
.ws11e{word-spacing:10.050000px;}
.ws67{word-spacing:10.086000px;}
.wsfa{word-spacing:10.116000px;}
.ws1b4{word-spacing:10.128000px;}
.ws59{word-spacing:10.332000px;}
.ws11a{word-spacing:10.440000px;}
.ws2f{word-spacing:10.560000px;}
.wsec{word-spacing:10.584000px;}
.ws31{word-spacing:10.620000px;}
.ws147{word-spacing:10.656000px;}
.ws1f8{word-spacing:10.788000px;}
.ws30{word-spacing:10.800000px;}
.ws1e7{word-spacing:10.920000px;}
.ws48{word-spacing:11.118000px;}
.wsf5{word-spacing:11.250000px;}
.ws188{word-spacing:11.346000px;}
.ws1db{word-spacing:11.358000px;}
.ws15d{word-spacing:11.406000px;}
.ws13b{word-spacing:11.526000px;}
.wsef{word-spacing:11.562000px;}
.ws51{word-spacing:11.736000px;}
.ws58{word-spacing:11.874000px;}
.ws119{word-spacing:12.024000px;}
.wsa1{word-spacing:12.096000px;}
.ws1ae{word-spacing:12.234000px;}
.ws44{word-spacing:12.354000px;}
.ws3c{word-spacing:12.552000px;}
.wsf9{word-spacing:12.576000px;}
.ws141{word-spacing:12.714000px;}
.ws47{word-spacing:12.798000px;}
.ws1ce{word-spacing:12.804000px;}
.ws1da{word-spacing:12.840000px;}
.ws1fe{word-spacing:12.918000px;}
.wsf6{word-spacing:13.008000px;}
.ws1bd{word-spacing:13.032000px;}
.ws1d7{word-spacing:13.320000px;}
.ws1e2{word-spacing:13.326000px;}
.ws2e{word-spacing:13.476000px;}
.ws117{word-spacing:13.500000px;}
.ws9e{word-spacing:13.650000px;}
.ws52{word-spacing:13.668000px;}
.wsce{word-spacing:13.674000px;}
.wscf{word-spacing:13.908000px;}
.ws43{word-spacing:13.998000px;}
.ws107{word-spacing:14.082000px;}
.ws50{word-spacing:14.130000px;}
.wsaf{word-spacing:14.172000px;}
.wsb3{word-spacing:14.436000px;}
.wsbc{word-spacing:14.490000px;}
.ws113{word-spacing:14.568000px;}
.wsba{word-spacing:14.610000px;}
.wsfb{word-spacing:14.634000px;}
.wsc5{word-spacing:14.652000px;}
.ws1ad{word-spacing:14.916000px;}
.ws1e8{word-spacing:14.940000px;}
.ws1ef{word-spacing:15.018000px;}
.ws60{word-spacing:15.066000px;}
.wsc7{word-spacing:15.336000px;}
.ws15f{word-spacing:15.438000px;}
.ws200{word-spacing:15.510000px;}
.ws4b{word-spacing:15.552000px;}
.wsb0{word-spacing:15.576000px;}
.ws5f{word-spacing:15.606000px;}
.ws148{word-spacing:15.642000px;}
.ws13e{word-spacing:15.654000px;}
.wse3{word-spacing:15.888000px;}
.ws137{word-spacing:16.086000px;}
.ws92{word-spacing:16.308000px;}
.ws4d{word-spacing:16.398000px;}
.ws1b1{word-spacing:16.548000px;}
.ws1a6{word-spacing:16.554000px;}
.ws156{word-spacing:16.758000px;}
.ws1e6{word-spacing:16.812000px;}
.ws1be{word-spacing:17.010000px;}
.ws14c{word-spacing:17.172000px;}
.wsf3{word-spacing:17.370000px;}
.ws18a{word-spacing:17.490000px;}
.wsb9{word-spacing:17.514000px;}
.ws18d{word-spacing:17.538000px;}
.ws98{word-spacing:17.706000px;}
.ws15e{word-spacing:17.754000px;}
.ws108{word-spacing:17.784000px;}
.ws1b2{word-spacing:17.808000px;}
.ws1f0{word-spacing:17.928000px;}
.ws28{word-spacing:18.000000px;}
.ws1e3{word-spacing:18.258000px;}
.ws146{word-spacing:18.312000px;}
.ws18e{word-spacing:18.456000px;}
.wsad{word-spacing:18.720000px;}
.ws193{word-spacing:18.870000px;}
.ws158{word-spacing:19.068000px;}
.wsae{word-spacing:19.375779px;}
.ws14f{word-spacing:19.416000px;}
.ws13a{word-spacing:19.428000px;}
.ws2d{word-spacing:19.440000px;}
.wse1{word-spacing:19.980000px;}
.ws204{word-spacing:20.004000px;}
.ws154{word-spacing:20.010000px;}
.ws111{word-spacing:20.196000px;}
.ws1f3{word-spacing:20.514000px;}
.ws114{word-spacing:20.664000px;}
.ws11d{word-spacing:20.874000px;}
.wsc3{word-spacing:20.952000px;}
.ws1b6{word-spacing:21.126000px;}
.ws93{word-spacing:21.234000px;}
.wsa0{word-spacing:21.366000px;}
.wsb4{word-spacing:21.402000px;}
.ws1f2{word-spacing:21.462000px;}
.wsf8{word-spacing:21.648000px;}
.wseb{word-spacing:21.702000px;}
.ws1d4{word-spacing:21.960000px;}
.ws14d{word-spacing:22.014000px;}
.ws1d3{word-spacing:22.212000px;}
.ws53{word-spacing:22.296000px;}
.ws102{word-spacing:22.320000px;}
.ws161{word-spacing:22.670598px;}
.ws12{word-spacing:22.825440px;}
.ws1b9{word-spacing:22.884000px;}
.wse8{word-spacing:22.932000px;}
.wsbe{word-spacing:23.010000px;}
.ws1ff{word-spacing:23.034000px;}
.wsbd{word-spacing:23.046000px;}
.ws189{word-spacing:24.054000px;}
.ws1f9{word-spacing:24.114000px;}
.ws15c{word-spacing:24.294000px;}
.ws1a9{word-spacing:24.324000px;}
.ws203{word-spacing:24.438000px;}
.ws37{word-spacing:24.528000px;}
.ws1b0{word-spacing:25.890000px;}
.wsc2{word-spacing:26.226000px;}
.ws1ed{word-spacing:26.274000px;}
.ws57{word-spacing:26.346000px;}
.wse7{word-spacing:26.370000px;}
.ws1dc{word-spacing:26.748000px;}
.wsc6{word-spacing:26.856000px;}
.ws1cb{word-spacing:27.000000px;}
.wsd0{word-spacing:27.210000px;}
.ws3a{word-spacing:27.288000px;}
.ws205{word-spacing:27.336000px;}
.ws1bc{word-spacing:27.402000px;}
.ws2c{word-spacing:27.672000px;}
.ws32{word-spacing:27.870000px;}
.ws1ec{word-spacing:28.440000px;}
.ws1d9{word-spacing:28.872000px;}
.ws1ca{word-spacing:28.890000px;}
.ws18c{word-spacing:29.508000px;}
.ws1b5{word-spacing:29.832000px;}
.wsfc{word-spacing:29.874000px;}
.ws149{word-spacing:30.210000px;}
.ws15b{word-spacing:30.630000px;}
.ws112{word-spacing:31.476000px;}
.ws94{word-spacing:31.932000px;}
.wsc8{word-spacing:31.986000px;}
.ws49{word-spacing:33.096000px;}
.ws65{word-spacing:33.336000px;}
.ws29{word-spacing:33.594000px;}
.ws138{word-spacing:33.612000px;}
.ws157{word-spacing:34.794000px;}
.ws1b3{word-spacing:35.268000px;}
.wsac{word-spacing:35.274000px;}
.ws10f{word-spacing:35.976000px;}
.ws104{word-spacing:36.720000px;}
.wse6{word-spacing:37.440000px;}
.wsb2{word-spacing:37.650000px;}
.ws1e0{word-spacing:37.854000px;}
.ws101{word-spacing:37.920000px;}
.ws202{word-spacing:39.132000px;}
.ws15{word-spacing:39.545040px;}
.ws103{word-spacing:39.612000px;}
.ws1fd{word-spacing:39.912000px;}
.ws5d{word-spacing:40.536000px;}
.ws97{word-spacing:40.824000px;}
.ws1eb{word-spacing:41.160000px;}
.ws1bf{word-spacing:41.736000px;}
.ws2a{word-spacing:42.192000px;}
.ws1de{word-spacing:43.554000px;}
.ws68{word-spacing:43.920000px;}
.ws1dd{word-spacing:45.000000px;}
.wsc9{word-spacing:45.354000px;}
.ws91{word-spacing:45.720000px;}
.wsca{word-spacing:45.846000px;}
.ws95{word-spacing:46.794000px;}
.ws1fa{word-spacing:47.736000px;}
.ws5c{word-spacing:49.674000px;}
.ws105{word-spacing:53.280000px;}
.ws6d{word-spacing:59.810754px;}
.ws1b7{word-spacing:63.330000px;}
.ws1c6{word-spacing:75.283176px;}
.wsa3{word-spacing:76.668000px;}
.ws191{word-spacing:79.074000px;}
.ws17a{word-spacing:83.883468px;}
.wsd{word-spacing:86.406000px;}
.wsbb{word-spacing:87.108000px;}
.ws17b{word-spacing:89.643468px;}
.ws196{word-spacing:91.304394px;}
.ws163{word-spacing:96.849468px;}
.ws176{word-spacing:96.861822px;}
.ws1c3{word-spacing:99.760176px;}
.ws164{word-spacing:102.609468px;}
.ws170{word-spacing:106.941822px;}
.ws17d{word-spacing:112.701822px;}
.ws7d{word-spacing:115.454400px;}
.ws175{word-spacing:117.646872px;}
.ws165{word-spacing:119.883468px;}
.ws166{word-spacing:125.667822px;}
.ws177{word-spacing:125.870268px;}
.ws172{word-spacing:131.312640px;}
.ws178{word-spacing:139.132356px;}
.ws171{word-spacing:141.715974px;}
.ws17c{word-spacing:142.929468px;}
.ws182{word-spacing:145.000872px;}
.ws174{word-spacing:146.585112px;}
.ws183{word-spacing:153.230268px;}
.ws16c{word-spacing:153.646872px;}
.ws17f{word-spacing:160.118640px;}
.ws173{word-spacing:161.341230px;}
.ws16d{word-spacing:161.870268px;}
.ws184{word-spacing:166.492356px;}
.ws169{word-spacing:167.312640px;}
.ws17e{word-spacing:170.509974px;}
.ws181{word-spacing:173.951112px;}
.ws16e{word-spacing:175.132356px;}
.ws168{word-spacing:177.715974px;}
.ws16b{word-spacing:182.585112px;}
.ws19c{word-spacing:183.886872px;}
.ws78{word-spacing:187.056120px;}
.ws180{word-spacing:190.141230px;}
.ws19d{word-spacing:193.550268px;}
.ws70{word-spacing:194.961420px;}
.ws6f{word-spacing:197.163570px;}
.ws16a{word-spacing:197.341230px;}
.ws199{word-spacing:197.552640px;}
.ws197{word-spacing:199.110822px;}
.ws19e{word-spacing:203.516076px;}
.ws1a0{word-spacing:206.812356px;}
.ws198{word-spacing:207.955974px;}
.ws19b{word-spacing:212.825112px;}
.ws120{word-spacing:224.503092px;}
.ws19a{word-spacing:227.581230px;}
.ws19f{word-spacing:236.541822px;}
.ws74{word-spacing:240.012000px;}
.ws79{word-spacing:283.107516px;}
.wsd3{word-spacing:295.110254px;}
.ws121{word-spacing:321.060942px;}
.ws123{word-spacing:336.340500px;}
.ws7a{word-spacing:363.106008px;}
.ws1df{word-spacing:373.314000px;}
.ws76{word-spacing:410.404800px;}
.ws7b{word-spacing:449.229972px;}
.ws6a{word-spacing:559.502754px;}
.wsd6{word-spacing:570.263880px;}
.ws86{word-spacing:612.633570px;}
.ws6b{word-spacing:616.005972px;}
.wsda{word-spacing:662.004960px;}
.wsdc{word-spacing:666.862194px;}
.ws1a1{word-spacing:693.678960px;}
.ws1c0{word-spacing:698.542194px;}
.ws1c1{word-spacing:702.862194px;}
.ws80{word-spacing:715.749984px;}
.ws124{word-spacing:724.139273px;}
.wsd8{word-spacing:758.163228px;}
.ws127{word-spacing:970.194900px;}
._6b{margin-left:-678.858948px;}
._74{margin-left:-661.236000px;}
._61{margin-left:-596.871875px;}
._70{margin-left:-469.437372px;}
._59{margin-left:-434.277306px;}
._5b{margin-left:-416.991306px;}
._58{margin-left:-405.125640px;}
._56{margin-left:-387.839640px;}
._31{margin-left:-323.759948px;}
._64{margin-left:-322.646118px;}
._32{margin-left:-308.148600px;}
._5d{margin-left:-306.754392px;}
._3e{margin-left:-305.583606px;}
._52{margin-left:-302.965848px;}
._53{margin-left:-292.118790px;}
._36{margin-left:-290.321724px;}
._5a{margin-left:-277.317306px;}
._6e{margin-left:-228.963372px;}
._75{margin-left:-223.765800px;}
._71{margin-left:-217.897884px;}
._4a{margin-left:-213.913290px;}
._1e{margin-left:-200.585238px;}
._4d{margin-left:-199.053000px;}
._6f{margin-left:-187.772730px;}
._6d{margin-left:-186.326730px;}
._54{margin-left:-185.241144px;}
._51{margin-left:-183.780954px;}
._38{margin-left:-182.072226px;}
._49{margin-left:-180.900000px;}
._26{margin-left:-179.434014px;}
._57{margin-left:-172.743042px;}
._65{margin-left:-169.395696px;}
._4e{margin-left:-167.973240px;}
._6a{margin-left:-165.070122px;}
._6c{margin-left:-163.325616px;}
._73{margin-left:-160.732200px;}
._27{margin-left:-158.827500px;}
._37{margin-left:-157.123500px;}
._25{margin-left:-155.941500px;}
._19{margin-left:-150.540018px;}
._5c{margin-left:-149.259840px;}
._4c{margin-left:-145.902420px;}
._18{margin-left:-143.830458px;}
._10{margin-left:-142.384458px;}
._15{margin-left:-138.064458px;}
._4b{margin-left:-135.591240px;}
._1c{margin-left:-130.386018px;}
._40{margin-left:-127.226430px;}
._50{margin-left:-126.174954px;}
._22{margin-left:-124.862238px;}
._1b{margin-left:-123.186018px;}
._41{margin-left:-121.724064px;}
._43{margin-left:-120.284064px;}
._45{margin-left:-118.218318px;}
._1f{margin-left:-117.033288px;}
._46{margin-left:-115.719636px;}
._20{margin-left:-114.191238px;}
._39{margin-left:-110.965200px;}
._2e{margin-left:-109.879290px;}
._44{margin-left:-107.467968px;}
._17{margin-left:-104.950458px;}
._f{margin-left:-103.504458px;}
._24{margin-left:-97.354014px;}
._1d{margin-left:-95.681508px;}
._2d{margin-left:-93.562380px;}
._2c{margin-left:-92.122380px;}
._33{margin-left:-90.724080px;}
._30{margin-left:-89.017200px;}
._1a{margin-left:-87.243000px;}
._42{margin-left:-82.987968px;}
._55{margin-left:-79.679640px;}
._23{margin-left:-74.081508px;}
._48{margin-left:-72.907968px;}
._21{margin-left:-64.001508px;}
._47{margin-left:-62.827968px;}
._e{margin-left:-61.750458px;}
._16{margin-left:-60.304458px;}
._2b{margin-left:-58.532472px;}
._60{margin-left:-50.069928px;}
._63{margin-left:-45.204000px;}
._13{margin-left:-40.740888px;}
._66{margin-left:-36.061086px;}
._3f{margin-left:-34.117638px;}
._69{margin-left:-24.494400px;}
._68{margin-left:-23.224320px;}
._67{margin-left:-21.833280px;}
._2a{margin-left:-20.415648px;}
._78{margin-left:-19.256994px;}
._77{margin-left:-17.775978px;}
._34{margin-left:-16.274262px;}
._3a{margin-left:-14.319690px;}
._8c{margin-left:-13.080864px;}
._72{margin-left:-11.868108px;}
._29{margin-left:-10.822434px;}
._b{margin-left:-9.794670px;}
._5f{margin-left:-8.478468px;}
._c{margin-left:-7.089798px;}
._9{margin-left:-5.434140px;}
._7{margin-left:-4.038690px;}
._0{margin-left:-2.138130px;}
._4{margin-left:-1.028088px;}
._1{width:1.472934px;}
._3{width:2.731158px;}
._d{width:3.838200px;}
._3b{width:5.201280px;}
._3c{width:6.350316px;}
._3d{width:8.146980px;}
._6{width:9.412284px;}
._5{width:12.375468px;}
._11{width:14.557494px;}
._14{width:15.867282px;}
._28{width:17.467506px;}
._a{width:18.782400px;}
._76{width:20.113704px;}
._35{width:21.669492px;}
._12{width:23.678946px;}
._2f{width:25.191612px;}
._8e{width:32.347386px;}
._5e{width:38.759022px;}
._8d{width:42.566982px;}
._8f{width:59.067876px;}
._4f{width:61.664694px;}
._7e{width:98.455566px;}
._80{width:109.348074px;}
._7f{width:118.041588px;}
._82{width:119.475588px;}
._81{width:121.125504px;}
._83{width:127.249566px;}
._86{width:130.442640px;}
._84{width:132.040896px;}
._79{width:134.455566px;}
._7c{width:143.408640px;}
._7a{width:145.006896px;}
._7b{width:161.235588px;}
._89{width:164.695566px;}
._88{width:182.059038px;}
._85{width:184.281588px;}
._87{width:196.444710px;}
._8b{width:248.522640px;}
._8a{width:250.120896px;}
._7d{width:297.348624px;}
._62{width:565.169503px;}
._2{width:601.977108px;}
._8{width:1258.535904px;}
.fc3{color:rgb(0,71,255);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs15{font-size:41.508000px;}
.fs1d{font-size:41.544000px;}
.fsf{font-size:41.574000px;}
.fs24{font-size:41.760000px;}
.fs19{font-size:41.904000px;}
.fsd{font-size:42.150000px;}
.fs11{font-size:42.246000px;}
.fs21{font-size:42.594000px;}
.fs0{font-size:47.514000px;}
.fs6{font-size:58.626000px;}
.fsb{font-size:59.286000px;}
.fs1c{font-size:59.346000px;}
.fse{font-size:59.400000px;}
.fs25{font-size:59.652000px;}
.fs18{font-size:59.856000px;}
.fsc{font-size:60.210000px;}
.fs12{font-size:60.360000px;}
.fs4{font-size:60.480000px;}
.fs9{font-size:60.679723px;}
.fs1f{font-size:60.684000px;}
.fs20{font-size:60.846000px;}
.fs10{font-size:61.480836px;}
.fs7{font-size:62.598670px;}
.fs3{font-size:72.000000px;}
.fs13{font-size:80.784000px;}
.fs16{font-size:80.934000px;}
.fs26{font-size:81.114000px;}
.fs17{font-size:81.558000px;}
.fs1a{font-size:82.050000px;}
.fs1e{font-size:82.308000px;}
.fs5{font-size:83.514000px;}
.fsa{font-size:83.568000px;}
.fs1b{font-size:84.684000px;}
.fs2{font-size:86.400000px;}
.fs27{font-size:89.094000px;}
.fs23{font-size:89.478000px;}
.fs14{font-size:93.942000px;}
.fs1{font-size:108.000000px;}
.fs22{font-size:114.840000px;}
.y0{bottom:0.000000px;}
.y42{bottom:3.241500px;}
.y50{bottom:3.600000px;}
.y40{bottom:3.601500px;}
.y9f{bottom:4.320000px;}
.y98{bottom:4.321500px;}
.y69{bottom:4.680000px;}
.yb2{bottom:4.681500px;}
.y9a{bottom:5.041500px;}
.y2{bottom:55.800000px;}
.y247{bottom:111.637500px;}
.y1e4{bottom:113.041500px;}
.y179{bottom:115.201500px;}
.y1f1{bottom:117.720000px;}
.y12e{bottom:119.520000px;}
.y12d{bottom:119.569500px;}
.y1b7{bottom:121.348500px;}
.y14d{bottom:123.135000px;}
.y58{bottom:124.927500px;}
.y246{bottom:125.316000px;}
.y2b{bottom:125.694000px;}
.y1e3{bottom:126.720000px;}
.ya4{bottom:128.520000px;}
.y130{bottom:131.400000px;}
.y178{bottom:132.480000px;}
.y1b6{bottom:138.627000px;}
.y245{bottom:138.994500px;}
.y14c{bottom:140.413500px;}
.y12f{bottom:140.760000px;}
.y1e2{bottom:141.478500px;}
.y57{bottom:142.206000px;}
.ya3{bottom:145.798500px;}
.y224{bottom:146.880000px;}
.y177{bottom:149.758500px;}
.y2a{bottom:151.252500px;}
.y1b5{bottom:155.905500px;}
.y1e1{bottom:156.238500px;}
.y1f0{bottom:156.600000px;}
.y14b{bottom:157.692000px;}
.y56{bottom:159.484500px;}
.y244{bottom:161.673000px;}
.y12c{bottom:167.449500px;}
.y29{bottom:168.531000px;}
.y207{bottom:169.921500px;}
.y1e0{bottom:170.281500px;}
.y1b4{bottom:173.184000px;}
.y27f{bottom:173.628000px;}
.ya0{bottom:174.238500px;}
.y14a{bottom:174.970500px;}
.y243{bottom:174.993000px;}
.ya2{bottom:183.238500px;}
.y206{bottom:183.960000px;}
.y12b{bottom:184.728000px;}
.y28{bottom:185.809500px;}
.y9d{bottom:187.198500px;}
.y242{bottom:188.671500px;}
.y1b3{bottom:190.462500px;}
.y27e{bottom:190.906500px;}
.y9e{bottom:192.238500px;}
.y149{bottom:192.249000px;}
.y1df{bottom:194.040000px;}
.ya1{bottom:196.558500px;}
.y1ef{bottom:197.280000px;}
.y55{bottom:199.083000px;}
.y12a{bottom:202.006500px;}
.y241{bottom:202.710000px;}
.y27{bottom:203.088000px;}
.y1b2{bottom:207.381000px;}
.yf6{bottom:207.726000px;}
.y27d{bottom:207.825000px;}
.yfd{bottom:208.446000px;}
.y148{bottom:209.527500px;}
.y100{bottom:212.044500px;}
.yfa{bottom:212.046000px;}
.y240{bottom:216.388500px;}
.yf5{bottom:217.804500px;}
.y129{bottom:219.285000px;}
.y26{bottom:220.366500px;}
.y1b1{bottom:224.659500px;}
.y27c{bottom:225.103500px;}
.y1de{bottom:226.798500px;}
.y147{bottom:226.806000px;}
.y99{bottom:227.878500px;}
.y97{bottom:228.598500px;}
.y9b{bottom:228.958500px;}
.yfe{bottom:231.124500px;}
.yf8{bottom:232.206000px;}
.y9c{bottom:232.918500px;}
.y101{bottom:234.723000px;}
.yfb{bottom:234.724500px;}
.y128{bottom:236.563500px;}
.y25{bottom:237.645000px;}
.y23f{bottom:239.067000px;}
.y1dd{bottom:241.200000px;}
.y27b{bottom:242.382000px;}
.yf7{bottom:243.366000px;}
.y146{bottom:244.084500px;}
.y1b0{bottom:250.579500px;}
.y23e{bottom:252.387000px;}
.yff{bottom:253.444500px;}
.y127{bottom:253.842000px;}
.y1dc{bottom:255.958500px;}
.yf9{bottom:256.686000px;}
.y102{bottom:257.401500px;}
.yfc{bottom:257.403000px;}
.y27a{bottom:259.660500px;}
.y145{bottom:261.363000px;}
.y96{bottom:261.367500px;}
.y24{bottom:263.203500px;}
.y54{bottom:264.601500px;}
.y23d{bottom:266.425500px;}
.y1af{bottom:267.858000px;}
.y1db{bottom:270.360000px;}
.y126{bottom:271.120500px;}
.y279{bottom:276.939000px;}
.y95{bottom:278.286000px;}
.y144{bottom:278.641500px;}
.y23c{bottom:280.104000px;}
.y23{bottom:280.482000px;}
.y53{bottom:281.880000px;}
.y1da{bottom:285.120000px;}
.y1ae{bottom:285.136500px;}
.yf4{bottom:286.204500px;}
.y125{bottom:288.399000px;}
.y278{bottom:294.217500px;}
.y94{bottom:295.564500px;}
.y22{bottom:297.760500px;}
.y1d9{bottom:299.520000px;}
.y1ad{bottom:302.415000px;}
.y23b{bottom:302.782500px;}
.yf3{bottom:303.483000px;}
.y4f{bottom:307.440000px;}
.y51{bottom:307.798500px;}
.y4e{bottom:311.046000px;}
.y52{bottom:311.398500px;}
.y277{bottom:311.496000px;}
.y1d8{bottom:313.920000px;}
.y21{bottom:315.039000px;}
.y143{bottom:316.081500px;}
.y23a{bottom:316.102500px;}
.y1ac{bottom:319.333500px;}
.yf2{bottom:320.401500px;}
.y124{bottom:327.639000px;}
.y1d7{bottom:327.958500px;}
.y276{bottom:328.774500px;}
.y142{bottom:329.761500px;}
.y239{bottom:329.781000px;}
.y20{bottom:332.317500px;}
.y93{bottom:334.444500px;}
.y4d{bottom:337.686000px;}
.y223{bottom:339.157500px;}
.y1d6{bottom:342.360000px;}
.y141{bottom:343.440000px;}
.y238{bottom:343.819500px;}
.y275{bottom:346.053000px;}
.ye6{bottom:347.398500px;}
.yeb{bottom:347.757000px;}
.y1f{bottom:349.596000px;}
.yed{bottom:351.717000px;}
.ye9{bottom:351.718500px;}
.y123{bottom:351.757500px;}
.y4c{bottom:354.964500px;}
.y222{bottom:356.436000px;}
.y1d5{bottom:357.478500px;}
.y1ab{bottom:358.213500px;}
.ye7{bottom:361.077000px;}
.y274{bottom:363.331500px;}
.yea{bottom:363.597000px;}
.yef{bottom:363.598500px;}
.yf1{bottom:363.601500px;}
.y237{bottom:366.498000px;}
.y1e{bottom:366.874500px;}
.y8c{bottom:368.281500px;}
.yec{bottom:370.077000px;}
.y1d4{bottom:371.539500px;}
.y88{bottom:372.240000px;}
.y4b{bottom:372.243000px;}
.yee{bottom:373.677000px;}
.yf0{bottom:373.680000px;}
.y221{bottom:373.714500px;}
.ye8{bottom:374.397000px;}
.y85{bottom:379.078500px;}
.y236{bottom:379.818000px;}
.y176{bottom:381.243000px;}
.y1d{bottom:384.153000px;}
.y8b{bottom:385.200000px;}
.y91{bottom:385.204500px;}
.y1d3{bottom:385.218000px;}
.y273{bottom:388.890000px;}
.y4a{bottom:389.521500px;}
.y8d{bottom:390.601500px;}
.y220{bottom:390.993000px;}
.y1aa{bottom:391.332000px;}
.y235{bottom:393.496500px;}
.y89{bottom:394.560000px;}
.y8f{bottom:394.563000px;}
.y175{bottom:398.521500px;}
.y86{bottom:401.398500px;}
.y1c{bottom:401.431500px;}
.ye5{bottom:403.953000px;}
.y49{bottom:404.278500px;}
.y272{bottom:406.168500px;}
.y48{bottom:406.440000px;}
.y47{bottom:406.443000px;}
.y8a{bottom:407.160000px;}
.y92{bottom:407.164500px;}
.y21f{bottom:408.271500px;}
.y1a9{bottom:408.610500px;}
.y8e{bottom:412.561500px;}
.y234{bottom:416.175000px;}
.y90{bottom:416.523000px;}
.y122{bottom:417.637500px;}
.y1b{bottom:418.710000px;}
.ye4{bottom:421.231500px;}
.y1d2{bottom:423.016500px;}
.y87{bottom:423.358500px;}
.y271{bottom:423.447000px;}
.y170{bottom:425.158500px;}
.y46{bottom:425.163000px;}
.y21e{bottom:425.190000px;}
.y1a8{bottom:425.889000px;}
.y233{bottom:429.495000px;}
.y121{bottom:434.916000px;}
.y172{bottom:437.038500px;}
.y174{bottom:437.040000px;}
.ye3{bottom:438.510000px;}
.y270{bottom:440.725500px;}
.y45{bottom:442.081500px;}
.y21d{bottom:442.468500px;}
.y1a7{bottom:443.167500px;}
.y232{bottom:443.533500px;}
.y1d1{bottom:445.695000px;}
.y171{bottom:446.758500px;}
.y173{bottom:446.760000px;}
.y84{bottom:447.124500px;}
.y120{bottom:452.194500px;}
.y205{bottom:454.681500px;}
.ye2{bottom:455.428500px;}
.y231{bottom:457.212000px;}
.y1a{bottom:457.950000px;}
.y26f{bottom:458.004000px;}
.y44{bottom:459.360000px;}
.y21c{bottom:459.747000px;}
.y1d0{bottom:462.973500px;}
.y83{bottom:464.043000px;}
.y204{bottom:468.360000px;}
.y11f{bottom:469.473000px;}
.ye1{bottom:472.707000px;}
.y1ee{bottom:473.760000px;}
.y16f{bottom:475.206000px;}
.y26e{bottom:475.282500px;}
.y230{bottom:479.890500px;}
.y1cf{bottom:480.252000px;}
.y82{bottom:481.321500px;}
.y1a6{bottom:482.766000px;}
.y3f{bottom:485.278500px;}
.y41{bottom:485.638500px;}
.y21b{bottom:485.667000px;}
.y11e{bottom:486.391500px;}
.y1ed{bottom:487.438500px;}
.y3e{bottom:488.956500px;}
.y43{bottom:489.240000px;}
.ye0{bottom:489.985500px;}
.y16e{bottom:492.124500px;}
.y26d{bottom:492.561000px;}
.y22f{bottom:493.210500px;}
.y1ce{bottom:497.530500px;}
.y81{bottom:498.600000px;}
.y21a{bottom:502.945500px;}
.y11d{bottom:503.670000px;}
.y22e{bottom:507.249000px;}
.ydf{bottom:507.264000px;}
.y16d{bottom:509.403000px;}
.y26c{bottom:509.479500px;}
.y1cd{bottom:514.809000px;}
.y3d{bottom:515.235000px;}
.y80{bottom:515.878500px;}
.y219{bottom:520.224000px;}
.y22d{bottom:520.927500px;}
.y11c{bottom:520.948500px;}
.y140{bottom:523.080000px;}
.y19{bottom:523.468500px;}
.yde{bottom:524.542500px;}
.y16c{bottom:526.681500px;}
.y26b{bottom:526.758000px;}
.y1cc{bottom:532.087500px;}
.y3c{bottom:532.513500px;}
.y218{bottom:537.142500px;}
.y18{bottom:540.747000px;}
.ydd{bottom:541.821000px;}
.y16b{bottom:543.960000px;}
.y1a5{bottom:548.284500px;}
.y1cb{bottom:549.366000px;}
.y217{bottom:554.421000px;}
.y7f{bottom:554.758500px;}
.y22c{bottom:558.006000px;}
.y3b{bottom:558.072000px;}
.ydc{bottom:559.099500px;}
.y11b{bottom:559.828500px;}
.y1a4{bottom:565.563000px;}
.y26a{bottom:566.356500px;}
.y1ca{bottom:566.644500px;}
.y216{bottom:571.699500px;}
.y3a{bottom:575.350500px;}
.ydb{bottom:576.378000px;}
.y17{bottom:580.345500px;}
.y16a{bottom:582.840000px;}
.y1a3{bottom:582.841500px;}
.y1c9{bottom:583.563000px;}
.y215{bottom:588.978000px;}
.y7a{bottom:590.758500px;}
.y39{bottom:592.629000px;}
.y11a{bottom:592.947000px;}
.yda{bottom:593.656500px;}
.y7d{bottom:599.758500px;}
.y1c8{bottom:600.841500px;}
.y7c{bottom:603.718500px;}
.y214{bottom:606.256500px;}
.y7e{bottom:609.478500px;}
.y38{bottom:609.907500px;}
.y19e{bottom:610.200000px;}
.y119{bottom:610.225500px;}
.y7b{bottom:613.078500px;}
.y1a0{bottom:614.160000px;}
.y169{bottom:615.958500px;}
.yd9{bottom:619.215000px;}
.y22b{bottom:623.524500px;}
.y213{bottom:623.535000px;}
.y1a2{bottom:626.040000px;}
.y37{bottom:627.186000px;}
.y118{bottom:627.504000px;}
.y269{bottom:631.515000px;}
.y19f{bottom:632.160000px;}
.y168{bottom:633.237000px;}
.y1a1{bottom:635.760000px;}
.yd8{bottom:636.493500px;}
.y1c7{bottom:638.640000px;}
.y22a{bottom:640.803000px;}
.y79{bottom:644.041500px;}
.y36{bottom:644.464500px;}
.y117{bottom:644.782500px;}
.y268{bottom:644.835000px;}
.y16{bottom:645.864000px;}
.y212{bottom:649.093500px;}
.y1c6{bottom:652.318500px;}
.yd7{bottom:653.772000px;}
.y162{bottom:660.238500px;}
.y78{bottom:661.320000px;}
.y35{bottom:661.743000px;}
.y116{bottom:662.061000px;}
.y160{bottom:663.478500px;}
.y15{bottom:663.502500px;}
.y19d{bottom:663.843000px;}
.y211{bottom:666.372000px;}
.y15f{bottom:666.714000px;}
.y165{bottom:666.717000px;}
.y267{bottom:667.513500px;}
.y166{bottom:671.035500px;}
.yd6{bottom:671.050500px;}
.y161{bottom:675.718500px;}
.y164{bottom:677.517000px;}
.y34{bottom:679.021500px;}
.y115{bottom:679.339500px;}
.y229{bottom:680.043000px;}
.y14{bottom:680.421000px;}
.y266{bottom:680.833500px;}
.y19c{bottom:681.121500px;}
.y210{bottom:683.650500px;}
.y163{bottom:683.997000px;}
.y75{bottom:687.960000px;}
.y71{bottom:691.918500px;}
.y167{bottom:693.357000px;}
.y265{bottom:694.872000px;}
.y114{bottom:696.618000px;}
.y13{bottom:697.699500px;}
.y19b{bottom:698.040000px;}
.y20f{bottom:700.929000px;}
.y72{bottom:704.878500px;}
.y77{bottom:704.880000px;}
.yd5{bottom:709.569000px;}
.y76{bottom:710.638500px;}
.y13f{bottom:712.105500px;}
.y113{bottom:713.536500px;}
.y74{bottom:714.238500px;}
.y12{bottom:714.978000px;}
.y264{bottom:717.550500px;}
.y20e{bottom:718.207500px;}
.y33{bottom:718.261500px;}
.y73{bottom:721.078500px;}
.y159{bottom:721.797000px;}
.y156{bottom:721.798500px;}
.y193{bottom:728.995500px;}
.y196{bottom:728.997000px;}
.y18f{bottom:728.998500px;}
.y198{bottom:729.000000px;}
.y13e{bottom:729.384000px;}
.y112{bottom:730.815000px;}
.y263{bottom:730.870500px;}
.y15d{bottom:731.874000px;}
.y11{bottom:732.256500px;}
.y190{bottom:734.035500px;}
.y18d{bottom:734.038500px;}
.y158{bottom:735.117000px;}
.y155{bottom:735.118500px;}
.y20d{bottom:735.486000px;}
.y15e{bottom:735.834000px;}
.y15b{bottom:735.835500px;}
.y18b{bottom:737.278500px;}
.y197{bottom:740.875500px;}
.y18e{bottom:740.877000px;}
.y19a{bottom:740.878500px;}
.yd4{bottom:743.049000px;}
.y262{bottom:744.549000px;}
.y15a{bottom:744.835500px;}
.y157{bottom:744.837000px;}
.y70{bottom:745.206000px;}
.y15c{bottom:745.555500px;}
.y18a{bottom:745.918500px;}
.y13d{bottom:746.662500px;}
.y111{bottom:748.093500px;}
.y191{bottom:749.515500px;}
.y18c{bottom:749.518500px;}
.y10{bottom:749.535000px;}
.y194{bottom:750.235500px;}
.y195{bottom:750.237000px;}
.y199{bottom:750.238500px;}
.y203{bottom:751.680000px;}
.y20c{bottom:752.764500px;}
.y192{bottom:757.074000px;}
.y261{bottom:758.587500px;}
.yd3{bottom:760.327500px;}
.y6f{bottom:762.484500px;}
.y13c{bottom:763.941000px;}
.y228{bottom:766.081500px;}
.y202{bottom:766.438500px;}
.yf{bottom:766.813500px;}
.y20b{bottom:770.043000px;}
.y260{bottom:772.266000px;}
.y154{bottom:775.086000px;}
.y1ec{bottom:778.681500px;}
.y6e{bottom:779.763000px;}
.y227{bottom:780.121500px;}
.y201{bottom:780.838500px;}
.y13b{bottom:781.219500px;}
.y189{bottom:781.579500px;}
.ye{bottom:784.092000px;}
.y32{bottom:784.141500px;}
.y110{bottom:786.973500px;}
.yc8{bottom:787.321500px;}
.ycc{bottom:787.324500px;}
.yd1{bottom:787.686000px;}
.yce{bottom:791.286000px;}
.yc5{bottom:791.638500px;}
.y1eb{bottom:792.720000px;}
.y226{bottom:794.878500px;}
.y25f{bottom:794.944500px;}
.y200{bottom:795.238500px;}
.yc6{bottom:796.680000px;}
.yca{bottom:796.683000px;}
.y13a{bottom:798.498000px;}
.y6c{bottom:800.641500px;}
.yd{bottom:801.370500px;}
.y31{bottom:801.420000px;}
.yd0{bottom:803.526000px;}
.yc7{bottom:804.600000px;}
.ycb{bottom:804.603000px;}
.y6d{bottom:804.960000px;}
.y10f{bottom:807.492000px;}
.yc3{bottom:808.198500px;}
.y25e{bottom:808.264500px;}
.yc4{bottom:808.558500px;}
.yd2{bottom:809.286000px;}
.y1ff{bottom:810.000000px;}
.ycf{bottom:812.886000px;}
.y153{bottom:813.966000px;}
.yc9{bottom:814.321500px;}
.ycd{bottom:814.324500px;}
.y139{bottom:815.776500px;}
.yc{bottom:818.649000px;}
.y30{bottom:818.698500px;}
.y188{bottom:820.098000px;}
.y25d{bottom:821.943000px;}
.y1fe{bottom:824.401500px;}
.y20a{bottom:826.561500px;}
.y68{bottom:829.800000px;}
.y138{bottom:833.055000px;}
.y6a{bottom:834.480000px;}
.yb{bottom:835.927500px;}
.y2f{bottom:835.977000px;}
.y25c{bottom:835.981500px;}
.y1fd{bottom:838.440000px;}
.y6b{bottom:838.798500px;}
.y10e{bottom:840.972000px;}
.ybe{bottom:844.917000px;}
.y152{bottom:847.084500px;}
.y25b{bottom:849.660000px;}
.y137{bottom:850.333500px;}
.yc2{bottom:852.478500px;}
.yb7{bottom:852.480000px;}
.yb4{bottom:852.481500px;}
.y1fc{bottom:852.838500px;}
.ya{bottom:853.206000px;}
.y2e{bottom:853.255500px;}
.y187{bottom:853.578000px;}
.ybd{bottom:858.237000px;}
.y10d{bottom:858.250500px;}
.y151{bottom:864.363000px;}
.y67{bottom:864.379500px;}
.y1fb{bottom:867.261000px;}
.y136{bottom:867.612000px;}
.y9{bottom:870.124500px;}
.y2d{bottom:870.174000px;}
.y186{bottom:870.856500px;}
.yc0{bottom:872.277000px;}
.y25a{bottom:872.338500px;}
.ybb{bottom:875.157000px;}
.yb8{bottom:875.158500px;}
.yb3{bottom:875.160000px;}
.y10c{bottom:875.169000px;}
.yb6{bottom:879.478500px;}
.y1fa{bottom:881.299500px;}
.y150{bottom:881.641500px;}
.y66{bottom:881.658000px;}
.y259{bottom:885.658500px;}
.ybf{bottom:885.955500px;}
.y8{bottom:887.403000px;}
.y2c{bottom:887.452500px;}
.y185{bottom:887.775000px;}
.y209{bottom:891.361500px;}
.y10b{bottom:892.447500px;}
.yb1{bottom:892.798500px;}
.y135{bottom:893.170500px;}
.yba{bottom:893.877000px;}
.ybc{bottom:897.477000px;}
.yb9{bottom:897.478500px;}
.yb5{bottom:897.480000px;}
.y65{bottom:898.936500px;}
.y258{bottom:899.697000px;}
.yc1{bottom:899.997000px;}
.y184{bottom:905.053500px;}
.y1f9{bottom:905.058000px;}
.y208{bottom:905.400000px;}
.y10a{bottom:909.726000px;}
.y134{bottom:910.449000px;}
.y257{bottom:913.375500px;}
.y64{bottom:916.215000px;}
.y14f{bottom:919.081500px;}
.y183{bottom:922.332000px;}
.y109{bottom:927.004500px;}
.y133{bottom:927.727500px;}
.y1f8{bottom:927.736500px;}
.yb0{bottom:928.815000px;}
.y14e{bottom:933.120000px;}
.y256{bottom:936.054000px;}
.y108{bottom:944.283000px;}
.y1f7{bottom:945.015000px;}
.yaf{bottom:946.093500px;}
.y7{bottom:947.163000px;}
.y255{bottom:949.374000px;}
.y1c5{bottom:950.040000px;}
.y63{bottom:954.733500px;}
.y182{bottom:961.212000px;}
.y107{bottom:961.561500px;}
.y1f6{bottom:962.293500px;}
.yae{bottom:963.372000px;}
.y254{bottom:963.412500px;}
.y1c4{bottom:964.440000px;}
.y132{bottom:966.967500px;}
.y253{bottom:977.091000px;}
.y225{bottom:977.760000px;}
.y106{bottom:978.840000px;}
.y1c3{bottom:979.198500px;}
.y1f5{bottom:979.572000px;}
.yad{bottom:980.650500px;}
.y6{bottom:985.681500px;}
.y62{bottom:987.852000px;}
.y252{bottom:990.769500px;}
.y131{bottom:991.447500px;}
.y1c2{bottom:993.598500px;}
.y181{bottom:994.330500px;}
.y1f4{bottom:996.850500px;}
.yac{bottom:997.929000px;}
.y61{bottom:1005.130500px;}
.y1c1{bottom:1008.360000px;}
.y180{bottom:1011.609000px;}
.y5{bottom:1011.960000px;}
.y251{bottom:1013.448000px;}
.y1f3{bottom:1014.129000px;}
.yab{bottom:1015.207500px;}
.y105{bottom:1016.280000px;}
.y60{bottom:1022.409000px;}
.y1c0{bottom:1022.760000px;}
.y250{bottom:1026.768000px;}
.y17f{bottom:1028.887500px;}
.y104{bottom:1030.321500px;}
.y1f2{bottom:1031.407500px;}
.yaa{bottom:1032.126000px;}
.y1bf{bottom:1037.160000px;}
.y5f{bottom:1039.687500px;}
.y24f{bottom:1040.806500px;}
.y4{bottom:1045.440000px;}
.y17e{bottom:1046.166000px;}
.ya9{bottom:1049.404500px;}
.y1be{bottom:1051.198500px;}
.y103{bottom:1054.440000px;}
.y24e{bottom:1054.485000px;}
.y5e{bottom:1056.966000px;}
.y17d{bottom:1063.444500px;}
.y1bd{bottom:1065.598500px;}
.ya8{bottom:1066.683000px;}
.y24d{bottom:1068.163500px;}
.y1ea{bottom:1071.720000px;}
.y5d{bottom:1074.244500px;}
.y1bc{bottom:1080.720000px;}
.y17c{bottom:1080.723000px;}
.ya7{bottom:1083.961500px;}
.y1e9{bottom:1086.480000px;}
.y24c{bottom:1090.842000px;}
.y5c{bottom:1091.523000px;}
.y1bb{bottom:1094.763000px;}
.y1e8{bottom:1100.878500px;}
.ya6{bottom:1101.240000px;}
.y24b{bottom:1104.520500px;}
.y5b{bottom:1108.801500px;}
.y3{bottom:1110.240000px;}
.y1e7{bottom:1115.638500px;}
.y24a{bottom:1118.199000px;}
.y1ba{bottom:1118.521500px;}
.y17b{bottom:1119.241500px;}
.y5a{bottom:1126.080000px;}
.y1e6{bottom:1130.040000px;}
.y1b9{bottom:1131.841500px;}
.y249{bottom:1131.877500px;}
.ya5{bottom:1139.758500px;}
.y17a{bottom:1139.760000px;}
.y59{bottom:1143.358500px;}
.y1e5{bottom:1144.800000px;}
.y1b8{bottom:1145.880000px;}
.y248{bottom:1145.916000px;}
.y1{bottom:1189.440000px;}
.hc{height:16.558500px;}
.h10{height:16.560000px;}
.ha{height:16.918500px;}
.h25{height:20.520000px;}
.h27{height:21.240000px;}
.h13{height:22.318500px;}
.h2b{height:23.040000px;}
.h34{height:23.400000px;}
.h32{height:23.760000px;}
.h2c{height:24.120000px;}
.h50{height:38.508729px;}
.h47{height:38.681016px;}
.h29{height:40.737832px;}
.h38{height:40.752879px;}
.h1e{height:40.782308px;}
.h53{height:40.802607px;}
.h4c{height:40.964766px;}
.h4a{height:40.985156px;}
.h30{height:41.106023px;}
.h19{height:41.347339px;}
.h17{height:41.367920px;}
.h22{height:41.441511px;}
.h20{height:41.462139px;}
.h43{height:41.803682px;}
.h5{height:46.632393px;}
.h3b{height:47.885203px;}
.h55{height:48.072393px;}
.h2{height:49.555617px;}
.hd{height:54.303478px;}
.h37{height:54.970392px;}
.h51{height:55.020410px;}
.h49{height:55.253830px;}
.h31{height:55.442789px;}
.h36{height:55.770688px;}
.h24{height:55.909629px;}
.h11{height:56.205778px;}
.h3e{height:56.209740px;}
.h40{height:56.359796px;}
.h1f{height:56.947826px;}
.hb{height:57.509587px;}
.h9{height:57.538213px;}
.h1a{height:57.917812px;}
.he{height:57.983241px;}
.h15{height:58.185967px;}
.h39{height:58.215876px;}
.h3a{height:58.244854px;}
.h1c{height:58.268848px;}
.h1b{height:58.297852px;}
.h4b{height:58.545176px;}
.h2f{height:58.716164px;}
.h2e{height:58.745391px;}
.h18{height:59.063423px;}
.h16{height:59.092822px;}
.h23{height:59.210566px;}
.h21{height:59.240039px;}
.h7{height:59.328281px;}
.h6{height:59.357813px;}
.h3f{height:59.528396px;}
.h3d{height:59.558027px;}
.h41{height:59.687312px;}
.h44{height:59.717021px;}
.h59{height:60.952500px;}
.h1d{height:62.382308px;}
.h42{height:64.837682px;}
.h54{height:65.512594px;}
.h12{height:72.562500px;}
.hf{height:74.158594px;}
.h26{height:74.827758px;}
.h2a{height:74.966698px;}
.h4e{height:75.133427px;}
.h52{height:75.356607px;}
.h58{height:75.426393px;}
.h2d{height:75.544690px;}
.h33{height:76.000415px;}
.h3c{height:76.239393px;}
.h56{height:76.872393px;}
.h14{height:77.406492px;}
.h35{height:78.440209px;}
.h4{height:79.746393px;}
.h48{height:81.173830px;}
.h4f{height:82.525058px;}
.h46{height:82.880745px;}
.h8{height:84.166453px;}
.h4d{height:84.436049px;}
.h28{height:87.015612px;}
.h57{height:104.039203px;}
.h45{height:106.372793px;}
.h3{height:108.843750px;}
.h0{height:1262.878500px;}
.h1{height:1263.000000px;}
.w6{width:3.598500px;}
.w2{width:4.318500px;}
.wc{width:4.680000px;}
.wa{width:5.038500px;}
.wb{width:5.040000px;}
.w5{width:6.478500px;}
.w3{width:7.558500px;}
.w8{width:7.560000px;}
.w7{width:8.278500px;}
.w9{width:9.000000px;}
.w4{width:9.720000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:84.960000px;}
.x27{left:91.102500px;}
.x9d{left:95.038500px;}
.x9e{left:98.278500px;}
.xa1{left:100.078500px;}
.x94{left:101.880000px;}
.xa2{left:103.680000px;}
.x95{left:105.118500px;}
.x7{left:106.191000px;}
.x26{left:107.661000px;}
.x4{left:109.071000px;}
.x98{left:111.238500px;}
.x97{left:112.680000px;}
.x99{left:113.760000px;}
.x96{left:115.918500px;}
.x2{left:121.318500px;}
.x8{left:127.431000px;}
.x7a{left:154.804500px;}
.x25{left:163.090500px;}
.xaa{left:164.520000px;}
.x9c{left:172.800000px;}
.x6f{left:178.930500px;}
.x74{left:182.880000px;}
.x6d{left:183.964500px;}
.xa0{left:185.038500px;}
.x93{left:188.640000px;}
.x33{left:191.164500px;}
.x6e{left:192.967500px;}
.x35{left:197.286000px;}
.x3b{left:201.238500px;}
.x77{left:203.760000px;}
.x3f{left:220.678500px;}
.x32{left:225.364500px;}
.x39{left:226.803000px;}
.x2c{left:228.600000px;}
.x34{left:230.404500px;}
.x37{left:232.203000px;}
.x40{left:233.638500px;}
.x80{left:234.720000px;}
.x44{left:237.600000px;}
.x3a{left:240.483000px;}
.x3c{left:242.638500px;}
.x81{left:249.120000px;}
.x45{left:250.198500px;}
.x29{left:252.360000px;}
.x76{left:255.241500px;}
.x7f{left:257.406000px;}
.x2d{left:261.717000px;}
.x79{left:262.801500px;}
.x31{left:263.883000px;}
.x78{left:266.041500px;}
.x30{left:268.920000px;}
.x7b{left:271.084500px;}
.x75{left:273.961500px;}
.x41{left:275.040000px;}
.x7e{left:276.124500px;}
.x36{left:277.198500px;}
.x42{left:279.360000px;}
.x38{left:280.444500px;}
.x2b{left:281.520000px;}
.x6b{left:282.949500px;}
.x43{left:284.040000px;}
.x72{left:285.480000px;}
.x6{left:287.991000px;}
.x2a{left:289.080000px;}
.x5{left:292.309500px;}
.x9f{left:293.758500px;}
.x73{left:296.998500px;}
.x28{left:298.078500px;}
.x22{left:301.318500px;}
.x2e{left:312.478500px;}
.x2f{left:317.158500px;}
.x3e{left:320.398500px;}
.x71{left:327.238500px;}
.x3d{left:330.478500px;}
.x3{left:339.471000px;}
.x6c{left:341.280000px;}
.x24{left:346.680000px;}
.x23{left:352.078500px;}
.x7d{left:375.844500px;}
.x7c{left:384.844500px;}
.x9b{left:401.041500px;}
.x9a{left:407.880000px;}
.x9{left:458.989500px;}
.xa6{left:482.040000px;}
.xa7{left:483.840000px;}
.xa3{left:484.918500px;}
.xa8{left:486.360000px;}
.xa5{left:489.240000px;}
.xa4{left:493.200000px;}
.xa{left:501.469500px;}
.x4b{left:508.690500px;}
.x15{left:513.718500px;}
.x4f{left:519.865500px;}
.x16{left:522.718500px;}
.x4a{left:524.889000px;}
.x8f{left:529.924500px;}
.x53{left:533.545500px;}
.x70{left:535.318500px;}
.xa9{left:538.560000px;}
.x6a{left:543.612000px;}
.x52{left:545.065500px;}
.x61{left:546.123000px;}
.x89{left:547.564500px;}
.x69{left:550.447500px;}
.x63{left:552.963000px;}
.x65{left:554.407500px;}
.x5e{left:557.281500px;}
.x1d{left:563.398500px;}
.x64{left:565.924500px;}
.x5d{left:569.880000px;}
.x1c{left:576.360000px;}
.x88{left:578.163000px;}
.x11{left:583.200000px;}
.x8e{left:585.001500px;}
.x5c{left:588.606000px;}
.x20{left:590.040000px;}
.x67{left:591.127500px;}
.x10{left:595.798500px;}
.x87{left:600.123000px;}
.x1b{left:601.918500px;}
.x83{left:605.880000px;}
.x13{left:609.840000px;}
.x1a{left:617.398500px;}
.xf{left:621.718500px;}
.x49{left:626.046000px;}
.x92{left:627.481500px;}
.x1f{left:629.638500px;}
.x85{left:630.721500px;}
.x84{left:633.600000px;}
.x19{left:635.758500px;}
.xe{left:637.200000px;}
.x68{left:641.166000px;}
.x91{left:644.400000px;}
.x12{left:649.438500px;}
.xd{left:655.200000px;}
.x62{left:657.361500px;}
.x59{left:659.518500px;}
.x1e{left:661.680000px;}
.x54{left:666.360000px;}
.xc{left:668.520000px;}
.x86{left:669.601500px;}
.xb{left:673.548000px;}
.x8a{left:675.004500px;}
.x55{left:676.078500px;}
.x4e{left:677.176500px;}
.x5f{left:680.038500px;}
.x14{left:682.200000px;}
.x57{left:683.278500px;}
.x18{left:688.318500px;}
.x5a{left:690.840000px;}
.x8b{left:691.926000px;}
.x17{left:693.712500px;}
.x60{left:695.518500px;}
.x5b{left:698.041500px;}
.x48{left:699.841500px;}
.x21{left:702.000000px;}
.x56{left:705.238500px;}
.x66{left:707.046000px;}
.x46{left:709.198500px;}
.x58{left:711.360000px;}
.x8d{left:713.883000px;}
.x47{left:718.558500px;}
.x8c{left:723.244500px;}
.x51{left:725.785500px;}
.x82{left:727.198500px;}
.x4c{left:730.810500px;}
.x90{left:735.840000px;}
.x4d{left:736.933500px;}
.x50{left:743.424000px;}
@media print{
.v9{vertical-align:-46.080000pt;}
.vc{vertical-align:-43.520000pt;}
.vd{vertical-align:-42.234667pt;}
.v2{vertical-align:-29.434667pt;}
.v14{vertical-align:-24.314667pt;}
.v6{vertical-align:-21.760000pt;}
.v12{vertical-align:-17.914667pt;}
.v5{vertical-align:-15.354667pt;}
.vb{vertical-align:-14.080000pt;}
.v8{vertical-align:-7.674667pt;}
.v19{vertical-align:-3.840000pt;}
.v11{vertical-align:-2.560000pt;}
.v7{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v15{vertical-align:1.280000pt;}
.v4{vertical-align:7.685333pt;}
.va{vertical-align:19.200000pt;}
.ve{vertical-align:20.474667pt;}
.vf{vertical-align:23.040000pt;}
.v13{vertical-align:24.314667pt;}
.v18{vertical-align:25.594667pt;}
.v16{vertical-align:26.880000pt;}
.v1{vertical-align:29.434667pt;}
.v10{vertical-align:30.714667pt;}
.v3{vertical-align:32.000000pt;}
.v17{vertical-align:49.914667pt;}
.ls72{letter-spacing:-1.445333pt;}
.ls24{letter-spacing:-1.280000pt;}
.ls42{letter-spacing:-1.274667pt;}
.ls43{letter-spacing:-1.269333pt;}
.ls8e{letter-spacing:-1.264000pt;}
.ls50{letter-spacing:-1.226667pt;}
.ls4b{letter-spacing:-1.178667pt;}
.ls86{letter-spacing:-1.056000pt;}
.ls6d{letter-spacing:-0.864000pt;}
.ls29{letter-spacing:-0.861146pt;}
.ls4f{letter-spacing:-0.858667pt;}
.ls48{letter-spacing:-0.848000pt;}
.ls20{letter-spacing:-0.832000pt;}
.ls4e{letter-spacing:-0.778667pt;}
.ls4d{letter-spacing:-0.773333pt;}
.ls44{letter-spacing:-0.752000pt;}
.ls59{letter-spacing:-0.640000pt;}
.ls87{letter-spacing:-0.544000pt;}
.ls1a{letter-spacing:-0.448000pt;}
.ls22{letter-spacing:-0.437333pt;}
.ls25{letter-spacing:-0.432000pt;}
.ls7d{letter-spacing:-0.400000pt;}
.ls1d{letter-spacing:-0.336000pt;}
.ls58{letter-spacing:-0.320000pt;}
.ls23{letter-spacing:-0.266667pt;}
.ls1b{letter-spacing:-0.224000pt;}
.ls6f{letter-spacing:-0.213333pt;}
.ls93{letter-spacing:-0.208000pt;}
.ls70{letter-spacing:-0.202667pt;}
.ls7c{letter-spacing:-0.170667pt;}
.ls73{letter-spacing:-0.165333pt;}
.ls5a{letter-spacing:-0.160000pt;}
.ls1e{letter-spacing:-0.128000pt;}
.ls5c{letter-spacing:-0.090667pt;}
.ls78{letter-spacing:-0.074667pt;}
.ls96{letter-spacing:-0.016000pt;}
.ls6e{letter-spacing:-0.010667pt;}
.ls21{letter-spacing:-0.005333pt;}
.ls1f{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.005333pt;}
.ls26{letter-spacing:0.010667pt;}
.ls2f{letter-spacing:0.011520pt;}
.ls15{letter-spacing:0.012587pt;}
.ls5b{letter-spacing:0.016000pt;}
.ls66{letter-spacing:0.085333pt;}
.ls4{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.117333pt;}
.ls1{letter-spacing:0.128000pt;}
.ls81{letter-spacing:0.208000pt;}
.lsb{letter-spacing:0.218667pt;}
.ls3{letter-spacing:0.224000pt;}
.ls52{letter-spacing:0.256000pt;}
.ls71{letter-spacing:0.266667pt;}
.ls80{letter-spacing:0.270181pt;}
.ls8{letter-spacing:0.272000pt;}
.ls85{letter-spacing:0.275515pt;}
.ls10{letter-spacing:0.320000pt;}
.ls75{letter-spacing:0.368000pt;}
.ls16{letter-spacing:0.409387pt;}
.ls6{letter-spacing:0.410667pt;}
.lsf{letter-spacing:0.416000pt;}
.ls89{letter-spacing:0.426667pt;}
.ls2a{letter-spacing:0.430573pt;}
.ls57{letter-spacing:0.437333pt;}
.ls14{letter-spacing:0.445227pt;}
.ls53{letter-spacing:0.448000pt;}
.ls7a{letter-spacing:0.480000pt;}
.ls7b{letter-spacing:0.496815pt;}
.ls6c{letter-spacing:0.506667pt;}
.ls8d{letter-spacing:0.512000pt;}
.ls8c{letter-spacing:0.528000pt;}
.ls88{letter-spacing:0.533333pt;}
.ls7f{letter-spacing:0.538667pt;}
.ls8b{letter-spacing:0.544000pt;}
.ls84{letter-spacing:0.549333pt;}
.ls56{letter-spacing:0.560000pt;}
.ls82{letter-spacing:0.565333pt;}
.ls4a{letter-spacing:0.570667pt;}
.lsd{letter-spacing:0.576000pt;}
.ls17{letter-spacing:0.634667pt;}
.ls28{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.642667pt;}
.ls3c{letter-spacing:0.736000pt;}
.ls9{letter-spacing:0.832000pt;}
.lsa{letter-spacing:0.869333pt;}
.ls8a{letter-spacing:0.960000pt;}
.ls7{letter-spacing:1.013333pt;}
.ls1c{letter-spacing:1.056000pt;}
.lsc{letter-spacing:1.253333pt;}
.ls18{letter-spacing:1.280000pt;}
.ls27{letter-spacing:1.296000pt;}
.ls5{letter-spacing:1.536000pt;}
.ls76{letter-spacing:1.920000pt;}
.ls91{letter-spacing:2.240000pt;}
.ls92{letter-spacing:3.520000pt;}
.ls5e{letter-spacing:4.480000pt;}
.ls94{letter-spacing:6.074667pt;}
.ls8f{letter-spacing:7.040000pt;}
.ls95{letter-spacing:11.200000pt;}
.ls2{letter-spacing:12.058987pt;}
.ls51{letter-spacing:12.812587pt;}
.ls83{letter-spacing:13.176320pt;}
.ls13{letter-spacing:13.440000pt;}
.ls90{letter-spacing:13.760000pt;}
.ls7e{letter-spacing:14.714667pt;}
.ls5d{letter-spacing:19.840000pt;}
.ls77{letter-spacing:21.120000pt;}
.ls49{letter-spacing:21.936000pt;}
.ls45{letter-spacing:22.032000pt;}
.ls2d{letter-spacing:23.406011pt;}
.ls46{letter-spacing:23.802667pt;}
.ls4c{letter-spacing:23.808000pt;}
.ls47{letter-spacing:24.636496pt;}
.ls63{letter-spacing:59.614357pt;}
.ls34{letter-spacing:67.073632pt;}
.ls74{letter-spacing:75.125333pt;}
.ls79{letter-spacing:79.210667pt;}
.ls64{letter-spacing:90.700875pt;}
.ls36{letter-spacing:137.407467pt;}
.ls69{letter-spacing:154.240000pt;}
.ls55{letter-spacing:156.800000pt;}
.ls3d{letter-spacing:163.452779pt;}
.ls68{letter-spacing:177.357333pt;}
.ls2c{letter-spacing:191.354667pt;}
.ls6a{letter-spacing:193.021819pt;}
.ls41{letter-spacing:200.314667pt;}
.ls60{letter-spacing:203.621120pt;}
.ls3b{letter-spacing:208.000000pt;}
.ls3f{letter-spacing:209.274667pt;}
.ls32{letter-spacing:215.024320pt;}
.ls5f{letter-spacing:247.680000pt;}
.ls61{letter-spacing:258.889824pt;}
.ls35{letter-spacing:268.154667pt;}
.ls67{letter-spacing:296.132800pt;}
.ls19{letter-spacing:300.154667pt;}
.ls31{letter-spacing:305.274667pt;}
.ls3a{letter-spacing:362.292187pt;}
.ls6b{letter-spacing:364.154667pt;}
.ls30{letter-spacing:364.391467pt;}
.ls33{letter-spacing:366.720000pt;}
.ls12{letter-spacing:370.560000pt;}
.ls54{letter-spacing:372.300875pt;}
.ls2e{letter-spacing:374.394667pt;}
.ls62{letter-spacing:376.954667pt;}
.ls37{letter-spacing:410.234667pt;}
.ls65{letter-spacing:434.560000pt;}
.ls3e{letter-spacing:586.984640pt;}
.ls40{letter-spacing:613.612587pt;}
.ls2b{letter-spacing:617.331344pt;}
.ls39{letter-spacing:779.750272pt;}
.ls38{letter-spacing:795.082624pt;}
.ws125{word-spacing:-104.235509pt;}
.ws12d{word-spacing:-92.410667pt;}
.ws126{word-spacing:-88.381333pt;}
.ws12b{word-spacing:-74.880000pt;}
.ws18{word-spacing:-54.176000pt;}
.ws83{word-spacing:-53.190480pt;}
.ws12a{word-spacing:-52.928000pt;}
.wsdd{word-spacing:-42.874667pt;}
.ws84{word-spacing:-37.188000pt;}
.ws7c{word-spacing:-37.002667pt;}
.ws12c{word-spacing:-34.560000pt;}
.ws85{word-spacing:-33.174667pt;}
.ws130{word-spacing:-30.810240pt;}
.ws8e{word-spacing:-29.871680pt;}
.wsd7{word-spacing:-29.523125pt;}
.ws75{word-spacing:-29.141502pt;}
.ws82{word-spacing:-28.031061pt;}
.ws88{word-spacing:-27.680848pt;}
.ws12e{word-spacing:-26.506667pt;}
.ws7{word-spacing:-25.013333pt;}
.ws6{word-spacing:-24.410667pt;}
.ws4{word-spacing:-23.664000pt;}
.wsa{word-spacing:-20.453333pt;}
.wsc{word-spacing:-18.878667pt;}
.wse{word-spacing:-18.292000pt;}
.ws1c2{word-spacing:-18.238667pt;}
.ws134{word-spacing:-18.158667pt;}
.ws13{word-spacing:-14.736000pt;}
.ws1a{word-spacing:-14.720000pt;}
.ws14{word-spacing:-14.080000pt;}
.ws8a{word-spacing:-13.924000pt;}
.wsd4{word-spacing:-13.901333pt;}
.wsd9{word-spacing:-13.877333pt;}
.ws7e{word-spacing:-13.872000pt;}
.ws17{word-spacing:-13.856000pt;}
.wsd2{word-spacing:-13.456000pt;}
.ws8d{word-spacing:-13.450667pt;}
.ws11{word-spacing:-13.444000pt;}
.ws10{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.434667pt;}
.ws11f{word-spacing:-13.429333pt;}
.wsd5{word-spacing:-13.394667pt;}
.ws6c{word-spacing:-13.185333pt;}
.ws69{word-spacing:-13.180000pt;}
.wsf{word-spacing:-13.008000pt;}
.ws16{word-spacing:-12.608000pt;}
.ws77{word-spacing:-12.581333pt;}
.ws6e{word-spacing:-12.548000pt;}
.ws8b{word-spacing:-12.414667pt;}
.ws8c{word-spacing:-12.409333pt;}
.ws73{word-spacing:-12.368000pt;}
.ws90{word-spacing:-12.186667pt;}
.ws129{word-spacing:-12.160000pt;}
.ws7f{word-spacing:-12.122667pt;}
.ws122{word-spacing:-12.076000pt;}
.ws1{word-spacing:-11.965237pt;}
.wsdf{word-spacing:-11.198667pt;}
.ws167{word-spacing:-11.134667pt;}
.ws1c7{word-spacing:-11.070667pt;}
.ws140{word-spacing:-10.880000pt;}
.ws162{word-spacing:-10.782667pt;}
.ws179{word-spacing:-10.766667pt;}
.ws1c5{word-spacing:-10.350667pt;}
.ws16f{word-spacing:-10.110667pt;}
.ws89{word-spacing:-9.968000pt;}
.wsdb{word-spacing:-9.918667pt;}
.ws131{word-spacing:-9.737333pt;}
.ws132{word-spacing:-9.294667pt;}
.ws87{word-spacing:-9.274667pt;}
.ws8f{word-spacing:-8.529333pt;}
.ws81{word-spacing:-8.133333pt;}
.ws19{word-spacing:-7.808000pt;}
.ws1f6{word-spacing:-2.880000pt;}
.ws71{word-spacing:-2.750720pt;}
.ws9{word-spacing:-2.151467pt;}
.ws3{word-spacing:-1.928533pt;}
.wsa2{word-spacing:-1.920000pt;}
.wsde{word-spacing:-1.812821pt;}
.wsed{word-spacing:-1.536000pt;}
.ws133{word-spacing:-1.508555pt;}
.ws1e9{word-spacing:-1.386667pt;}
.ws1c9{word-spacing:-1.280000pt;}
.ws13f{word-spacing:-1.088000pt;}
.ws1f{word-spacing:-1.056000pt;}
.ws21{word-spacing:-1.013333pt;}
.ws64{word-spacing:-0.960000pt;}
.ws8{word-spacing:-0.850133pt;}
.ws1b{word-spacing:-0.848000pt;}
.ws115{word-spacing:-0.832000pt;}
.ws20{word-spacing:-0.768000pt;}
.ws1d2{word-spacing:-0.746667pt;}
.ws1f1{word-spacing:-0.704000pt;}
.wse5{word-spacing:-0.650667pt;}
.ws207{word-spacing:-0.640000pt;}
.ws1ee{word-spacing:-0.533333pt;}
.wsd1{word-spacing:-0.506667pt;}
.ws1c8{word-spacing:-0.496000pt;}
.ws1d8{word-spacing:-0.480000pt;}
.wsee{word-spacing:-0.448000pt;}
.ws5{word-spacing:-0.343467pt;}
.ws187{word-spacing:-0.336000pt;}
.ws40{word-spacing:-0.325333pt;}
.ws116{word-spacing:-0.320000pt;}
.ws1fb{word-spacing:-0.256000pt;}
.ws63{word-spacing:-0.213333pt;}
.ws12f{word-spacing:-0.190720pt;}
.ws160{word-spacing:-0.186667pt;}
.ws10e{word-spacing:-0.160000pt;}
.ws24{word-spacing:-0.122667pt;}
.ws1ba{word-spacing:-0.106667pt;}
.ws190{word-spacing:-0.101333pt;}
.ws61{word-spacing:-0.099363pt;}
.ws56{word-spacing:-0.096000pt;}
.ws1aa{word-spacing:-0.085333pt;}
.ws194{word-spacing:-0.042667pt;}
.ws1d{word-spacing:0.000000pt;}
.ws22{word-spacing:0.064000pt;}
.ws14b{word-spacing:0.074667pt;}
.ws10a{word-spacing:0.080000pt;}
.ws23{word-spacing:0.128000pt;}
.ws1d5{word-spacing:0.144000pt;}
.ws1ea{word-spacing:0.160000pt;}
.ws72{word-spacing:0.171307pt;}
.ws26{word-spacing:0.192000pt;}
.ws35{word-spacing:0.213333pt;}
.wsa9{word-spacing:0.224000pt;}
.wsa7{word-spacing:0.266667pt;}
.ws99{word-spacing:0.314667pt;}
.ws4e{word-spacing:0.320000pt;}
.wsf7{word-spacing:0.384000pt;}
.wse0{word-spacing:0.405333pt;}
.ws9c{word-spacing:0.421333pt;}
.ws10c{word-spacing:0.426667pt;}
.ws150{word-spacing:0.474667pt;}
.ws151{word-spacing:0.491295pt;}
.ws13c{word-spacing:0.512000pt;}
.ws144{word-spacing:0.554667pt;}
.wse2{word-spacing:0.602667pt;}
.ws139{word-spacing:0.629333pt;}
.ws25{word-spacing:0.640000pt;}
.ws5b{word-spacing:0.662420pt;}
.ws1a4{word-spacing:0.794667pt;}
.wsfe{word-spacing:0.800000pt;}
.ws135{word-spacing:0.816000pt;}
.wsaa{word-spacing:0.832000pt;}
.ws2{word-spacing:0.868880pt;}
.ws4a{word-spacing:0.922667pt;}
.ws1e{word-spacing:0.928000pt;}
.wsff{word-spacing:0.960000pt;}
.ws14e{word-spacing:1.045333pt;}
.ws14a{word-spacing:1.066667pt;}
.ws159{word-spacing:1.104000pt;}
.ws109{word-spacing:1.152000pt;}
.ws136{word-spacing:1.184000pt;}
.wsb1{word-spacing:1.216000pt;}
.wsa8{word-spacing:1.248000pt;}
.wscc{word-spacing:1.264000pt;}
.ws118{word-spacing:1.285333pt;}
.ws1a2{word-spacing:1.328000pt;}
.ws46{word-spacing:1.472000pt;}
.wsa4{word-spacing:1.482667pt;}
.ws1c{word-spacing:1.504000pt;}
.ws0{word-spacing:1.584059pt;}
.ws9a{word-spacing:1.600000pt;}
.ws195{word-spacing:1.728000pt;}
.ws4f{word-spacing:1.760000pt;}
.ws13d{word-spacing:1.786667pt;}
.ws3e{word-spacing:1.834667pt;}
.ws143{word-spacing:1.914667pt;}
.wscd{word-spacing:1.920000pt;}
.ws1f4{word-spacing:2.016000pt;}
.ws1d6{word-spacing:2.037333pt;}
.ws27{word-spacing:2.069333pt;}
.ws142{word-spacing:2.112000pt;}
.ws1f5{word-spacing:2.240000pt;}
.wsb5{word-spacing:2.464000pt;}
.ws153{word-spacing:2.496000pt;}
.ws145{word-spacing:2.560000pt;}
.ws3f{word-spacing:2.602667pt;}
.ws11c{word-spacing:2.752000pt;}
.ws39{word-spacing:2.832000pt;}
.ws152{word-spacing:3.072000pt;}
.ws33{word-spacing:3.200000pt;}
.wsc1{word-spacing:3.392000pt;}
.wsb8{word-spacing:3.482667pt;}
.ws185{word-spacing:3.488000pt;}
.wsab{word-spacing:3.552000pt;}
.ws45{word-spacing:3.584000pt;}
.ws186{word-spacing:3.621333pt;}
.ws3d{word-spacing:3.664000pt;}
.ws38{word-spacing:3.712000pt;}
.wsb6{word-spacing:3.845333pt;}
.ws55{word-spacing:4.032000pt;}
.ws36{word-spacing:4.053333pt;}
.ws1b8{word-spacing:4.224000pt;}
.ws1e1{word-spacing:4.250667pt;}
.ws1cc{word-spacing:4.256000pt;}
.ws1cd{word-spacing:4.416000pt;}
.ws9b{word-spacing:4.474667pt;}
.wscb{word-spacing:4.576000pt;}
.ws192{word-spacing:4.709333pt;}
.wsb7{word-spacing:4.800000pt;}
.wsa5{word-spacing:4.917333pt;}
.ws41{word-spacing:4.992000pt;}
.wsf2{word-spacing:5.056000pt;}
.ws54{word-spacing:5.088000pt;}
.ws3b{word-spacing:5.152000pt;}
.ws18f{word-spacing:5.189333pt;}
.wsc4{word-spacing:5.274667pt;}
.wsc0{word-spacing:5.312000pt;}
.ws2b{word-spacing:5.344000pt;}
.ws201{word-spacing:5.429333pt;}
.ws1af{word-spacing:5.472000pt;}
.wse4{word-spacing:5.525333pt;}
.ws34{word-spacing:5.578667pt;}
.ws1a8{word-spacing:5.589333pt;}
.ws1e4{word-spacing:5.632000pt;}
.wsbf{word-spacing:5.856000pt;}
.ws1c4{word-spacing:6.096571pt;}
.ws1cf{word-spacing:6.138667pt;}
.ws128{word-spacing:6.209280pt;}
.wse9{word-spacing:6.298667pt;}
.ws5e{word-spacing:6.373333pt;}
.wsf1{word-spacing:6.405333pt;}
.ws62{word-spacing:6.437333pt;}
.ws206{word-spacing:6.458667pt;}
.wsf4{word-spacing:6.480000pt;}
.ws1a3{word-spacing:6.554667pt;}
.ws4c{word-spacing:6.592000pt;}
.ws155{word-spacing:6.624000pt;}
.ws1a7{word-spacing:6.656000pt;}
.wsa6{word-spacing:6.720000pt;}
.ws1d1{word-spacing:6.794667pt;}
.wsfd{word-spacing:6.816000pt;}
.ws1bb{word-spacing:6.826667pt;}
.ws9d{word-spacing:6.912000pt;}
.ws10b{word-spacing:7.050667pt;}
.ws100{word-spacing:7.232000pt;}
.ws15a{word-spacing:7.461333pt;}
.ws106{word-spacing:7.504000pt;}
.ws1ab{word-spacing:7.632000pt;}
.ws66{word-spacing:7.706667pt;}
.ws18b{word-spacing:7.728000pt;}
.wsea{word-spacing:7.872000pt;}
.wsf0{word-spacing:7.888000pt;}
.ws1a5{word-spacing:7.904000pt;}
.ws42{word-spacing:8.000000pt;}
.ws1e5{word-spacing:8.096000pt;}
.ws96{word-spacing:8.128000pt;}
.ws1d0{word-spacing:8.192000pt;}
.ws10d{word-spacing:8.309333pt;}
.ws1f7{word-spacing:8.336000pt;}
.ws1fc{word-spacing:8.384000pt;}
.ws9f{word-spacing:8.416000pt;}
.ws110{word-spacing:8.597333pt;}
.ws5a{word-spacing:8.752000pt;}
.ws1ac{word-spacing:8.773333pt;}
.ws11b{word-spacing:8.858667pt;}
.ws11e{word-spacing:8.933333pt;}
.ws67{word-spacing:8.965333pt;}
.wsfa{word-spacing:8.992000pt;}
.ws1b4{word-spacing:9.002667pt;}
.ws59{word-spacing:9.184000pt;}
.ws11a{word-spacing:9.280000pt;}
.ws2f{word-spacing:9.386667pt;}
.wsec{word-spacing:9.408000pt;}
.ws31{word-spacing:9.440000pt;}
.ws147{word-spacing:9.472000pt;}
.ws1f8{word-spacing:9.589333pt;}
.ws30{word-spacing:9.600000pt;}
.ws1e7{word-spacing:9.706667pt;}
.ws48{word-spacing:9.882667pt;}
.wsf5{word-spacing:10.000000pt;}
.ws188{word-spacing:10.085333pt;}
.ws1db{word-spacing:10.096000pt;}
.ws15d{word-spacing:10.138667pt;}
.ws13b{word-spacing:10.245333pt;}
.wsef{word-spacing:10.277333pt;}
.ws51{word-spacing:10.432000pt;}
.ws58{word-spacing:10.554667pt;}
.ws119{word-spacing:10.688000pt;}
.wsa1{word-spacing:10.752000pt;}
.ws1ae{word-spacing:10.874667pt;}
.ws44{word-spacing:10.981333pt;}
.ws3c{word-spacing:11.157333pt;}
.wsf9{word-spacing:11.178667pt;}
.ws141{word-spacing:11.301333pt;}
.ws47{word-spacing:11.376000pt;}
.ws1ce{word-spacing:11.381333pt;}
.ws1da{word-spacing:11.413333pt;}
.ws1fe{word-spacing:11.482667pt;}
.wsf6{word-spacing:11.562667pt;}
.ws1bd{word-spacing:11.584000pt;}
.ws1d7{word-spacing:11.840000pt;}
.ws1e2{word-spacing:11.845333pt;}
.ws2e{word-spacing:11.978667pt;}
.ws117{word-spacing:12.000000pt;}
.ws9e{word-spacing:12.133333pt;}
.ws52{word-spacing:12.149333pt;}
.wsce{word-spacing:12.154667pt;}
.wscf{word-spacing:12.362667pt;}
.ws43{word-spacing:12.442667pt;}
.ws107{word-spacing:12.517333pt;}
.ws50{word-spacing:12.560000pt;}
.wsaf{word-spacing:12.597333pt;}
.wsb3{word-spacing:12.832000pt;}
.wsbc{word-spacing:12.880000pt;}
.ws113{word-spacing:12.949333pt;}
.wsba{word-spacing:12.986667pt;}
.wsfb{word-spacing:13.008000pt;}
.wsc5{word-spacing:13.024000pt;}
.ws1ad{word-spacing:13.258667pt;}
.ws1e8{word-spacing:13.280000pt;}
.ws1ef{word-spacing:13.349333pt;}
.ws60{word-spacing:13.392000pt;}
.wsc7{word-spacing:13.632000pt;}
.ws15f{word-spacing:13.722667pt;}
.ws200{word-spacing:13.786667pt;}
.ws4b{word-spacing:13.824000pt;}
.wsb0{word-spacing:13.845333pt;}
.ws5f{word-spacing:13.872000pt;}
.ws148{word-spacing:13.904000pt;}
.ws13e{word-spacing:13.914667pt;}
.wse3{word-spacing:14.122667pt;}
.ws137{word-spacing:14.298667pt;}
.ws92{word-spacing:14.496000pt;}
.ws4d{word-spacing:14.576000pt;}
.ws1b1{word-spacing:14.709333pt;}
.ws1a6{word-spacing:14.714667pt;}
.ws156{word-spacing:14.896000pt;}
.ws1e6{word-spacing:14.944000pt;}
.ws1be{word-spacing:15.120000pt;}
.ws14c{word-spacing:15.264000pt;}
.wsf3{word-spacing:15.440000pt;}
.ws18a{word-spacing:15.546667pt;}
.wsb9{word-spacing:15.568000pt;}
.ws18d{word-spacing:15.589333pt;}
.ws98{word-spacing:15.738667pt;}
.ws15e{word-spacing:15.781333pt;}
.ws108{word-spacing:15.808000pt;}
.ws1b2{word-spacing:15.829333pt;}
.ws1f0{word-spacing:15.936000pt;}
.ws28{word-spacing:16.000000pt;}
.ws1e3{word-spacing:16.229333pt;}
.ws146{word-spacing:16.277333pt;}
.ws18e{word-spacing:16.405333pt;}
.wsad{word-spacing:16.640000pt;}
.ws193{word-spacing:16.773333pt;}
.ws158{word-spacing:16.949333pt;}
.wsae{word-spacing:17.222914pt;}
.ws14f{word-spacing:17.258667pt;}
.ws13a{word-spacing:17.269333pt;}
.ws2d{word-spacing:17.280000pt;}
.wse1{word-spacing:17.760000pt;}
.ws204{word-spacing:17.781333pt;}
.ws154{word-spacing:17.786667pt;}
.ws111{word-spacing:17.952000pt;}
.ws1f3{word-spacing:18.234667pt;}
.ws114{word-spacing:18.368000pt;}
.ws11d{word-spacing:18.554667pt;}
.wsc3{word-spacing:18.624000pt;}
.ws1b6{word-spacing:18.778667pt;}
.ws93{word-spacing:18.874667pt;}
.wsa0{word-spacing:18.992000pt;}
.wsb4{word-spacing:19.024000pt;}
.ws1f2{word-spacing:19.077333pt;}
.wsf8{word-spacing:19.242667pt;}
.wseb{word-spacing:19.290667pt;}
.ws1d4{word-spacing:19.520000pt;}
.ws14d{word-spacing:19.568000pt;}
.ws1d3{word-spacing:19.744000pt;}
.ws53{word-spacing:19.818667pt;}
.ws102{word-spacing:19.840000pt;}
.ws161{word-spacing:20.151643pt;}
.ws12{word-spacing:20.289280pt;}
.ws1b9{word-spacing:20.341333pt;}
.wse8{word-spacing:20.384000pt;}
.wsbe{word-spacing:20.453333pt;}
.ws1ff{word-spacing:20.474667pt;}
.wsbd{word-spacing:20.485333pt;}
.ws189{word-spacing:21.381333pt;}
.ws1f9{word-spacing:21.434667pt;}
.ws15c{word-spacing:21.594667pt;}
.ws1a9{word-spacing:21.621333pt;}
.ws203{word-spacing:21.722667pt;}
.ws37{word-spacing:21.802667pt;}
.ws1b0{word-spacing:23.013333pt;}
.wsc2{word-spacing:23.312000pt;}
.ws1ed{word-spacing:23.354667pt;}
.ws57{word-spacing:23.418667pt;}
.wse7{word-spacing:23.440000pt;}
.ws1dc{word-spacing:23.776000pt;}
.wsc6{word-spacing:23.872000pt;}
.ws1cb{word-spacing:24.000000pt;}
.wsd0{word-spacing:24.186667pt;}
.ws3a{word-spacing:24.256000pt;}
.ws205{word-spacing:24.298667pt;}
.ws1bc{word-spacing:24.357333pt;}
.ws2c{word-spacing:24.597333pt;}
.ws32{word-spacing:24.773333pt;}
.ws1ec{word-spacing:25.280000pt;}
.ws1d9{word-spacing:25.664000pt;}
.ws1ca{word-spacing:25.680000pt;}
.ws18c{word-spacing:26.229333pt;}
.ws1b5{word-spacing:26.517333pt;}
.wsfc{word-spacing:26.554667pt;}
.ws149{word-spacing:26.853333pt;}
.ws15b{word-spacing:27.226667pt;}
.ws112{word-spacing:27.978667pt;}
.ws94{word-spacing:28.384000pt;}
.wsc8{word-spacing:28.432000pt;}
.ws49{word-spacing:29.418667pt;}
.ws65{word-spacing:29.632000pt;}
.ws29{word-spacing:29.861333pt;}
.ws138{word-spacing:29.877333pt;}
.ws157{word-spacing:30.928000pt;}
.ws1b3{word-spacing:31.349333pt;}
.wsac{word-spacing:31.354667pt;}
.ws10f{word-spacing:31.978667pt;}
.ws104{word-spacing:32.640000pt;}
.wse6{word-spacing:33.280000pt;}
.wsb2{word-spacing:33.466667pt;}
.ws1e0{word-spacing:33.648000pt;}
.ws101{word-spacing:33.706667pt;}
.ws202{word-spacing:34.784000pt;}
.ws15{word-spacing:35.151147pt;}
.ws103{word-spacing:35.210667pt;}
.ws1fd{word-spacing:35.477333pt;}
.ws5d{word-spacing:36.032000pt;}
.ws97{word-spacing:36.288000pt;}
.ws1eb{word-spacing:36.586667pt;}
.ws1bf{word-spacing:37.098667pt;}
.ws2a{word-spacing:37.504000pt;}
.ws1de{word-spacing:38.714667pt;}
.ws68{word-spacing:39.040000pt;}
.ws1dd{word-spacing:40.000000pt;}
.wsc9{word-spacing:40.314667pt;}
.ws91{word-spacing:40.640000pt;}
.wsca{word-spacing:40.752000pt;}
.ws95{word-spacing:41.594667pt;}
.ws1fa{word-spacing:42.432000pt;}
.ws5c{word-spacing:44.154667pt;}
.ws105{word-spacing:47.360000pt;}
.ws6d{word-spacing:53.165115pt;}
.ws1b7{word-spacing:56.293333pt;}
.ws1c6{word-spacing:66.918379pt;}
.wsa3{word-spacing:68.149333pt;}
.ws191{word-spacing:70.288000pt;}
.ws17a{word-spacing:74.563083pt;}
.wsd{word-spacing:76.805333pt;}
.wsbb{word-spacing:77.429333pt;}
.ws17b{word-spacing:79.683083pt;}
.ws196{word-spacing:81.159461pt;}
.ws163{word-spacing:86.088416pt;}
.ws176{word-spacing:86.099397pt;}
.ws1c3{word-spacing:88.675712pt;}
.ws164{word-spacing:91.208416pt;}
.ws170{word-spacing:95.059397pt;}
.ws17d{word-spacing:100.179397pt;}
.ws7d{word-spacing:102.626133pt;}
.ws175{word-spacing:104.574997pt;}
.ws165{word-spacing:106.563083pt;}
.ws166{word-spacing:111.704731pt;}
.ws177{word-spacing:111.884683pt;}
.ws172{word-spacing:116.722347pt;}
.ws178{word-spacing:123.673205pt;}
.ws171{word-spacing:125.969755pt;}
.ws17c{word-spacing:127.048416pt;}
.ws182{word-spacing:128.889664pt;}
.ws174{word-spacing:130.297877pt;}
.ws183{word-spacing:136.204683pt;}
.ws16c{word-spacing:136.574997pt;}
.ws17f{word-spacing:142.327680pt;}
.ws173{word-spacing:143.414427pt;}
.ws16d{word-spacing:143.884683pt;}
.ws184{word-spacing:147.993205pt;}
.ws169{word-spacing:148.722347pt;}
.ws17e{word-spacing:151.564421pt;}
.ws181{word-spacing:154.623211pt;}
.ws16e{word-spacing:155.673205pt;}
.ws168{word-spacing:157.969755pt;}
.ws16b{word-spacing:162.297877pt;}
.ws19c{word-spacing:163.454997pt;}
.ws78{word-spacing:166.272107pt;}
.ws180{word-spacing:169.014427pt;}
.ws19d{word-spacing:172.044683pt;}
.ws70{word-spacing:173.299040pt;}
.ws6f{word-spacing:175.256507pt;}
.ws16a{word-spacing:175.414427pt;}
.ws199{word-spacing:175.602347pt;}
.ws197{word-spacing:176.987397pt;}
.ws19e{word-spacing:180.903179pt;}
.ws1a0{word-spacing:183.833205pt;}
.ws198{word-spacing:184.849755pt;}
.ws19b{word-spacing:189.177877pt;}
.ws120{word-spacing:199.558304pt;}
.ws19a{word-spacing:202.294427pt;}
.ws19f{word-spacing:210.259397pt;}
.ws74{word-spacing:213.344000pt;}
.ws79{word-spacing:251.651125pt;}
.wsd3{word-spacing:262.320226pt;}
.ws121{word-spacing:285.387504pt;}
.ws123{word-spacing:298.969333pt;}
.ws7a{word-spacing:322.760896pt;}
.ws1df{word-spacing:331.834667pt;}
.ws76{word-spacing:364.804267pt;}
.ws7b{word-spacing:399.315531pt;}
.ws6a{word-spacing:497.335781pt;}
.wsd6{word-spacing:506.901227pt;}
.ws86{word-spacing:544.563173pt;}
.ws6b{word-spacing:547.560864pt;}
.wsda{word-spacing:588.448853pt;}
.wsdc{word-spacing:592.766395pt;}
.ws1a1{word-spacing:616.603520pt;}
.ws1c0{word-spacing:620.926395pt;}
.ws1c1{word-spacing:624.766395pt;}
.ws80{word-spacing:636.222208pt;}
.ws124{word-spacing:643.679354pt;}
.wsd8{word-spacing:673.922869pt;}
.ws127{word-spacing:862.395467pt;}
._6b{margin-left:-603.430176pt;}
._74{margin-left:-587.765333pt;}
._61{margin-left:-530.552778pt;}
._70{margin-left:-417.277664pt;}
._59{margin-left:-386.024272pt;}
._5b{margin-left:-370.658939pt;}
._58{margin-left:-360.111680pt;}
._56{margin-left:-344.746347pt;}
._31{margin-left:-287.786620pt;}
._64{margin-left:-286.796549pt;}
._32{margin-left:-273.909867pt;}
._5d{margin-left:-272.670571pt;}
._3e{margin-left:-271.629872pt;}
._52{margin-left:-269.302976pt;}
._53{margin-left:-259.661147pt;}
._36{margin-left:-258.063755pt;}
._5a{margin-left:-246.504272pt;}
._6e{margin-left:-203.522997pt;}
._75{margin-left:-198.902933pt;}
._71{margin-left:-193.687008pt;}
._4a{margin-left:-190.145147pt;}
._1e{margin-left:-178.297989pt;}
._4d{margin-left:-176.936000pt;}
._6f{margin-left:-166.909093pt;}
._6d{margin-left:-165.623760pt;}
._54{margin-left:-164.658795pt;}
._51{margin-left:-163.360848pt;}
._38{margin-left:-161.841979pt;}
._49{margin-left:-160.800000pt;}
._26{margin-left:-159.496901pt;}
._57{margin-left:-153.549371pt;}
._65{margin-left:-150.573952pt;}
._4e{margin-left:-149.309547pt;}
._6a{margin-left:-146.728997pt;}
._6c{margin-left:-145.178325pt;}
._73{margin-left:-142.873067pt;}
._27{margin-left:-141.180000pt;}
._37{margin-left:-139.665333pt;}
._25{margin-left:-138.614667pt;}
._19{margin-left:-133.813349pt;}
._5c{margin-left:-132.675413pt;}
._4c{margin-left:-129.691040pt;}
._18{margin-left:-127.849296pt;}
._10{margin-left:-126.563963pt;}
._15{margin-left:-122.723963pt;}
._4b{margin-left:-120.525547pt;}
._1c{margin-left:-115.898683pt;}
._40{margin-left:-113.090160pt;}
._50{margin-left:-112.155515pt;}
._22{margin-left:-110.988656pt;}
._1b{margin-left:-109.498683pt;}
._41{margin-left:-108.199168pt;}
._43{margin-left:-106.919168pt;}
._45{margin-left:-105.082949pt;}
._1f{margin-left:-104.029589pt;}
._46{margin-left:-102.861899pt;}
._20{margin-left:-101.503323pt;}
._39{margin-left:-98.635733pt;}
._2e{margin-left:-97.670480pt;}
._44{margin-left:-95.527083pt;}
._17{margin-left:-93.289296pt;}
._f{margin-left:-92.003963pt;}
._24{margin-left:-86.536901pt;}
._1d{margin-left:-85.050229pt;}
._2d{margin-left:-83.166560pt;}
._2c{margin-left:-81.886560pt;}
._33{margin-left:-80.643627pt;}
._30{margin-left:-79.126400pt;}
._1a{margin-left:-77.549333pt;}
._42{margin-left:-73.767083pt;}
._55{margin-left:-70.826347pt;}
._23{margin-left:-65.850229pt;}
._48{margin-left:-64.807083pt;}
._21{margin-left:-56.890229pt;}
._47{margin-left:-55.847083pt;}
._e{margin-left:-54.889296pt;}
._16{margin-left:-53.603963pt;}
._2b{margin-left:-52.028864pt;}
._60{margin-left:-44.506603pt;}
._63{margin-left:-40.181333pt;}
._13{margin-left:-36.214123pt;}
._66{margin-left:-32.054299pt;}
._3f{margin-left:-30.326789pt;}
._69{margin-left:-21.772800pt;}
._68{margin-left:-20.643840pt;}
._67{margin-left:-19.407360pt;}
._2a{margin-left:-18.147243pt;}
._78{margin-left:-17.117328pt;}
._77{margin-left:-15.800869pt;}
._34{margin-left:-14.466011pt;}
._3a{margin-left:-12.728613pt;}
._8c{margin-left:-11.627435pt;}
._72{margin-left:-10.549429pt;}
._29{margin-left:-9.619941pt;}
._b{margin-left:-8.706373pt;}
._5f{margin-left:-7.536416pt;}
._c{margin-left:-6.302043pt;}
._9{margin-left:-4.830347pt;}
._7{margin-left:-3.589947pt;}
._0{margin-left:-1.900560pt;}
._4{margin-left:-0.913856pt;}
._1{width:1.309275pt;}
._3{width:2.427696pt;}
._d{width:3.411733pt;}
._3b{width:4.623360pt;}
._3c{width:5.644725pt;}
._3d{width:7.241760pt;}
._6{width:8.366475pt;}
._5{width:11.000416pt;}
._11{width:12.939995pt;}
._14{width:14.104251pt;}
._28{width:15.526672pt;}
._a{width:16.695467pt;}
._76{width:17.878848pt;}
._35{width:19.261771pt;}
._12{width:21.047952pt;}
._2f{width:22.392544pt;}
._8e{width:28.753232pt;}
._5e{width:34.452464pt;}
._8d{width:37.837317pt;}
._8f{width:52.504779pt;}
._4f{width:54.813061pt;}
._7e{width:87.516059pt;}
._80{width:97.198288pt;}
._7f{width:104.925856pt;}
._82{width:106.200523pt;}
._81{width:107.667115pt;}
._83{width:113.110725pt;}
._86{width:115.949013pt;}
._84{width:117.369685pt;}
._79{width:119.516059pt;}
._7c{width:127.474347pt;}
._7a{width:128.895019pt;}
._7b{width:143.320523pt;}
._89{width:146.396059pt;}
._88{width:161.830256pt;}
._85{width:163.805856pt;}
._87{width:174.617520pt;}
._8b{width:220.909013pt;}
._8a{width:222.329685pt;}
._7d{width:264.309888pt;}
._62{width:502.372892pt;}
._2{width:535.090763pt;}
._8{width:1118.698581pt;}
.fs8{font-size:34.560000pt;}
.fs15{font-size:36.896000pt;}
.fs1d{font-size:36.928000pt;}
.fsf{font-size:36.954667pt;}
.fs24{font-size:37.120000pt;}
.fs19{font-size:37.248000pt;}
.fsd{font-size:37.466667pt;}
.fs11{font-size:37.552000pt;}
.fs21{font-size:37.861333pt;}
.fs0{font-size:42.234667pt;}
.fs6{font-size:52.112000pt;}
.fsb{font-size:52.698667pt;}
.fs1c{font-size:52.752000pt;}
.fse{font-size:52.800000pt;}
.fs25{font-size:53.024000pt;}
.fs18{font-size:53.205333pt;}
.fsc{font-size:53.520000pt;}
.fs12{font-size:53.653333pt;}
.fs4{font-size:53.760000pt;}
.fs9{font-size:53.937531pt;}
.fs1f{font-size:53.941333pt;}
.fs20{font-size:54.085333pt;}
.fs10{font-size:54.649632pt;}
.fs7{font-size:55.643262pt;}
.fs3{font-size:64.000000pt;}
.fs13{font-size:71.808000pt;}
.fs16{font-size:71.941333pt;}
.fs26{font-size:72.101333pt;}
.fs17{font-size:72.496000pt;}
.fs1a{font-size:72.933333pt;}
.fs1e{font-size:73.162667pt;}
.fs5{font-size:74.234667pt;}
.fsa{font-size:74.282667pt;}
.fs1b{font-size:75.274667pt;}
.fs2{font-size:76.800000pt;}
.fs27{font-size:79.194667pt;}
.fs23{font-size:79.536000pt;}
.fs14{font-size:83.504000pt;}
.fs1{font-size:96.000000pt;}
.fs22{font-size:102.080000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:2.881333pt;}
.y50{bottom:3.200000pt;}
.y40{bottom:3.201333pt;}
.y9f{bottom:3.840000pt;}
.y98{bottom:3.841333pt;}
.y69{bottom:4.160000pt;}
.yb2{bottom:4.161333pt;}
.y9a{bottom:4.481333pt;}
.y2{bottom:49.600000pt;}
.y247{bottom:99.233333pt;}
.y1e4{bottom:100.481333pt;}
.y179{bottom:102.401333pt;}
.y1f1{bottom:104.640000pt;}
.y12e{bottom:106.240000pt;}
.y12d{bottom:106.284000pt;}
.y1b7{bottom:107.865333pt;}
.y14d{bottom:109.453333pt;}
.y58{bottom:111.046667pt;}
.y246{bottom:111.392000pt;}
.y2b{bottom:111.728000pt;}
.y1e3{bottom:112.640000pt;}
.ya4{bottom:114.240000pt;}
.y130{bottom:116.800000pt;}
.y178{bottom:117.760000pt;}
.y1b6{bottom:123.224000pt;}
.y245{bottom:123.550667pt;}
.y14c{bottom:124.812000pt;}
.y12f{bottom:125.120000pt;}
.y1e2{bottom:125.758667pt;}
.y57{bottom:126.405333pt;}
.ya3{bottom:129.598667pt;}
.y224{bottom:130.560000pt;}
.y177{bottom:133.118667pt;}
.y2a{bottom:134.446667pt;}
.y1b5{bottom:138.582667pt;}
.y1e1{bottom:138.878667pt;}
.y1f0{bottom:139.200000pt;}
.y14b{bottom:140.170667pt;}
.y56{bottom:141.764000pt;}
.y244{bottom:143.709333pt;}
.y12c{bottom:148.844000pt;}
.y29{bottom:149.805333pt;}
.y207{bottom:151.041333pt;}
.y1e0{bottom:151.361333pt;}
.y1b4{bottom:153.941333pt;}
.y27f{bottom:154.336000pt;}
.ya0{bottom:154.878667pt;}
.y14a{bottom:155.529333pt;}
.y243{bottom:155.549333pt;}
.ya2{bottom:162.878667pt;}
.y206{bottom:163.520000pt;}
.y12b{bottom:164.202667pt;}
.y28{bottom:165.164000pt;}
.y9d{bottom:166.398667pt;}
.y242{bottom:167.708000pt;}
.y1b3{bottom:169.300000pt;}
.y27e{bottom:169.694667pt;}
.y9e{bottom:170.878667pt;}
.y149{bottom:170.888000pt;}
.y1df{bottom:172.480000pt;}
.ya1{bottom:174.718667pt;}
.y1ef{bottom:175.360000pt;}
.y55{bottom:176.962667pt;}
.y12a{bottom:179.561333pt;}
.y241{bottom:180.186667pt;}
.y27{bottom:180.522667pt;}
.y1b2{bottom:184.338667pt;}
.yf6{bottom:184.645333pt;}
.y27d{bottom:184.733333pt;}
.yfd{bottom:185.285333pt;}
.y148{bottom:186.246667pt;}
.y100{bottom:188.484000pt;}
.yfa{bottom:188.485333pt;}
.y240{bottom:192.345333pt;}
.yf5{bottom:193.604000pt;}
.y129{bottom:194.920000pt;}
.y26{bottom:195.881333pt;}
.y1b1{bottom:199.697333pt;}
.y27c{bottom:200.092000pt;}
.y1de{bottom:201.598667pt;}
.y147{bottom:201.605333pt;}
.y99{bottom:202.558667pt;}
.y97{bottom:203.198667pt;}
.y9b{bottom:203.518667pt;}
.yfe{bottom:205.444000pt;}
.yf8{bottom:206.405333pt;}
.y9c{bottom:207.038667pt;}
.y101{bottom:208.642667pt;}
.yfb{bottom:208.644000pt;}
.y128{bottom:210.278667pt;}
.y25{bottom:211.240000pt;}
.y23f{bottom:212.504000pt;}
.y1dd{bottom:214.400000pt;}
.y27b{bottom:215.450667pt;}
.yf7{bottom:216.325333pt;}
.y146{bottom:216.964000pt;}
.y1b0{bottom:222.737333pt;}
.y23e{bottom:224.344000pt;}
.yff{bottom:225.284000pt;}
.y127{bottom:225.637333pt;}
.y1dc{bottom:227.518667pt;}
.yf9{bottom:228.165333pt;}
.y102{bottom:228.801333pt;}
.yfc{bottom:228.802667pt;}
.y27a{bottom:230.809333pt;}
.y145{bottom:232.322667pt;}
.y96{bottom:232.326667pt;}
.y24{bottom:233.958667pt;}
.y54{bottom:235.201333pt;}
.y23d{bottom:236.822667pt;}
.y1af{bottom:238.096000pt;}
.y1db{bottom:240.320000pt;}
.y126{bottom:240.996000pt;}
.y279{bottom:246.168000pt;}
.y95{bottom:247.365333pt;}
.y144{bottom:247.681333pt;}
.y23c{bottom:248.981333pt;}
.y23{bottom:249.317333pt;}
.y53{bottom:250.560000pt;}
.y1da{bottom:253.440000pt;}
.y1ae{bottom:253.454667pt;}
.yf4{bottom:254.404000pt;}
.y125{bottom:256.354667pt;}
.y278{bottom:261.526667pt;}
.y94{bottom:262.724000pt;}
.y22{bottom:264.676000pt;}
.y1d9{bottom:266.240000pt;}
.y1ad{bottom:268.813333pt;}
.y23b{bottom:269.140000pt;}
.yf3{bottom:269.762667pt;}
.y4f{bottom:273.280000pt;}
.y51{bottom:273.598667pt;}
.y4e{bottom:276.485333pt;}
.y52{bottom:276.798667pt;}
.y277{bottom:276.885333pt;}
.y1d8{bottom:279.040000pt;}
.y21{bottom:280.034667pt;}
.y143{bottom:280.961333pt;}
.y23a{bottom:280.980000pt;}
.y1ac{bottom:283.852000pt;}
.yf2{bottom:284.801333pt;}
.y124{bottom:291.234667pt;}
.y1d7{bottom:291.518667pt;}
.y276{bottom:292.244000pt;}
.y142{bottom:293.121333pt;}
.y239{bottom:293.138667pt;}
.y20{bottom:295.393333pt;}
.y93{bottom:297.284000pt;}
.y4d{bottom:300.165333pt;}
.y223{bottom:301.473333pt;}
.y1d6{bottom:304.320000pt;}
.y141{bottom:305.280000pt;}
.y238{bottom:305.617333pt;}
.y275{bottom:307.602667pt;}
.ye6{bottom:308.798667pt;}
.yeb{bottom:309.117333pt;}
.y1f{bottom:310.752000pt;}
.yed{bottom:312.637333pt;}
.ye9{bottom:312.638667pt;}
.y123{bottom:312.673333pt;}
.y4c{bottom:315.524000pt;}
.y222{bottom:316.832000pt;}
.y1d5{bottom:317.758667pt;}
.y1ab{bottom:318.412000pt;}
.ye7{bottom:320.957333pt;}
.y274{bottom:322.961333pt;}
.yea{bottom:323.197333pt;}
.yef{bottom:323.198667pt;}
.yf1{bottom:323.201333pt;}
.y237{bottom:325.776000pt;}
.y1e{bottom:326.110667pt;}
.y8c{bottom:327.361333pt;}
.yec{bottom:328.957333pt;}
.y1d4{bottom:330.257333pt;}
.y88{bottom:330.880000pt;}
.y4b{bottom:330.882667pt;}
.yee{bottom:332.157333pt;}
.yf0{bottom:332.160000pt;}
.y221{bottom:332.190667pt;}
.ye8{bottom:332.797333pt;}
.y85{bottom:336.958667pt;}
.y236{bottom:337.616000pt;}
.y176{bottom:338.882667pt;}
.y1d{bottom:341.469333pt;}
.y8b{bottom:342.400000pt;}
.y91{bottom:342.404000pt;}
.y1d3{bottom:342.416000pt;}
.y273{bottom:345.680000pt;}
.y4a{bottom:346.241333pt;}
.y8d{bottom:347.201333pt;}
.y220{bottom:347.549333pt;}
.y1aa{bottom:347.850667pt;}
.y235{bottom:349.774667pt;}
.y89{bottom:350.720000pt;}
.y8f{bottom:350.722667pt;}
.y175{bottom:354.241333pt;}
.y86{bottom:356.798667pt;}
.y1c{bottom:356.828000pt;}
.ye5{bottom:359.069333pt;}
.y49{bottom:359.358667pt;}
.y272{bottom:361.038667pt;}
.y48{bottom:361.280000pt;}
.y47{bottom:361.282667pt;}
.y8a{bottom:361.920000pt;}
.y92{bottom:361.924000pt;}
.y21f{bottom:362.908000pt;}
.y1a9{bottom:363.209333pt;}
.y8e{bottom:366.721333pt;}
.y234{bottom:369.933333pt;}
.y90{bottom:370.242667pt;}
.y122{bottom:371.233333pt;}
.y1b{bottom:372.186667pt;}
.ye4{bottom:374.428000pt;}
.y1d2{bottom:376.014667pt;}
.y87{bottom:376.318667pt;}
.y271{bottom:376.397333pt;}
.y170{bottom:377.918667pt;}
.y46{bottom:377.922667pt;}
.y21e{bottom:377.946667pt;}
.y1a8{bottom:378.568000pt;}
.y233{bottom:381.773333pt;}
.y121{bottom:386.592000pt;}
.y172{bottom:388.478667pt;}
.y174{bottom:388.480000pt;}
.ye3{bottom:389.786667pt;}
.y270{bottom:391.756000pt;}
.y45{bottom:392.961333pt;}
.y21d{bottom:393.305333pt;}
.y1a7{bottom:393.926667pt;}
.y232{bottom:394.252000pt;}
.y1d1{bottom:396.173333pt;}
.y171{bottom:397.118667pt;}
.y173{bottom:397.120000pt;}
.y84{bottom:397.444000pt;}
.y120{bottom:401.950667pt;}
.y205{bottom:404.161333pt;}
.ye2{bottom:404.825333pt;}
.y231{bottom:406.410667pt;}
.y1a{bottom:407.066667pt;}
.y26f{bottom:407.114667pt;}
.y44{bottom:408.320000pt;}
.y21c{bottom:408.664000pt;}
.y1d0{bottom:411.532000pt;}
.y83{bottom:412.482667pt;}
.y204{bottom:416.320000pt;}
.y11f{bottom:417.309333pt;}
.ye1{bottom:420.184000pt;}
.y1ee{bottom:421.120000pt;}
.y16f{bottom:422.405333pt;}
.y26e{bottom:422.473333pt;}
.y230{bottom:426.569333pt;}
.y1cf{bottom:426.890667pt;}
.y82{bottom:427.841333pt;}
.y1a6{bottom:429.125333pt;}
.y3f{bottom:431.358667pt;}
.y41{bottom:431.678667pt;}
.y21b{bottom:431.704000pt;}
.y11e{bottom:432.348000pt;}
.y1ed{bottom:433.278667pt;}
.y3e{bottom:434.628000pt;}
.y43{bottom:434.880000pt;}
.ye0{bottom:435.542667pt;}
.y16e{bottom:437.444000pt;}
.y26d{bottom:437.832000pt;}
.y22f{bottom:438.409333pt;}
.y1ce{bottom:442.249333pt;}
.y81{bottom:443.200000pt;}
.y21a{bottom:447.062667pt;}
.y11d{bottom:447.706667pt;}
.y22e{bottom:450.888000pt;}
.ydf{bottom:450.901333pt;}
.y16d{bottom:452.802667pt;}
.y26c{bottom:452.870667pt;}
.y1cd{bottom:457.608000pt;}
.y3d{bottom:457.986667pt;}
.y80{bottom:458.558667pt;}
.y219{bottom:462.421333pt;}
.y22d{bottom:463.046667pt;}
.y11c{bottom:463.065333pt;}
.y140{bottom:464.960000pt;}
.y19{bottom:465.305333pt;}
.yde{bottom:466.260000pt;}
.y16c{bottom:468.161333pt;}
.y26b{bottom:468.229333pt;}
.y1cc{bottom:472.966667pt;}
.y3c{bottom:473.345333pt;}
.y218{bottom:477.460000pt;}
.y18{bottom:480.664000pt;}
.ydd{bottom:481.618667pt;}
.y16b{bottom:483.520000pt;}
.y1a5{bottom:487.364000pt;}
.y1cb{bottom:488.325333pt;}
.y217{bottom:492.818667pt;}
.y7f{bottom:493.118667pt;}
.y22c{bottom:496.005333pt;}
.y3b{bottom:496.064000pt;}
.ydc{bottom:496.977333pt;}
.y11b{bottom:497.625333pt;}
.y1a4{bottom:502.722667pt;}
.y26a{bottom:503.428000pt;}
.y1ca{bottom:503.684000pt;}
.y216{bottom:508.177333pt;}
.y3a{bottom:511.422667pt;}
.ydb{bottom:512.336000pt;}
.y17{bottom:515.862667pt;}
.y16a{bottom:518.080000pt;}
.y1a3{bottom:518.081333pt;}
.y1c9{bottom:518.722667pt;}
.y215{bottom:523.536000pt;}
.y7a{bottom:525.118667pt;}
.y39{bottom:526.781333pt;}
.y11a{bottom:527.064000pt;}
.yda{bottom:527.694667pt;}
.y7d{bottom:533.118667pt;}
.y1c8{bottom:534.081333pt;}
.y7c{bottom:536.638667pt;}
.y214{bottom:538.894667pt;}
.y7e{bottom:541.758667pt;}
.y38{bottom:542.140000pt;}
.y19e{bottom:542.400000pt;}
.y119{bottom:542.422667pt;}
.y7b{bottom:544.958667pt;}
.y1a0{bottom:545.920000pt;}
.y169{bottom:547.518667pt;}
.yd9{bottom:550.413333pt;}
.y22b{bottom:554.244000pt;}
.y213{bottom:554.253333pt;}
.y1a2{bottom:556.480000pt;}
.y37{bottom:557.498667pt;}
.y118{bottom:557.781333pt;}
.y269{bottom:561.346667pt;}
.y19f{bottom:561.920000pt;}
.y168{bottom:562.877333pt;}
.y1a1{bottom:565.120000pt;}
.yd8{bottom:565.772000pt;}
.y1c7{bottom:567.680000pt;}
.y22a{bottom:569.602667pt;}
.y79{bottom:572.481333pt;}
.y36{bottom:572.857333pt;}
.y117{bottom:573.140000pt;}
.y268{bottom:573.186667pt;}
.y16{bottom:574.101333pt;}
.y212{bottom:576.972000pt;}
.y1c6{bottom:579.838667pt;}
.yd7{bottom:581.130667pt;}
.y162{bottom:586.878667pt;}
.y78{bottom:587.840000pt;}
.y35{bottom:588.216000pt;}
.y116{bottom:588.498667pt;}
.y160{bottom:589.758667pt;}
.y15{bottom:589.780000pt;}
.y19d{bottom:590.082667pt;}
.y211{bottom:592.330667pt;}
.y15f{bottom:592.634667pt;}
.y165{bottom:592.637333pt;}
.y267{bottom:593.345333pt;}
.y166{bottom:596.476000pt;}
.yd6{bottom:596.489333pt;}
.y161{bottom:600.638667pt;}
.y164{bottom:602.237333pt;}
.y34{bottom:603.574667pt;}
.y115{bottom:603.857333pt;}
.y229{bottom:604.482667pt;}
.y14{bottom:604.818667pt;}
.y266{bottom:605.185333pt;}
.y19c{bottom:605.441333pt;}
.y210{bottom:607.689333pt;}
.y163{bottom:607.997333pt;}
.y75{bottom:611.520000pt;}
.y71{bottom:615.038667pt;}
.y167{bottom:616.317333pt;}
.y265{bottom:617.664000pt;}
.y114{bottom:619.216000pt;}
.y13{bottom:620.177333pt;}
.y19b{bottom:620.480000pt;}
.y20f{bottom:623.048000pt;}
.y72{bottom:626.558667pt;}
.y77{bottom:626.560000pt;}
.yd5{bottom:630.728000pt;}
.y76{bottom:631.678667pt;}
.y13f{bottom:632.982667pt;}
.y113{bottom:634.254667pt;}
.y74{bottom:634.878667pt;}
.y12{bottom:635.536000pt;}
.y264{bottom:637.822667pt;}
.y20e{bottom:638.406667pt;}
.y33{bottom:638.454667pt;}
.y73{bottom:640.958667pt;}
.y159{bottom:641.597333pt;}
.y156{bottom:641.598667pt;}
.y193{bottom:647.996000pt;}
.y196{bottom:647.997333pt;}
.y18f{bottom:647.998667pt;}
.y198{bottom:648.000000pt;}
.y13e{bottom:648.341333pt;}
.y112{bottom:649.613333pt;}
.y263{bottom:649.662667pt;}
.y15d{bottom:650.554667pt;}
.y11{bottom:650.894667pt;}
.y190{bottom:652.476000pt;}
.y18d{bottom:652.478667pt;}
.y158{bottom:653.437333pt;}
.y155{bottom:653.438667pt;}
.y20d{bottom:653.765333pt;}
.y15e{bottom:654.074667pt;}
.y15b{bottom:654.076000pt;}
.y18b{bottom:655.358667pt;}
.y197{bottom:658.556000pt;}
.y18e{bottom:658.557333pt;}
.y19a{bottom:658.558667pt;}
.yd4{bottom:660.488000pt;}
.y262{bottom:661.821333pt;}
.y15a{bottom:662.076000pt;}
.y157{bottom:662.077333pt;}
.y70{bottom:662.405333pt;}
.y15c{bottom:662.716000pt;}
.y18a{bottom:663.038667pt;}
.y13d{bottom:663.700000pt;}
.y111{bottom:664.972000pt;}
.y191{bottom:666.236000pt;}
.y18c{bottom:666.238667pt;}
.y10{bottom:666.253333pt;}
.y194{bottom:666.876000pt;}
.y195{bottom:666.877333pt;}
.y199{bottom:666.878667pt;}
.y203{bottom:668.160000pt;}
.y20c{bottom:669.124000pt;}
.y192{bottom:672.954667pt;}
.y261{bottom:674.300000pt;}
.yd3{bottom:675.846667pt;}
.y6f{bottom:677.764000pt;}
.y13c{bottom:679.058667pt;}
.y228{bottom:680.961333pt;}
.y202{bottom:681.278667pt;}
.yf{bottom:681.612000pt;}
.y20b{bottom:684.482667pt;}
.y260{bottom:686.458667pt;}
.y154{bottom:688.965333pt;}
.y1ec{bottom:692.161333pt;}
.y6e{bottom:693.122667pt;}
.y227{bottom:693.441333pt;}
.y201{bottom:694.078667pt;}
.y13b{bottom:694.417333pt;}
.y189{bottom:694.737333pt;}
.ye{bottom:696.970667pt;}
.y32{bottom:697.014667pt;}
.y110{bottom:699.532000pt;}
.yc8{bottom:699.841333pt;}
.ycc{bottom:699.844000pt;}
.yd1{bottom:700.165333pt;}
.yce{bottom:703.365333pt;}
.yc5{bottom:703.678667pt;}
.y1eb{bottom:704.640000pt;}
.y226{bottom:706.558667pt;}
.y25f{bottom:706.617333pt;}
.y200{bottom:706.878667pt;}
.yc6{bottom:708.160000pt;}
.yca{bottom:708.162667pt;}
.y13a{bottom:709.776000pt;}
.y6c{bottom:711.681333pt;}
.yd{bottom:712.329333pt;}
.y31{bottom:712.373333pt;}
.yd0{bottom:714.245333pt;}
.yc7{bottom:715.200000pt;}
.ycb{bottom:715.202667pt;}
.y6d{bottom:715.520000pt;}
.y10f{bottom:717.770667pt;}
.yc3{bottom:718.398667pt;}
.y25e{bottom:718.457333pt;}
.yc4{bottom:718.718667pt;}
.yd2{bottom:719.365333pt;}
.y1ff{bottom:720.000000pt;}
.ycf{bottom:722.565333pt;}
.y153{bottom:723.525333pt;}
.yc9{bottom:723.841333pt;}
.ycd{bottom:723.844000pt;}
.y139{bottom:725.134667pt;}
.yc{bottom:727.688000pt;}
.y30{bottom:727.732000pt;}
.y188{bottom:728.976000pt;}
.y25d{bottom:730.616000pt;}
.y1fe{bottom:732.801333pt;}
.y20a{bottom:734.721333pt;}
.y68{bottom:737.600000pt;}
.y138{bottom:740.493333pt;}
.y6a{bottom:741.760000pt;}
.yb{bottom:743.046667pt;}
.y2f{bottom:743.090667pt;}
.y25c{bottom:743.094667pt;}
.y1fd{bottom:745.280000pt;}
.y6b{bottom:745.598667pt;}
.y10e{bottom:747.530667pt;}
.ybe{bottom:751.037333pt;}
.y152{bottom:752.964000pt;}
.y25b{bottom:755.253333pt;}
.y137{bottom:755.852000pt;}
.yc2{bottom:757.758667pt;}
.yb7{bottom:757.760000pt;}
.yb4{bottom:757.761333pt;}
.y1fc{bottom:758.078667pt;}
.ya{bottom:758.405333pt;}
.y2e{bottom:758.449333pt;}
.y187{bottom:758.736000pt;}
.ybd{bottom:762.877333pt;}
.y10d{bottom:762.889333pt;}
.y151{bottom:768.322667pt;}
.y67{bottom:768.337333pt;}
.y1fb{bottom:770.898667pt;}
.y136{bottom:771.210667pt;}
.y9{bottom:773.444000pt;}
.y2d{bottom:773.488000pt;}
.y186{bottom:774.094667pt;}
.yc0{bottom:775.357333pt;}
.y25a{bottom:775.412000pt;}
.ybb{bottom:777.917333pt;}
.yb8{bottom:777.918667pt;}
.yb3{bottom:777.920000pt;}
.y10c{bottom:777.928000pt;}
.yb6{bottom:781.758667pt;}
.y1fa{bottom:783.377333pt;}
.y150{bottom:783.681333pt;}
.y66{bottom:783.696000pt;}
.y259{bottom:787.252000pt;}
.ybf{bottom:787.516000pt;}
.y8{bottom:788.802667pt;}
.y2c{bottom:788.846667pt;}
.y185{bottom:789.133333pt;}
.y209{bottom:792.321333pt;}
.y10b{bottom:793.286667pt;}
.yb1{bottom:793.598667pt;}
.y135{bottom:793.929333pt;}
.yba{bottom:794.557333pt;}
.ybc{bottom:797.757333pt;}
.yb9{bottom:797.758667pt;}
.yb5{bottom:797.760000pt;}
.y65{bottom:799.054667pt;}
.y258{bottom:799.730667pt;}
.yc1{bottom:799.997333pt;}
.y184{bottom:804.492000pt;}
.y1f9{bottom:804.496000pt;}
.y208{bottom:804.800000pt;}
.y10a{bottom:808.645333pt;}
.y134{bottom:809.288000pt;}
.y257{bottom:811.889333pt;}
.y64{bottom:814.413333pt;}
.y14f{bottom:816.961333pt;}
.y183{bottom:819.850667pt;}
.y109{bottom:824.004000pt;}
.y133{bottom:824.646667pt;}
.y1f8{bottom:824.654667pt;}
.yb0{bottom:825.613333pt;}
.y14e{bottom:829.440000pt;}
.y256{bottom:832.048000pt;}
.y108{bottom:839.362667pt;}
.y1f7{bottom:840.013333pt;}
.yaf{bottom:840.972000pt;}
.y7{bottom:841.922667pt;}
.y255{bottom:843.888000pt;}
.y1c5{bottom:844.480000pt;}
.y63{bottom:848.652000pt;}
.y182{bottom:854.410667pt;}
.y107{bottom:854.721333pt;}
.y1f6{bottom:855.372000pt;}
.yae{bottom:856.330667pt;}
.y254{bottom:856.366667pt;}
.y1c4{bottom:857.280000pt;}
.y132{bottom:859.526667pt;}
.y253{bottom:868.525333pt;}
.y225{bottom:869.120000pt;}
.y106{bottom:870.080000pt;}
.y1c3{bottom:870.398667pt;}
.y1f5{bottom:870.730667pt;}
.yad{bottom:871.689333pt;}
.y6{bottom:876.161333pt;}
.y62{bottom:878.090667pt;}
.y252{bottom:880.684000pt;}
.y131{bottom:881.286667pt;}
.y1c2{bottom:883.198667pt;}
.y181{bottom:883.849333pt;}
.y1f4{bottom:886.089333pt;}
.yac{bottom:887.048000pt;}
.y61{bottom:893.449333pt;}
.y1c1{bottom:896.320000pt;}
.y180{bottom:899.208000pt;}
.y5{bottom:899.520000pt;}
.y251{bottom:900.842667pt;}
.y1f3{bottom:901.448000pt;}
.yab{bottom:902.406667pt;}
.y105{bottom:903.360000pt;}
.y60{bottom:908.808000pt;}
.y1c0{bottom:909.120000pt;}
.y250{bottom:912.682667pt;}
.y17f{bottom:914.566667pt;}
.y104{bottom:915.841333pt;}
.y1f2{bottom:916.806667pt;}
.yaa{bottom:917.445333pt;}
.y1bf{bottom:921.920000pt;}
.y5f{bottom:924.166667pt;}
.y24f{bottom:925.161333pt;}
.y4{bottom:929.280000pt;}
.y17e{bottom:929.925333pt;}
.ya9{bottom:932.804000pt;}
.y1be{bottom:934.398667pt;}
.y103{bottom:937.280000pt;}
.y24e{bottom:937.320000pt;}
.y5e{bottom:939.525333pt;}
.y17d{bottom:945.284000pt;}
.y1bd{bottom:947.198667pt;}
.ya8{bottom:948.162667pt;}
.y24d{bottom:949.478667pt;}
.y1ea{bottom:952.640000pt;}
.y5d{bottom:954.884000pt;}
.y1bc{bottom:960.640000pt;}
.y17c{bottom:960.642667pt;}
.ya7{bottom:963.521333pt;}
.y1e9{bottom:965.760000pt;}
.y24c{bottom:969.637333pt;}
.y5c{bottom:970.242667pt;}
.y1bb{bottom:973.122667pt;}
.y1e8{bottom:978.558667pt;}
.ya6{bottom:978.880000pt;}
.y24b{bottom:981.796000pt;}
.y5b{bottom:985.601333pt;}
.y3{bottom:986.880000pt;}
.y1e7{bottom:991.678667pt;}
.y24a{bottom:993.954667pt;}
.y1ba{bottom:994.241333pt;}
.y17b{bottom:994.881333pt;}
.y5a{bottom:1000.960000pt;}
.y1e6{bottom:1004.480000pt;}
.y1b9{bottom:1006.081333pt;}
.y249{bottom:1006.113333pt;}
.ya5{bottom:1013.118667pt;}
.y17a{bottom:1013.120000pt;}
.y59{bottom:1016.318667pt;}
.y1e5{bottom:1017.600000pt;}
.y1b8{bottom:1018.560000pt;}
.y248{bottom:1018.592000pt;}
.y1{bottom:1057.280000pt;}
.hc{height:14.718667pt;}
.h10{height:14.720000pt;}
.ha{height:15.038667pt;}
.h25{height:18.240000pt;}
.h27{height:18.880000pt;}
.h13{height:19.838667pt;}
.h2b{height:20.480000pt;}
.h34{height:20.800000pt;}
.h32{height:21.120000pt;}
.h2c{height:21.440000pt;}
.h50{height:34.229982pt;}
.h47{height:34.383125pt;}
.h29{height:36.211406pt;}
.h38{height:36.224781pt;}
.h1e{height:36.250940pt;}
.h53{height:36.268984pt;}
.h4c{height:36.413125pt;}
.h4a{height:36.431250pt;}
.h30{height:36.538687pt;}
.h19{height:36.753190pt;}
.h17{height:36.771484pt;}
.h22{height:36.836898pt;}
.h20{height:36.855234pt;}
.h43{height:37.158828pt;}
.h5{height:41.451016pt;}
.h3b{height:42.564625pt;}
.h55{height:42.731016pt;}
.h2{height:44.049438pt;}
.hd{height:48.269758pt;}
.h37{height:48.862570pt;}
.h51{height:48.907031pt;}
.h49{height:49.114516pt;}
.h31{height:49.282479pt;}
.h36{height:49.573945pt;}
.h24{height:49.697448pt;}
.h11{height:49.960692pt;}
.h3e{height:49.964214pt;}
.h40{height:50.097596pt;}
.h1f{height:50.620289pt;}
.hb{height:51.119633pt;}
.h9{height:51.145078pt;}
.h1a{height:51.482500pt;}
.he{height:51.540658pt;}
.h15{height:51.720859pt;}
.h39{height:51.747445pt;}
.h3a{height:51.773203pt;}
.h1c{height:51.794531pt;}
.h1b{height:51.820312pt;}
.h4b{height:52.040156pt;}
.h2f{height:52.192146pt;}
.h2e{height:52.218125pt;}
.h18{height:52.500820pt;}
.h16{height:52.526953pt;}
.h23{height:52.631615pt;}
.h21{height:52.657812pt;}
.h7{height:52.736250pt;}
.h6{height:52.762500pt;}
.h3f{height:52.914130pt;}
.h3d{height:52.940469pt;}
.h41{height:53.055388pt;}
.h44{height:53.081797pt;}
.h59{height:54.180000pt;}
.h1d{height:55.450940pt;}
.h42{height:57.633495pt;}
.h54{height:58.233417pt;}
.h12{height:64.500000pt;}
.hf{height:65.918750pt;}
.h26{height:66.513563pt;}
.h2a{height:66.637065pt;}
.h4e{height:66.785268pt;}
.h52{height:66.983651pt;}
.h58{height:67.045682pt;}
.h2d{height:67.150836pt;}
.h33{height:67.555924pt;}
.h3c{height:67.768349pt;}
.h56{height:68.331016pt;}
.h14{height:68.805771pt;}
.h35{height:69.724630pt;}
.h4{height:70.885682pt;}
.h48{height:72.154516pt;}
.h4f{height:73.355607pt;}
.h46{height:73.671773pt;}
.h8{height:74.814625pt;}
.h4d{height:75.054266pt;}
.h28{height:77.347211pt;}
.h57{height:92.479292pt;}
.h45{height:94.553594pt;}
.h3{height:96.750000pt;}
.h0{height:1122.558667pt;}
.h1{height:1122.666667pt;}
.w6{width:3.198667pt;}
.w2{width:3.838667pt;}
.wc{width:4.160000pt;}
.wa{width:4.478667pt;}
.wb{width:4.480000pt;}
.w5{width:5.758667pt;}
.w3{width:6.718667pt;}
.w8{width:6.720000pt;}
.w7{width:7.358667pt;}
.w9{width:8.000000pt;}
.w4{width:8.640000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:75.520000pt;}
.x27{left:80.980000pt;}
.x9d{left:84.478667pt;}
.x9e{left:87.358667pt;}
.xa1{left:88.958667pt;}
.x94{left:90.560000pt;}
.xa2{left:92.160000pt;}
.x95{left:93.438667pt;}
.x7{left:94.392000pt;}
.x26{left:95.698667pt;}
.x4{left:96.952000pt;}
.x98{left:98.878667pt;}
.x97{left:100.160000pt;}
.x99{left:101.120000pt;}
.x96{left:103.038667pt;}
.x2{left:107.838667pt;}
.x8{left:113.272000pt;}
.x7a{left:137.604000pt;}
.x25{left:144.969333pt;}
.xaa{left:146.240000pt;}
.x9c{left:153.600000pt;}
.x6f{left:159.049333pt;}
.x74{left:162.560000pt;}
.x6d{left:163.524000pt;}
.xa0{left:164.478667pt;}
.x93{left:167.680000pt;}
.x33{left:169.924000pt;}
.x6e{left:171.526667pt;}
.x35{left:175.365333pt;}
.x3b{left:178.878667pt;}
.x77{left:181.120000pt;}
.x3f{left:196.158667pt;}
.x32{left:200.324000pt;}
.x39{left:201.602667pt;}
.x2c{left:203.200000pt;}
.x34{left:204.804000pt;}
.x37{left:206.402667pt;}
.x40{left:207.678667pt;}
.x80{left:208.640000pt;}
.x44{left:211.200000pt;}
.x3a{left:213.762667pt;}
.x3c{left:215.678667pt;}
.x81{left:221.440000pt;}
.x45{left:222.398667pt;}
.x29{left:224.320000pt;}
.x76{left:226.881333pt;}
.x7f{left:228.805333pt;}
.x2d{left:232.637333pt;}
.x79{left:233.601333pt;}
.x31{left:234.562667pt;}
.x78{left:236.481333pt;}
.x30{left:239.040000pt;}
.x7b{left:240.964000pt;}
.x75{left:243.521333pt;}
.x41{left:244.480000pt;}
.x7e{left:245.444000pt;}
.x36{left:246.398667pt;}
.x42{left:248.320000pt;}
.x38{left:249.284000pt;}
.x2b{left:250.240000pt;}
.x6b{left:251.510667pt;}
.x43{left:252.480000pt;}
.x72{left:253.760000pt;}
.x6{left:255.992000pt;}
.x2a{left:256.960000pt;}
.x5{left:259.830667pt;}
.x9f{left:261.118667pt;}
.x73{left:263.998667pt;}
.x28{left:264.958667pt;}
.x22{left:267.838667pt;}
.x2e{left:277.758667pt;}
.x2f{left:281.918667pt;}
.x3e{left:284.798667pt;}
.x71{left:290.878667pt;}
.x3d{left:293.758667pt;}
.x3{left:301.752000pt;}
.x6c{left:303.360000pt;}
.x24{left:308.160000pt;}
.x23{left:312.958667pt;}
.x7d{left:334.084000pt;}
.x7c{left:342.084000pt;}
.x9b{left:356.481333pt;}
.x9a{left:362.560000pt;}
.x9{left:407.990667pt;}
.xa6{left:428.480000pt;}
.xa7{left:430.080000pt;}
.xa3{left:431.038667pt;}
.xa8{left:432.320000pt;}
.xa5{left:434.880000pt;}
.xa4{left:438.400000pt;}
.xa{left:445.750667pt;}
.x4b{left:452.169333pt;}
.x15{left:456.638667pt;}
.x4f{left:462.102667pt;}
.x16{left:464.638667pt;}
.x4a{left:466.568000pt;}
.x8f{left:471.044000pt;}
.x53{left:474.262667pt;}
.x70{left:475.838667pt;}
.xa9{left:478.720000pt;}
.x6a{left:483.210667pt;}
.x52{left:484.502667pt;}
.x61{left:485.442667pt;}
.x89{left:486.724000pt;}
.x69{left:489.286667pt;}
.x63{left:491.522667pt;}
.x65{left:492.806667pt;}
.x5e{left:495.361333pt;}
.x1d{left:500.798667pt;}
.x64{left:503.044000pt;}
.x5d{left:506.560000pt;}
.x1c{left:512.320000pt;}
.x88{left:513.922667pt;}
.x11{left:518.400000pt;}
.x8e{left:520.001333pt;}
.x5c{left:523.205333pt;}
.x20{left:524.480000pt;}
.x67{left:525.446667pt;}
.x10{left:529.598667pt;}
.x87{left:533.442667pt;}
.x1b{left:535.038667pt;}
.x83{left:538.560000pt;}
.x13{left:542.080000pt;}
.x1a{left:548.798667pt;}
.xf{left:552.638667pt;}
.x49{left:556.485333pt;}
.x92{left:557.761333pt;}
.x1f{left:559.678667pt;}
.x85{left:560.641333pt;}
.x84{left:563.200000pt;}
.x19{left:565.118667pt;}
.xe{left:566.400000pt;}
.x68{left:569.925333pt;}
.x91{left:572.800000pt;}
.x12{left:577.278667pt;}
.xd{left:582.400000pt;}
.x62{left:584.321333pt;}
.x59{left:586.238667pt;}
.x1e{left:588.160000pt;}
.x54{left:592.320000pt;}
.xc{left:594.240000pt;}
.x86{left:595.201333pt;}
.xb{left:598.709333pt;}
.x8a{left:600.004000pt;}
.x55{left:600.958667pt;}
.x4e{left:601.934667pt;}
.x5f{left:604.478667pt;}
.x14{left:606.400000pt;}
.x57{left:607.358667pt;}
.x18{left:611.838667pt;}
.x5a{left:614.080000pt;}
.x8b{left:615.045333pt;}
.x17{left:616.633333pt;}
.x60{left:618.238667pt;}
.x5b{left:620.481333pt;}
.x48{left:622.081333pt;}
.x21{left:624.000000pt;}
.x56{left:626.878667pt;}
.x66{left:628.485333pt;}
.x46{left:630.398667pt;}
.x58{left:632.320000pt;}
.x8d{left:634.562667pt;}
.x47{left:638.718667pt;}
.x8c{left:642.884000pt;}
.x51{left:645.142667pt;}
.x82{left:646.398667pt;}
.x4c{left:649.609333pt;}
.x90{left:654.080000pt;}
.x4d{left:655.052000pt;}
.x50{left:660.821333pt;}
}




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