
    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_b96cd1c507e6fde17b2c6b93.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_61b076c879464f9a1b8236b4.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2120e49cc6eba33cf933891e.woff')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_555428814ecf4d183013a535.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c8d97924c2533a354f6e4f93.woff')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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5e1960447baaace08207e1ab.woff')format("woff");}.ff7{font-family:ff7;line-height:1.128418;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_623f7efb8bfd6dd4777438e8.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f56e8bc1469c4105a32f9227.woff')format("woff");}.ff9{font-family:ff9;line-height:1.128418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_aa390df0358f8144c1a33ebd.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9150d58e33ff531fde9ae19f.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6eb7837a8b4ef481c6b55e75.woff')format("woff");}.ffc{font-family:ffc;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250146,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.ls34{letter-spacing:-6.480000px;}
.ls43{letter-spacing:-5.976000px;}
.ls6d{letter-spacing:-5.736960px;}
.ls29{letter-spacing:-5.256000px;}
.ls71{letter-spacing:-5.019840px;}
.ls74{letter-spacing:-4.780800px;}
.ls72{letter-spacing:-4.661280px;}
.ls80{letter-spacing:-4.245120px;}
.ls4d{letter-spacing:-3.944160px;}
.ls97{letter-spacing:-2.868970px;}
.ls51{letter-spacing:-2.509920px;}
.ls6b{letter-spacing:-2.390400px;}
.ls90{letter-spacing:-1.912646px;}
.ls63{letter-spacing:-1.792800px;}
.ls7f{letter-spacing:-1.784880px;}
.ls49{letter-spacing:-1.728000px;}
.ls40{letter-spacing:-1.656000px;}
.ls26{letter-spacing:-1.440000px;}
.ls98{letter-spacing:-1.434485px;}
.ls93{letter-spacing:-1.408869px;}
.ls91{letter-spacing:-1.403188px;}
.ls85{letter-spacing:-1.398960px;}
.ls6a{letter-spacing:-1.135440px;}
.ls70{letter-spacing:-1.075680px;}
.ls88{letter-spacing:-1.013040px;}
.ls9{letter-spacing:-0.936000px;}
.ls8f{letter-spacing:-0.896553px;}
.ls6c{letter-spacing:-0.836640px;}
.ls32{letter-spacing:-0.792000px;}
.ls15{letter-spacing:-0.720000px;}
.ls82{letter-spacing:-0.675360px;}
.ls6f{letter-spacing:-0.657360px;}
.ls25{letter-spacing:-0.576000px;}
.ls5b{letter-spacing:-0.537840px;}
.ls7e{letter-spacing:-0.530640px;}
.ls1f{letter-spacing:-0.504000px;}
.ls84{letter-spacing:-0.482400px;}
.ls99{letter-spacing:-0.478162px;}
.ls38{letter-spacing:-0.478080px;}
.ls83{letter-spacing:-0.434160px;}
.ls3f{letter-spacing:-0.432000px;}
.ls39{letter-spacing:-0.358560px;}
.ls81{letter-spacing:-0.337680px;}
.ls86{letter-spacing:-0.289440px;}
.ls7{letter-spacing:-0.288000px;}
.ls5a{letter-spacing:-0.239040px;}
.ls8{letter-spacing:-0.216000px;}
.ls87{letter-spacing:-0.192960px;}
.ls41{letter-spacing:-0.144000px;}
.ls59{letter-spacing:-0.119520px;}
.ls6{letter-spacing:-0.084240px;}
.ls46{letter-spacing:-0.072000px;}
.ls37{letter-spacing:-0.059760px;}
.ls5{letter-spacing:0.000000px;}
.ls8d{letter-spacing:0.019724px;}
.ls8c{letter-spacing:0.020323px;}
.ls54{letter-spacing:0.053784px;}
.ls58{letter-spacing:0.059760px;}
.lsf{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.084240px;}
.ls3c{letter-spacing:0.119520px;}
.lse{letter-spacing:0.144000px;}
.ls77{letter-spacing:0.154368px;}
.ls76{letter-spacing:0.156240px;}
.ls75{letter-spacing:0.161352px;}
.ls4c{letter-spacing:0.179280px;}
.ls7a{letter-spacing:0.192960px;}
.ls62{letter-spacing:0.203184px;}
.ls28{letter-spacing:0.216000px;}
.ls5d{letter-spacing:0.227088px;}
.ls50{letter-spacing:0.239040px;}
.ls7d{letter-spacing:0.241200px;}
.ls4a{letter-spacing:0.256968px;}
.ls4e{letter-spacing:0.268920px;}
.ls5e{letter-spacing:0.274896px;}
.lsa{letter-spacing:0.288000px;}
.ls79{letter-spacing:0.289440px;}
.ls1{letter-spacing:0.336000px;}
.ls3{letter-spacing:0.336960px;}
.ls7b{letter-spacing:0.337680px;}
.ls2{letter-spacing:0.338400px;}
.ls36{letter-spacing:0.358560px;}
.ls7c{letter-spacing:0.361800px;}
.ls55{letter-spacing:0.376488px;}
.ls69{letter-spacing:0.382464px;}
.ls48{letter-spacing:0.385920px;}
.ls1e{letter-spacing:0.432000px;}
.ls67{letter-spacing:0.478080px;}
.ls78{letter-spacing:0.482400px;}
.ls12{letter-spacing:0.504000px;}
.ls44{letter-spacing:0.511200px;}
.ls45{letter-spacing:0.525600px;}
.ls68{letter-spacing:0.597600px;}
.ls64{letter-spacing:0.657360px;}
.ls10{letter-spacing:0.720000px;}
.ls89{letter-spacing:0.774173px;}
.ls3a{letter-spacing:0.792000px;}
.ls5f{letter-spacing:0.836640px;}
.ls16{letter-spacing:0.864000px;}
.ls4f{letter-spacing:0.896400px;}
.ls5c{letter-spacing:0.914328px;}
.ls73{letter-spacing:0.920304px;}
.ls53{letter-spacing:0.956160px;}
.ls8b{letter-spacing:0.964976px;}
.ls9a{letter-spacing:0.967716px;}
.ls94{letter-spacing:0.981939px;}
.ls52{letter-spacing:1.075680px;}
.ls92{letter-spacing:1.306417px;}
.ls9b{letter-spacing:1.403188px;}
.ls95{letter-spacing:1.434485px;}
.ls19{letter-spacing:1.440000px;}
.ls47{letter-spacing:1.584000px;}
.ls96{letter-spacing:1.912646px;}
.lsc{letter-spacing:2.160000px;}
.ls56{letter-spacing:2.330640px;}
.ls65{letter-spacing:2.438208px;}
.ls13{letter-spacing:2.880000px;}
.ls66{letter-spacing:3.047760px;}
.ls1a{letter-spacing:3.600000px;}
.ls57{letter-spacing:3.764880px;}
.ls22{letter-spacing:4.320000px;}
.ls17{letter-spacing:5.040000px;}
.ls11{letter-spacing:5.760000px;}
.ls6e{letter-spacing:5.916240px;}
.ls14{letter-spacing:6.480000px;}
.ls1c{letter-spacing:7.200000px;}
.ls1b{letter-spacing:7.920000px;}
.ls61{letter-spacing:8.127360px;}
.ls24{letter-spacing:8.640000px;}
.ls60{letter-spacing:8.844480px;}
.ls1d{letter-spacing:9.360000px;}
.ls27{letter-spacing:10.080000px;}
.lsb{letter-spacing:10.792800px;}
.ls2a{letter-spacing:10.800000px;}
.ls33{letter-spacing:11.520000px;}
.ls23{letter-spacing:12.240000px;}
.ls8e{letter-spacing:12.349341px;}
.ls8a{letter-spacing:12.349940px;}
.ls21{letter-spacing:12.960000px;}
.ls31{letter-spacing:13.680000px;}
.ls3d{letter-spacing:14.400000px;}
.ls18{letter-spacing:15.120000px;}
.ls2c{letter-spacing:15.840000px;}
.ls4b{letter-spacing:16.732800px;}
.ls3e{letter-spacing:17.280000px;}
.ls0{letter-spacing:18.000000px;}
.ls42{letter-spacing:18.720000px;}
.ls20{letter-spacing:19.440000px;}
.ls35{letter-spacing:20.880000px;}
.lsd{letter-spacing:21.600000px;}
.ls3b{letter-spacing:23.040000px;}
.ls2b{letter-spacing:37.440000px;}
.ls2f{letter-spacing:111.744000px;}
.ls30{letter-spacing:116.064000px;}
.ls2e{letter-spacing:131.904000px;}
.ls2d{letter-spacing:152.064000px;}
.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;}
}
.ws0{word-spacing:-21.144240px;}
.wsaf{word-spacing:-19.584000px;}
.ws2b{word-spacing:-18.864000px;}
.wsa7{word-spacing:-18.720000px;}
.wsae{word-spacing:-18.432000px;}
.ws2{word-spacing:-18.288000px;}
.ws60{word-spacing:-18.216000px;}
.ws10{word-spacing:-18.144000px;}
.ws52{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.wsb3{word-spacing:-17.928000px;}
.wsa2{word-spacing:-17.856000px;}
.ws2a{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws6a{word-spacing:-17.280000px;}
.ws90{word-spacing:-17.208000px;}
.ws51{word-spacing:-17.064000px;}
.ws187{word-spacing:-16.855196px;}
.wsa6{word-spacing:-16.560000px;}
.ws186{word-spacing:-16.377035px;}
.wsa1{word-spacing:-16.344000px;}
.wsd1{word-spacing:-16.015680px;}
.ws11d{word-spacing:-15.896160px;}
.ws10d{word-spacing:-15.776640px;}
.ws11c{word-spacing:-15.597360px;}
.wsc3{word-spacing:-15.298560px;}
.ws10e{word-spacing:-15.179040px;}
.wscf{word-spacing:-15.059520px;}
.ws100{word-spacing:-14.999760px;}
.wsc5{word-spacing:-14.940000px;}
.wsc1{word-spacing:-14.880240px;}
.ws11b{word-spacing:-14.700960px;}
.wsc2{word-spacing:-14.581440px;}
.ws189{word-spacing:-14.464388px;}
.ws10f{word-spacing:-14.461920px;}
.ws150{word-spacing:-14.282640px;}
.ws137{word-spacing:-13.804560px;}
.ws18a{word-spacing:-13.508065px;}
.ws17f{word-spacing:-13.402867px;}
.ws140{word-spacing:-13.147200px;}
.ws18b{word-spacing:-13.064166px;}
.ws17e{word-spacing:-13.029904px;}
.ws138{word-spacing:-12.549600px;}
.wsb5{word-spacing:-12.445920px;}
.ws16b{word-spacing:-12.397680px;}
.ws168{word-spacing:-12.349440px;}
.ws169{word-spacing:-12.252960px;}
.ws188{word-spacing:-12.073580px;}
.wsb4{word-spacing:-12.060000px;}
.ws16e{word-spacing:-11.867040px;}
.ws16d{word-spacing:-11.770560px;}
.ws167{word-spacing:-11.722320px;}
.ws18c{word-spacing:-11.655189px;}
.ws16c{word-spacing:-11.577600px;}
.ws164{word-spacing:-11.529360px;}
.ws16a{word-spacing:-11.384640px;}
.wsc4{word-spacing:-10.995840px;}
.ws180{word-spacing:-10.693262px;}
.ws152{word-spacing:-10.278720px;}
.ws165{word-spacing:-10.275120px;}
.ws151{word-spacing:-9.920160px;}
.wsd0{word-spacing:-9.720000px;}
.ws185{word-spacing:-9.264381px;}
.ws141{word-spacing:-9.203040px;}
.ws166{word-spacing:-7.814880px;}
.ws12a{word-spacing:-5.916240px;}
.ws162{word-spacing:-4.780800px;}
.wsd{word-spacing:-4.608000px;}
.ws3e{word-spacing:-4.464000px;}
.wsc{word-spacing:-4.320000px;}
.ws192{word-spacing:-4.306336px;}
.ws112{word-spacing:-4.302720px;}
.ws70{word-spacing:-4.032000px;}
.wse1{word-spacing:-3.764880px;}
.ws2d{word-spacing:-3.744000px;}
.ws2c{word-spacing:-3.600000px;}
.wsd7{word-spacing:-3.585600px;}
.ws135{word-spacing:-3.525840px;}
.wsdb{word-spacing:-3.346560px;}
.ws3c{word-spacing:-3.312000px;}
.wsd8{word-spacing:-3.047760px;}
.ws6c{word-spacing:-3.024000px;}
.ws49{word-spacing:-2.952000px;}
.ws2e{word-spacing:-2.880000px;}
.ws12b{word-spacing:-2.868480px;}
.wse0{word-spacing:-2.808720px;}
.wsff{word-spacing:-2.629440px;}
.ws33{word-spacing:-2.592000px;}
.wsfc{word-spacing:-2.330640px;}
.ws5f{word-spacing:-2.304000px;}
.ws84{word-spacing:-2.232000px;}
.ws3d{word-spacing:-2.160000px;}
.wsfb{word-spacing:-2.151360px;}
.ws19e{word-spacing:-2.128975px;}
.ws110{word-spacing:-2.091600px;}
.ws198{word-spacing:-2.032204px;}
.ws75{word-spacing:-1.944000px;}
.ws13d{word-spacing:-1.912320px;}
.ws7d{word-spacing:-1.872000px;}
.ws142{word-spacing:-1.733040px;}
.wsf{word-spacing:-1.728000px;}
.wsdf{word-spacing:-1.613520px;}
.ws58{word-spacing:-1.584000px;}
.ws195{word-spacing:-1.499960px;}
.ws113{word-spacing:-1.494000px;}
.ws2f{word-spacing:-1.440000px;}
.ws104{word-spacing:-1.434240px;}
.ws111{word-spacing:-1.374480px;}
.ws19a{word-spacing:-1.306417px;}
.ws53{word-spacing:-1.224000px;}
.ws130{word-spacing:-1.195200px;}
.ws9{word-spacing:-1.152000px;}
.ws8{word-spacing:-1.010880px;}
.ws19d{word-spacing:-0.981939px;}
.ws17a{word-spacing:-0.916560px;}
.wscb{word-spacing:-0.896400px;}
.ws4f{word-spacing:-0.864000px;}
.ws13f{word-spacing:-0.836640px;}
.ws171{word-spacing:-0.820080px;}
.ws98{word-spacing:-0.792000px;}
.ws158{word-spacing:-0.776880px;}
.ws18e{word-spacing:-0.774173px;}
.ws177{word-spacing:-0.723600px;}
.ws30{word-spacing:-0.720000px;}
.wsca{word-spacing:-0.717120px;}
.ws9d{word-spacing:-0.657360px;}
.ws4{word-spacing:-0.505440px;}
.wsa5{word-spacing:-0.504000px;}
.wsfe{word-spacing:-0.478080px;}
.ws4a{word-spacing:-0.432000px;}
.ws175{word-spacing:-0.385920px;}
.wsd9{word-spacing:-0.358560px;}
.ws172{word-spacing:-0.289440px;}
.ws96{word-spacing:-0.288000px;}
.ws1a1{word-spacing:-0.256158px;}
.ws153{word-spacing:-0.239040px;}
.ws170{word-spacing:-0.192960px;}
.ws92{word-spacing:-0.179280px;}
.ws16{word-spacing:-0.144000px;}
.wsfa{word-spacing:-0.119520px;}
.ws176{word-spacing:-0.096480px;}
.ws7{word-spacing:-0.084240px;}
.ws4e{word-spacing:-0.072000px;}
.wsde{word-spacing:-0.059760px;}
.ws5{word-spacing:0.000000px;}
.ws93{word-spacing:0.059760px;}
.wsb1{word-spacing:0.072000px;}
.ws6{word-spacing:0.084240px;}
.ws103{word-spacing:0.119520px;}
.wsc0{word-spacing:0.144000px;}
.ws17d{word-spacing:0.192960px;}
.wsa{word-spacing:0.216000px;}
.ws9e{word-spacing:0.239040px;}
.wse{word-spacing:0.288000px;}
.ws179{word-spacing:0.337680px;}
.wsdd{word-spacing:0.358560px;}
.ws106{word-spacing:0.418320px;}
.wsa3{word-spacing:0.432000px;}
.ws178{word-spacing:0.434160px;}
.ws94{word-spacing:0.478080px;}
.ws50{word-spacing:0.504000px;}
.ws173{word-spacing:0.530640px;}
.wsc9{word-spacing:0.537840px;}
.ws42{word-spacing:0.576000px;}
.ws174{word-spacing:0.627120px;}
.ws10a{word-spacing:0.657360px;}
.ws199{word-spacing:0.677401px;}
.ws10b{word-spacing:0.717120px;}
.ws24{word-spacing:0.720000px;}
.ws16f{word-spacing:0.723600px;}
.ws1a0{word-spacing:0.725787px;}
.ws12d{word-spacing:0.776880px;}
.ws87{word-spacing:0.792000px;}
.ws149{word-spacing:0.836640px;}
.ws18d{word-spacing:0.896553px;}
.wsb{word-spacing:0.936000px;}
.ws25{word-spacing:1.008000px;}
.ws17c{word-spacing:1.013040px;}
.ws95{word-spacing:1.254960px;}
.ws76{word-spacing:1.296000px;}
.ws190{word-spacing:1.354802px;}
.ws194{word-spacing:1.403188px;}
.ws105{word-spacing:1.434240px;}
.ws196{word-spacing:1.434485px;}
.ws19{word-spacing:1.440000px;}
.ws17b{word-spacing:1.591920px;}
.ws1a{word-spacing:1.728000px;}
.ws15a{word-spacing:1.852560px;}
.wsed{word-spacing:1.972080px;}
.ws6f{word-spacing:2.016000px;}
.ws128{word-spacing:2.151360px;}
.ws27{word-spacing:2.160000px;}
.wsfd{word-spacing:2.211120px;}
.ws14a{word-spacing:2.390400px;}
.ws6e{word-spacing:2.448000px;}
.ws12f{word-spacing:2.569680px;}
.ws197{word-spacing:2.629889px;}
.wsda{word-spacing:2.689200px;}
.ws1d{word-spacing:2.736000px;}
.ws1e{word-spacing:2.880000px;}
.ws131{word-spacing:2.928240px;}
.wsaa{word-spacing:3.096000px;}
.ws1c{word-spacing:3.168000px;}
.ws121{word-spacing:3.286800px;}
.wsec{word-spacing:3.406320px;}
.ws4b{word-spacing:3.456000px;}
.ws191{word-spacing:3.532163px;}
.ws13{word-spacing:3.600000px;}
.ws10c{word-spacing:3.645360px;}
.ws19f{word-spacing:3.677321px;}
.ws114{word-spacing:3.824640px;}
.ws6d{word-spacing:3.888000px;}
.wse8{word-spacing:4.123440px;}
.ws5e{word-spacing:4.176000px;}
.ws97{word-spacing:4.248000px;}
.wsee{word-spacing:4.302720px;}
.ws1f{word-spacing:4.320000px;}
.ws132{word-spacing:4.362480px;}
.ws157{word-spacing:4.541760px;}
.ws11{word-spacing:4.608000px;}
.wsbf{word-spacing:4.752000px;}
.ws15d{word-spacing:4.780800px;}
.wsf9{word-spacing:4.840560px;}
.ws40{word-spacing:4.896000px;}
.ws59{word-spacing:4.968000px;}
.ws147{word-spacing:5.019840px;}
.ws3f{word-spacing:5.040000px;}
.ws102{word-spacing:5.079600px;}
.ws65{word-spacing:5.256000px;}
.ws41{word-spacing:5.328000px;}
.wsbe{word-spacing:5.472000px;}
.wsf8{word-spacing:5.557680px;}
.ws31{word-spacing:5.616000px;}
.ws15c{word-spacing:5.736960px;}
.ws12{word-spacing:5.760000px;}
.ws155{word-spacing:5.796720px;}
.ws32{word-spacing:5.976000px;}
.ws34{word-spacing:6.048000px;}
.ws11a{word-spacing:6.274800px;}
.ws47{word-spacing:6.336000px;}
.ws18f{word-spacing:6.386926px;}
.ws3a{word-spacing:6.480000px;}
.ws14b{word-spacing:6.513840px;}
.ws7f{word-spacing:6.696000px;}
.ws35{word-spacing:6.768000px;}
.wsc8{word-spacing:7.051680px;}
.wsab{word-spacing:7.056000px;}
.ws5c{word-spacing:7.200000px;}
.wsc7{word-spacing:7.230960px;}
.ws119{word-spacing:7.290720px;}
.wsba{word-spacing:7.416000px;}
.ws5d{word-spacing:7.488000px;}
.ws115{word-spacing:7.768800px;}
.ws88{word-spacing:7.776000px;}
.ws19c{word-spacing:7.812819px;}
.ws4c{word-spacing:7.848000px;}
.ws54{word-spacing:7.920000px;}
.wse6{word-spacing:7.948080px;}
.ws120{word-spacing:8.067600px;}
.wse7{word-spacing:8.187120px;}
.ws4d{word-spacing:8.208000px;}
.wse5{word-spacing:8.485920px;}
.ws39{word-spacing:8.496000px;}
.ws17{word-spacing:8.640000px;}
.wsd2{word-spacing:8.665200px;}
.ws143{word-spacing:8.724960px;}
.wsd3{word-spacing:8.904240px;}
.ws48{word-spacing:8.928000px;}
.wsd6{word-spacing:9.203040px;}
.wsb2{word-spacing:9.216000px;}
.ws193{word-spacing:9.241688px;}
.ws43{word-spacing:9.360000px;}
.ws11f{word-spacing:9.382320px;}
.wsd5{word-spacing:9.621360px;}
.ws44{word-spacing:9.648000px;}
.ws116{word-spacing:9.920160px;}
.ws7c{word-spacing:9.936000px;}
.ws68{word-spacing:10.080000px;}
.wsd4{word-spacing:10.159200px;}
.ws69{word-spacing:10.368000px;}
.ws12c{word-spacing:10.637280px;}
.ws22{word-spacing:10.656000px;}
.ws23{word-spacing:10.728000px;}
.ws20{word-spacing:10.800000px;}
.ws11e{word-spacing:10.876320px;}
.ws21{word-spacing:11.088000px;}
.ws85{word-spacing:11.376000px;}
.ws62{word-spacing:11.520000px;}
.ws124{word-spacing:11.533680px;}
.wsf4{word-spacing:11.772720px;}
.ws61{word-spacing:11.808000px;}
.ws13e{word-spacing:12.071520px;}
.ws36{word-spacing:12.096000px;}
.ws19b{word-spacing:12.096450px;}
.ws38{word-spacing:12.240000px;}
.ws122{word-spacing:12.250800px;}
.ws123{word-spacing:12.310560px;}
.wsac{word-spacing:12.456000px;}
.ws37{word-spacing:12.528000px;}
.ws154{word-spacing:12.788640px;}
.ws74{word-spacing:12.816000px;}
.ws5a{word-spacing:12.960000px;}
.wsf6{word-spacing:13.027680px;}
.ws5b{word-spacing:13.248000px;}
.wsf7{word-spacing:13.505760px;}
.ws8f{word-spacing:13.536000px;}
.ws8e{word-spacing:13.680000px;}
.ws156{word-spacing:13.685040px;}
.ws7b{word-spacing:13.968000px;}
.wsce{word-spacing:14.222880px;}
.wsc6{word-spacing:14.256000px;}
.ws18{word-spacing:14.400000px;}
.ws101{word-spacing:14.402160px;}
.ws129{word-spacing:14.461920px;}
.ws9c{word-spacing:14.688000px;}
.ws134{word-spacing:14.940000px;}
.ws55{word-spacing:14.976000px;}
.ws133{word-spacing:15.119280px;}
.ws57{word-spacing:15.120000px;}
.ws56{word-spacing:15.408000px;}
.wsf5{word-spacing:15.657120px;}
.ws73{word-spacing:15.696000px;}
.ws66{word-spacing:15.840000px;}
.ws64{word-spacing:16.128000px;}
.wscd{word-spacing:16.374240px;}
.ws99{word-spacing:16.416000px;}
.ws3b{word-spacing:16.560000px;}
.wscc{word-spacing:16.613280px;}
.ws8a{word-spacing:16.776000px;}
.ws8b{word-spacing:16.848000px;}
.wsa4{word-spacing:17.136000px;}
.ws26{word-spacing:17.280000px;}
.ws89{word-spacing:17.568000px;}
.ws136{word-spacing:17.808480px;}
.ws82{word-spacing:17.856000px;}
.ws6b{word-spacing:18.000000px;}
.ws81{word-spacing:18.288000px;}
.wsb7{word-spacing:18.576000px;}
.ws13a{word-spacing:18.704880px;}
.ws1b{word-spacing:18.720000px;}
.ws13b{word-spacing:18.764640px;}
.wsb6{word-spacing:19.008000px;}
.ws12e{word-spacing:19.242720px;}
.wsb0{word-spacing:19.296000px;}
.wse9{word-spacing:19.422000px;}
.ws14{word-spacing:19.440000px;}
.wseb{word-spacing:19.661040px;}
.ws15{word-spacing:19.728000px;}
.wsea{word-spacing:19.959840px;}
.wsbb{word-spacing:20.016000px;}
.wsf1{word-spacing:20.139120px;}
.ws83{word-spacing:20.160000px;}
.wsf3{word-spacing:20.198880px;}
.wsf2{word-spacing:20.378160px;}
.ws148{word-spacing:20.676960px;}
.wsa9{word-spacing:20.736000px;}
.ws77{word-spacing:20.880000px;}
.wsa8{word-spacing:21.096000px;}
.ws86{word-spacing:21.456000px;}
.ws28{word-spacing:21.600000px;}
.ws80{word-spacing:21.888000px;}
.wsbd{word-spacing:22.320000px;}
.wse3{word-spacing:22.888080px;}
.ws63{word-spacing:22.896000px;}
.ws29{word-spacing:23.040000px;}
.wse2{word-spacing:23.067360px;}
.wse4{word-spacing:23.306400px;}
.ws9f{word-spacing:23.328000px;}
.wsa0{word-spacing:24.048000px;}
.wsbc{word-spacing:24.768000px;}
.ws118{word-spacing:25.756560px;}
.wsb9{word-spacing:25.920000px;}
.ws117{word-spacing:26.174880px;}
.ws46{word-spacing:26.208000px;}
.ws45{word-spacing:26.496000px;}
.ws163{word-spacing:27.190800px;}
.wsb8{word-spacing:27.360000px;}
.wsf0{word-spacing:27.907920px;}
.ws9b{word-spacing:27.936000px;}
.ws9a{word-spacing:28.080000px;}
.ws13c{word-spacing:28.146960px;}
.wsef{word-spacing:28.326240px;}
.ws8d{word-spacing:29.520000px;}
.ws8c{word-spacing:29.736000px;}
.ws7e{word-spacing:30.240000px;}
.ws108{word-spacing:31.493520px;}
.ws159{word-spacing:31.732560px;}
.ws107{word-spacing:32.210640px;}
.ws91{word-spacing:32.256000px;}
.ws67{word-spacing:32.400000px;}
.ws109{word-spacing:32.927760px;}
.wsad{word-spacing:33.120000px;}
.ws144{word-spacing:33.346080px;}
.ws14f{word-spacing:35.079120px;}
.ws79{word-spacing:35.136000px;}
.ws7a{word-spacing:35.280000px;}
.ws14e{word-spacing:35.318160px;}
.ws78{word-spacing:35.568000px;}
.ws72{word-spacing:37.296000px;}
.ws71{word-spacing:37.440000px;}
.wsdc{word-spacing:38.963520px;}
.ws14c{word-spacing:43.027200px;}
.ws14d{word-spacing:43.744320px;}
.ws161{word-spacing:44.162640px;}
.ws127{word-spacing:47.748240px;}
.ws160{word-spacing:48.764160px;}
.ws139{word-spacing:50.198400px;}
.ws15b{word-spacing:50.616720px;}
.ws126{word-spacing:52.409520px;}
.ws125{word-spacing:52.529040px;}
.ws146{word-spacing:75.835440px;}
.ws145{word-spacing:81.213840px;}
.ws15f{word-spacing:101.771280px;}
.ws15e{word-spacing:106.372800px;}
.ws182{word-spacing:195.085064px;}
.ws181{word-spacing:222.669180px;}
.ws184{word-spacing:249.193117px;}
.ws183{word-spacing:251.117516px;}
._1b{margin-left:-11.658380px;}
._1a{margin-left:-8.873280px;}
._a{margin-left:-7.389072px;}
._4{margin-left:-6.247080px;}
._3{margin-left:-4.666896px;}
._9{margin-left:-3.629232px;}
._0{margin-left:-2.417688px;}
._1{margin-left:-1.137240px;}
._2{width:1.432080px;}
._6{width:2.969208px;}
._5{width:4.831920px;}
._7{width:6.264000px;}
._11{width:7.431840px;}
._8{width:8.725248px;}
._e{width:9.807840px;}
._12{width:10.894392px;}
._b{width:12.162240px;}
._10{width:13.687920px;}
._17{width:15.127920px;}
._c{width:16.344000px;}
._f{width:20.082528px;}
._14{width:21.897000px;}
._18{width:23.830200px;}
._d{width:25.704000px;}
._19{width:27.425160px;}
._16{width:28.425528px;}
._15{width:32.447808px;}
._13{width:35.599680px;}
._1c{width:650.240060px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs7{font-size:42.693000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:48.385800px;}
.fs2{font-size:59.760000px;}
.fs5{font-size:59.770200px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y163{bottom:2.880000px;}
.y161{bottom:3.060000px;}
.y1e8{bottom:7.402650px;}
.y1bd{bottom:8.727900px;}
.y1bf{bottom:8.728500px;}
.y1f5{bottom:9.095100px;}
.y1db{bottom:12.149250px;}
.y201{bottom:12.860100px;}
.y1f8{bottom:15.934050px;}
.y1de{bottom:15.934500px;}
.y1c7{bottom:18.386550px;}
.y1e7{bottom:19.498950px;}
.y1f4{bottom:30.441600px;}
.y1d8{bottom:32.784900px;}
.y200{bottom:34.206750px;}
.y1cd{bottom:35.068800px;}
.y1f7{bottom:37.280700px;}
.y1dd{bottom:37.281150px;}
.y1c6{bottom:39.733050px;}
.y1b9{bottom:40.687350px;}
.y1e4{bottom:42.148050px;}
.y1f3{bottom:51.788100px;}
.y1d7{bottom:54.131550px;}
.y1ff{bottom:55.553250px;}
.y1cb{bottom:55.704300px;}
.y1c5{bottom:61.079700px;}
.y1b7{bottom:62.034000px;}
.y1e3{bottom:63.494700px;}
.y1f2{bottom:73.134750px;}
.y1d5{bottom:75.478050px;}
.y1fe{bottom:76.899750px;}
.y1ca{bottom:77.050950px;}
.y1b6{bottom:83.380500px;}
.y1e2{bottom:84.841200px;}
.y1f1{bottom:94.481250px;}
.y1d4{bottom:96.824550px;}
.y1fd{bottom:98.246250px;}
.y1c9{bottom:98.397450px;}
.y1b4{bottom:104.727000px;}
.y1e1{bottom:106.187700px;}
.y204{bottom:111.525300px;}
.y1f0{bottom:115.827900px;}
.y10{bottom:116.640000px;}
.y1c3{bottom:116.904600px;}
.y39{bottom:118.080000px;}
.y1d2{bottom:118.171200px;}
.y1fc{bottom:119.592900px;}
.y90{bottom:122.940000px;}
.y1b2{bottom:126.073500px;}
.y4f{bottom:127.080000px;}
.y1e0{bottom:127.534200px;}
.y95{bottom:132.480000px;}
.y1c2{bottom:133.981950px;}
.y63{bottom:136.080000px;}
.yfd{bottom:136.425960px;}
.y203{bottom:137.141250px;}
.y1ef{bottom:137.174400px;}
.y81{bottom:139.500000px;}
.y1d1{bottom:139.517700px;}
.y1fb{bottom:140.939400px;}
.y6d{bottom:141.480000px;}
.yf3{bottom:145.434780px;}
.y1b0{bottom:147.420150px;}
.y2c{bottom:150.480000px;}
.y15e{bottom:154.440000px;}
.y12c{bottom:154.448640px;}
.y1ee{bottom:158.521050px;}
.y38{bottom:159.480000px;}
.y1cf{bottom:160.864350px;}
.y1fa{bottom:162.286050px;}
.y8f{bottom:164.340000px;}
.y202{bottom:167.737950px;}
.y4e{bottom:168.480000px;}
.yfc{bottom:170.982180px;}
.yde{bottom:170.997840px;}
.y123{bottom:171.004860px;}
.y9b{bottom:171.540000px;}
.y94{bottom:173.880000px;}
.y62{bottom:177.480000px;}
.y1ed{bottom:179.867550px;}
.y159{bottom:179.985420px;}
.yf2{bottom:179.991000px;}
.y143{bottom:179.992440px;}
.y115{bottom:179.992980px;}
.y80{bottom:180.900000px;}
.y6c{bottom:182.880000px;}
.y15d{bottom:189.000000px;}
.y12b{bottom:189.004860px;}
.y2b{bottom:200.880000px;}
.ydd{bottom:205.374780px;}
.y122{bottom:205.381800px;}
.y8e{bottom:205.740000px;}
.y4d{bottom:209.880000px;}
.y158{bottom:214.362360px;}
.yfb{bottom:214.367940px;}
.y142{bottom:214.369380px;}
.y114{bottom:214.369920px;}
.ya0{bottom:215.280000px;}
.yf{bottom:217.800000px;}
.y61{bottom:218.880000px;}
.y7f{bottom:222.300000px;}
.yc5{bottom:222.847380px;}
.yf1{bottom:223.376760px;}
.y15c{bottom:223.380000px;}
.y12a{bottom:223.381800px;}
.y93{bottom:223.920000px;}
.ya9{bottom:224.280000px;}
.y1d9{bottom:233.271900px;}
.y6b{bottom:233.280000px;}
.y2a{bottom:242.280000px;}
.y8d{bottom:247.140000px;}
.y1ab{bottom:247.680000px;}
.yfa{bottom:248.924160px;}
.y141{bottom:248.925600px;}
.ydc{bottom:248.939820px;}
.y121{bottom:248.946840px;}
.y4c{bottom:251.280000px;}
.yad{bottom:256.680000px;}
.yc4{bottom:257.403600px;}
.y157{bottom:257.927400px;}
.yf0{bottom:257.932980px;}
.y113{bottom:257.934960px;}
.y15b{bottom:257.940000px;}
.y1ea{bottom:258.816600px;}
.y58{bottom:260.280000px;}
.y1ac{bottom:261.180000px;}
.y1aa{bottom:261.360000px;}
.y7e{bottom:263.700000px;}
.y9f{bottom:265.320000px;}
.ya8{bottom:265.680000px;}
.y129{bottom:266.946840px;}
.ye{bottom:268.200000px;}
.y9a{bottom:268.380000px;}
.y1c1{bottom:271.667250px;}
.y1f9{bottom:272.395500px;}
.y6a{bottom:274.680000px;}
.y1d6{bottom:275.964900px;}
.y15f{bottom:283.480380px;}
.ydb{bottom:283.496040px;}
.y120{bottom:283.503060px;}
.y29{bottom:283.680000px;}
.y8c{bottom:288.540000px;}
.y1c0{bottom:288.744600px;}
.y1e9{bottom:290.124900px;}
.y1ec{bottom:290.836500px;}
.yc3{bottom:291.780540px;}
.y156{bottom:292.483620px;}
.yf9{bottom:292.489200px;}
.y140{bottom:292.490640px;}
.y112{bottom:292.491180px;}
.y4b{bottom:292.680000px;}
.yba{bottom:298.080000px;}
.yef{bottom:301.498020px;}
.y15a{bottom:301.500000px;}
.y128{bottom:301.503060px;}
.y1f6{bottom:301.569000px;}
.y57{bottom:301.680000px;}
.y7d{bottom:305.100000px;}
.yac{bottom:306.720000px;}
.ya7{bottom:307.080000px;}
.y99{bottom:316.080000px;}
.y11f{bottom:317.880000px;}
.y1d3{bottom:318.658050px;}
.y28{bottom:325.080000px;}
.yf8{bottom:326.866140px;}
.y13f{bottom:326.867580px;}
.y111{bottom:326.868120px;}
.yda{bottom:326.881800px;}
.y8b{bottom:329.940000px;}
.y9c{bottom:333.720000px;}
.y65{bottom:334.080000px;}
.yc2{bottom:335.345580px;}
.y155{bottom:335.869380px;}
.yee{bottom:335.874960px;}
.y127{bottom:335.880000px;}
.y1eb{bottom:339.222000px;}
.yb9{bottom:339.480000px;}
.y1e5{bottom:342.068100px;}
.y4a{bottom:343.080000px;}
.y7c{bottom:346.500000px;}
.ya6{bottom:348.480000px;}
.yab{bottom:357.480000px;}
.y1d0{bottom:361.351200px;}
.yf7{bottom:361.422360px;}
.yd9{bottom:361.438020px;}
.y27{bottom:366.480000px;}
.yd{bottom:369.000000px;}
.yc1{bottom:369.901800px;}
.y154{bottom:370.425600px;}
.yed{bottom:370.431180px;}
.y13e{bottom:370.432620px;}
.y110{bottom:370.433160px;}
.y8a{bottom:371.340000px;}
.y64{bottom:375.480000px;}
.y1ba{bottom:377.792700px;}
.y126{bottom:379.440000px;}
.yb8{bottom:380.880000px;}
.y49{bottom:384.480000px;}
.ya5{bottom:389.880000px;}
.y60{bottom:393.480000px;}
.y11e{bottom:395.978580px;}
.y7b{bottom:396.900000px;}
.y1b8{bottom:399.139350px;}
.yc0{bottom:404.278740px;}
.yf6{bottom:404.987400px;}
.y10f{bottom:404.989380px;}
.yd8{bottom:405.003060px;}
.y26{bottom:407.880000px;}
.y89{bottom:412.740000px;}
.y153{bottom:413.990640px;}
.yec{bottom:413.996220px;}
.y13d{bottom:413.997660px;}
.y9d{bottom:416.520000px;}
.y69{bottom:416.880000px;}
.yc{bottom:419.400000px;}
.y1ae{bottom:421.804800px;}
.yb7{bottom:422.280000px;}
.y48{bottom:425.880000px;}
.y194{bottom:426.960000px;}
.ya4{bottom:431.280000px;}
.y5f{bottom:434.880000px;}
.y7a{bottom:438.300000px;}
.y1ad{bottom:438.882000px;}
.y11d{bottom:439.364340px;}
.yd7{bottom:439.380000px;}
.y1b5{bottom:441.832500px;}
.ybf{bottom:447.843780px;}
.y152{bottom:448.367580px;}
.yeb{bottom:448.373160px;}
.y13c{bottom:448.374600px;}
.y10e{bottom:448.375140px;}
.y25{bottom:449.280000px;}
.y1dc{bottom:450.994500px;}
.y88{bottom:454.140000px;}
.y193{bottom:456.660000px;}
.y1df{bottom:456.687000px;}
.y96{bottom:457.920000px;}
.y68{bottom:458.280000px;}
.y1da{bottom:460.956000px;}
.y1ce{bottom:461.667000px;}
.y1b3{bottom:463.179000px;}
.y47{bottom:467.280000px;}
.y1bb{bottom:472.282200px;}
.ya3{bottom:472.680000px;}
.y11c{bottom:473.920560px;}
.y5e{bottom:476.280000px;}
.y79{bottom:479.700000px;}
.ybe{bottom:482.400000px;}
.y192{bottom:482.580000px;}
.yf5{bottom:482.929380px;}
.y10d{bottom:482.931360px;}
.yd6{bottom:482.936580px;}
.y1b1{bottom:484.525650px;}
.y24{bottom:490.680000px;}
.y151{bottom:491.932620px;}
.yea{bottom:491.938200px;}
.y13b{bottom:491.939640px;}
.y87{bottom:495.540000px;}
.y191{bottom:497.160000px;}
.y9e{bottom:499.320000px;}
.y67{bottom:499.680000px;}
.y18f{bottom:500.220000px;}
.y46{bottom:508.680000px;}
.y190{bottom:511.740000px;}
.yb6{bottom:514.080000px;}
.y11b{bottom:517.485600px;}
.y10c{bottom:517.487580px;}
.yd5{bottom:517.492800px;}
.y5d{bottom:517.680000px;}
.yb{bottom:520.200000px;}
.y78{bottom:521.100000px;}
.ya2{bottom:522.720000px;}
.y18e{bottom:526.320000px;}
.y150{bottom:526.488840px;}
.ye9{bottom:526.494420px;}
.y13a{bottom:526.495860px;}
.ybd{bottom:529.740000px;}
.y23{bottom:532.080000px;}
.y86{bottom:536.940000px;}
.y18d{bottom:540.900000px;}
.yaa{bottom:541.080000px;}
.y18b{bottom:543.780000px;}
.y1a8{bottom:547.014420px;}
.y45{bottom:550.080000px;}
.y11a{bottom:551.862540px;}
.y18c{bottom:555.300000px;}
.yb5{bottom:555.480000px;}
.y5c{bottom:559.080000px;}
.yf4{bottom:560.871360px;}
.y139{bottom:560.872800px;}
.y10b{bottom:560.873340px;}
.yd4{bottom:560.878560px;}
.y77{bottom:562.500000px;}
.y1a7{bottom:564.300000px;}
.y14f{bottom:569.874600px;}
.y18a{bottom:569.880000px;}
.ye8{bottom:569.880180px;}
.ya{bottom:570.600000px;}
.y22{bottom:573.480000px;}
.y85{bottom:578.340000px;}
.y1a6{bottom:578.520000px;}
.ybc{bottom:580.500000px;}
.yaf{bottom:582.480000px;}
.y189{bottom:584.460000px;}
.y187{bottom:587.520000px;}
.y1e6{bottom:589.747500px;}
.y44{bottom:591.480000px;}
.y1a5{bottom:593.100000px;}
.y119{bottom:595.427580px;}
.y10a{bottom:595.429560px;}
.yd3{bottom:595.434780px;}
.y1a3{bottom:596.160000px;}
.yb4{bottom:596.880000px;}
.y1af{bottom:598.285500px;}
.y188{bottom:599.040000px;}
.y5b{bottom:600.480000px;}
.y76{bottom:603.900000px;}
.y14e{bottom:604.430820px;}
.ye7{bottom:604.436400px;}
.y138{bottom:604.437840px;}
.y1a4{bottom:607.680000px;}
.y186{bottom:613.620000px;}
.y21{bottom:614.880000px;}
.y84{bottom:619.740000px;}
.y9{bottom:621.000000px;}
.y1a2{bottom:622.260000px;}
.ya1{bottom:623.880000px;}
.ybb{bottom:626.580000px;}
.y185{bottom:628.200000px;}
.y118{bottom:629.983800px;}
.y183{bottom:631.080000px;}
.y1cc{bottom:632.442000px;}
.y43{bottom:632.880000px;}
.y1c8{bottom:633.153000px;}
.y1c4{bottom:635.998500px;}
.y1a1{bottom:636.840000px;}
.yb3{bottom:638.280000px;}
.ye6{bottom:638.992620px;}
.y137{bottom:638.994060px;}
.y109{bottom:638.994600px;}
.yd2{bottom:638.999820px;}
.y19f{bottom:639.720000px;}
.y56{bottom:641.880000px;}
.y184{bottom:642.600000px;}
.y75{bottom:645.300000px;}
.y14d{bottom:647.995860px;}
.y131{bottom:648.001440px;}
.y1a0{bottom:651.420000px;}
.y20{bottom:656.280000px;}
.y182{bottom:657.180000px;}
.y37{bottom:665.280000px;}
.y19e{bottom:665.820000px;}
.y83{bottom:665.994240px;}
.y181{bottom:671.760000px;}
.y117{bottom:673.369560px;}
.y108{bottom:673.371540px;}
.yd1{bottom:673.376760px;}
.y42{bottom:674.280000px;}
.y17f{bottom:674.820000px;}
.yb2{bottom:679.680000px;}
.y19d{bottom:680.400000px;}
.y14c{bottom:682.372800px;}
.ye5{bottom:682.378380px;}
.y136{bottom:682.379820px;}
.y55{bottom:683.280000px;}
.y19b{bottom:683.460000px;}
.y180{bottom:686.340000px;}
.y74{bottom:686.700000px;}
.y19c{bottom:694.980000px;}
.y1f{bottom:697.680000px;}
.y17e{bottom:700.920000px;}
.y97{bottom:706.320000px;}
.y36{bottom:706.680000px;}
.y107{bottom:707.927760px;}
.y82{bottom:709.380000px;}
.y19a{bottom:709.560000px;}
.y17d{bottom:715.500000px;}
.y41{bottom:715.680000px;}
.ye4{bottom:716.934600px;}
.y135{bottom:716.936040px;}
.yd0{bottom:716.941800px;}
.y17b{bottom:718.380000px;}
.yb1{bottom:721.080000px;}
.y8{bottom:721.620000px;}
.y199{bottom:724.140000px;}
.y54{bottom:724.680000px;}
.y14b{bottom:725.937840px;}
.y130{bottom:725.943420px;}
.y197{bottom:727.020000px;}
.y73{bottom:728.100000px;}
.y17c{bottom:729.900000px;}
.y198{bottom:738.720000px;}
.y1e{bottom:739.080000px;}
.y17a{bottom:744.480000px;}
.y35{bottom:748.080000px;}
.y116{bottom:751.311540px;}
.y106{bottom:751.313520px;}
.ycf{bottom:751.318740px;}
.y196{bottom:753.120000px;}
.y40{bottom:757.080000px;}
.y179{bottom:759.060000px;}
.y1bc{bottom:759.097500px;}
.y205{bottom:759.420000px;}
.y1be{bottom:759.808500px;}
.y14a{bottom:760.314780px;}
.ye3{bottom:760.320360px;}
.y134{bottom:760.321800px;}
.y177{bottom:762.120000px;}
.y53{bottom:766.080000px;}
.y72{bottom:769.320000px;}
.yb0{bottom:771.120000px;}
.y195{bottom:771.480000px;}
.y7{bottom:772.020000px;}
.y178{bottom:773.640000px;}
.y1d{bottom:780.480000px;}
.y105{bottom:785.869740px;}
.y176{bottom:788.220000px;}
.y34{bottom:789.480000px;}
.y149{bottom:794.871000px;}
.ye2{bottom:794.876580px;}
.y133{bottom:794.878020px;}
.yce{bottom:794.883780px;}
.y3f{bottom:798.480000px;}
.y12f{bottom:803.885400px;}
.y175{bottom:806.400000px;}
.y52{bottom:807.480000px;}
.y71{bottom:819.360000px;}
.y1c{bottom:821.880000px;}
.ye1{bottom:829.432800px;}
.y104{bottom:829.434780px;}
.ycd{bottom:829.440000px;}
.y5a{bottom:830.520000px;}
.y33{bottom:830.880000px;}
.y174{bottom:833.400000px;}
.y148{bottom:838.436040px;}
.y12d{bottom:838.441620px;}
.y132{bottom:838.443060px;}
.y3e{bottom:839.880000px;}
.y51{bottom:848.880000px;}
.y173{bottom:863.100000px;}
.y1b{bottom:863.280000px;}
.y103{bottom:863.811720px;}
.y70{bottom:869.760000px;}
.y32{bottom:872.280000px;}
.y147{bottom:872.812980px;}
.ye0{bottom:872.818560px;}
.y6{bottom:872.820000px;}
.y59{bottom:880.920000px;}
.y3d{bottom:881.280000px;}
.y12e{bottom:881.827380px;}
.y50{bottom:890.280000px;}
.y172{bottom:892.080000px;}
.y1a{bottom:904.680000px;}
.ycc{bottom:907.374780px;}
.y102{bottom:907.376760px;}
.y92{bottom:913.320000px;}
.y31{bottom:913.680000px;}
.y146{bottom:916.378020px;}
.y6f{bottom:916.380000px;}
.y125{bottom:916.383600px;}
.y171{bottom:917.650080px;}
.y66{bottom:922.680000px;}
.y5{bottom:923.220000px;}
.y170{bottom:931.326120px;}
.y3c{bottom:931.680000px;}
.y101{bottom:941.932980px;}
.y16f{bottom:945.183060px;}
.y145{bottom:950.934240px;}
.ycb{bottom:950.939820px;}
.y19{bottom:954.720000px;}
.y30{bottom:955.080000px;}
.y16e{bottom:959.040000px;}
.y91{bottom:963.720000px;}
.y6e{bottom:964.080000px;}
.y16d{bottom:970.560000px;}
.y3b{bottom:973.080000px;}
.y4{bottom:973.620000px;}
.y16c{bottom:984.420000px;}
.yca{bottom:985.316760px;}
.y100{bottom:985.318740px;}
.y144{bottom:994.320000px;}
.y124{bottom:994.325580px;}
.y2f{bottom:996.480000px;}
.y16b{bottom:998.100000px;}
.y18{bottom:1005.120000px;}
.y98{bottom:1005.480000px;}
.y16a{bottom:1011.960000px;}
.y3a{bottom:1014.480000px;}
.y3{bottom:1024.020000px;}
.y169{bottom:1025.820000px;}
.yc9{bottom:1028.881800px;}
.yff{bottom:1028.883780px;}
.y2e{bottom:1037.880000px;}
.y168{bottom:1039.500000px;}
.yae{bottom:1046.520000px;}
.y167{bottom:1053.360000px;}
.y17{bottom:1055.880000px;}
.ydf{bottom:1063.438020px;}
.yfe{bottom:1063.440000px;}
.y166{bottom:1067.220000px;}
.yc8{bottom:1072.446840px;}
.y2{bottom:1078.191540px;}
.y165{bottom:1080.900000px;}
.y2d{bottom:1087.920000px;}
.y164{bottom:1094.760000px;}
.y16{bottom:1097.280000px;}
.yc7{bottom:1106.823780px;}
.y162{bottom:1108.620000px;}
.y1a9{bottom:1112.400000px;}
.y160{bottom:1123.020000px;}
.y1{bottom:1126.440000px;}
.y15{bottom:1138.680000px;}
.yc6{bottom:1141.380000px;}
.y14{bottom:1168.595250px;}
.y13{bottom:1190.195250px;}
.y12{bottom:1211.794500px;}
.y11{bottom:1233.394500px;}
.h12{height:13.680000px;}
.h14{height:13.681500px;}
.h10{height:13.858500px;}
.h13{height:13.860000px;}
.h1f{height:26.791500px;}
.h1d{height:27.504000px;}
.h28{height:34.866000px;}
.h1c{height:41.900845px;}
.h17{height:47.321367px;}
.h11{height:47.344922px;}
.h1b{height:47.488017px;}
.h5{height:52.417969px;}
.h6{height:52.420969px;}
.h8{height:58.651172px;}
.h19{height:58.661183px;}
.hc{height:58.664852px;}
.he{height:58.666292px;}
.ha{height:58.672052px;}
.hd{height:58.721732px;}
.hf{height:59.024194px;}
.hb{height:59.038594px;}
.h1e{height:60.237155px;}
.h26{height:63.328500px;}
.h9{height:70.628906px;}
.h4{height:70.664062px;}
.h3{height:72.562500px;}
.h7{height:75.093750px;}
.h2{height:84.898125px;}
.h20{height:89.655000px;}
.h21{height:90.366000px;}
.h22{height:143.022000px;}
.h23{height:143.733000px;}
.h27{height:179.311500px;}
.h24{height:182.869500px;}
.h25{height:183.580500px;}
.h2a{height:185.004000px;}
.h1a{height:188.314500px;}
.h29{height:203.334000px;}
.h18{height:525.420000px;}
.h15{height:892.980000px;}
.h16{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:22.498500px;}
.w3{width:22.500000px;}
.w4{width:22.680000px;}
.w7{width:33.838500px;}
.w8{width:34.200000px;}
.w6{width:34.201500px;}
.w9{width:46.800000px;}
.wf{width:68.220000px;}
.w23{width:72.622500px;}
.wc{width:76.860000px;}
.we{width:79.740000px;}
.wd{width:82.080000px;}
.w12{width:82.620000px;}
.w15{width:84.961500px;}
.w1a{width:97.200000px;}
.w13{width:118.440000px;}
.wb{width:118.620000px;}
.w18{width:119.158500px;}
.w16{width:129.240000px;}
.w17{width:139.140000px;}
.w14{width:150.300000px;}
.wa{width:153.540000px;}
.w19{width:154.260000px;}
.w22{width:162.654000px;}
.w21{width:163.366500px;}
.w2{width:190.438500px;}
.w20{width:311.455500px;}
.w1c{width:427.896000px;}
.w1e{width:491.676000px;}
.w1f{width:493.398000px;}
.w1d{width:496.956000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w1b{width:1231.740000px;}
.w10{width:1262.880000px;}
.w11{width:1263.000000px;}
.x0{left:0.000000px;}
.x61{left:1.553850px;}
.x62{left:2.977800px;}
.x58{left:6.835500px;}
.x1b{left:8.280000px;}
.x25{left:10.980000px;}
.x3b{left:12.420000px;}
.x31{left:13.680000px;}
.x40{left:15.480000px;}
.x32{left:17.280000px;}
.x33{left:20.340000px;}
.x3e{left:23.040000px;}
.x3d{left:26.460000px;}
.x3f{left:27.720000px;}
.x36{left:29.520000px;}
.x52{left:32.040000px;}
.x63{left:36.440550px;}
.x18{left:38.160000px;}
.x4c{left:42.480000px;}
.x4f{left:49.140000px;}
.x35{left:50.760000px;}
.x53{left:54.180000px;}
.x4e{left:59.040000px;}
.x4d{left:64.620000px;}
.x50{left:66.780000px;}
.x19{left:69.120000px;}
.x4b{left:75.060000px;}
.x51{left:77.040000px;}
.x42{left:93.780000px;}
.x4a{left:101.880000px;}
.xf{left:108.000000px;}
.x10{left:122.445000px;}
.x11{left:135.000000px;}
.x5e{left:141.046500px;}
.x1{left:142.200000px;}
.x64{left:144.606000px;}
.x5d{left:152.195400px;}
.x34{left:156.960000px;}
.x3c{left:165.060000px;}
.x43{left:176.400000px;}
.x12{left:189.000000px;}
.x69{left:190.644300px;}
.x5{left:200.520000px;}
.x5f{left:204.053250px;}
.x8{left:211.680000px;}
.x66{left:217.579200px;}
.x1a{left:228.600000px;}
.x70{left:236.210550px;}
.xb{left:246.780000px;}
.x3{left:249.660000px;}
.x1c{left:251.100000px;}
.xa{left:258.480000px;}
.x4{left:259.740000px;}
.x16{left:263.520000px;}
.x9{left:272.700000px;}
.x1d{left:273.780000px;}
.x6{left:278.820000px;}
.xe{left:284.040000px;}
.x13{left:291.420000px;}
.x7{left:295.020000px;}
.x1e{left:296.280000px;}
.x17{left:298.260000px;}
.x14{left:300.600000px;}
.xc{left:304.560000px;}
.x2{left:306.362700px;}
.xd{left:309.960000px;}
.x1f{left:318.960000px;}
.x20{left:341.640000px;}
.x71{left:353.683650px;}
.x21{left:364.320000px;}
.x22{left:387.000000px;}
.x6a{left:397.825950px;}
.x6c{left:401.628000px;}
.x23{left:409.680000px;}
.x37{left:429.120000px;}
.x24{left:432.180000px;}
.x72{left:444.106500px;}
.x44{left:445.140000px;}
.x15{left:446.399460px;}
.x26{left:466.380000px;}
.x56{left:476.460000px;}
.x41{left:483.300000px;}
.x27{left:500.220000px;}
.x6b{left:503.200350px;}
.x38{left:505.980000px;}
.x45{left:530.100000px;}
.x28{left:534.420000px;}
.x29{left:568.620000px;}
.x39{left:588.060000px;}
.x60{left:600.268500px;}
.x2a{left:602.820000px;}
.x54{left:631.440000px;}
.x2b{left:637.020000px;}
.x57{left:645.834000px;}
.x46{left:659.340000px;}
.x3a{left:667.800000px;}
.x2c{left:671.220000px;}
.x59{left:690.031350px;}
.x68{left:696.439200px;}
.x2d{left:705.420000px;}
.x6d{left:708.542700px;}
.x6e{left:715.662450px;}
.x5b{left:717.798300px;}
.x5a{left:732.037800px;}
.x2e{left:739.620000px;}
.x6f{left:743.429250px;}
.x5c{left:771.908250px;}
.x2f{left:773.820000px;}
.x47{left:798.480000px;}
.x30{left:808.020000px;}
.x48{left:917.640000px;}
.x65{left:937.743000px;}
.x49{left:1071.900000px;}
.x67{left:1085.833500px;}
.x55{left:1249.020000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.ls34{letter-spacing:-5.760000pt;}
.ls43{letter-spacing:-5.312000pt;}
.ls6d{letter-spacing:-5.099520pt;}
.ls29{letter-spacing:-4.672000pt;}
.ls71{letter-spacing:-4.462080pt;}
.ls74{letter-spacing:-4.249600pt;}
.ls72{letter-spacing:-4.143360pt;}
.ls80{letter-spacing:-3.773440pt;}
.ls4d{letter-spacing:-3.505920pt;}
.ls97{letter-spacing:-2.550195pt;}
.ls51{letter-spacing:-2.231040pt;}
.ls6b{letter-spacing:-2.124800pt;}
.ls90{letter-spacing:-1.700130pt;}
.ls63{letter-spacing:-1.593600pt;}
.ls7f{letter-spacing:-1.586560pt;}
.ls49{letter-spacing:-1.536000pt;}
.ls40{letter-spacing:-1.472000pt;}
.ls26{letter-spacing:-1.280000pt;}
.ls98{letter-spacing:-1.275098pt;}
.ls93{letter-spacing:-1.252328pt;}
.ls91{letter-spacing:-1.247278pt;}
.ls85{letter-spacing:-1.243520pt;}
.ls6a{letter-spacing:-1.009280pt;}
.ls70{letter-spacing:-0.956160pt;}
.ls88{letter-spacing:-0.900480pt;}
.ls9{letter-spacing:-0.832000pt;}
.ls8f{letter-spacing:-0.796936pt;}
.ls6c{letter-spacing:-0.743680pt;}
.ls32{letter-spacing:-0.704000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls82{letter-spacing:-0.600320pt;}
.ls6f{letter-spacing:-0.584320pt;}
.ls25{letter-spacing:-0.512000pt;}
.ls5b{letter-spacing:-0.478080pt;}
.ls7e{letter-spacing:-0.471680pt;}
.ls1f{letter-spacing:-0.448000pt;}
.ls84{letter-spacing:-0.428800pt;}
.ls99{letter-spacing:-0.425033pt;}
.ls38{letter-spacing:-0.424960pt;}
.ls83{letter-spacing:-0.385920pt;}
.ls3f{letter-spacing:-0.384000pt;}
.ls39{letter-spacing:-0.318720pt;}
.ls81{letter-spacing:-0.300160pt;}
.ls86{letter-spacing:-0.257280pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls5a{letter-spacing:-0.212480pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls87{letter-spacing:-0.171520pt;}
.ls41{letter-spacing:-0.128000pt;}
.ls59{letter-spacing:-0.106240pt;}
.ls6{letter-spacing:-0.074880pt;}
.ls46{letter-spacing:-0.064000pt;}
.ls37{letter-spacing:-0.053120pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8d{letter-spacing:0.017532pt;}
.ls8c{letter-spacing:0.018065pt;}
.ls54{letter-spacing:0.047808pt;}
.ls58{letter-spacing:0.053120pt;}
.lsf{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.074880pt;}
.ls3c{letter-spacing:0.106240pt;}
.lse{letter-spacing:0.128000pt;}
.ls77{letter-spacing:0.137216pt;}
.ls76{letter-spacing:0.138880pt;}
.ls75{letter-spacing:0.143424pt;}
.ls4c{letter-spacing:0.159360pt;}
.ls7a{letter-spacing:0.171520pt;}
.ls62{letter-spacing:0.180608pt;}
.ls28{letter-spacing:0.192000pt;}
.ls5d{letter-spacing:0.201856pt;}
.ls50{letter-spacing:0.212480pt;}
.ls7d{letter-spacing:0.214400pt;}
.ls4a{letter-spacing:0.228416pt;}
.ls4e{letter-spacing:0.239040pt;}
.ls5e{letter-spacing:0.244352pt;}
.lsa{letter-spacing:0.256000pt;}
.ls79{letter-spacing:0.257280pt;}
.ls1{letter-spacing:0.298667pt;}
.ls3{letter-spacing:0.299520pt;}
.ls7b{letter-spacing:0.300160pt;}
.ls2{letter-spacing:0.300800pt;}
.ls36{letter-spacing:0.318720pt;}
.ls7c{letter-spacing:0.321600pt;}
.ls55{letter-spacing:0.334656pt;}
.ls69{letter-spacing:0.339968pt;}
.ls48{letter-spacing:0.343040pt;}
.ls1e{letter-spacing:0.384000pt;}
.ls67{letter-spacing:0.424960pt;}
.ls78{letter-spacing:0.428800pt;}
.ls12{letter-spacing:0.448000pt;}
.ls44{letter-spacing:0.454400pt;}
.ls45{letter-spacing:0.467200pt;}
.ls68{letter-spacing:0.531200pt;}
.ls64{letter-spacing:0.584320pt;}
.ls10{letter-spacing:0.640000pt;}
.ls89{letter-spacing:0.688154pt;}
.ls3a{letter-spacing:0.704000pt;}
.ls5f{letter-spacing:0.743680pt;}
.ls16{letter-spacing:0.768000pt;}
.ls4f{letter-spacing:0.796800pt;}
.ls5c{letter-spacing:0.812736pt;}
.ls73{letter-spacing:0.818048pt;}
.ls53{letter-spacing:0.849920pt;}
.ls8b{letter-spacing:0.857756pt;}
.ls9a{letter-spacing:0.860192pt;}
.ls94{letter-spacing:0.872835pt;}
.ls52{letter-spacing:0.956160pt;}
.ls92{letter-spacing:1.161259pt;}
.ls9b{letter-spacing:1.247278pt;}
.ls95{letter-spacing:1.275098pt;}
.ls19{letter-spacing:1.280000pt;}
.ls47{letter-spacing:1.408000pt;}
.ls96{letter-spacing:1.700130pt;}
.lsc{letter-spacing:1.920000pt;}
.ls56{letter-spacing:2.071680pt;}
.ls65{letter-spacing:2.167296pt;}
.ls13{letter-spacing:2.560000pt;}
.ls66{letter-spacing:2.709120pt;}
.ls1a{letter-spacing:3.200000pt;}
.ls57{letter-spacing:3.346560pt;}
.ls22{letter-spacing:3.840000pt;}
.ls17{letter-spacing:4.480000pt;}
.ls11{letter-spacing:5.120000pt;}
.ls6e{letter-spacing:5.258880pt;}
.ls14{letter-spacing:5.760000pt;}
.ls1c{letter-spacing:6.400000pt;}
.ls1b{letter-spacing:7.040000pt;}
.ls61{letter-spacing:7.224320pt;}
.ls24{letter-spacing:7.680000pt;}
.ls60{letter-spacing:7.861760pt;}
.ls1d{letter-spacing:8.320000pt;}
.ls27{letter-spacing:8.960000pt;}
.lsb{letter-spacing:9.593600pt;}
.ls2a{letter-spacing:9.600000pt;}
.ls33{letter-spacing:10.240000pt;}
.ls23{letter-spacing:10.880000pt;}
.ls8e{letter-spacing:10.977192pt;}
.ls8a{letter-spacing:10.977725pt;}
.ls21{letter-spacing:11.520000pt;}
.ls31{letter-spacing:12.160000pt;}
.ls3d{letter-spacing:12.800000pt;}
.ls18{letter-spacing:13.440000pt;}
.ls2c{letter-spacing:14.080000pt;}
.ls4b{letter-spacing:14.873600pt;}
.ls3e{letter-spacing:15.360000pt;}
.ls0{letter-spacing:16.000000pt;}
.ls42{letter-spacing:16.640000pt;}
.ls20{letter-spacing:17.280000pt;}
.ls35{letter-spacing:18.560000pt;}
.lsd{letter-spacing:19.200000pt;}
.ls3b{letter-spacing:20.480000pt;}
.ls2b{letter-spacing:33.280000pt;}
.ls2f{letter-spacing:99.328000pt;}
.ls30{letter-spacing:103.168000pt;}
.ls2e{letter-spacing:117.248000pt;}
.ls2d{letter-spacing:135.168000pt;}
.ws0{word-spacing:-18.794880pt;}
.wsaf{word-spacing:-17.408000pt;}
.ws2b{word-spacing:-16.768000pt;}
.wsa7{word-spacing:-16.640000pt;}
.wsae{word-spacing:-16.384000pt;}
.ws2{word-spacing:-16.256000pt;}
.ws60{word-spacing:-16.192000pt;}
.ws10{word-spacing:-16.128000pt;}
.ws52{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsb3{word-spacing:-15.936000pt;}
.wsa2{word-spacing:-15.872000pt;}
.ws2a{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws6a{word-spacing:-15.360000pt;}
.ws90{word-spacing:-15.296000pt;}
.ws51{word-spacing:-15.168000pt;}
.ws187{word-spacing:-14.982397pt;}
.wsa6{word-spacing:-14.720000pt;}
.ws186{word-spacing:-14.557364pt;}
.wsa1{word-spacing:-14.528000pt;}
.wsd1{word-spacing:-14.236160pt;}
.ws11d{word-spacing:-14.129920pt;}
.ws10d{word-spacing:-14.023680pt;}
.ws11c{word-spacing:-13.864320pt;}
.wsc3{word-spacing:-13.598720pt;}
.ws10e{word-spacing:-13.492480pt;}
.wscf{word-spacing:-13.386240pt;}
.ws100{word-spacing:-13.333120pt;}
.wsc5{word-spacing:-13.280000pt;}
.wsc1{word-spacing:-13.226880pt;}
.ws11b{word-spacing:-13.067520pt;}
.wsc2{word-spacing:-12.961280pt;}
.ws189{word-spacing:-12.857234pt;}
.ws10f{word-spacing:-12.855040pt;}
.ws150{word-spacing:-12.695680pt;}
.ws137{word-spacing:-12.270720pt;}
.ws18a{word-spacing:-12.007169pt;}
.ws17f{word-spacing:-11.913659pt;}
.ws140{word-spacing:-11.686400pt;}
.ws18b{word-spacing:-11.612592pt;}
.ws17e{word-spacing:-11.582137pt;}
.ws138{word-spacing:-11.155200pt;}
.wsb5{word-spacing:-11.063040pt;}
.ws16b{word-spacing:-11.020160pt;}
.ws168{word-spacing:-10.977280pt;}
.ws169{word-spacing:-10.891520pt;}
.ws188{word-spacing:-10.732071pt;}
.wsb4{word-spacing:-10.720000pt;}
.ws16e{word-spacing:-10.548480pt;}
.ws16d{word-spacing:-10.462720pt;}
.ws167{word-spacing:-10.419840pt;}
.ws18c{word-spacing:-10.360168pt;}
.ws16c{word-spacing:-10.291200pt;}
.ws164{word-spacing:-10.248320pt;}
.ws16a{word-spacing:-10.119680pt;}
.wsc4{word-spacing:-9.774080pt;}
.ws180{word-spacing:-9.505122pt;}
.ws152{word-spacing:-9.136640pt;}
.ws165{word-spacing:-9.133440pt;}
.ws151{word-spacing:-8.817920pt;}
.wsd0{word-spacing:-8.640000pt;}
.ws185{word-spacing:-8.235005pt;}
.ws141{word-spacing:-8.180480pt;}
.ws166{word-spacing:-6.946560pt;}
.ws12a{word-spacing:-5.258880pt;}
.ws162{word-spacing:-4.249600pt;}
.wsd{word-spacing:-4.096000pt;}
.ws3e{word-spacing:-3.968000pt;}
.wsc{word-spacing:-3.840000pt;}
.ws192{word-spacing:-3.827854pt;}
.ws112{word-spacing:-3.824640pt;}
.ws70{word-spacing:-3.584000pt;}
.wse1{word-spacing:-3.346560pt;}
.ws2d{word-spacing:-3.328000pt;}
.ws2c{word-spacing:-3.200000pt;}
.wsd7{word-spacing:-3.187200pt;}
.ws135{word-spacing:-3.134080pt;}
.wsdb{word-spacing:-2.974720pt;}
.ws3c{word-spacing:-2.944000pt;}
.wsd8{word-spacing:-2.709120pt;}
.ws6c{word-spacing:-2.688000pt;}
.ws49{word-spacing:-2.624000pt;}
.ws2e{word-spacing:-2.560000pt;}
.ws12b{word-spacing:-2.549760pt;}
.wse0{word-spacing:-2.496640pt;}
.wsff{word-spacing:-2.337280pt;}
.ws33{word-spacing:-2.304000pt;}
.wsfc{word-spacing:-2.071680pt;}
.ws5f{word-spacing:-2.048000pt;}
.ws84{word-spacing:-1.984000pt;}
.ws3d{word-spacing:-1.920000pt;}
.wsfb{word-spacing:-1.912320pt;}
.ws19e{word-spacing:-1.892422pt;}
.ws110{word-spacing:-1.859200pt;}
.ws198{word-spacing:-1.806403pt;}
.ws75{word-spacing:-1.728000pt;}
.ws13d{word-spacing:-1.699840pt;}
.ws7d{word-spacing:-1.664000pt;}
.ws142{word-spacing:-1.540480pt;}
.wsf{word-spacing:-1.536000pt;}
.wsdf{word-spacing:-1.434240pt;}
.ws58{word-spacing:-1.408000pt;}
.ws195{word-spacing:-1.333298pt;}
.ws113{word-spacing:-1.328000pt;}
.ws2f{word-spacing:-1.280000pt;}
.ws104{word-spacing:-1.274880pt;}
.ws111{word-spacing:-1.221760pt;}
.ws19a{word-spacing:-1.161259pt;}
.ws53{word-spacing:-1.088000pt;}
.ws130{word-spacing:-1.062400pt;}
.ws9{word-spacing:-1.024000pt;}
.ws8{word-spacing:-0.898560pt;}
.ws19d{word-spacing:-0.872835pt;}
.ws17a{word-spacing:-0.814720pt;}
.wscb{word-spacing:-0.796800pt;}
.ws4f{word-spacing:-0.768000pt;}
.ws13f{word-spacing:-0.743680pt;}
.ws171{word-spacing:-0.728960pt;}
.ws98{word-spacing:-0.704000pt;}
.ws158{word-spacing:-0.690560pt;}
.ws18e{word-spacing:-0.688154pt;}
.ws177{word-spacing:-0.643200pt;}
.ws30{word-spacing:-0.640000pt;}
.wsca{word-spacing:-0.637440pt;}
.ws9d{word-spacing:-0.584320pt;}
.ws4{word-spacing:-0.449280pt;}
.wsa5{word-spacing:-0.448000pt;}
.wsfe{word-spacing:-0.424960pt;}
.ws4a{word-spacing:-0.384000pt;}
.ws175{word-spacing:-0.343040pt;}
.wsd9{word-spacing:-0.318720pt;}
.ws172{word-spacing:-0.257280pt;}
.ws96{word-spacing:-0.256000pt;}
.ws1a1{word-spacing:-0.227696pt;}
.ws153{word-spacing:-0.212480pt;}
.ws170{word-spacing:-0.171520pt;}
.ws92{word-spacing:-0.159360pt;}
.ws16{word-spacing:-0.128000pt;}
.wsfa{word-spacing:-0.106240pt;}
.ws176{word-spacing:-0.085760pt;}
.ws7{word-spacing:-0.074880pt;}
.ws4e{word-spacing:-0.064000pt;}
.wsde{word-spacing:-0.053120pt;}
.ws5{word-spacing:0.000000pt;}
.ws93{word-spacing:0.053120pt;}
.wsb1{word-spacing:0.064000pt;}
.ws6{word-spacing:0.074880pt;}
.ws103{word-spacing:0.106240pt;}
.wsc0{word-spacing:0.128000pt;}
.ws17d{word-spacing:0.171520pt;}
.wsa{word-spacing:0.192000pt;}
.ws9e{word-spacing:0.212480pt;}
.wse{word-spacing:0.256000pt;}
.ws179{word-spacing:0.300160pt;}
.wsdd{word-spacing:0.318720pt;}
.ws106{word-spacing:0.371840pt;}
.wsa3{word-spacing:0.384000pt;}
.ws178{word-spacing:0.385920pt;}
.ws94{word-spacing:0.424960pt;}
.ws50{word-spacing:0.448000pt;}
.ws173{word-spacing:0.471680pt;}
.wsc9{word-spacing:0.478080pt;}
.ws42{word-spacing:0.512000pt;}
.ws174{word-spacing:0.557440pt;}
.ws10a{word-spacing:0.584320pt;}
.ws199{word-spacing:0.602134pt;}
.ws10b{word-spacing:0.637440pt;}
.ws24{word-spacing:0.640000pt;}
.ws16f{word-spacing:0.643200pt;}
.ws1a0{word-spacing:0.645144pt;}
.ws12d{word-spacing:0.690560pt;}
.ws87{word-spacing:0.704000pt;}
.ws149{word-spacing:0.743680pt;}
.ws18d{word-spacing:0.796936pt;}
.wsb{word-spacing:0.832000pt;}
.ws25{word-spacing:0.896000pt;}
.ws17c{word-spacing:0.900480pt;}
.ws95{word-spacing:1.115520pt;}
.ws76{word-spacing:1.152000pt;}
.ws190{word-spacing:1.204269pt;}
.ws194{word-spacing:1.247278pt;}
.ws105{word-spacing:1.274880pt;}
.ws196{word-spacing:1.275098pt;}
.ws19{word-spacing:1.280000pt;}
.ws17b{word-spacing:1.415040pt;}
.ws1a{word-spacing:1.536000pt;}
.ws15a{word-spacing:1.646720pt;}
.wsed{word-spacing:1.752960pt;}
.ws6f{word-spacing:1.792000pt;}
.ws128{word-spacing:1.912320pt;}
.ws27{word-spacing:1.920000pt;}
.wsfd{word-spacing:1.965440pt;}
.ws14a{word-spacing:2.124800pt;}
.ws6e{word-spacing:2.176000pt;}
.ws12f{word-spacing:2.284160pt;}
.ws197{word-spacing:2.337679pt;}
.wsda{word-spacing:2.390400pt;}
.ws1d{word-spacing:2.432000pt;}
.ws1e{word-spacing:2.560000pt;}
.ws131{word-spacing:2.602880pt;}
.wsaa{word-spacing:2.752000pt;}
.ws1c{word-spacing:2.816000pt;}
.ws121{word-spacing:2.921600pt;}
.wsec{word-spacing:3.027840pt;}
.ws4b{word-spacing:3.072000pt;}
.ws191{word-spacing:3.139701pt;}
.ws13{word-spacing:3.200000pt;}
.ws10c{word-spacing:3.240320pt;}
.ws19f{word-spacing:3.268730pt;}
.ws114{word-spacing:3.399680pt;}
.ws6d{word-spacing:3.456000pt;}
.wse8{word-spacing:3.665280pt;}
.ws5e{word-spacing:3.712000pt;}
.ws97{word-spacing:3.776000pt;}
.wsee{word-spacing:3.824640pt;}
.ws1f{word-spacing:3.840000pt;}
.ws132{word-spacing:3.877760pt;}
.ws157{word-spacing:4.037120pt;}
.ws11{word-spacing:4.096000pt;}
.wsbf{word-spacing:4.224000pt;}
.ws15d{word-spacing:4.249600pt;}
.wsf9{word-spacing:4.302720pt;}
.ws40{word-spacing:4.352000pt;}
.ws59{word-spacing:4.416000pt;}
.ws147{word-spacing:4.462080pt;}
.ws3f{word-spacing:4.480000pt;}
.ws102{word-spacing:4.515200pt;}
.ws65{word-spacing:4.672000pt;}
.ws41{word-spacing:4.736000pt;}
.wsbe{word-spacing:4.864000pt;}
.wsf8{word-spacing:4.940160pt;}
.ws31{word-spacing:4.992000pt;}
.ws15c{word-spacing:5.099520pt;}
.ws12{word-spacing:5.120000pt;}
.ws155{word-spacing:5.152640pt;}
.ws32{word-spacing:5.312000pt;}
.ws34{word-spacing:5.376000pt;}
.ws11a{word-spacing:5.577600pt;}
.ws47{word-spacing:5.632000pt;}
.ws18f{word-spacing:5.677267pt;}
.ws3a{word-spacing:5.760000pt;}
.ws14b{word-spacing:5.790080pt;}
.ws7f{word-spacing:5.952000pt;}
.ws35{word-spacing:6.016000pt;}
.wsc8{word-spacing:6.268160pt;}
.wsab{word-spacing:6.272000pt;}
.ws5c{word-spacing:6.400000pt;}
.wsc7{word-spacing:6.427520pt;}
.ws119{word-spacing:6.480640pt;}
.wsba{word-spacing:6.592000pt;}
.ws5d{word-spacing:6.656000pt;}
.ws115{word-spacing:6.905600pt;}
.ws88{word-spacing:6.912000pt;}
.ws19c{word-spacing:6.944728pt;}
.ws4c{word-spacing:6.976000pt;}
.ws54{word-spacing:7.040000pt;}
.wse6{word-spacing:7.064960pt;}
.ws120{word-spacing:7.171200pt;}
.wse7{word-spacing:7.277440pt;}
.ws4d{word-spacing:7.296000pt;}
.wse5{word-spacing:7.543040pt;}
.ws39{word-spacing:7.552000pt;}
.ws17{word-spacing:7.680000pt;}
.wsd2{word-spacing:7.702400pt;}
.ws143{word-spacing:7.755520pt;}
.wsd3{word-spacing:7.914880pt;}
.ws48{word-spacing:7.936000pt;}
.wsd6{word-spacing:8.180480pt;}
.wsb2{word-spacing:8.192000pt;}
.ws193{word-spacing:8.214834pt;}
.ws43{word-spacing:8.320000pt;}
.ws11f{word-spacing:8.339840pt;}
.wsd5{word-spacing:8.552320pt;}
.ws44{word-spacing:8.576000pt;}
.ws116{word-spacing:8.817920pt;}
.ws7c{word-spacing:8.832000pt;}
.ws68{word-spacing:8.960000pt;}
.wsd4{word-spacing:9.030400pt;}
.ws69{word-spacing:9.216000pt;}
.ws12c{word-spacing:9.455360pt;}
.ws22{word-spacing:9.472000pt;}
.ws23{word-spacing:9.536000pt;}
.ws20{word-spacing:9.600000pt;}
.ws11e{word-spacing:9.667840pt;}
.ws21{word-spacing:9.856000pt;}
.ws85{word-spacing:10.112000pt;}
.ws62{word-spacing:10.240000pt;}
.ws124{word-spacing:10.252160pt;}
.wsf4{word-spacing:10.464640pt;}
.ws61{word-spacing:10.496000pt;}
.ws13e{word-spacing:10.730240pt;}
.ws36{word-spacing:10.752000pt;}
.ws19b{word-spacing:10.752400pt;}
.ws38{word-spacing:10.880000pt;}
.ws122{word-spacing:10.889600pt;}
.ws123{word-spacing:10.942720pt;}
.wsac{word-spacing:11.072000pt;}
.ws37{word-spacing:11.136000pt;}
.ws154{word-spacing:11.367680pt;}
.ws74{word-spacing:11.392000pt;}
.ws5a{word-spacing:11.520000pt;}
.wsf6{word-spacing:11.580160pt;}
.ws5b{word-spacing:11.776000pt;}
.wsf7{word-spacing:12.005120pt;}
.ws8f{word-spacing:12.032000pt;}
.ws8e{word-spacing:12.160000pt;}
.ws156{word-spacing:12.164480pt;}
.ws7b{word-spacing:12.416000pt;}
.wsce{word-spacing:12.642560pt;}
.wsc6{word-spacing:12.672000pt;}
.ws18{word-spacing:12.800000pt;}
.ws101{word-spacing:12.801920pt;}
.ws129{word-spacing:12.855040pt;}
.ws9c{word-spacing:13.056000pt;}
.ws134{word-spacing:13.280000pt;}
.ws55{word-spacing:13.312000pt;}
.ws133{word-spacing:13.439360pt;}
.ws57{word-spacing:13.440000pt;}
.ws56{word-spacing:13.696000pt;}
.wsf5{word-spacing:13.917440pt;}
.ws73{word-spacing:13.952000pt;}
.ws66{word-spacing:14.080000pt;}
.ws64{word-spacing:14.336000pt;}
.wscd{word-spacing:14.554880pt;}
.ws99{word-spacing:14.592000pt;}
.ws3b{word-spacing:14.720000pt;}
.wscc{word-spacing:14.767360pt;}
.ws8a{word-spacing:14.912000pt;}
.ws8b{word-spacing:14.976000pt;}
.wsa4{word-spacing:15.232000pt;}
.ws26{word-spacing:15.360000pt;}
.ws89{word-spacing:15.616000pt;}
.ws136{word-spacing:15.829760pt;}
.ws82{word-spacing:15.872000pt;}
.ws6b{word-spacing:16.000000pt;}
.ws81{word-spacing:16.256000pt;}
.wsb7{word-spacing:16.512000pt;}
.ws13a{word-spacing:16.626560pt;}
.ws1b{word-spacing:16.640000pt;}
.ws13b{word-spacing:16.679680pt;}
.wsb6{word-spacing:16.896000pt;}
.ws12e{word-spacing:17.104640pt;}
.wsb0{word-spacing:17.152000pt;}
.wse9{word-spacing:17.264000pt;}
.ws14{word-spacing:17.280000pt;}
.wseb{word-spacing:17.476480pt;}
.ws15{word-spacing:17.536000pt;}
.wsea{word-spacing:17.742080pt;}
.wsbb{word-spacing:17.792000pt;}
.wsf1{word-spacing:17.901440pt;}
.ws83{word-spacing:17.920000pt;}
.wsf3{word-spacing:17.954560pt;}
.wsf2{word-spacing:18.113920pt;}
.ws148{word-spacing:18.379520pt;}
.wsa9{word-spacing:18.432000pt;}
.ws77{word-spacing:18.560000pt;}
.wsa8{word-spacing:18.752000pt;}
.ws86{word-spacing:19.072000pt;}
.ws28{word-spacing:19.200000pt;}
.ws80{word-spacing:19.456000pt;}
.wsbd{word-spacing:19.840000pt;}
.wse3{word-spacing:20.344960pt;}
.ws63{word-spacing:20.352000pt;}
.ws29{word-spacing:20.480000pt;}
.wse2{word-spacing:20.504320pt;}
.wse4{word-spacing:20.716800pt;}
.ws9f{word-spacing:20.736000pt;}
.wsa0{word-spacing:21.376000pt;}
.wsbc{word-spacing:22.016000pt;}
.ws118{word-spacing:22.894720pt;}
.wsb9{word-spacing:23.040000pt;}
.ws117{word-spacing:23.266560pt;}
.ws46{word-spacing:23.296000pt;}
.ws45{word-spacing:23.552000pt;}
.ws163{word-spacing:24.169600pt;}
.wsb8{word-spacing:24.320000pt;}
.wsf0{word-spacing:24.807040pt;}
.ws9b{word-spacing:24.832000pt;}
.ws9a{word-spacing:24.960000pt;}
.ws13c{word-spacing:25.019520pt;}
.wsef{word-spacing:25.178880pt;}
.ws8d{word-spacing:26.240000pt;}
.ws8c{word-spacing:26.432000pt;}
.ws7e{word-spacing:26.880000pt;}
.ws108{word-spacing:27.994240pt;}
.ws159{word-spacing:28.206720pt;}
.ws107{word-spacing:28.631680pt;}
.ws91{word-spacing:28.672000pt;}
.ws67{word-spacing:28.800000pt;}
.ws109{word-spacing:29.269120pt;}
.wsad{word-spacing:29.440000pt;}
.ws144{word-spacing:29.640960pt;}
.ws14f{word-spacing:31.181440pt;}
.ws79{word-spacing:31.232000pt;}
.ws7a{word-spacing:31.360000pt;}
.ws14e{word-spacing:31.393920pt;}
.ws78{word-spacing:31.616000pt;}
.ws72{word-spacing:33.152000pt;}
.ws71{word-spacing:33.280000pt;}
.wsdc{word-spacing:34.634240pt;}
.ws14c{word-spacing:38.246400pt;}
.ws14d{word-spacing:38.883840pt;}
.ws161{word-spacing:39.255680pt;}
.ws127{word-spacing:42.442880pt;}
.ws160{word-spacing:43.345920pt;}
.ws139{word-spacing:44.620800pt;}
.ws15b{word-spacing:44.992640pt;}
.ws126{word-spacing:46.586240pt;}
.ws125{word-spacing:46.692480pt;}
.ws146{word-spacing:67.409280pt;}
.ws145{word-spacing:72.190080pt;}
.ws15f{word-spacing:90.463360pt;}
.ws15e{word-spacing:94.553600pt;}
.ws182{word-spacing:173.408945pt;}
.ws181{word-spacing:197.928160pt;}
.ws184{word-spacing:221.504993pt;}
.ws183{word-spacing:223.215570pt;}
._1b{margin-left:-10.363004pt;}
._1a{margin-left:-7.887360pt;}
._a{margin-left:-6.568064pt;}
._4{margin-left:-5.552960pt;}
._3{margin-left:-4.148352pt;}
._9{margin-left:-3.225984pt;}
._0{margin-left:-2.149056pt;}
._1{margin-left:-1.010880pt;}
._2{width:1.272960pt;}
._6{width:2.639296pt;}
._5{width:4.295040pt;}
._7{width:5.568000pt;}
._11{width:6.606080pt;}
._8{width:7.755776pt;}
._e{width:8.718080pt;}
._12{width:9.683904pt;}
._b{width:10.810880pt;}
._10{width:12.167040pt;}
._17{width:13.447040pt;}
._c{width:14.528000pt;}
._f{width:17.851136pt;}
._14{width:19.464000pt;}
._18{width:21.182400pt;}
._d{width:22.848000pt;}
._19{width:24.377920pt;}
._16{width:25.267136pt;}
._15{width:28.842496pt;}
._13{width:31.644160pt;}
._1c{width:577.991164pt;}
.fs4{font-size:34.560000pt;}
.fs7{font-size:37.949333pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:43.009600pt;}
.fs2{font-size:53.120000pt;}
.fs5{font-size:53.129067pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y163{bottom:2.560000pt;}
.y161{bottom:2.720000pt;}
.y1e8{bottom:6.580133pt;}
.y1bd{bottom:7.758133pt;}
.y1bf{bottom:7.758667pt;}
.y1f5{bottom:8.084533pt;}
.y1db{bottom:10.799333pt;}
.y201{bottom:11.431200pt;}
.y1f8{bottom:14.163600pt;}
.y1de{bottom:14.164000pt;}
.y1c7{bottom:16.343600pt;}
.y1e7{bottom:17.332400pt;}
.y1f4{bottom:27.059200pt;}
.y1d8{bottom:29.142133pt;}
.y200{bottom:30.406000pt;}
.y1cd{bottom:31.172267pt;}
.y1f7{bottom:33.138400pt;}
.y1dd{bottom:33.138800pt;}
.y1c6{bottom:35.318267pt;}
.y1b9{bottom:36.166533pt;}
.y1e4{bottom:37.464933pt;}
.y1f3{bottom:46.033867pt;}
.y1d7{bottom:48.116933pt;}
.y1ff{bottom:49.380667pt;}
.y1cb{bottom:49.514933pt;}
.y1c5{bottom:54.293067pt;}
.y1b7{bottom:55.141333pt;}
.y1e3{bottom:56.439733pt;}
.y1f2{bottom:65.008667pt;}
.y1d5{bottom:67.091600pt;}
.y1fe{bottom:68.355333pt;}
.y1ca{bottom:68.489733pt;}
.y1b6{bottom:74.116000pt;}
.y1e2{bottom:75.414400pt;}
.y1f1{bottom:83.983333pt;}
.y1d4{bottom:86.066267pt;}
.y1fd{bottom:87.330000pt;}
.y1c9{bottom:87.464400pt;}
.y1b4{bottom:93.090667pt;}
.y1e1{bottom:94.389067pt;}
.y204{bottom:99.133600pt;}
.y1f0{bottom:102.958133pt;}
.y10{bottom:103.680000pt;}
.y1c3{bottom:103.915200pt;}
.y39{bottom:104.960000pt;}
.y1d2{bottom:105.041067pt;}
.y1fc{bottom:106.304800pt;}
.y90{bottom:109.280000pt;}
.y1b2{bottom:112.065333pt;}
.y4f{bottom:112.960000pt;}
.y1e0{bottom:113.363733pt;}
.y95{bottom:117.760000pt;}
.y1c2{bottom:119.095067pt;}
.y63{bottom:120.960000pt;}
.yfd{bottom:121.267520pt;}
.y203{bottom:121.903333pt;}
.y1ef{bottom:121.932800pt;}
.y81{bottom:124.000000pt;}
.y1d1{bottom:124.015733pt;}
.y1fb{bottom:125.279467pt;}
.y6d{bottom:125.760000pt;}
.yf3{bottom:129.275360pt;}
.y1b0{bottom:131.040133pt;}
.y2c{bottom:133.760000pt;}
.y15e{bottom:137.280000pt;}
.y12c{bottom:137.287680pt;}
.y1ee{bottom:140.907600pt;}
.y38{bottom:141.760000pt;}
.y1cf{bottom:142.990533pt;}
.y1fa{bottom:144.254267pt;}
.y8f{bottom:146.080000pt;}
.y202{bottom:149.100400pt;}
.y4e{bottom:149.760000pt;}
.yfc{bottom:151.984160pt;}
.yde{bottom:151.998080pt;}
.y123{bottom:152.004320pt;}
.y9b{bottom:152.480000pt;}
.y94{bottom:154.560000pt;}
.y62{bottom:157.760000pt;}
.y1ed{bottom:159.882267pt;}
.y159{bottom:159.987040pt;}
.yf2{bottom:159.992000pt;}
.y143{bottom:159.993280pt;}
.y115{bottom:159.993760pt;}
.y80{bottom:160.800000pt;}
.y6c{bottom:162.560000pt;}
.y15d{bottom:168.000000pt;}
.y12b{bottom:168.004320pt;}
.y2b{bottom:178.560000pt;}
.ydd{bottom:182.555360pt;}
.y122{bottom:182.561600pt;}
.y8e{bottom:182.880000pt;}
.y4d{bottom:186.560000pt;}
.y158{bottom:190.544320pt;}
.yfb{bottom:190.549280pt;}
.y142{bottom:190.550560pt;}
.y114{bottom:190.551040pt;}
.ya0{bottom:191.360000pt;}
.yf{bottom:193.600000pt;}
.y61{bottom:194.560000pt;}
.y7f{bottom:197.600000pt;}
.yc5{bottom:198.086560pt;}
.yf1{bottom:198.557120pt;}
.y15c{bottom:198.560000pt;}
.y12a{bottom:198.561600pt;}
.y93{bottom:199.040000pt;}
.ya9{bottom:199.360000pt;}
.y1d9{bottom:207.352800pt;}
.y6b{bottom:207.360000pt;}
.y2a{bottom:215.360000pt;}
.y8d{bottom:219.680000pt;}
.y1ab{bottom:220.160000pt;}
.yfa{bottom:221.265920pt;}
.y141{bottom:221.267200pt;}
.ydc{bottom:221.279840pt;}
.y121{bottom:221.286080pt;}
.y4c{bottom:223.360000pt;}
.yad{bottom:228.160000pt;}
.yc4{bottom:228.803200pt;}
.y157{bottom:229.268800pt;}
.yf0{bottom:229.273760pt;}
.y113{bottom:229.275520pt;}
.y15b{bottom:229.280000pt;}
.y1ea{bottom:230.059200pt;}
.y58{bottom:231.360000pt;}
.y1ac{bottom:232.160000pt;}
.y1aa{bottom:232.320000pt;}
.y7e{bottom:234.400000pt;}
.y9f{bottom:235.840000pt;}
.ya8{bottom:236.160000pt;}
.y129{bottom:237.286080pt;}
.ye{bottom:238.400000pt;}
.y9a{bottom:238.560000pt;}
.y1c1{bottom:241.482000pt;}
.y1f9{bottom:242.129333pt;}
.y6a{bottom:244.160000pt;}
.y1d6{bottom:245.302133pt;}
.y15f{bottom:251.982560pt;}
.ydb{bottom:251.996480pt;}
.y120{bottom:252.002720pt;}
.y29{bottom:252.160000pt;}
.y8c{bottom:256.480000pt;}
.y1c0{bottom:256.661867pt;}
.y1e9{bottom:257.888800pt;}
.y1ec{bottom:258.521333pt;}
.yc3{bottom:259.360480pt;}
.y156{bottom:259.985440pt;}
.yf9{bottom:259.990400pt;}
.y140{bottom:259.991680pt;}
.y112{bottom:259.992160pt;}
.y4b{bottom:260.160000pt;}
.yba{bottom:264.960000pt;}
.yef{bottom:267.998240pt;}
.y15a{bottom:268.000000pt;}
.y128{bottom:268.002720pt;}
.y1f6{bottom:268.061333pt;}
.y57{bottom:268.160000pt;}
.y7d{bottom:271.200000pt;}
.yac{bottom:272.640000pt;}
.ya7{bottom:272.960000pt;}
.y99{bottom:280.960000pt;}
.y11f{bottom:282.560000pt;}
.y1d3{bottom:283.251600pt;}
.y28{bottom:288.960000pt;}
.yf8{bottom:290.547680pt;}
.y13f{bottom:290.548960pt;}
.y111{bottom:290.549440pt;}
.yda{bottom:290.561600pt;}
.y8b{bottom:293.280000pt;}
.y9c{bottom:296.640000pt;}
.y65{bottom:296.960000pt;}
.yc2{bottom:298.084960pt;}
.y155{bottom:298.550560pt;}
.yee{bottom:298.555520pt;}
.y127{bottom:298.560000pt;}
.y1eb{bottom:301.530667pt;}
.yb9{bottom:301.760000pt;}
.y1e5{bottom:304.060533pt;}
.y4a{bottom:304.960000pt;}
.y7c{bottom:308.000000pt;}
.ya6{bottom:309.760000pt;}
.yab{bottom:317.760000pt;}
.y1d0{bottom:321.201067pt;}
.yf7{bottom:321.264320pt;}
.yd9{bottom:321.278240pt;}
.y27{bottom:325.760000pt;}
.yd{bottom:328.000000pt;}
.yc1{bottom:328.801600pt;}
.y154{bottom:329.267200pt;}
.yed{bottom:329.272160pt;}
.y13e{bottom:329.273440pt;}
.y110{bottom:329.273920pt;}
.y8a{bottom:330.080000pt;}
.y64{bottom:333.760000pt;}
.y1ba{bottom:335.815733pt;}
.y126{bottom:337.280000pt;}
.yb8{bottom:338.560000pt;}
.y49{bottom:341.760000pt;}
.ya5{bottom:346.560000pt;}
.y60{bottom:349.760000pt;}
.y11e{bottom:351.980960pt;}
.y7b{bottom:352.800000pt;}
.y1b8{bottom:354.790533pt;}
.yc0{bottom:359.358880pt;}
.yf6{bottom:359.988800pt;}
.y10f{bottom:359.990560pt;}
.yd8{bottom:360.002720pt;}
.y26{bottom:362.560000pt;}
.y89{bottom:366.880000pt;}
.y153{bottom:367.991680pt;}
.yec{bottom:367.996640pt;}
.y13d{bottom:367.997920pt;}
.y9d{bottom:370.240000pt;}
.y69{bottom:370.560000pt;}
.yc{bottom:372.800000pt;}
.y1ae{bottom:374.937600pt;}
.yb7{bottom:375.360000pt;}
.y48{bottom:378.560000pt;}
.y194{bottom:379.520000pt;}
.ya4{bottom:383.360000pt;}
.y5f{bottom:386.560000pt;}
.y7a{bottom:389.600000pt;}
.y1ad{bottom:390.117333pt;}
.y11d{bottom:390.546080pt;}
.yd7{bottom:390.560000pt;}
.y1b5{bottom:392.740000pt;}
.ybf{bottom:398.083360pt;}
.y152{bottom:398.548960pt;}
.yeb{bottom:398.553920pt;}
.y13c{bottom:398.555200pt;}
.y10e{bottom:398.555680pt;}
.y25{bottom:399.360000pt;}
.y1dc{bottom:400.884000pt;}
.y88{bottom:403.680000pt;}
.y193{bottom:405.920000pt;}
.y1df{bottom:405.944000pt;}
.y96{bottom:407.040000pt;}
.y68{bottom:407.360000pt;}
.y1da{bottom:409.738667pt;}
.y1ce{bottom:410.370667pt;}
.y1b3{bottom:411.714667pt;}
.y47{bottom:415.360000pt;}
.y1bb{bottom:419.806400pt;}
.ya3{bottom:420.160000pt;}
.y11c{bottom:421.262720pt;}
.y5e{bottom:423.360000pt;}
.y79{bottom:426.400000pt;}
.ybe{bottom:428.800000pt;}
.y192{bottom:428.960000pt;}
.yf5{bottom:429.270560pt;}
.y10d{bottom:429.272320pt;}
.yd6{bottom:429.276960pt;}
.y1b1{bottom:430.689467pt;}
.y24{bottom:436.160000pt;}
.y151{bottom:437.273440pt;}
.yea{bottom:437.278400pt;}
.y13b{bottom:437.279680pt;}
.y87{bottom:440.480000pt;}
.y191{bottom:441.920000pt;}
.y9e{bottom:443.840000pt;}
.y67{bottom:444.160000pt;}
.y18f{bottom:444.640000pt;}
.y46{bottom:452.160000pt;}
.y190{bottom:454.880000pt;}
.yb6{bottom:456.960000pt;}
.y11b{bottom:459.987200pt;}
.y10c{bottom:459.988960pt;}
.yd5{bottom:459.993600pt;}
.y5d{bottom:460.160000pt;}
.yb{bottom:462.400000pt;}
.y78{bottom:463.200000pt;}
.ya2{bottom:464.640000pt;}
.y18e{bottom:467.840000pt;}
.y150{bottom:467.990080pt;}
.ye9{bottom:467.995040pt;}
.y13a{bottom:467.996320pt;}
.ybd{bottom:470.880000pt;}
.y23{bottom:472.960000pt;}
.y86{bottom:477.280000pt;}
.y18d{bottom:480.800000pt;}
.yaa{bottom:480.960000pt;}
.y18b{bottom:483.360000pt;}
.y1a8{bottom:486.235040pt;}
.y45{bottom:488.960000pt;}
.y11a{bottom:490.544480pt;}
.y18c{bottom:493.600000pt;}
.yb5{bottom:493.760000pt;}
.y5c{bottom:496.960000pt;}
.yf4{bottom:498.552320pt;}
.y139{bottom:498.553600pt;}
.y10b{bottom:498.554080pt;}
.yd4{bottom:498.558720pt;}
.y77{bottom:500.000000pt;}
.y1a7{bottom:501.600000pt;}
.y14f{bottom:506.555200pt;}
.y18a{bottom:506.560000pt;}
.ye8{bottom:506.560160pt;}
.ya{bottom:507.200000pt;}
.y22{bottom:509.760000pt;}
.y85{bottom:514.080000pt;}
.y1a6{bottom:514.240000pt;}
.ybc{bottom:516.000000pt;}
.yaf{bottom:517.760000pt;}
.y189{bottom:519.520000pt;}
.y187{bottom:522.240000pt;}
.y1e6{bottom:524.220000pt;}
.y44{bottom:525.760000pt;}
.y1a5{bottom:527.200000pt;}
.y119{bottom:529.268960pt;}
.y10a{bottom:529.270720pt;}
.yd3{bottom:529.275360pt;}
.y1a3{bottom:529.920000pt;}
.yb4{bottom:530.560000pt;}
.y1af{bottom:531.809333pt;}
.y188{bottom:532.480000pt;}
.y5b{bottom:533.760000pt;}
.y76{bottom:536.800000pt;}
.y14e{bottom:537.271840pt;}
.ye7{bottom:537.276800pt;}
.y138{bottom:537.278080pt;}
.y1a4{bottom:540.160000pt;}
.y186{bottom:545.440000pt;}
.y21{bottom:546.560000pt;}
.y84{bottom:550.880000pt;}
.y9{bottom:552.000000pt;}
.y1a2{bottom:553.120000pt;}
.ya1{bottom:554.560000pt;}
.ybb{bottom:556.960000pt;}
.y185{bottom:558.400000pt;}
.y118{bottom:559.985600pt;}
.y183{bottom:560.960000pt;}
.y1cc{bottom:562.170667pt;}
.y43{bottom:562.560000pt;}
.y1c8{bottom:562.802667pt;}
.y1c4{bottom:565.332000pt;}
.y1a1{bottom:566.080000pt;}
.yb3{bottom:567.360000pt;}
.ye6{bottom:567.993440pt;}
.y137{bottom:567.994720pt;}
.y109{bottom:567.995200pt;}
.yd2{bottom:567.999840pt;}
.y19f{bottom:568.640000pt;}
.y56{bottom:570.560000pt;}
.y184{bottom:571.200000pt;}
.y75{bottom:573.600000pt;}
.y14d{bottom:575.996320pt;}
.y131{bottom:576.001280pt;}
.y1a0{bottom:579.040000pt;}
.y20{bottom:583.360000pt;}
.y182{bottom:584.160000pt;}
.y37{bottom:591.360000pt;}
.y19e{bottom:591.840000pt;}
.y83{bottom:591.994880pt;}
.y181{bottom:597.120000pt;}
.y117{bottom:598.550720pt;}
.y108{bottom:598.552480pt;}
.yd1{bottom:598.557120pt;}
.y42{bottom:599.360000pt;}
.y17f{bottom:599.840000pt;}
.yb2{bottom:604.160000pt;}
.y19d{bottom:604.800000pt;}
.y14c{bottom:606.553600pt;}
.ye5{bottom:606.558560pt;}
.y136{bottom:606.559840pt;}
.y55{bottom:607.360000pt;}
.y19b{bottom:607.520000pt;}
.y180{bottom:610.080000pt;}
.y74{bottom:610.400000pt;}
.y19c{bottom:617.760000pt;}
.y1f{bottom:620.160000pt;}
.y17e{bottom:623.040000pt;}
.y97{bottom:627.840000pt;}
.y36{bottom:628.160000pt;}
.y107{bottom:629.269120pt;}
.y82{bottom:630.560000pt;}
.y19a{bottom:630.720000pt;}
.y17d{bottom:636.000000pt;}
.y41{bottom:636.160000pt;}
.ye4{bottom:637.275200pt;}
.y135{bottom:637.276480pt;}
.yd0{bottom:637.281600pt;}
.y17b{bottom:638.560000pt;}
.yb1{bottom:640.960000pt;}
.y8{bottom:641.440000pt;}
.y199{bottom:643.680000pt;}
.y54{bottom:644.160000pt;}
.y14b{bottom:645.278080pt;}
.y130{bottom:645.283040pt;}
.y197{bottom:646.240000pt;}
.y73{bottom:647.200000pt;}
.y17c{bottom:648.800000pt;}
.y198{bottom:656.640000pt;}
.y1e{bottom:656.960000pt;}
.y17a{bottom:661.760000pt;}
.y35{bottom:664.960000pt;}
.y116{bottom:667.832480pt;}
.y106{bottom:667.834240pt;}
.ycf{bottom:667.838880pt;}
.y196{bottom:669.440000pt;}
.y40{bottom:672.960000pt;}
.y179{bottom:674.720000pt;}
.y1bc{bottom:674.753333pt;}
.y205{bottom:675.040000pt;}
.y1be{bottom:675.385333pt;}
.y14a{bottom:675.835360pt;}
.ye3{bottom:675.840320pt;}
.y134{bottom:675.841600pt;}
.y177{bottom:677.440000pt;}
.y53{bottom:680.960000pt;}
.y72{bottom:683.840000pt;}
.yb0{bottom:685.440000pt;}
.y195{bottom:685.760000pt;}
.y7{bottom:686.240000pt;}
.y178{bottom:687.680000pt;}
.y1d{bottom:693.760000pt;}
.y105{bottom:698.550880pt;}
.y176{bottom:700.640000pt;}
.y34{bottom:701.760000pt;}
.y149{bottom:706.552000pt;}
.ye2{bottom:706.556960pt;}
.y133{bottom:706.558240pt;}
.yce{bottom:706.563360pt;}
.y3f{bottom:709.760000pt;}
.y12f{bottom:714.564800pt;}
.y175{bottom:716.800000pt;}
.y52{bottom:717.760000pt;}
.y71{bottom:728.320000pt;}
.y1c{bottom:730.560000pt;}
.ye1{bottom:737.273600pt;}
.y104{bottom:737.275360pt;}
.ycd{bottom:737.280000pt;}
.y5a{bottom:738.240000pt;}
.y33{bottom:738.560000pt;}
.y174{bottom:740.800000pt;}
.y148{bottom:745.276480pt;}
.y12d{bottom:745.281440pt;}
.y132{bottom:745.282720pt;}
.y3e{bottom:746.560000pt;}
.y51{bottom:754.560000pt;}
.y173{bottom:767.200000pt;}
.y1b{bottom:767.360000pt;}
.y103{bottom:767.832640pt;}
.y70{bottom:773.120000pt;}
.y32{bottom:775.360000pt;}
.y147{bottom:775.833760pt;}
.ye0{bottom:775.838720pt;}
.y6{bottom:775.840000pt;}
.y59{bottom:783.040000pt;}
.y3d{bottom:783.360000pt;}
.y12e{bottom:783.846560pt;}
.y50{bottom:791.360000pt;}
.y172{bottom:792.960000pt;}
.y1a{bottom:804.160000pt;}
.ycc{bottom:806.555360pt;}
.y102{bottom:806.557120pt;}
.y92{bottom:811.840000pt;}
.y31{bottom:812.160000pt;}
.y146{bottom:814.558240pt;}
.y6f{bottom:814.560000pt;}
.y125{bottom:814.563200pt;}
.y171{bottom:815.688960pt;}
.y66{bottom:820.160000pt;}
.y5{bottom:820.640000pt;}
.y170{bottom:827.845440pt;}
.y3c{bottom:828.160000pt;}
.y101{bottom:837.273760pt;}
.y16f{bottom:840.162720pt;}
.y145{bottom:845.274880pt;}
.ycb{bottom:845.279840pt;}
.y19{bottom:848.640000pt;}
.y30{bottom:848.960000pt;}
.y16e{bottom:852.480000pt;}
.y91{bottom:856.640000pt;}
.y6e{bottom:856.960000pt;}
.y16d{bottom:862.720000pt;}
.y3b{bottom:864.960000pt;}
.y4{bottom:865.440000pt;}
.y16c{bottom:875.040000pt;}
.yca{bottom:875.837120pt;}
.y100{bottom:875.838880pt;}
.y144{bottom:883.840000pt;}
.y124{bottom:883.844960pt;}
.y2f{bottom:885.760000pt;}
.y16b{bottom:887.200000pt;}
.y18{bottom:893.440000pt;}
.y98{bottom:893.760000pt;}
.y16a{bottom:899.520000pt;}
.y3a{bottom:901.760000pt;}
.y3{bottom:910.240000pt;}
.y169{bottom:911.840000pt;}
.yc9{bottom:914.561600pt;}
.yff{bottom:914.563360pt;}
.y2e{bottom:922.560000pt;}
.y168{bottom:924.000000pt;}
.yae{bottom:930.240000pt;}
.y167{bottom:936.320000pt;}
.y17{bottom:938.560000pt;}
.ydf{bottom:945.278240pt;}
.yfe{bottom:945.280000pt;}
.y166{bottom:948.640000pt;}
.yc8{bottom:953.286080pt;}
.y2{bottom:958.392480pt;}
.y165{bottom:960.800000pt;}
.y2d{bottom:967.040000pt;}
.y164{bottom:973.120000pt;}
.y16{bottom:975.360000pt;}
.yc7{bottom:983.843360pt;}
.y162{bottom:985.440000pt;}
.y1a9{bottom:988.800000pt;}
.y160{bottom:998.240000pt;}
.y1{bottom:1001.280000pt;}
.y15{bottom:1012.160000pt;}
.yc6{bottom:1014.560000pt;}
.y14{bottom:1038.751333pt;}
.y13{bottom:1057.951333pt;}
.y12{bottom:1077.150667pt;}
.y11{bottom:1096.350667pt;}
.h12{height:12.160000pt;}
.h14{height:12.161333pt;}
.h10{height:12.318667pt;}
.h13{height:12.320000pt;}
.h1f{height:23.814667pt;}
.h1d{height:24.448000pt;}
.h28{height:30.992000pt;}
.h1c{height:37.245195pt;}
.h17{height:42.063437pt;}
.h11{height:42.084375pt;}
.h1b{height:42.211570pt;}
.h5{height:46.593750pt;}
.h6{height:46.596417pt;}
.h8{height:52.134375pt;}
.h19{height:52.143273pt;}
.hc{height:52.146535pt;}
.he{height:52.147815pt;}
.ha{height:52.152935pt;}
.hd{height:52.197095pt;}
.hf{height:52.465950pt;}
.hb{height:52.478750pt;}
.h1e{height:53.544137pt;}
.h26{height:56.292000pt;}
.h9{height:62.781250pt;}
.h4{height:62.812500pt;}
.h3{height:64.500000pt;}
.h7{height:66.750000pt;}
.h2{height:75.465000pt;}
.h20{height:79.693333pt;}
.h21{height:80.325333pt;}
.h22{height:127.130667pt;}
.h23{height:127.762667pt;}
.h27{height:159.388000pt;}
.h24{height:162.550667pt;}
.h25{height:163.182667pt;}
.h2a{height:164.448000pt;}
.h1a{height:167.390667pt;}
.h29{height:180.741333pt;}
.h18{height:467.040000pt;}
.h15{height:793.760000pt;}
.h16{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:19.998667pt;}
.w3{width:20.000000pt;}
.w4{width:20.160000pt;}
.w7{width:30.078667pt;}
.w8{width:30.400000pt;}
.w6{width:30.401333pt;}
.w9{width:41.600000pt;}
.wf{width:60.640000pt;}
.w23{width:64.553333pt;}
.wc{width:68.320000pt;}
.we{width:70.880000pt;}
.wd{width:72.960000pt;}
.w12{width:73.440000pt;}
.w15{width:75.521333pt;}
.w1a{width:86.400000pt;}
.w13{width:105.280000pt;}
.wb{width:105.440000pt;}
.w18{width:105.918667pt;}
.w16{width:114.880000pt;}
.w17{width:123.680000pt;}
.w14{width:133.600000pt;}
.wa{width:136.480000pt;}
.w19{width:137.120000pt;}
.w22{width:144.581333pt;}
.w21{width:145.214667pt;}
.w2{width:169.278667pt;}
.w20{width:276.849333pt;}
.w1c{width:380.352000pt;}
.w1e{width:437.045333pt;}
.w1f{width:438.576000pt;}
.w1d{width:441.738667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w1b{width:1094.880000pt;}
.w10{width:1122.560000pt;}
.w11{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x61{left:1.381200pt;}
.x62{left:2.646933pt;}
.x58{left:6.076000pt;}
.x1b{left:7.360000pt;}
.x25{left:9.760000pt;}
.x3b{left:11.040000pt;}
.x31{left:12.160000pt;}
.x40{left:13.760000pt;}
.x32{left:15.360000pt;}
.x33{left:18.080000pt;}
.x3e{left:20.480000pt;}
.x3d{left:23.520000pt;}
.x3f{left:24.640000pt;}
.x36{left:26.240000pt;}
.x52{left:28.480000pt;}
.x63{left:32.391600pt;}
.x18{left:33.920000pt;}
.x4c{left:37.760000pt;}
.x4f{left:43.680000pt;}
.x35{left:45.120000pt;}
.x53{left:48.160000pt;}
.x4e{left:52.480000pt;}
.x4d{left:57.440000pt;}
.x50{left:59.360000pt;}
.x19{left:61.440000pt;}
.x4b{left:66.720000pt;}
.x51{left:68.480000pt;}
.x42{left:83.360000pt;}
.x4a{left:90.560000pt;}
.xf{left:96.000000pt;}
.x10{left:108.840000pt;}
.x11{left:120.000000pt;}
.x5e{left:125.374667pt;}
.x1{left:126.400000pt;}
.x64{left:128.538667pt;}
.x5d{left:135.284800pt;}
.x34{left:139.520000pt;}
.x3c{left:146.720000pt;}
.x43{left:156.800000pt;}
.x12{left:168.000000pt;}
.x69{left:169.461600pt;}
.x5{left:178.240000pt;}
.x5f{left:181.380667pt;}
.x8{left:188.160000pt;}
.x66{left:193.403733pt;}
.x1a{left:203.200000pt;}
.x70{left:209.964933pt;}
.xb{left:219.360000pt;}
.x3{left:221.920000pt;}
.x1c{left:223.200000pt;}
.xa{left:229.760000pt;}
.x4{left:230.880000pt;}
.x16{left:234.240000pt;}
.x9{left:242.400000pt;}
.x1d{left:243.360000pt;}
.x6{left:247.840000pt;}
.xe{left:252.480000pt;}
.x13{left:259.040000pt;}
.x7{left:262.240000pt;}
.x1e{left:263.360000pt;}
.x17{left:265.120000pt;}
.x14{left:267.200000pt;}
.xc{left:270.720000pt;}
.x2{left:272.322400pt;}
.xd{left:275.520000pt;}
.x1f{left:283.520000pt;}
.x20{left:303.680000pt;}
.x71{left:314.385467pt;}
.x21{left:323.840000pt;}
.x22{left:344.000000pt;}
.x6a{left:353.623067pt;}
.x6c{left:357.002667pt;}
.x23{left:364.160000pt;}
.x37{left:381.440000pt;}
.x24{left:384.160000pt;}
.x72{left:394.761333pt;}
.x44{left:395.680000pt;}
.x15{left:396.799520pt;}
.x26{left:414.560000pt;}
.x56{left:423.520000pt;}
.x41{left:429.600000pt;}
.x27{left:444.640000pt;}
.x6b{left:447.289200pt;}
.x38{left:449.760000pt;}
.x45{left:471.200000pt;}
.x28{left:475.040000pt;}
.x29{left:505.440000pt;}
.x39{left:522.720000pt;}
.x60{left:533.572000pt;}
.x2a{left:535.840000pt;}
.x54{left:561.280000pt;}
.x2b{left:566.240000pt;}
.x57{left:574.074667pt;}
.x46{left:586.080000pt;}
.x3a{left:593.600000pt;}
.x2c{left:596.640000pt;}
.x59{left:613.361200pt;}
.x68{left:619.057067pt;}
.x2d{left:627.040000pt;}
.x6d{left:629.815733pt;}
.x6e{left:636.144400pt;}
.x5b{left:638.042933pt;}
.x5a{left:650.700267pt;}
.x2e{left:657.440000pt;}
.x6f{left:660.826000pt;}
.x5c{left:686.140667pt;}
.x2f{left:687.840000pt;}
.x47{left:709.760000pt;}
.x30{left:718.240000pt;}
.x48{left:815.680000pt;}
.x65{left:833.549333pt;}
.x49{left:952.800000pt;}
.x67{left:965.185333pt;}
.x55{left:1110.240000pt;}
}




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