
    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_2516684d9ee9c332cbfe9fdc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8ee9e5678e19d45293a31961.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d4ba1cdbd80320f53b8b806f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f400a3253ff303735440f712.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926270;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_477f8d9b70de0dd8f88c041f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.920410;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_943db1f18c6e8c221b2a78c5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_150f1fa3f2e00b46e661ac4f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.882324;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_371bb51f183abb135db1babb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.692383;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_aa669c159e6a015c0686fc16.woff2')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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v9{vertical-align:-42.120000px;}
.v8{vertical-align:-33.120000px;}
.v2{vertical-align:-27.000000px;}
.v5{vertical-align:-14.760000px;}
.v3{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.va{vertical-align:9.000000px;}
.v1{vertical-align:27.000000px;}
.v4{vertical-align:33.120000px;}
.vb{vertical-align:34.569000px;}
.ve{vertical-align:36.002880px;}
.v7{vertical-align:50.381280px;}
.vc{vertical-align:69.138000px;}
.vd{vertical-align:71.302320px;}
.ls6f{letter-spacing:-1.082160px;}
.ls93{letter-spacing:-0.661320px;}
.ls17{letter-spacing:-0.576000px;}
.ls91{letter-spacing:-0.505440px;}
.ls9a{letter-spacing:-0.504000px;}
.ls57{letter-spacing:-0.480960px;}
.lscf{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.420840px;}
.ls4b{letter-spacing:-0.383040px;}
.lscb{letter-spacing:-0.360720px;}
.ls15{letter-spacing:-0.360000px;}
.ls4a{letter-spacing:-0.335160px;}
.ls71{letter-spacing:-0.324000px;}
.lsca{letter-spacing:-0.300600px;}
.ls2c{letter-spacing:-0.288000px;}
.ls70{letter-spacing:-0.240480px;}
.ls16{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.180360px;}
.ls52{letter-spacing:-0.153360px;}
.ls14{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.120240px;}
.ls3f{letter-spacing:-0.095760px;}
.ls13{letter-spacing:-0.072000px;}
.ls11{letter-spacing:-0.060120px;}
.lse{letter-spacing:0.000000px;}
.ls7a{letter-spacing:0.009360px;}
.ls95{letter-spacing:0.012960px;}
.ls83{letter-spacing:0.014040px;}
.ls0{letter-spacing:0.017280px;}
.ls61{letter-spacing:0.019440px;}
.ls84{letter-spacing:0.026640px;}
.lsc7{letter-spacing:0.038880px;}
.ls55{letter-spacing:0.060120px;}
.ls7{letter-spacing:0.072000px;}
.ls2f{letter-spacing:0.079200px;}
.lsa1{letter-spacing:0.090000px;}
.ls92{letter-spacing:0.104040px;}
.ls1{letter-spacing:0.120240px;}
.ls56{letter-spacing:0.126252px;}
.lsc1{letter-spacing:0.138600px;}
.lsc4{letter-spacing:0.139320px;}
.lsa0{letter-spacing:0.140040px;}
.ls4{letter-spacing:0.144000px;}
.lsd3{letter-spacing:0.151200px;}
.ls1c{letter-spacing:0.158400px;}
.ls6e{letter-spacing:0.162000px;}
.ls90{letter-spacing:0.168480px;}
.ls5{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.180360px;}
.lsb3{letter-spacing:0.191520px;}
.ls5c{letter-spacing:0.198396px;}
.ls2d{letter-spacing:0.216000px;}
.ls44{letter-spacing:0.287280px;}
.lsd7{letter-spacing:0.288000px;}
.ls4c{letter-spacing:0.335160px;}
.lsb1{letter-spacing:0.336672px;}
.ls2{letter-spacing:0.360000px;}
.ls9d{letter-spacing:0.420840px;}
.ls74{letter-spacing:0.504000px;}
.ls36{letter-spacing:0.540000px;}
.ls50{letter-spacing:0.720000px;}
.ls9f{letter-spacing:0.781560px;}
.ls9e{letter-spacing:0.853704px;}
.ls26{letter-spacing:1.080000px;}
.lsb4{letter-spacing:1.142280px;}
.ls42{letter-spacing:1.152000px;}
.ls98{letter-spacing:1.350000px;}
.ls27{letter-spacing:1.440000px;}
.ls97{letter-spacing:1.447200px;}
.ls7d{letter-spacing:1.503000px;}
.ls4f{letter-spacing:1.584000px;}
.ls23{letter-spacing:1.800000px;}
.lscc{letter-spacing:1.814400px;}
.ls72{letter-spacing:2.160000px;}
.ls35{letter-spacing:2.520000px;}
.ls53{letter-spacing:2.585160px;}
.ls54{letter-spacing:2.645280px;}
.ls46{letter-spacing:2.880000px;}
.ls82{letter-spacing:2.945880px;}
.ls43{letter-spacing:2.952000px;}
.ls6{letter-spacing:3.240000px;}
.ls8{letter-spacing:3.600000px;}
.ls40{letter-spacing:3.960000px;}
.ls77{letter-spacing:4.230000px;}
.ls78{letter-spacing:4.320000px;}
.lsc{letter-spacing:4.680000px;}
.lsd{letter-spacing:4.694400px;}
.ls3b{letter-spacing:5.040000px;}
.ls75{letter-spacing:5.110200px;}
.ls33{letter-spacing:5.400000px;}
.lsb0{letter-spacing:5.470920px;}
.ls7b{letter-spacing:5.760000px;}
.ls5a{letter-spacing:5.767200px;}
.lsd2{letter-spacing:5.831640px;}
.ls39{letter-spacing:6.120000px;}
.ls1d{letter-spacing:6.127200px;}
.lsb{letter-spacing:6.480000px;}
.ls30{letter-spacing:6.840000px;}
.ls22{letter-spacing:7.200000px;}
.ls34{letter-spacing:7.560000px;}
.ls32{letter-spacing:7.920000px;}
.ls59{letter-spacing:8.280000px;}
.lsb5{letter-spacing:8.356680px;}
.ls4d{letter-spacing:8.640000px;}
.ls96{letter-spacing:8.717400px;}
.ls58{letter-spacing:9.000000px;}
.ls37{letter-spacing:9.360000px;}
.ls7f{letter-spacing:9.720000px;}
.ls5b{letter-spacing:9.799560px;}
.ls7e{letter-spacing:10.080000px;}
.ls1f{letter-spacing:10.440000px;}
.lsb2{letter-spacing:10.710000px;}
.ls79{letter-spacing:10.800000px;}
.ls29{letter-spacing:11.160000px;}
.lsc9{letter-spacing:11.242440px;}
.lsd0{letter-spacing:11.380716px;}
.ls18{letter-spacing:11.520000px;}
.ls3c{letter-spacing:11.603160px;}
.ls49{letter-spacing:11.880000px;}
.ls7c{letter-spacing:11.963880px;}
.lsda{letter-spacing:12.600000px;}
.ls31{letter-spacing:12.960000px;}
.ls99{letter-spacing:13.320000px;}
.lsd6{letter-spacing:13.334400px;}
.ls76{letter-spacing:13.590000px;}
.ls1e{letter-spacing:13.680000px;}
.lsd5{letter-spacing:14.040000px;}
.ls9{letter-spacing:14.760000px;}
.ls94{letter-spacing:14.849640px;}
.ls20{letter-spacing:15.480000px;}
.ls45{letter-spacing:15.696000px;}
.ls2a{letter-spacing:15.840000px;}
.ls41{letter-spacing:16.056000px;}
.lscd{letter-spacing:16.920000px;}
.ls3a{letter-spacing:17.280000px;}
.ls48{letter-spacing:18.000000px;}
.ls51{letter-spacing:18.720000px;}
.ls21{letter-spacing:19.080000px;}
.ls25{letter-spacing:19.440000px;}
.ls9b{letter-spacing:19.800000px;}
.lsd1{letter-spacing:20.520000px;}
.ls80{letter-spacing:21.240000px;}
.lsce{letter-spacing:22.320000px;}
.ls73{letter-spacing:22.680000px;}
.lsa{letter-spacing:23.040000px;}
.ls9c{letter-spacing:23.760000px;}
.lsc8{letter-spacing:24.840000px;}
.ls1a{letter-spacing:25.920000px;}
.ls2b{letter-spacing:26.280000px;}
.ls24{letter-spacing:26.550000px;}
.ls3d{letter-spacing:26.640000px;}
.ls38{letter-spacing:27.000000px;}
.lsaf{letter-spacing:29.070000px;}
.ls19{letter-spacing:29.880000px;}
.ls81{letter-spacing:30.240000px;}
.ls2e{letter-spacing:32.040000px;}
.ls1b{letter-spacing:32.904000px;}
.lsd4{letter-spacing:33.984000px;}
.lsd8{letter-spacing:34.200000px;}
.ls28{letter-spacing:45.000000px;}
.ls47{letter-spacing:46.440000px;}
.ls8f{letter-spacing:49.382568px;}
.ls8d{letter-spacing:49.743288px;}
.ls8c{letter-spacing:49.749300px;}
.ls8a{letter-spacing:50.110020px;}
.lsa5{letter-spacing:61.653060px;}
.lsa2{letter-spacing:64.508760px;}
.ls89{letter-spacing:64.538820px;}
.ls8e{letter-spacing:64.893528px;}
.ls86{letter-spacing:64.899540px;}
.lsb6{letter-spacing:73.556820px;}
.lsa3{letter-spacing:74.278260px;}
.ls88{letter-spacing:79.989660px;}
.ls4e{letter-spacing:83.304000px;}
.lsa7{letter-spacing:84.679020px;}
.lsa8{letter-spacing:87.564780px;}
.lsa6{letter-spacing:87.925500px;}
.lsd9{letter-spacing:90.000000px;}
.lsa4{letter-spacing:91.532700px;}
.ls87{letter-spacing:94.779180px;}
.ls8b{letter-spacing:116.392320px;}
.lsb7{letter-spacing:126.793080px;}
.ls85{letter-spacing:131.482440px;}
.lsbd{letter-spacing:141.582600px;}
.ls60{letter-spacing:141.943320px;}
.lsbb{letter-spacing:143.025480px;}
.ls69{letter-spacing:146.963340px;}
.ls63{letter-spacing:154.177740px;}
.lsba{letter-spacing:157.394160px;}
.lsbc{letter-spacing:157.754880px;}
.lsbe{letter-spacing:158.115600px;}
.lsb8{letter-spacing:173.626560px;}
.lsb9{letter-spacing:174.348000px;}
.lsa9{letter-spacing:176.151600px;}
.ls5e{letter-spacing:182.584440px;}
.lsc6{letter-spacing:186.919092px;}
.ls3e{letter-spacing:194.400000px;}
.ls5f{letter-spacing:206.752680px;}
.lsae{letter-spacing:207.444060px;}
.lsbf{letter-spacing:215.740620px;}
.ls5d{letter-spacing:221.121360px;}
.ls66{letter-spacing:223.646400px;}
.ls62{letter-spacing:238.796640px;}
.lsc2{letter-spacing:247.039092px;}
.lsc5{letter-spacing:247.399812px;}
.lsc3{letter-spacing:247.760532px;}
.lsc0{letter-spacing:248.121252px;}
.ls6d{letter-spacing:261.822600px;}
.lsab{letter-spacing:272.974860px;}
.lsac{letter-spacing:273.335580px;}
.lsad{letter-spacing:281.271420px;}
.lsaa{letter-spacing:285.936732px;}
.ls67{letter-spacing:336.672000px;}
.ls6a{letter-spacing:359.036640px;}
.ls64{letter-spacing:366.551640px;}
.ls6c{letter-spacing:522.442800px;}
.ls6b{letter-spacing:552.322440px;}
.ls68{letter-spacing:567.472680px;}
.ls65{letter-spacing:597.352320px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12f{word-spacing:-59.879520px;}
.wsa4{word-spacing:-51.120000px;}
.wsba{word-spacing:-50.966640px;}
.wsb9{word-spacing:-32.030856px;}
.wsb0{word-spacing:-18.360000px;}
.ws15c{word-spacing:-18.288000px;}
.ws4c{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.856000px;}
.ws6d{word-spacing:-17.784000px;}
.wsee{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.640000px;}
.ws150{word-spacing:-17.568000px;}
.ws127{word-spacing:-17.496000px;}
.ws4b{word-spacing:-17.424000px;}
.wsa3{word-spacing:-15.984000px;}
.wsb7{word-spacing:-15.840000px;}
.wsa5{word-spacing:-15.696000px;}
.wsd6{word-spacing:-15.210360px;}
.wsd0{word-spacing:-15.150240px;}
.wsd1{word-spacing:-15.090120px;}
.wscf{word-spacing:-15.030000px;}
.ws2{word-spacing:-14.969880px;}
.ws0{word-spacing:-14.909760px;}
.wsd5{word-spacing:-14.849640px;}
.wsd7{word-spacing:-14.789520px;}
.ws147{word-spacing:-14.729400px;}
.ws148{word-spacing:-14.669280px;}
.wsd3{word-spacing:-14.609160px;}
.wsc7{word-spacing:-14.549040px;}
.ws115{word-spacing:-14.368680px;}
.wsd4{word-spacing:-13.947840px;}
.wsd9{word-spacing:-13.500000px;}
.wsb1{word-spacing:-12.305160px;}
.wsa2{word-spacing:-12.257280px;}
.ws6e{word-spacing:-11.970000px;}
.ws98{word-spacing:-11.874240px;}
.wsae{word-spacing:-11.634840px;}
.wsaf{word-spacing:-11.586960px;}
.wsb8{word-spacing:-11.246400px;}
.ws108{word-spacing:-10.698480px;}
.ws109{word-spacing:-10.024560px;}
.ws142{word-spacing:-9.758880px;}
.wsd2{word-spacing:-9.739440px;}
.ws1{word-spacing:-9.720000px;}
.wsda{word-spacing:-8.928000px;}
.wsd8{word-spacing:-8.784000px;}
.wsdb{word-spacing:-8.676000px;}
.ws8c{word-spacing:-0.504000px;}
.ws92{word-spacing:-0.432000px;}
.ws10{word-spacing:-0.420840px;}
.ws87{word-spacing:-0.360000px;}
.ws141{word-spacing:-0.216000px;}
.wse{word-spacing:-0.180360px;}
.ws12{word-spacing:-0.144000px;}
.wsd{word-spacing:-0.120240px;}
.wsc1{word-spacing:-0.095760px;}
.ws16{word-spacing:-0.072000px;}
.wsf{word-spacing:-0.060120px;}
.ws9{word-spacing:0.000000px;}
.ws132{word-spacing:0.060120px;}
.ws6f{word-spacing:0.072000px;}
.ws15e{word-spacing:0.095760px;}
.wsdd{word-spacing:0.120240px;}
.ws48{word-spacing:0.144000px;}
.wse2{word-spacing:0.162000px;}
.wsc{word-spacing:0.180360px;}
.ws17{word-spacing:0.216000px;}
.ws97{word-spacing:0.240480px;}
.ws3e{word-spacing:0.288000px;}
.wsa{word-spacing:0.300600px;}
.ws14{word-spacing:0.360000px;}
.wse1{word-spacing:0.360720px;}
.wse3{word-spacing:0.378000px;}
.ws165{word-spacing:0.432000px;}
.ws169{word-spacing:0.504000px;}
.wsb{word-spacing:0.541080px;}
.ws1c{word-spacing:0.576000px;}
.ws78{word-spacing:0.648000px;}
.ws130{word-spacing:0.661320px;}
.wsa0{word-spacing:0.720000px;}
.ws143{word-spacing:0.721440px;}
.ws77{word-spacing:0.936000px;}
.ws57{word-spacing:1.008000px;}
.ws131{word-spacing:1.022040px;}
.ws56{word-spacing:1.080000px;}
.ws104{word-spacing:1.082160px;}
.wsb4{word-spacing:1.224000px;}
.ws144{word-spacing:1.262520px;}
.ws62{word-spacing:1.296000px;}
.ws102{word-spacing:1.322640px;}
.ws60{word-spacing:1.368000px;}
.ws61{word-spacing:1.440000px;}
.ws103{word-spacing:1.563120px;}
.ws121{word-spacing:1.623240px;}
.wsec{word-spacing:1.656000px;}
.ws120{word-spacing:1.683360px;}
.ws50{word-spacing:1.728000px;}
.ws4f{word-spacing:1.800000px;}
.wsa6{word-spacing:1.944000px;}
.ws161{word-spacing:2.016000px;}
.wsb2{word-spacing:2.088000px;}
.ws86{word-spacing:2.160000px;}
.wsc9{word-spacing:2.284560px;}
.ws8f{word-spacing:2.376000px;}
.wsca{word-spacing:2.404800px;}
.ws73{word-spacing:2.448000px;}
.ws4d{word-spacing:2.520000px;}
.ws88{word-spacing:2.736000px;}
.wsb3{word-spacing:2.808000px;}
.ws4e{word-spacing:2.880000px;}
.ws113{word-spacing:3.006000px;}
.ws112{word-spacing:3.066120px;}
.ws15{word-spacing:3.096000px;}
.ws111{word-spacing:3.126240px;}
.ws8b{word-spacing:3.168000px;}
.wsef{word-spacing:3.240000px;}
.ws117{word-spacing:3.456000px;}
.ws13{word-spacing:3.528000px;}
.ws11{word-spacing:3.600000px;}
.ws114{word-spacing:3.816000px;}
.ws6c{word-spacing:3.888000px;}
.wsea{word-spacing:3.960000px;}
.wsfe{word-spacing:4.176000px;}
.ws10f{word-spacing:4.208400px;}
.wsfd{word-spacing:4.248000px;}
.ws2a{word-spacing:4.320000px;}
.ws110{word-spacing:4.509000px;}
.ws41{word-spacing:4.536000px;}
.ws11e{word-spacing:4.569120px;}
.ws29{word-spacing:4.608000px;}
.ws13c{word-spacing:4.629240px;}
.ws2c{word-spacing:4.680000px;}
.ws11d{word-spacing:4.809600px;}
.ws11f{word-spacing:4.869720px;}
.ws80{word-spacing:4.896000px;}
.ws13b{word-spacing:4.929840px;}
.ws2b{word-spacing:4.968000px;}
.ws90{word-spacing:5.040000px;}
.ws14c{word-spacing:5.170320px;}
.ws9f{word-spacing:5.256000px;}
.wsf4{word-spacing:5.290560px;}
.ws83{word-spacing:5.328000px;}
.ws81{word-spacing:5.400000px;}
.wsf2{word-spacing:5.531040px;}
.ws13a{word-spacing:5.591160px;}
.ws82{word-spacing:5.616000px;}
.wsf3{word-spacing:5.651280px;}
.wsdc{word-spacing:5.688000px;}
.wsf5{word-spacing:5.711400px;}
.ws9c{word-spacing:5.760000px;}
.ws159{word-spacing:5.891760px;}
.ws3f{word-spacing:6.048000px;}
.ws15a{word-spacing:6.072120px;}
.ws40{word-spacing:6.120000px;}
.ws126{word-spacing:6.336000px;}
.wse7{word-spacing:6.408000px;}
.ws20{word-spacing:6.480000px;}
.wsed{word-spacing:6.696000px;}
.ws7d{word-spacing:6.768000px;}
.ws76{word-spacing:6.840000px;}
.ws93{word-spacing:6.973920px;}
.ws95{word-spacing:7.034040px;}
.ws54{word-spacing:7.056000px;}
.ws94{word-spacing:7.094160px;}
.ws74{word-spacing:7.128000px;}
.ws55{word-spacing:7.200000px;}
.ws75{word-spacing:7.272000px;}
.wsa1{word-spacing:7.344000px;}
.wse0{word-spacing:7.394760px;}
.ws129{word-spacing:7.416000px;}
.wscc{word-spacing:7.454880px;}
.ws85{word-spacing:7.488000px;}
.ws84{word-spacing:7.560000px;}
.ws138{word-spacing:7.632000px;}
.wscd{word-spacing:7.755480px;}
.wscb{word-spacing:7.815600px;}
.wsbd{word-spacing:7.848000px;}
.ws68{word-spacing:7.920000px;}
.ws67{word-spacing:8.136000px;}
.ws145{word-spacing:8.176320px;}
.ws8a{word-spacing:8.208000px;}
.ws158{word-spacing:8.236440px;}
.ws89{word-spacing:8.280000px;}
.ws157{word-spacing:8.296560px;}
.ws146{word-spacing:8.476920px;}
.ws123{word-spacing:8.496000px;}
.ws11c{word-spacing:8.537040px;}
.ws99{word-spacing:8.568000px;}
.ws107{word-spacing:8.597160px;}
.wsbe{word-spacing:8.640000px;}
.wsfa{word-spacing:8.712000px;}
.ws156{word-spacing:8.837640px;}
.wse6{word-spacing:8.856000px;}
.ws106{word-spacing:8.897760px;}
.wsa7{word-spacing:8.928000px;}
.ws1a{word-spacing:9.000000px;}
.ws105{word-spacing:9.138240px;}
.ws18{word-spacing:9.216000px;}
.ws8d{word-spacing:9.288000px;}
.ws19{word-spacing:9.360000px;}
.ws5b{word-spacing:9.576000px;}
.ws5a{word-spacing:9.648000px;}
.wsdf{word-spacing:9.679320px;}
.ws5c{word-spacing:9.720000px;}
.wsde{word-spacing:9.919800px;}
.ws42{word-spacing:10.008000px;}
.wsf0{word-spacing:10.080000px;}
.ws151{word-spacing:10.224000px;}
.ws45{word-spacing:10.296000px;}
.ws12c{word-spacing:10.368000px;}
.ws3b{word-spacing:10.440000px;}
.ws44{word-spacing:10.584000px;}
.wsff{word-spacing:10.656000px;}
.ws122{word-spacing:10.728000px;}
.ws43{word-spacing:10.800000px;}
.ws14e{word-spacing:11.001960px;}
.ws2d{word-spacing:11.016000px;}
.ws14d{word-spacing:11.062080px;}
.ws2f{word-spacing:11.088000px;}
.ws155{word-spacing:11.122200px;}
.ws30{word-spacing:11.160000px;}
.wsf1{word-spacing:11.302560px;}
.wsb6{word-spacing:11.376000px;}
.ws14f{word-spacing:11.422800px;}
.ws46{word-spacing:11.448000px;}
.ws2e{word-spacing:11.520000px;}
.ws100{word-spacing:11.663280px;}
.ws96{word-spacing:11.723400px;}
.ws140{word-spacing:11.736000px;}
.wsac{word-spacing:11.808000px;}
.ws65{word-spacing:11.880000px;}
.ws101{word-spacing:12.084120px;}
.ws66{word-spacing:12.168000px;}
.ws3d{word-spacing:12.240000px;}
.ws7e{word-spacing:12.528000px;}
.ws9d{word-spacing:12.600000px;}
.ws7f{word-spacing:12.960000px;}
.ws128{word-spacing:13.176000px;}
.ws162{word-spacing:13.248000px;}
.ws163{word-spacing:13.320000px;}
.ws5f{word-spacing:13.536000px;}
.ws6b{word-spacing:13.608000px;}
.ws21{word-spacing:13.680000px;}
.wsa9{word-spacing:13.896000px;}
.ws160{word-spacing:13.968000px;}
.wsa8{word-spacing:14.040000px;}
.ws152{word-spacing:14.256000px;}
.ws22{word-spacing:14.328000px;}
.ws39{word-spacing:14.400000px;}
.ws3a{word-spacing:14.544000px;}
.ws11a{word-spacing:14.609160px;}
.ws119{word-spacing:14.669280px;}
.wsc2{word-spacing:14.688000px;}
.ws134{word-spacing:14.760000px;}
.ws118{word-spacing:14.909760px;}
.ws11b{word-spacing:14.969880px;}
.wsf9{word-spacing:14.976000px;}
.ws15d{word-spacing:15.048000px;}
.ws1b{word-spacing:15.120000px;}
.ws47{word-spacing:15.408000px;}
.wsc8{word-spacing:15.480000px;}
.ws69{word-spacing:15.768000px;}
.ws10b{word-spacing:15.811560px;}
.ws6a{word-spacing:15.840000px;}
.ws10d{word-spacing:16.052040px;}
.ws12a{word-spacing:16.056000px;}
.ws10e{word-spacing:16.112160px;}
.ws12b{word-spacing:16.200000px;}
.ws10c{word-spacing:16.352640px;}
.ws133{word-spacing:16.416000px;}
.wsaa{word-spacing:16.488000px;}
.wsab{word-spacing:16.560000px;}
.ws167{word-spacing:16.704000px;}
.ws52{word-spacing:16.776000px;}
.ws9b{word-spacing:16.848000px;}
.ws139{word-spacing:16.920000px;}
.ws166{word-spacing:17.064000px;}
.ws51{word-spacing:17.136000px;}
.ws53{word-spacing:17.208000px;}
.ws9a{word-spacing:17.280000px;}
.wsb5{word-spacing:17.496000px;}
.ws124{word-spacing:17.568000px;}
.ws125{word-spacing:17.640000px;}
.ws27{word-spacing:17.856000px;}
.ws7c{word-spacing:17.928000px;}
.ws28{word-spacing:18.000000px;}
.wsf7{word-spacing:18.216360px;}
.wsc4{word-spacing:18.288000px;}
.ws13d{word-spacing:18.360000px;}
.wsf6{word-spacing:18.516960px;}
.wsc3{word-spacing:18.576000px;}
.ws12d{word-spacing:18.648000px;}
.wsc5{word-spacing:18.720000px;}
.ws116{word-spacing:18.936000px;}
.ws4a{word-spacing:19.008000px;}
.ws49{word-spacing:19.080000px;}
.ws13f{word-spacing:19.296000px;}
.ws5e{word-spacing:19.368000px;}
.ws5d{word-spacing:19.440000px;}
.wsc6{word-spacing:19.728000px;}
.ws91{word-spacing:19.800000px;}
.wsc0{word-spacing:20.160000px;}
.wsbf{word-spacing:20.376000px;}
.ws25{word-spacing:20.448000px;}
.ws24{word-spacing:20.520000px;}
.ws26{word-spacing:20.880000px;}
.ws10a{word-spacing:21.096000px;}
.ws168{word-spacing:21.240000px;}
.wse9{word-spacing:21.528000px;}
.wse8{word-spacing:21.600000px;}
.ws154{word-spacing:22.248000px;}
.ws153{word-spacing:22.320000px;}
.wse5{word-spacing:22.608000px;}
.wse4{word-spacing:22.680000px;}
.ws1f{word-spacing:22.896000px;}
.ws1e{word-spacing:22.968000px;}
.ws1d{word-spacing:23.040000px;}
.ws13e{word-spacing:23.400000px;}
.wsbc{word-spacing:23.688000px;}
.ws16a{word-spacing:23.760000px;}
.ws15f{word-spacing:24.048000px;}
.ws15b{word-spacing:24.120000px;}
.ws14a{word-spacing:24.768000px;}
.ws149{word-spacing:24.840000px;}
.ws14b{word-spacing:24.912000px;}
.ws38{word-spacing:25.416000px;}
.ws12e{word-spacing:25.560000px;}
.wsf8{word-spacing:25.776000px;}
.ws35{word-spacing:25.848000px;}
.ws36{word-spacing:25.920000px;}
.ws37{word-spacing:26.136000px;}
.ws59{word-spacing:26.208000px;}
.ws58{word-spacing:26.280000px;}
.ws9e{word-spacing:26.568000px;}
.ws23{word-spacing:26.640000px;}
.ws8e{word-spacing:27.000000px;}
.wsfc{word-spacing:27.216000px;}
.wsfb{word-spacing:27.360000px;}
.ws136{word-spacing:28.656000px;}
.ws135{word-spacing:28.728000px;}
.ws137{word-spacing:28.800000px;}
.wsce{word-spacing:29.160000px;}
.ws31{word-spacing:29.448000px;}
.ws3c{word-spacing:29.520000px;}
.ws34{word-spacing:29.736000px;}
.ws33{word-spacing:29.808000px;}
.ws32{word-spacing:29.880000px;}
.wseb{word-spacing:30.240000px;}
.ws72{word-spacing:31.608000px;}
.ws70{word-spacing:31.896000px;}
.ws71{word-spacing:32.040000px;}
.ws164{word-spacing:34.200000px;}
.ws7a{word-spacing:35.136000px;}
.ws7b{word-spacing:35.208000px;}
.ws79{word-spacing:35.280000px;}
.wsad{word-spacing:41.400000px;}
.ws64{word-spacing:44.928000px;}
.ws63{word-spacing:45.000000px;}
.wsbb{word-spacing:409.976640px;}
._16{margin-left:-211.477680px;}
._15{margin-left:-194.256000px;}
._20{margin-left:-167.330160px;}
._14{margin-left:-126.828000px;}
._1f{margin-left:-101.162520px;}
._1e{margin-left:-96.554520px;}
._19{margin-left:-60.554160px;}
._1a{margin-left:-47.232000px;}
._18{margin-left:-43.776000px;}
._36{margin-left:-11.834640px;}
._34{margin-left:-10.101312px;}
._1d{margin-left:-8.706960px;}
._1{margin-left:-1.207008px;}
._0{width:1.082160px;}
._f{width:2.414016px;}
._2{width:3.672000px;}
._9{width:5.078448px;}
._6{width:6.835680px;}
._11{width:8.064000px;}
._3{width:9.360000px;}
._c{width:10.492848px;}
._a{width:12.076848px;}
._d{width:13.459680px;}
._4{width:15.086016px;}
._2b{width:16.412760px;}
._e{width:19.224000px;}
._8{width:20.232000px;}
._37{width:21.456000px;}
._5{width:23.040000px;}
._2f{width:24.480000px;}
._30{width:25.776000px;}
._7{width:26.925840px;}
._35{width:28.084032px;}
._b{width:29.435040px;}
._12{width:31.824000px;}
._13{width:35.496000px;}
._17{width:41.239008px;}
._10{width:45.271008px;}
._2e{width:47.327040px;}
._38{width:53.928000px;}
._2a{width:55.533024px;}
._33{width:77.675040px;}
._31{width:89.608860px;}
._2d{width:92.480328px;}
._32{width:107.013600px;}
._2c{width:124.989480px;}
._27{width:170.079480px;}
._1b{width:172.080360px;}
._21{width:176.417280px;}
._22{width:185.424048px;}
._1c{width:194.400000px;}
._26{width:262.002960px;}
._24{width:276.732360px;}
._23{width:296.921880px;}
._28{width:381.521520px;}
._29{width:551.931660px;}
._25{width:598.043700px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:27.000000px;}
.fs7{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs8{font-size:42.120000px;}
.fs4{font-size:47.880000px;}
.fs5{font-size:51.120000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:60.120000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y104{bottom:2.340000px;}
.y162{bottom:3.240000px;}
.y13d{bottom:3.330000px;}
.yd7{bottom:3.780000px;}
.yc6{bottom:6.660000px;}
.y103{bottom:15.300000px;}
.y13c{bottom:20.520000px;}
.y161{bottom:20.520150px;}
.yd5{bottom:21.780000px;}
.y1{bottom:57.330000px;}
.y112{bottom:138.150000px;}
.y196{bottom:138.510000px;}
.y15e{bottom:139.770000px;}
.yd4{bottom:139.950000px;}
.y1e0{bottom:142.650000px;}
.yd6{bottom:145.980000px;}
.y157{bottom:146.070000px;}
.y72{bottom:148.050000px;}
.y41{bottom:148.590000px;}
.y129{bottom:148.680000px;}
.y60{bottom:151.560000px;}
.y1bf{bottom:151.920000px;}
.y9b{bottom:160.470000px;}
.y16b{bottom:160.470270px;}
.y136{bottom:162.990000px;}
.y55{bottom:165.420000px;}
.ye7{bottom:165.960000px;}
.yfd{bottom:166.590000px;}
.y17d{bottom:169.020000px;}
.yf1{bottom:171.180000px;}
.y2d{bottom:171.450000px;}
.y17{bottom:172.170000px;}
.y1df{bottom:173.790000px;}
.yac{bottom:174.240000px;}
.y111{bottom:179.550000px;}
.y195{bottom:179.910000px;}
.y82{bottom:180.990000px;}
.y15d{bottom:181.170000px;}
.y16a{bottom:182.880270px;}
.y1be{bottom:183.150000px;}
.y11d{bottom:184.770000px;}
.yd3{bottom:186.330960px;}
.y156{bottom:187.470000px;}
.yb7{bottom:189.360000px;}
.y71{bottom:189.450000px;}
.y40{bottom:189.990000px;}
.y128{bottom:190.080000px;}
.y5f{bottom:192.960000px;}
.y1de{bottom:194.490000px;}
.y1a1{bottom:198.450000px;}
.y188{bottom:200.880000px;}
.y7f{bottom:201.420000px;}
.y9a{bottom:201.870000px;}
.y81{bottom:202.140000px;}
.y1bd{bottom:203.850000px;}
.y135{bottom:204.390000px;}
.y169{bottom:205.290000px;}
.y54{bottom:206.820000px;}
.ye6{bottom:207.360000px;}
.yfc{bottom:207.990000px;}
.y17c{bottom:210.420000px;}
.yd2{bottom:211.806810px;}
.yf0{bottom:212.580000px;}
.y2c{bottom:212.850000px;}
.y16{bottom:213.570000px;}
.y15c{bottom:215.277840px;}
.yab{bottom:215.640000px;}
.y110{bottom:220.950000px;}
.y194{bottom:221.310000px;}
.y80{bottom:223.200000px;}
.y1dd{bottom:225.720000px;}
.y11c{bottom:226.530000px;}
.y155{bottom:228.870000px;}
.yb6{bottom:230.760000px;}
.y3f{bottom:231.390000px;}
.y127{bottom:231.480000px;}
.y5e{bottom:234.360000px;}
.y1bc{bottom:234.990000px;}
.yd1{bottom:237.372840px;}
.y70{bottom:239.850000px;}
.y168{bottom:239.940000px;}
.y187{bottom:242.280000px;}
.y134{bottom:245.790000px;}
.y1dc{bottom:246.420000px;}
.y15b{bottom:246.690540px;}
.y53{bottom:248.220000px;}
.ye5{bottom:248.670000px;}
.yfb{bottom:249.390000px;}
.y17b{bottom:251.820000px;}
.y99{bottom:252.270000px;}
.y2b{bottom:254.250000px;}
.y15{bottom:254.970000px;}
.y1bb{bottom:255.690000px;}
.y10f{bottom:262.350000px;}
.y193{bottom:262.710000px;}
.yd0{bottom:262.848690px;}
.yef{bottom:262.980000px;}
.yaa{bottom:266.040000px;}
.y11b{bottom:268.380000px;}
.y15a{bottom:269.100270px;}
.y154{bottom:270.270000px;}
.yb5{bottom:272.160000px;}
.y7e{bottom:272.250000px;}
.y3e{bottom:272.790000px;}
.y126{bottom:272.880000px;}
.y5d{bottom:275.760000px;}
.y1db{bottom:277.560000px;}
.y6f{bottom:281.250000px;}
.y186{bottom:283.680000px;}
.y1ba{bottom:286.920000px;}
.y133{bottom:287.190000px;}
.ycf{bottom:288.324540px;}
.yfa{bottom:290.790000px;}
.y159{bottom:291.510000px;}
.y17a{bottom:293.220000px;}
.y98{bottom:293.670000px;}
.y14{bottom:296.370000px;}
.y1da{bottom:298.260000px;}
.y52{bottom:298.620000px;}
.ye4{bottom:299.610000px;}
.y192{bottom:304.110000px;}
.yee{bottom:304.380000px;}
.y2a{bottom:304.650000px;}
.ya9{bottom:307.440000px;}
.y1b9{bottom:307.620000px;}
.y11a{bottom:309.780000px;}
.y153{bottom:311.670000px;}
.y10e{bottom:312.570000px;}
.yb4{bottom:313.560000px;}
.yce{bottom:313.890570px;}
.y44{bottom:314.190000px;}
.y125{bottom:314.280000px;}
.y5c{bottom:317.160000px;}
.y158{bottom:320.490000px;}
.y6e{bottom:322.650000px;}
.y3d{bottom:323.190000px;}
.y185{bottom:325.080000px;}
.y132{bottom:328.590000px;}
.y1d9{bottom:329.490000px;}
.yf9{bottom:332.190000px;}
.ye3{bottom:333.720360px;}
.y179{bottom:334.620000px;}
.y13{bottom:337.770000px;}
.y1b8{bottom:338.760000px;}
.ycd{bottom:339.366420px;}
.y51{bottom:340.020000px;}
.y97{bottom:344.070000px;}
.y191{bottom:345.510000px;}
.yed{bottom:345.780000px;}
.y29{bottom:345.960000px;}
.ya8{bottom:348.840000px;}
.y1d8{bottom:350.190000px;}
.y119{bottom:351.180000px;}
.y152{bottom:353.070000px;}
.yb3{bottom:354.960000px;}
.yde{bottom:355.590000px;}
.ye2{bottom:356.130090px;}
.y1b7{bottom:359.460000px;}
.y5b{bottom:361.890000px;}
.y6d{bottom:363.960000px;}
.y3c{bottom:364.590000px;}
.ycc{bottom:364.842270px;}
.yf8{bottom:366.298110px;}
.y184{bottom:366.390000px;}
.y131{bottom:369.990000px;}
.y1a0{bottom:372.780000px;}
.y178{bottom:376.020000px;}
.y10d{bottom:378.090000px;}
.ye1{bottom:378.630270px;}
.y12{bottom:379.170000px;}
.y124{bottom:379.620000px;}
.y1b6{bottom:380.160000px;}
.y50{bottom:381.420000px;}
.y14a{bottom:381.960000px;}
.y190{bottom:386.910000px;}
.y28{bottom:387.360000px;}
.yec{bottom:387.540000px;}
.ya7{bottom:390.240000px;}
.ycb{bottom:390.408300px;}
.y118{bottom:392.580000px;}
.y96{bottom:394.470000px;}
.y5a{bottom:396.000270px;}
.yb2{bottom:396.360000px;}
.ydd{bottom:396.990000px;}
.yf7{bottom:397.710810px;}
.ye0{bottom:401.040000px;}
.y1d7{bottom:402.120000px;}
.y7d{bottom:405.360000px;}
.y3b{bottom:405.990000px;}
.y183{bottom:409.140000px;}
.y130{bottom:411.390000px;}
.y10c{bottom:411.822270px;}
.y123{bottom:413.730270px;}
.y6c{bottom:414.360000px;}
.yca{bottom:415.884150px;}
.y177{bottom:417.420000px;}
.y59{bottom:418.410270px;}
.yf6{bottom:420.120540px;}
.y11{bottom:420.570000px;}
.y149{bottom:423.360000px;}
.y18f{bottom:428.310000px;}
.y27{bottom:428.760000px;}
.y19f{bottom:429.390000px;}
.y4f{bottom:431.550000px;}
.ya6{bottom:431.640000px;}
.y1b5{bottom:432.090000px;}
.y1d6{bottom:433.260000px;}
.y151{bottom:435.870000px;}
.y122{bottom:436.140360px;}
.y10b{bottom:437.298120px;}
.yb1{bottom:437.760000px;}
.ydc{bottom:438.390000px;}
.y58{bottom:440.820000px;}
.yc9{bottom:441.360000px;}
.yf5{bottom:442.530270px;}
.ydf{bottom:444.690000px;}
.y95{bottom:444.870000px;}
.y7c{bottom:446.760000px;}
.y3a{bottom:447.390000px;}
.y12f{bottom:452.790000px;}
.y117{bottom:457.920000px;}
.y121{bottom:458.640270px;}
.y176{bottom:458.820000px;}
.y10{bottom:461.970000px;}
.y10a{bottom:462.864150px;}
.y1b4{bottom:463.320000px;}
.y1d5{bottom:464.490000px;}
.y6b{bottom:464.760000px;}
.yf4{bottom:464.940090px;}
.yc8{bottom:466.920000px;}
.y18e{bottom:469.710000px;}
.y26{bottom:470.160000px;}
.y19e{bottom:470.790000px;}
.y182{bottom:475.920000px;}
.y150{bottom:477.270000px;}
.ydb{bottom:479.790000px;}
.y120{bottom:481.050270px;}
.ya5{bottom:481.860000px;}
.y1b3{bottom:484.020000px;}
.yc5{bottom:485.730000px;}
.yf3{bottom:487.440000px;}
.y4e{bottom:488.160000px;}
.y109{bottom:488.340000px;}
.y39{bottom:488.790000px;}
.y57{bottom:489.150000px;}
.yc4{bottom:492.390000px;}
.yc7{bottom:493.015500px;}
.yc3{bottom:493.018380px;}
.y12e{bottom:494.190000px;}
.y94{bottom:495.270000px;}
.y1d4{bottom:495.720000px;}
.y116{bottom:498.150450px;}
.y175{bottom:500.220000px;}
.yc2{bottom:501.660630px;}
.yf{bottom:503.370000px;}
.y11f{bottom:503.460000px;}
.y6a{bottom:506.160000px;}
.y181{bottom:510.030270px;}
.y18d{bottom:511.110000px;}
.y25{bottom:511.560000px;}
.y19d{bottom:512.190000px;}
.y108{bottom:513.810000px;}
.y1b2{bottom:515.160000px;}
.y1d3{bottom:516.420000px;}
.y115{bottom:520.470270px;}
.yf2{bottom:520.740000px;}
.yda{bottom:521.190000px;}
.yb0{bottom:522.270630px;}
.y14f{bottom:527.670000px;}
.y4d{bottom:529.560000px;}
.y38{bottom:530.190000px;}
.y180{bottom:532.440090px;}
.y102{bottom:532.710000px;}
.y12d{bottom:535.590000px;}
.y143{bottom:535.770150px;}
.y1b1{bottom:535.860000px;}
.y7b{bottom:538.380000px;}
.y106{bottom:539.550000px;}
.y107{bottom:541.980000px;}
.y114{bottom:542.880000px;}
.yaf{bottom:544.680360px;}
.ye{bottom:544.770000px;}
.y93{bottom:545.670000px;}
.y105{bottom:545.760000px;}
.yc1{bottom:546.570270px;}
.y11e{bottom:547.110000px;}
.y69{bottom:547.560000px;}
.ya4{bottom:550.440000px;}
.y174{bottom:550.620000px;}
.y24{bottom:552.960000px;}
.y17f{bottom:554.940000px;}
.y113{bottom:556.830000px;}
.y142{bottom:557.910000px;}
.y18c{bottom:561.510000px;}
.yd9{bottom:562.590000px;}
.y167{bottom:563.490000px;}
.y14e{bottom:565.373430px;}
.y1b0{bottom:567.090000px;}
.yae{bottom:567.090090px;}
.y1d2{bottom:568.260000px;}
.y17e{bottom:568.800000px;}
.yc0{bottom:568.980270px;}
.y4c{bottom:570.960000px;}
.y37{bottom:571.590000px;}
.y101{bottom:580.320270px;}
.y141{bottom:584.550000px;}
.y12c{bottom:585.990000px;}
.yd{bottom:586.170000px;}
.y92{bottom:587.070000px;}
.y1af{bottom:587.790000px;}
.y68{bottom:588.960000px;}
.yad{bottom:589.590000px;}
.y166{bottom:590.490000px;}
.y14d{bottom:591.203250px;}
.ybf{bottom:591.390000px;}
.ya3{bottom:591.840000px;}
.y173{bottom:592.020000px;}
.y23{bottom:594.360000px;}
.y18b{bottom:595.620270px;}
.y1d1{bottom:599.490000px;}
.y100{bottom:602.730540px;}
.y13b{bottom:603.720000px;}
.y19c{bottom:603.990000px;}
.y160{bottom:609.750000px;}
.y4b{bottom:612.360000px;}
.y36{bottom:612.990000px;}
.y13f{bottom:613.800000px;}
.y140{bottom:615.600150px;}
.y14c{bottom:617.130000px;}
.y18a{bottom:618.030090px;}
.y1ae{bottom:619.020000px;}
.y164{bottom:619.740000px;}
.y1d0{bottom:620.190000px;}
.y165{bottom:621.630000px;}
.y13e{bottom:621.990000px;}
.yff{bottom:625.140270px;}
.ybe{bottom:627.390000px;}
.yc{bottom:627.570000px;}
.y163{bottom:628.020150px;}
.y91{bottom:628.470000px;}
.y67{bottom:630.360000px;}
.ya2{bottom:633.240000px;}
.y172{bottom:633.420000px;}
.y22{bottom:635.760000px;}
.y12b{bottom:636.390000px;}
.y189{bottom:640.530000px;}
.y19b{bottom:645.390000px;}
.yfe{bottom:647.550000px;}
.y1ad{bottom:650.160000px;}
.y1cf{bottom:651.330000px;}
.y4a{bottom:653.760000px;}
.y35{bottom:654.390000px;}
.y14b{bottom:660.600000px;}
.y15f{bottom:662.490090px;}
.y13a{bottom:662.580270px;}
.yb{bottom:668.880000px;}
.y90{bottom:669.870000px;}
.y1ac{bottom:670.860000px;}
.y66{bottom:671.760000px;}
.y1ce{bottom:672.030000px;}
.ya1{bottom:674.640000px;}
.y171{bottom:674.820000px;}
.y21{bottom:677.160000px;}
.ybd{bottom:677.790000px;}
.y139{bottom:684.990270px;}
.y19a{bottom:686.790000px;}
.y49{bottom:695.160000px;}
.y34{bottom:695.790000px;}
.y1ab{bottom:702.090000px;}
.y1cd{bottom:703.260000px;}
.yeb{bottom:704.790000px;}
.y138{bottom:707.400000px;}
.y8f{bottom:711.270000px;}
.y7a{bottom:713.160000px;}
.y170{bottom:716.220000px;}
.y20{bottom:718.560000px;}
.ya{bottom:719.100000px;}
.ybc{bottom:719.190000px;}
.y65{bottom:722.160000px;}
.y1aa{bottom:722.790000px;}
.ya0{bottom:723.424680px;}
.y9e{bottom:727.740000px;}
.y199{bottom:728.190000px;}
.y1cc{bottom:734.490000px;}
.y9f{bottom:734.850000px;}
.y48{bottom:736.560000px;}
.y33{bottom:737.190000px;}
.yea{bottom:746.190000px;}
.y8e{bottom:752.670000px;}
.y1a9{bottom:753.930000px;}
.y79{bottom:754.560000px;}
.y1cb{bottom:755.190000px;}
.y16f{bottom:757.530000px;}
.y1f{bottom:759.960000px;}
.ybb{bottom:760.590000px;}
.y64{bottom:763.560000px;}
.y9{bottom:768.960000px;}
.y198{bottom:769.590000px;}
.y137{bottom:770.040000px;}
.y1a8{bottom:774.630000px;}
.y47{bottom:777.960000px;}
.y32{bottom:778.590000px;}
.y1ca{bottom:786.330000px;}
.ye9{bottom:787.590000px;}
.y8d{bottom:794.070000px;}
.y78{bottom:795.960000px;}
.y16e{bottom:798.930000px;}
.yba{bottom:801.990000px;}
.y63{bottom:804.960000px;}
.y1a7{bottom:805.860000px;}
.y1e{bottom:810.180000px;}
.y197{bottom:810.990000px;}
.y8{bottom:815.846400px;}
.y1c9{bottom:817.560000px;}
.y31{bottom:819.990000px;}
.y46{bottom:828.180000px;}
.ye8{bottom:828.990000px;}
.y8c{bottom:835.470000px;}
.y1a6{bottom:837.090000px;}
.y77{bottom:837.360000px;}
.y1c8{bottom:838.260000px;}
.yb9{bottom:843.390000px;}
.y62{bottom:846.360000px;}
.y16d{bottom:849.150000px;}
.y12a{bottom:852.390000px;}
.y1a5{bottom:857.790000px;}
.y30{bottom:861.390000px;}
.y7{bottom:869.490000px;}
.y56{bottom:870.390000px;}
.y1d{bottom:878.760000px;}
.y45{bottom:884.610000px;}
.y8b{bottom:885.960000px;}
.y6{bottom:888.563250px;}
.y1a4{bottom:888.930000px;}
.y1c7{bottom:890.190000px;}
.yb8{bottom:893.790000px;}
.y61{bottom:896.580000px;}
.y43{bottom:902.790000px;}
.y88{bottom:906.300000px;}
.y8a{bottom:907.020000px;}
.y1a3{bottom:909.630000px;}
.y16c{bottom:911.700000px;}
.y2f{bottom:911.790000px;}
.y76{bottom:920.160000px;}
.y5{bottom:921.240000px;}
.y1c6{bottom:921.330000px;}
.y89{bottom:928.170000px;}
.y1c{bottom:928.980000px;}
.y148{bottom:929.160000px;}
.y4{bottom:940.410000px;}
.y1a2{bottom:940.860000px;}
.y42{bottom:944.190000px;}
.y1c5{bottom:952.560000px;}
.y2e{bottom:953.190000px;}
.y75{bottom:961.560000px;}
.y147{bottom:970.560000px;}
.y87{bottom:977.130000px;}
.y1c4{bottom:983.790000px;}
.y9d{bottom:985.590000px;}
.y1b{bottom:994.590000px;}
.y74{bottom:1011.780000px;}
.y146{bottom:1011.960000px;}
.y3{bottom:1012.131000px;}
.y1c3{bottom:1014.930000px;}
.y9c{bottom:1026.990000px;}
.y86{bottom:1027.530000px;}
.y1c2{bottom:1035.630000px;}
.y1a{bottom:1035.990000px;}
.y83{bottom:1047.960000px;}
.y85{bottom:1048.680000px;}
.y145{bottom:1053.360000px;}
.y1c1{bottom:1066.860000px;}
.y73{bottom:1068.390000px;}
.y84{bottom:1069.740000px;}
.y2{bottom:1074.150000px;}
.y19{bottom:1077.390000px;}
.y1c0{bottom:1087.560000px;}
.y144{bottom:1103.490000px;}
.yd8{bottom:1118.520000px;}
.y18{bottom:1118.700000px;}
.h1d{height:27.210938px;}
.h19{height:29.250000px;}
.h20{height:34.470000px;}
.h18{height:35.332031px;}
.he{height:36.318164px;}
.h5{height:38.158594px;}
.h16{height:38.250000px;}
.h1a{height:39.183750px;}
.h14{height:40.070215px;}
.h21{height:40.716035px;}
.h1b{height:42.418652px;}
.h1c{height:42.449062px;}
.h13{height:42.480000px;}
.hc{height:50.800781px;}
.hd{height:51.152344px;}
.h17{height:52.998047px;}
.h23{height:54.421875px;}
.h6{height:59.004492px;}
.h7{height:59.018892px;}
.h22{height:59.031492px;}
.hb{height:60.589687px;}
.h25{height:65.157514px;}
.h4{height:65.158594px;}
.h24{height:70.662982px;}
.h2{height:70.664062px;}
.h8{height:72.562500px;}
.h9{height:75.093750px;}
.ha{height:80.111602px;}
.h10{height:95.158687px;}
.hf{height:97.372882px;}
.h3{height:108.843750px;}
.h11{height:129.727687px;}
.h12{height:131.892008px;}
.h15{height:132.229687px;}
.h1e{height:892.980000px;}
.h1f{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:57.420000px;}
.wc{width:58.140000px;}
.w11{width:60.390000px;}
.wd{width:60.480000px;}
.w16{width:61.648500px;}
.w1a{width:61.650000px;}
.w17{width:61.920000px;}
.w9{width:64.888500px;}
.w7{width:64.980000px;}
.w6{width:64.981500px;}
.w13{width:66.150000px;}
.we{width:66.600000px;}
.w8{width:72.450000px;}
.w4{width:76.950000px;}
.w19{width:81.000000px;}
.w1b{width:81.088500px;}
.w18{width:81.090000px;}
.w10{width:87.750000px;}
.w14{width:87.838500px;}
.w12{width:87.840000px;}
.wf{width:87.931500px;}
.w15{width:107.641500px;}
.w2{width:173.880000px;}
.w3{width:696.420000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.wa{width:1262.880000px;}
.wb{width:1263.000000px;}
.x0{left:0.000000px;}
.x23{left:8.100000px;}
.x7d{left:9.270000px;}
.x2d{left:11.070000px;}
.x32{left:13.590000px;}
.x36{left:17.370000px;}
.x2f{left:19.620000px;}
.x34{left:20.880000px;}
.x3a{left:23.400000px;}
.x3f{left:24.660000px;}
.x2c{left:25.920000px;}
.x53{left:27.630000px;}
.x8c{left:29.430000px;}
.x82{left:30.690000px;}
.x1d{left:34.110000px;}
.x31{left:37.800000px;}
.x33{left:40.230000px;}
.x3c{left:41.580000px;}
.x5f{left:42.840000px;}
.x35{left:44.010000px;}
.x4f{left:45.990000px;}
.x41{left:47.790000px;}
.x51{left:49.860000px;}
.x55{left:60.210000px;}
.x84{left:66.510000px;}
.x58{left:73.980000px;}
.x22{left:98.280000px;}
.x5{left:106.650000px;}
.x17{left:111.683790px;}
.x4{left:114.120000px;}
.x21{left:118.972440px;}
.x20{left:122.760000px;}
.x4b{left:126.720000px;}
.x78{left:129.870000px;}
.xa{left:133.200000px;}
.x79{left:139.230000px;}
.x2{left:146.070000px;}
.x24{left:148.950000px;}
.x9d{left:152.730000px;}
.x7a{left:154.620000px;}
.x7{left:160.740000px;}
.x18{left:173.697570px;}
.x2e{left:175.230000px;}
.x4d{left:177.660000px;}
.x3{left:186.921000px;}
.xe{left:205.200000px;}
.x11{left:206.460000px;}
.x30{left:208.260000px;}
.xc{left:210.060000px;}
.xd{left:211.500000px;}
.x10{left:212.670000px;}
.x13{left:213.840000px;}
.x14{left:215.460000px;}
.x27{left:226.080000px;}
.x7b{left:227.160000px;}
.xf{left:232.740000px;}
.x12{left:234.000000px;}
.x15{left:236.790000px;}
.x4e{left:238.140000px;}
.x16{left:248.760000px;}
.x7c{left:256.050000px;}
.x29{left:266.670000px;}
.x25{left:269.640000px;}
.x37{left:270.990000px;}
.x50{left:279.900000px;}
.x7e{left:288.810000px;}
.x19{left:295.560810px;}
.x26{left:303.120000px;}
.x52{left:304.740000px;}
.x2b{left:308.790000px;}
.x7f{left:315.360000px;}
.x38{left:318.060000px;}
.x80{left:328.230000px;}
.x8{left:329.411970px;}
.x56{left:337.860000px;}
.x28{left:343.800000px;}
.x81{left:350.730000px;}
.x39{left:355.050000px;}
.x1a{left:356.492430px;}
.x54{left:360.180000px;}
.x57{left:370.620000px;}
.x2a{left:385.830000px;}
.x3b{left:391.860000px;}
.x3d{left:393.390000px;}
.x83{left:409.140000px;}
.x1c{left:412.020000px;}
.x3e{left:420.030000px;}
.x59{left:425.700000px;}
.x6{left:429.395580px;}
.x85{left:431.820000px;}
.x1b{left:441.090000px;}
.x9{left:446.490000px;}
.x1e{left:454.680000px;}
.x40{left:458.100000px;}
.x42{left:462.150000px;}
.x86{left:468.810000px;}
.x5a{left:480.420000px;}
.x87{left:490.230000px;}
.x5b{left:508.680000px;}
.x43{left:512.910000px;}
.x5c{left:519.120000px;}
.x5d{left:540.810000px;}
.x44{left:549.900000px;}
.x88{left:552.150000px;}
.x5e{left:566.640000px;}
.x89{left:574.470000px;}
.x60{left:579.510000px;}
.x45{left:586.710000px;}
.x46{left:588.240000px;}
.x61{left:601.200000px;}
.x8a{left:613.800000px;}
.x47{left:614.880000px;}
.x63{left:634.320000px;}
.x8b{left:636.120000px;}
.x48{left:649.170000px;}
.x49{left:653.220000px;}
.x62{left:656.640000px;}
.x64{left:667.080000px;}
.x8d{left:675.540000px;}
.x1f{left:677.786040px;}
.x65{left:689.040000px;}
.x8e{left:694.530000px;}
.x4a{left:700.200000px;}
.x8f{left:717.210000px;}
.x67{left:722.160000px;}
.x66{left:741.960000px;}
.xb{left:744.570000px;}
.x68{left:754.920000px;}
.x90{left:775.620000px;}
.x69{left:776.880000px;}
.x9e{left:783.630000px;}
.x1{left:786.600000px;}
.x91{left:798.300000px;}
.x6a{left:808.020000px;}
.x6b{left:818.460000px;}
.x92{left:827.190000px;}
.x93{left:837.630000px;}
.x6c{left:843.030000px;}
.x94{left:859.950000px;}
.x6d{left:871.740000px;}
.x6e{left:884.610000px;}
.x95{left:886.410000px;}
.x96{left:899.280000px;}
.x6f{left:909.180000px;}
.x97{left:921.600000px;}
.x71{left:942.300000px;}
.x98{left:961.020000px;}
.x70{left:964.620000px;}
.x72{left:975.060000px;}
.x99{left:980.010000px;}
.x73{left:997.020000px;}
.x9a{left:1002.690000px;}
.x75{left:1030.140000px;}
.x9b{left:1039.680000px;}
.x74{left:1049.940000px;}
.x9c{left:1061.100000px;}
.x76{left:1062.900000px;}
.x77{left:1099.890000px;}
.x4c{left:1135.350000px;}
@media print{
.v9{vertical-align:-37.440000pt;}
.v8{vertical-align:-29.440000pt;}
.v2{vertical-align:-24.000000pt;}
.v5{vertical-align:-13.120000pt;}
.v3{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.va{vertical-align:8.000000pt;}
.v1{vertical-align:24.000000pt;}
.v4{vertical-align:29.440000pt;}
.vb{vertical-align:30.728000pt;}
.ve{vertical-align:32.002560pt;}
.v7{vertical-align:44.783360pt;}
.vc{vertical-align:61.456000pt;}
.vd{vertical-align:63.379840pt;}
.ls6f{letter-spacing:-0.961920pt;}
.ls93{letter-spacing:-0.587840pt;}
.ls17{letter-spacing:-0.512000pt;}
.ls91{letter-spacing:-0.449280pt;}
.ls9a{letter-spacing:-0.448000pt;}
.ls57{letter-spacing:-0.427520pt;}
.lscf{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.374080pt;}
.ls4b{letter-spacing:-0.340480pt;}
.lscb{letter-spacing:-0.320640pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls4a{letter-spacing:-0.297920pt;}
.ls71{letter-spacing:-0.288000pt;}
.lsca{letter-spacing:-0.267200pt;}
.ls2c{letter-spacing:-0.256000pt;}
.ls70{letter-spacing:-0.213760pt;}
.ls16{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.160320pt;}
.ls52{letter-spacing:-0.136320pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.106880pt;}
.ls3f{letter-spacing:-0.085120pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls11{letter-spacing:-0.053440pt;}
.lse{letter-spacing:0.000000pt;}
.ls7a{letter-spacing:0.008320pt;}
.ls95{letter-spacing:0.011520pt;}
.ls83{letter-spacing:0.012480pt;}
.ls0{letter-spacing:0.015360pt;}
.ls61{letter-spacing:0.017280pt;}
.ls84{letter-spacing:0.023680pt;}
.lsc7{letter-spacing:0.034560pt;}
.ls55{letter-spacing:0.053440pt;}
.ls7{letter-spacing:0.064000pt;}
.ls2f{letter-spacing:0.070400pt;}
.lsa1{letter-spacing:0.080000pt;}
.ls92{letter-spacing:0.092480pt;}
.ls1{letter-spacing:0.106880pt;}
.ls56{letter-spacing:0.112224pt;}
.lsc1{letter-spacing:0.123200pt;}
.lsc4{letter-spacing:0.123840pt;}
.lsa0{letter-spacing:0.124480pt;}
.ls4{letter-spacing:0.128000pt;}
.lsd3{letter-spacing:0.134400pt;}
.ls1c{letter-spacing:0.140800pt;}
.ls6e{letter-spacing:0.144000pt;}
.ls90{letter-spacing:0.149760pt;}
.ls5{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.160320pt;}
.lsb3{letter-spacing:0.170240pt;}
.ls5c{letter-spacing:0.176352pt;}
.ls2d{letter-spacing:0.192000pt;}
.ls44{letter-spacing:0.255360pt;}
.lsd7{letter-spacing:0.256000pt;}
.ls4c{letter-spacing:0.297920pt;}
.lsb1{letter-spacing:0.299264pt;}
.ls2{letter-spacing:0.320000pt;}
.ls9d{letter-spacing:0.374080pt;}
.ls74{letter-spacing:0.448000pt;}
.ls36{letter-spacing:0.480000pt;}
.ls50{letter-spacing:0.640000pt;}
.ls9f{letter-spacing:0.694720pt;}
.ls9e{letter-spacing:0.758848pt;}
.ls26{letter-spacing:0.960000pt;}
.lsb4{letter-spacing:1.015360pt;}
.ls42{letter-spacing:1.024000pt;}
.ls98{letter-spacing:1.200000pt;}
.ls27{letter-spacing:1.280000pt;}
.ls97{letter-spacing:1.286400pt;}
.ls7d{letter-spacing:1.336000pt;}
.ls4f{letter-spacing:1.408000pt;}
.ls23{letter-spacing:1.600000pt;}
.lscc{letter-spacing:1.612800pt;}
.ls72{letter-spacing:1.920000pt;}
.ls35{letter-spacing:2.240000pt;}
.ls53{letter-spacing:2.297920pt;}
.ls54{letter-spacing:2.351360pt;}
.ls46{letter-spacing:2.560000pt;}
.ls82{letter-spacing:2.618560pt;}
.ls43{letter-spacing:2.624000pt;}
.ls6{letter-spacing:2.880000pt;}
.ls8{letter-spacing:3.200000pt;}
.ls40{letter-spacing:3.520000pt;}
.ls77{letter-spacing:3.760000pt;}
.ls78{letter-spacing:3.840000pt;}
.lsc{letter-spacing:4.160000pt;}
.lsd{letter-spacing:4.172800pt;}
.ls3b{letter-spacing:4.480000pt;}
.ls75{letter-spacing:4.542400pt;}
.ls33{letter-spacing:4.800000pt;}
.lsb0{letter-spacing:4.863040pt;}
.ls7b{letter-spacing:5.120000pt;}
.ls5a{letter-spacing:5.126400pt;}
.lsd2{letter-spacing:5.183680pt;}
.ls39{letter-spacing:5.440000pt;}
.ls1d{letter-spacing:5.446400pt;}
.lsb{letter-spacing:5.760000pt;}
.ls30{letter-spacing:6.080000pt;}
.ls22{letter-spacing:6.400000pt;}
.ls34{letter-spacing:6.720000pt;}
.ls32{letter-spacing:7.040000pt;}
.ls59{letter-spacing:7.360000pt;}
.lsb5{letter-spacing:7.428160pt;}
.ls4d{letter-spacing:7.680000pt;}
.ls96{letter-spacing:7.748800pt;}
.ls58{letter-spacing:8.000000pt;}
.ls37{letter-spacing:8.320000pt;}
.ls7f{letter-spacing:8.640000pt;}
.ls5b{letter-spacing:8.710720pt;}
.ls7e{letter-spacing:8.960000pt;}
.ls1f{letter-spacing:9.280000pt;}
.lsb2{letter-spacing:9.520000pt;}
.ls79{letter-spacing:9.600000pt;}
.ls29{letter-spacing:9.920000pt;}
.lsc9{letter-spacing:9.993280pt;}
.lsd0{letter-spacing:10.116192pt;}
.ls18{letter-spacing:10.240000pt;}
.ls3c{letter-spacing:10.313920pt;}
.ls49{letter-spacing:10.560000pt;}
.ls7c{letter-spacing:10.634560pt;}
.lsda{letter-spacing:11.200000pt;}
.ls31{letter-spacing:11.520000pt;}
.ls99{letter-spacing:11.840000pt;}
.lsd6{letter-spacing:11.852800pt;}
.ls76{letter-spacing:12.080000pt;}
.ls1e{letter-spacing:12.160000pt;}
.lsd5{letter-spacing:12.480000pt;}
.ls9{letter-spacing:13.120000pt;}
.ls94{letter-spacing:13.199680pt;}
.ls20{letter-spacing:13.760000pt;}
.ls45{letter-spacing:13.952000pt;}
.ls2a{letter-spacing:14.080000pt;}
.ls41{letter-spacing:14.272000pt;}
.lscd{letter-spacing:15.040000pt;}
.ls3a{letter-spacing:15.360000pt;}
.ls48{letter-spacing:16.000000pt;}
.ls51{letter-spacing:16.640000pt;}
.ls21{letter-spacing:16.960000pt;}
.ls25{letter-spacing:17.280000pt;}
.ls9b{letter-spacing:17.600000pt;}
.lsd1{letter-spacing:18.240000pt;}
.ls80{letter-spacing:18.880000pt;}
.lsce{letter-spacing:19.840000pt;}
.ls73{letter-spacing:20.160000pt;}
.lsa{letter-spacing:20.480000pt;}
.ls9c{letter-spacing:21.120000pt;}
.lsc8{letter-spacing:22.080000pt;}
.ls1a{letter-spacing:23.040000pt;}
.ls2b{letter-spacing:23.360000pt;}
.ls24{letter-spacing:23.600000pt;}
.ls3d{letter-spacing:23.680000pt;}
.ls38{letter-spacing:24.000000pt;}
.lsaf{letter-spacing:25.840000pt;}
.ls19{letter-spacing:26.560000pt;}
.ls81{letter-spacing:26.880000pt;}
.ls2e{letter-spacing:28.480000pt;}
.ls1b{letter-spacing:29.248000pt;}
.lsd4{letter-spacing:30.208000pt;}
.lsd8{letter-spacing:30.400000pt;}
.ls28{letter-spacing:40.000000pt;}
.ls47{letter-spacing:41.280000pt;}
.ls8f{letter-spacing:43.895616pt;}
.ls8d{letter-spacing:44.216256pt;}
.ls8c{letter-spacing:44.221600pt;}
.ls8a{letter-spacing:44.542240pt;}
.lsa5{letter-spacing:54.802720pt;}
.lsa2{letter-spacing:57.341120pt;}
.ls89{letter-spacing:57.367840pt;}
.ls8e{letter-spacing:57.683136pt;}
.ls86{letter-spacing:57.688480pt;}
.lsb6{letter-spacing:65.383840pt;}
.lsa3{letter-spacing:66.025120pt;}
.ls88{letter-spacing:71.101920pt;}
.ls4e{letter-spacing:74.048000pt;}
.lsa7{letter-spacing:75.270240pt;}
.lsa8{letter-spacing:77.835360pt;}
.lsa6{letter-spacing:78.156000pt;}
.lsd9{letter-spacing:80.000000pt;}
.lsa4{letter-spacing:81.362400pt;}
.ls87{letter-spacing:84.248160pt;}
.ls8b{letter-spacing:103.459840pt;}
.lsb7{letter-spacing:112.704960pt;}
.ls85{letter-spacing:116.873280pt;}
.lsbd{letter-spacing:125.851200pt;}
.ls60{letter-spacing:126.171840pt;}
.lsbb{letter-spacing:127.133760pt;}
.ls69{letter-spacing:130.634080pt;}
.ls63{letter-spacing:137.046880pt;}
.lsba{letter-spacing:139.905920pt;}
.lsbc{letter-spacing:140.226560pt;}
.lsbe{letter-spacing:140.547200pt;}
.lsb8{letter-spacing:154.334720pt;}
.lsb9{letter-spacing:154.976000pt;}
.lsa9{letter-spacing:156.579200pt;}
.ls5e{letter-spacing:162.297280pt;}
.lsc6{letter-spacing:166.150304pt;}
.ls3e{letter-spacing:172.800000pt;}
.ls5f{letter-spacing:183.780160pt;}
.lsae{letter-spacing:184.394720pt;}
.lsbf{letter-spacing:191.769440pt;}
.ls5d{letter-spacing:196.552320pt;}
.ls66{letter-spacing:198.796800pt;}
.ls62{letter-spacing:212.263680pt;}
.lsc2{letter-spacing:219.590304pt;}
.lsc5{letter-spacing:219.910944pt;}
.lsc3{letter-spacing:220.231584pt;}
.lsc0{letter-spacing:220.552224pt;}
.ls6d{letter-spacing:232.731200pt;}
.lsab{letter-spacing:242.644320pt;}
.lsac{letter-spacing:242.964960pt;}
.lsad{letter-spacing:250.019040pt;}
.lsaa{letter-spacing:254.165984pt;}
.ls67{letter-spacing:299.264000pt;}
.ls6a{letter-spacing:319.143680pt;}
.ls64{letter-spacing:325.823680pt;}
.ls6c{letter-spacing:464.393600pt;}
.ls6b{letter-spacing:490.953280pt;}
.ls68{letter-spacing:504.420160pt;}
.ls65{letter-spacing:530.979840pt;}
.ws12f{word-spacing:-53.226240pt;}
.wsa4{word-spacing:-45.440000pt;}
.wsba{word-spacing:-45.303680pt;}
.wsb9{word-spacing:-28.471872pt;}
.wsb0{word-spacing:-16.320000pt;}
.ws15c{word-spacing:-16.256000pt;}
.ws4c{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws6d{word-spacing:-15.808000pt;}
.wsee{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.680000pt;}
.ws150{word-spacing:-15.616000pt;}
.ws127{word-spacing:-15.552000pt;}
.ws4b{word-spacing:-15.488000pt;}
.wsa3{word-spacing:-14.208000pt;}
.wsb7{word-spacing:-14.080000pt;}
.wsa5{word-spacing:-13.952000pt;}
.wsd6{word-spacing:-13.520320pt;}
.wsd0{word-spacing:-13.466880pt;}
.wsd1{word-spacing:-13.413440pt;}
.wscf{word-spacing:-13.360000pt;}
.ws2{word-spacing:-13.306560pt;}
.ws0{word-spacing:-13.253120pt;}
.wsd5{word-spacing:-13.199680pt;}
.wsd7{word-spacing:-13.146240pt;}
.ws147{word-spacing:-13.092800pt;}
.ws148{word-spacing:-13.039360pt;}
.wsd3{word-spacing:-12.985920pt;}
.wsc7{word-spacing:-12.932480pt;}
.ws115{word-spacing:-12.772160pt;}
.wsd4{word-spacing:-12.398080pt;}
.wsd9{word-spacing:-12.000000pt;}
.wsb1{word-spacing:-10.937920pt;}
.wsa2{word-spacing:-10.895360pt;}
.ws6e{word-spacing:-10.640000pt;}
.ws98{word-spacing:-10.554880pt;}
.wsae{word-spacing:-10.342080pt;}
.wsaf{word-spacing:-10.299520pt;}
.wsb8{word-spacing:-9.996800pt;}
.ws108{word-spacing:-9.509760pt;}
.ws109{word-spacing:-8.910720pt;}
.ws142{word-spacing:-8.674560pt;}
.wsd2{word-spacing:-8.657280pt;}
.ws1{word-spacing:-8.640000pt;}
.wsda{word-spacing:-7.936000pt;}
.wsd8{word-spacing:-7.808000pt;}
.wsdb{word-spacing:-7.712000pt;}
.ws8c{word-spacing:-0.448000pt;}
.ws92{word-spacing:-0.384000pt;}
.ws10{word-spacing:-0.374080pt;}
.ws87{word-spacing:-0.320000pt;}
.ws141{word-spacing:-0.192000pt;}
.wse{word-spacing:-0.160320pt;}
.ws12{word-spacing:-0.128000pt;}
.wsd{word-spacing:-0.106880pt;}
.wsc1{word-spacing:-0.085120pt;}
.ws16{word-spacing:-0.064000pt;}
.wsf{word-spacing:-0.053440pt;}
.ws9{word-spacing:0.000000pt;}
.ws132{word-spacing:0.053440pt;}
.ws6f{word-spacing:0.064000pt;}
.ws15e{word-spacing:0.085120pt;}
.wsdd{word-spacing:0.106880pt;}
.ws48{word-spacing:0.128000pt;}
.wse2{word-spacing:0.144000pt;}
.wsc{word-spacing:0.160320pt;}
.ws17{word-spacing:0.192000pt;}
.ws97{word-spacing:0.213760pt;}
.ws3e{word-spacing:0.256000pt;}
.wsa{word-spacing:0.267200pt;}
.ws14{word-spacing:0.320000pt;}
.wse1{word-spacing:0.320640pt;}
.wse3{word-spacing:0.336000pt;}
.ws165{word-spacing:0.384000pt;}
.ws169{word-spacing:0.448000pt;}
.wsb{word-spacing:0.480960pt;}
.ws1c{word-spacing:0.512000pt;}
.ws78{word-spacing:0.576000pt;}
.ws130{word-spacing:0.587840pt;}
.wsa0{word-spacing:0.640000pt;}
.ws143{word-spacing:0.641280pt;}
.ws77{word-spacing:0.832000pt;}
.ws57{word-spacing:0.896000pt;}
.ws131{word-spacing:0.908480pt;}
.ws56{word-spacing:0.960000pt;}
.ws104{word-spacing:0.961920pt;}
.wsb4{word-spacing:1.088000pt;}
.ws144{word-spacing:1.122240pt;}
.ws62{word-spacing:1.152000pt;}
.ws102{word-spacing:1.175680pt;}
.ws60{word-spacing:1.216000pt;}
.ws61{word-spacing:1.280000pt;}
.ws103{word-spacing:1.389440pt;}
.ws121{word-spacing:1.442880pt;}
.wsec{word-spacing:1.472000pt;}
.ws120{word-spacing:1.496320pt;}
.ws50{word-spacing:1.536000pt;}
.ws4f{word-spacing:1.600000pt;}
.wsa6{word-spacing:1.728000pt;}
.ws161{word-spacing:1.792000pt;}
.wsb2{word-spacing:1.856000pt;}
.ws86{word-spacing:1.920000pt;}
.wsc9{word-spacing:2.030720pt;}
.ws8f{word-spacing:2.112000pt;}
.wsca{word-spacing:2.137600pt;}
.ws73{word-spacing:2.176000pt;}
.ws4d{word-spacing:2.240000pt;}
.ws88{word-spacing:2.432000pt;}
.wsb3{word-spacing:2.496000pt;}
.ws4e{word-spacing:2.560000pt;}
.ws113{word-spacing:2.672000pt;}
.ws112{word-spacing:2.725440pt;}
.ws15{word-spacing:2.752000pt;}
.ws111{word-spacing:2.778880pt;}
.ws8b{word-spacing:2.816000pt;}
.wsef{word-spacing:2.880000pt;}
.ws117{word-spacing:3.072000pt;}
.ws13{word-spacing:3.136000pt;}
.ws11{word-spacing:3.200000pt;}
.ws114{word-spacing:3.392000pt;}
.ws6c{word-spacing:3.456000pt;}
.wsea{word-spacing:3.520000pt;}
.wsfe{word-spacing:3.712000pt;}
.ws10f{word-spacing:3.740800pt;}
.wsfd{word-spacing:3.776000pt;}
.ws2a{word-spacing:3.840000pt;}
.ws110{word-spacing:4.008000pt;}
.ws41{word-spacing:4.032000pt;}
.ws11e{word-spacing:4.061440pt;}
.ws29{word-spacing:4.096000pt;}
.ws13c{word-spacing:4.114880pt;}
.ws2c{word-spacing:4.160000pt;}
.ws11d{word-spacing:4.275200pt;}
.ws11f{word-spacing:4.328640pt;}
.ws80{word-spacing:4.352000pt;}
.ws13b{word-spacing:4.382080pt;}
.ws2b{word-spacing:4.416000pt;}
.ws90{word-spacing:4.480000pt;}
.ws14c{word-spacing:4.595840pt;}
.ws9f{word-spacing:4.672000pt;}
.wsf4{word-spacing:4.702720pt;}
.ws83{word-spacing:4.736000pt;}
.ws81{word-spacing:4.800000pt;}
.wsf2{word-spacing:4.916480pt;}
.ws13a{word-spacing:4.969920pt;}
.ws82{word-spacing:4.992000pt;}
.wsf3{word-spacing:5.023360pt;}
.wsdc{word-spacing:5.056000pt;}
.wsf5{word-spacing:5.076800pt;}
.ws9c{word-spacing:5.120000pt;}
.ws159{word-spacing:5.237120pt;}
.ws3f{word-spacing:5.376000pt;}
.ws15a{word-spacing:5.397440pt;}
.ws40{word-spacing:5.440000pt;}
.ws126{word-spacing:5.632000pt;}
.wse7{word-spacing:5.696000pt;}
.ws20{word-spacing:5.760000pt;}
.wsed{word-spacing:5.952000pt;}
.ws7d{word-spacing:6.016000pt;}
.ws76{word-spacing:6.080000pt;}
.ws93{word-spacing:6.199040pt;}
.ws95{word-spacing:6.252480pt;}
.ws54{word-spacing:6.272000pt;}
.ws94{word-spacing:6.305920pt;}
.ws74{word-spacing:6.336000pt;}
.ws55{word-spacing:6.400000pt;}
.ws75{word-spacing:6.464000pt;}
.wsa1{word-spacing:6.528000pt;}
.wse0{word-spacing:6.573120pt;}
.ws129{word-spacing:6.592000pt;}
.wscc{word-spacing:6.626560pt;}
.ws85{word-spacing:6.656000pt;}
.ws84{word-spacing:6.720000pt;}
.ws138{word-spacing:6.784000pt;}
.wscd{word-spacing:6.893760pt;}
.wscb{word-spacing:6.947200pt;}
.wsbd{word-spacing:6.976000pt;}
.ws68{word-spacing:7.040000pt;}
.ws67{word-spacing:7.232000pt;}
.ws145{word-spacing:7.267840pt;}
.ws8a{word-spacing:7.296000pt;}
.ws158{word-spacing:7.321280pt;}
.ws89{word-spacing:7.360000pt;}
.ws157{word-spacing:7.374720pt;}
.ws146{word-spacing:7.535040pt;}
.ws123{word-spacing:7.552000pt;}
.ws11c{word-spacing:7.588480pt;}
.ws99{word-spacing:7.616000pt;}
.ws107{word-spacing:7.641920pt;}
.wsbe{word-spacing:7.680000pt;}
.wsfa{word-spacing:7.744000pt;}
.ws156{word-spacing:7.855680pt;}
.wse6{word-spacing:7.872000pt;}
.ws106{word-spacing:7.909120pt;}
.wsa7{word-spacing:7.936000pt;}
.ws1a{word-spacing:8.000000pt;}
.ws105{word-spacing:8.122880pt;}
.ws18{word-spacing:8.192000pt;}
.ws8d{word-spacing:8.256000pt;}
.ws19{word-spacing:8.320000pt;}
.ws5b{word-spacing:8.512000pt;}
.ws5a{word-spacing:8.576000pt;}
.wsdf{word-spacing:8.603840pt;}
.ws5c{word-spacing:8.640000pt;}
.wsde{word-spacing:8.817600pt;}
.ws42{word-spacing:8.896000pt;}
.wsf0{word-spacing:8.960000pt;}
.ws151{word-spacing:9.088000pt;}
.ws45{word-spacing:9.152000pt;}
.ws12c{word-spacing:9.216000pt;}
.ws3b{word-spacing:9.280000pt;}
.ws44{word-spacing:9.408000pt;}
.wsff{word-spacing:9.472000pt;}
.ws122{word-spacing:9.536000pt;}
.ws43{word-spacing:9.600000pt;}
.ws14e{word-spacing:9.779520pt;}
.ws2d{word-spacing:9.792000pt;}
.ws14d{word-spacing:9.832960pt;}
.ws2f{word-spacing:9.856000pt;}
.ws155{word-spacing:9.886400pt;}
.ws30{word-spacing:9.920000pt;}
.wsf1{word-spacing:10.046720pt;}
.wsb6{word-spacing:10.112000pt;}
.ws14f{word-spacing:10.153600pt;}
.ws46{word-spacing:10.176000pt;}
.ws2e{word-spacing:10.240000pt;}
.ws100{word-spacing:10.367360pt;}
.ws96{word-spacing:10.420800pt;}
.ws140{word-spacing:10.432000pt;}
.wsac{word-spacing:10.496000pt;}
.ws65{word-spacing:10.560000pt;}
.ws101{word-spacing:10.741440pt;}
.ws66{word-spacing:10.816000pt;}
.ws3d{word-spacing:10.880000pt;}
.ws7e{word-spacing:11.136000pt;}
.ws9d{word-spacing:11.200000pt;}
.ws7f{word-spacing:11.520000pt;}
.ws128{word-spacing:11.712000pt;}
.ws162{word-spacing:11.776000pt;}
.ws163{word-spacing:11.840000pt;}
.ws5f{word-spacing:12.032000pt;}
.ws6b{word-spacing:12.096000pt;}
.ws21{word-spacing:12.160000pt;}
.wsa9{word-spacing:12.352000pt;}
.ws160{word-spacing:12.416000pt;}
.wsa8{word-spacing:12.480000pt;}
.ws152{word-spacing:12.672000pt;}
.ws22{word-spacing:12.736000pt;}
.ws39{word-spacing:12.800000pt;}
.ws3a{word-spacing:12.928000pt;}
.ws11a{word-spacing:12.985920pt;}
.ws119{word-spacing:13.039360pt;}
.wsc2{word-spacing:13.056000pt;}
.ws134{word-spacing:13.120000pt;}
.ws118{word-spacing:13.253120pt;}
.ws11b{word-spacing:13.306560pt;}
.wsf9{word-spacing:13.312000pt;}
.ws15d{word-spacing:13.376000pt;}
.ws1b{word-spacing:13.440000pt;}
.ws47{word-spacing:13.696000pt;}
.wsc8{word-spacing:13.760000pt;}
.ws69{word-spacing:14.016000pt;}
.ws10b{word-spacing:14.054720pt;}
.ws6a{word-spacing:14.080000pt;}
.ws10d{word-spacing:14.268480pt;}
.ws12a{word-spacing:14.272000pt;}
.ws10e{word-spacing:14.321920pt;}
.ws12b{word-spacing:14.400000pt;}
.ws10c{word-spacing:14.535680pt;}
.ws133{word-spacing:14.592000pt;}
.wsaa{word-spacing:14.656000pt;}
.wsab{word-spacing:14.720000pt;}
.ws167{word-spacing:14.848000pt;}
.ws52{word-spacing:14.912000pt;}
.ws9b{word-spacing:14.976000pt;}
.ws139{word-spacing:15.040000pt;}
.ws166{word-spacing:15.168000pt;}
.ws51{word-spacing:15.232000pt;}
.ws53{word-spacing:15.296000pt;}
.ws9a{word-spacing:15.360000pt;}
.wsb5{word-spacing:15.552000pt;}
.ws124{word-spacing:15.616000pt;}
.ws125{word-spacing:15.680000pt;}
.ws27{word-spacing:15.872000pt;}
.ws7c{word-spacing:15.936000pt;}
.ws28{word-spacing:16.000000pt;}
.wsf7{word-spacing:16.192320pt;}
.wsc4{word-spacing:16.256000pt;}
.ws13d{word-spacing:16.320000pt;}
.wsf6{word-spacing:16.459520pt;}
.wsc3{word-spacing:16.512000pt;}
.ws12d{word-spacing:16.576000pt;}
.wsc5{word-spacing:16.640000pt;}
.ws116{word-spacing:16.832000pt;}
.ws4a{word-spacing:16.896000pt;}
.ws49{word-spacing:16.960000pt;}
.ws13f{word-spacing:17.152000pt;}
.ws5e{word-spacing:17.216000pt;}
.ws5d{word-spacing:17.280000pt;}
.wsc6{word-spacing:17.536000pt;}
.ws91{word-spacing:17.600000pt;}
.wsc0{word-spacing:17.920000pt;}
.wsbf{word-spacing:18.112000pt;}
.ws25{word-spacing:18.176000pt;}
.ws24{word-spacing:18.240000pt;}
.ws26{word-spacing:18.560000pt;}
.ws10a{word-spacing:18.752000pt;}
.ws168{word-spacing:18.880000pt;}
.wse9{word-spacing:19.136000pt;}
.wse8{word-spacing:19.200000pt;}
.ws154{word-spacing:19.776000pt;}
.ws153{word-spacing:19.840000pt;}
.wse5{word-spacing:20.096000pt;}
.wse4{word-spacing:20.160000pt;}
.ws1f{word-spacing:20.352000pt;}
.ws1e{word-spacing:20.416000pt;}
.ws1d{word-spacing:20.480000pt;}
.ws13e{word-spacing:20.800000pt;}
.wsbc{word-spacing:21.056000pt;}
.ws16a{word-spacing:21.120000pt;}
.ws15f{word-spacing:21.376000pt;}
.ws15b{word-spacing:21.440000pt;}
.ws14a{word-spacing:22.016000pt;}
.ws149{word-spacing:22.080000pt;}
.ws14b{word-spacing:22.144000pt;}
.ws38{word-spacing:22.592000pt;}
.ws12e{word-spacing:22.720000pt;}
.wsf8{word-spacing:22.912000pt;}
.ws35{word-spacing:22.976000pt;}
.ws36{word-spacing:23.040000pt;}
.ws37{word-spacing:23.232000pt;}
.ws59{word-spacing:23.296000pt;}
.ws58{word-spacing:23.360000pt;}
.ws9e{word-spacing:23.616000pt;}
.ws23{word-spacing:23.680000pt;}
.ws8e{word-spacing:24.000000pt;}
.wsfc{word-spacing:24.192000pt;}
.wsfb{word-spacing:24.320000pt;}
.ws136{word-spacing:25.472000pt;}
.ws135{word-spacing:25.536000pt;}
.ws137{word-spacing:25.600000pt;}
.wsce{word-spacing:25.920000pt;}
.ws31{word-spacing:26.176000pt;}
.ws3c{word-spacing:26.240000pt;}
.ws34{word-spacing:26.432000pt;}
.ws33{word-spacing:26.496000pt;}
.ws32{word-spacing:26.560000pt;}
.wseb{word-spacing:26.880000pt;}
.ws72{word-spacing:28.096000pt;}
.ws70{word-spacing:28.352000pt;}
.ws71{word-spacing:28.480000pt;}
.ws164{word-spacing:30.400000pt;}
.ws7a{word-spacing:31.232000pt;}
.ws7b{word-spacing:31.296000pt;}
.ws79{word-spacing:31.360000pt;}
.wsad{word-spacing:36.800000pt;}
.ws64{word-spacing:39.936000pt;}
.ws63{word-spacing:40.000000pt;}
.wsbb{word-spacing:364.423680pt;}
._16{margin-left:-187.980160pt;}
._15{margin-left:-172.672000pt;}
._20{margin-left:-148.737920pt;}
._14{margin-left:-112.736000pt;}
._1f{margin-left:-89.922240pt;}
._1e{margin-left:-85.826240pt;}
._19{margin-left:-53.825920pt;}
._1a{margin-left:-41.984000pt;}
._18{margin-left:-38.912000pt;}
._36{margin-left:-10.519680pt;}
._34{margin-left:-8.978944pt;}
._1d{margin-left:-7.739520pt;}
._1{margin-left:-1.072896pt;}
._0{width:0.961920pt;}
._f{width:2.145792pt;}
._2{width:3.264000pt;}
._9{width:4.514176pt;}
._6{width:6.076160pt;}
._11{width:7.168000pt;}
._3{width:8.320000pt;}
._c{width:9.326976pt;}
._a{width:10.734976pt;}
._d{width:11.964160pt;}
._4{width:13.409792pt;}
._2b{width:14.589120pt;}
._e{width:17.088000pt;}
._8{width:17.984000pt;}
._37{width:19.072000pt;}
._5{width:20.480000pt;}
._2f{width:21.760000pt;}
._30{width:22.912000pt;}
._7{width:23.934080pt;}
._35{width:24.963584pt;}
._b{width:26.164480pt;}
._12{width:28.288000pt;}
._13{width:31.552000pt;}
._17{width:36.656896pt;}
._10{width:40.240896pt;}
._2e{width:42.068480pt;}
._38{width:47.936000pt;}
._2a{width:49.362688pt;}
._33{width:69.044480pt;}
._31{width:79.652320pt;}
._2d{width:82.204736pt;}
._32{width:95.123200pt;}
._2c{width:111.101760pt;}
._27{width:151.181760pt;}
._1b{width:152.960320pt;}
._21{width:156.815360pt;}
._22{width:164.821376pt;}
._1c{width:172.800000pt;}
._26{width:232.891520pt;}
._24{width:245.984320pt;}
._23{width:263.930560pt;}
._28{width:339.130240pt;}
._29{width:490.605920pt;}
._25{width:531.594400pt;}
.fs9{font-size:24.000000pt;}
.fs7{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs8{font-size:37.440000pt;}
.fs4{font-size:42.560000pt;}
.fs5{font-size:45.440000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.440000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y104{bottom:2.080000pt;}
.y162{bottom:2.880000pt;}
.y13d{bottom:2.960000pt;}
.yd7{bottom:3.360000pt;}
.yc6{bottom:5.920000pt;}
.y103{bottom:13.600000pt;}
.y13c{bottom:18.240000pt;}
.y161{bottom:18.240133pt;}
.yd5{bottom:19.360000pt;}
.y1{bottom:50.960000pt;}
.y112{bottom:122.800000pt;}
.y196{bottom:123.120000pt;}
.y15e{bottom:124.240000pt;}
.yd4{bottom:124.400000pt;}
.y1e0{bottom:126.800000pt;}
.yd6{bottom:129.760000pt;}
.y157{bottom:129.840000pt;}
.y72{bottom:131.600000pt;}
.y41{bottom:132.080000pt;}
.y129{bottom:132.160000pt;}
.y60{bottom:134.720000pt;}
.y1bf{bottom:135.040000pt;}
.y9b{bottom:142.640000pt;}
.y16b{bottom:142.640240pt;}
.y136{bottom:144.880000pt;}
.y55{bottom:147.040000pt;}
.ye7{bottom:147.520000pt;}
.yfd{bottom:148.080000pt;}
.y17d{bottom:150.240000pt;}
.yf1{bottom:152.160000pt;}
.y2d{bottom:152.400000pt;}
.y17{bottom:153.040000pt;}
.y1df{bottom:154.480000pt;}
.yac{bottom:154.880000pt;}
.y111{bottom:159.600000pt;}
.y195{bottom:159.920000pt;}
.y82{bottom:160.880000pt;}
.y15d{bottom:161.040000pt;}
.y16a{bottom:162.560240pt;}
.y1be{bottom:162.800000pt;}
.y11d{bottom:164.240000pt;}
.yd3{bottom:165.627520pt;}
.y156{bottom:166.640000pt;}
.yb7{bottom:168.320000pt;}
.y71{bottom:168.400000pt;}
.y40{bottom:168.880000pt;}
.y128{bottom:168.960000pt;}
.y5f{bottom:171.520000pt;}
.y1de{bottom:172.880000pt;}
.y1a1{bottom:176.400000pt;}
.y188{bottom:178.560000pt;}
.y7f{bottom:179.040000pt;}
.y9a{bottom:179.440000pt;}
.y81{bottom:179.680000pt;}
.y1bd{bottom:181.200000pt;}
.y135{bottom:181.680000pt;}
.y169{bottom:182.480000pt;}
.y54{bottom:183.840000pt;}
.ye6{bottom:184.320000pt;}
.yfc{bottom:184.880000pt;}
.y17c{bottom:187.040000pt;}
.yd2{bottom:188.272720pt;}
.yf0{bottom:188.960000pt;}
.y2c{bottom:189.200000pt;}
.y16{bottom:189.840000pt;}
.y15c{bottom:191.358080pt;}
.yab{bottom:191.680000pt;}
.y110{bottom:196.400000pt;}
.y194{bottom:196.720000pt;}
.y80{bottom:198.400000pt;}
.y1dd{bottom:200.640000pt;}
.y11c{bottom:201.360000pt;}
.y155{bottom:203.440000pt;}
.yb6{bottom:205.120000pt;}
.y3f{bottom:205.680000pt;}
.y127{bottom:205.760000pt;}
.y5e{bottom:208.320000pt;}
.y1bc{bottom:208.880000pt;}
.yd1{bottom:210.998080pt;}
.y70{bottom:213.200000pt;}
.y168{bottom:213.280000pt;}
.y187{bottom:215.360000pt;}
.y134{bottom:218.480000pt;}
.y1dc{bottom:219.040000pt;}
.y15b{bottom:219.280480pt;}
.y53{bottom:220.640000pt;}
.ye5{bottom:221.040000pt;}
.yfb{bottom:221.680000pt;}
.y17b{bottom:223.840000pt;}
.y99{bottom:224.240000pt;}
.y2b{bottom:226.000000pt;}
.y15{bottom:226.640000pt;}
.y1bb{bottom:227.280000pt;}
.y10f{bottom:233.200000pt;}
.y193{bottom:233.520000pt;}
.yd0{bottom:233.643280pt;}
.yef{bottom:233.760000pt;}
.yaa{bottom:236.480000pt;}
.y11b{bottom:238.560000pt;}
.y15a{bottom:239.200240pt;}
.y154{bottom:240.240000pt;}
.yb5{bottom:241.920000pt;}
.y7e{bottom:242.000000pt;}
.y3e{bottom:242.480000pt;}
.y126{bottom:242.560000pt;}
.y5d{bottom:245.120000pt;}
.y1db{bottom:246.720000pt;}
.y6f{bottom:250.000000pt;}
.y186{bottom:252.160000pt;}
.y1ba{bottom:255.040000pt;}
.y133{bottom:255.280000pt;}
.ycf{bottom:256.288480pt;}
.yfa{bottom:258.480000pt;}
.y159{bottom:259.120000pt;}
.y17a{bottom:260.640000pt;}
.y98{bottom:261.040000pt;}
.y14{bottom:263.440000pt;}
.y1da{bottom:265.120000pt;}
.y52{bottom:265.440000pt;}
.ye4{bottom:266.320000pt;}
.y192{bottom:270.320000pt;}
.yee{bottom:270.560000pt;}
.y2a{bottom:270.800000pt;}
.ya9{bottom:273.280000pt;}
.y1b9{bottom:273.440000pt;}
.y11a{bottom:275.360000pt;}
.y153{bottom:277.040000pt;}
.y10e{bottom:277.840000pt;}
.yb4{bottom:278.720000pt;}
.yce{bottom:279.013840pt;}
.y44{bottom:279.280000pt;}
.y125{bottom:279.360000pt;}
.y5c{bottom:281.920000pt;}
.y158{bottom:284.880000pt;}
.y6e{bottom:286.800000pt;}
.y3d{bottom:287.280000pt;}
.y185{bottom:288.960000pt;}
.y132{bottom:292.080000pt;}
.y1d9{bottom:292.880000pt;}
.yf9{bottom:295.280000pt;}
.ye3{bottom:296.640320pt;}
.y179{bottom:297.440000pt;}
.y13{bottom:300.240000pt;}
.y1b8{bottom:301.120000pt;}
.ycd{bottom:301.659040pt;}
.y51{bottom:302.240000pt;}
.y97{bottom:305.840000pt;}
.y191{bottom:307.120000pt;}
.yed{bottom:307.360000pt;}
.y29{bottom:307.520000pt;}
.ya8{bottom:310.080000pt;}
.y1d8{bottom:311.280000pt;}
.y119{bottom:312.160000pt;}
.y152{bottom:313.840000pt;}
.yb3{bottom:315.520000pt;}
.yde{bottom:316.080000pt;}
.ye2{bottom:316.560080pt;}
.y1b7{bottom:319.520000pt;}
.y5b{bottom:321.680000pt;}
.y6d{bottom:323.520000pt;}
.y3c{bottom:324.080000pt;}
.ycc{bottom:324.304240pt;}
.yf8{bottom:325.598320pt;}
.y184{bottom:325.680000pt;}
.y131{bottom:328.880000pt;}
.y1a0{bottom:331.360000pt;}
.y178{bottom:334.240000pt;}
.y10d{bottom:336.080000pt;}
.ye1{bottom:336.560240pt;}
.y12{bottom:337.040000pt;}
.y124{bottom:337.440000pt;}
.y1b6{bottom:337.920000pt;}
.y50{bottom:339.040000pt;}
.y14a{bottom:339.520000pt;}
.y190{bottom:343.920000pt;}
.y28{bottom:344.320000pt;}
.yec{bottom:344.480000pt;}
.ya7{bottom:346.880000pt;}
.ycb{bottom:347.029600pt;}
.y118{bottom:348.960000pt;}
.y96{bottom:350.640000pt;}
.y5a{bottom:352.000240pt;}
.yb2{bottom:352.320000pt;}
.ydd{bottom:352.880000pt;}
.yf7{bottom:353.520720pt;}
.ye0{bottom:356.480000pt;}
.y1d7{bottom:357.440000pt;}
.y7d{bottom:360.320000pt;}
.y3b{bottom:360.880000pt;}
.y183{bottom:363.680000pt;}
.y130{bottom:365.680000pt;}
.y10c{bottom:366.064240pt;}
.y123{bottom:367.760240pt;}
.y6c{bottom:368.320000pt;}
.yca{bottom:369.674800pt;}
.y177{bottom:371.040000pt;}
.y59{bottom:371.920240pt;}
.yf6{bottom:373.440480pt;}
.y11{bottom:373.840000pt;}
.y149{bottom:376.320000pt;}
.y18f{bottom:380.720000pt;}
.y27{bottom:381.120000pt;}
.y19f{bottom:381.680000pt;}
.y4f{bottom:383.600000pt;}
.ya6{bottom:383.680000pt;}
.y1b5{bottom:384.080000pt;}
.y1d6{bottom:385.120000pt;}
.y151{bottom:387.440000pt;}
.y122{bottom:387.680320pt;}
.y10b{bottom:388.709440pt;}
.yb1{bottom:389.120000pt;}
.ydc{bottom:389.680000pt;}
.y58{bottom:391.840000pt;}
.yc9{bottom:392.320000pt;}
.yf5{bottom:393.360240pt;}
.ydf{bottom:395.280000pt;}
.y95{bottom:395.440000pt;}
.y7c{bottom:397.120000pt;}
.y3a{bottom:397.680000pt;}
.y12f{bottom:402.480000pt;}
.y117{bottom:407.040000pt;}
.y121{bottom:407.680240pt;}
.y176{bottom:407.840000pt;}
.y10{bottom:410.640000pt;}
.y10a{bottom:411.434800pt;}
.y1b4{bottom:411.840000pt;}
.y1d5{bottom:412.880000pt;}
.y6b{bottom:413.120000pt;}
.yf4{bottom:413.280080pt;}
.yc8{bottom:415.040000pt;}
.y18e{bottom:417.520000pt;}
.y26{bottom:417.920000pt;}
.y19e{bottom:418.480000pt;}
.y182{bottom:423.040000pt;}
.y150{bottom:424.240000pt;}
.ydb{bottom:426.480000pt;}
.y120{bottom:427.600240pt;}
.ya5{bottom:428.320000pt;}
.y1b3{bottom:430.240000pt;}
.yc5{bottom:431.760000pt;}
.yf3{bottom:433.280000pt;}
.y4e{bottom:433.920000pt;}
.y109{bottom:434.080000pt;}
.y39{bottom:434.480000pt;}
.y57{bottom:434.800000pt;}
.yc4{bottom:437.680000pt;}
.yc7{bottom:438.236000pt;}
.yc3{bottom:438.238560pt;}
.y12e{bottom:439.280000pt;}
.y94{bottom:440.240000pt;}
.y1d4{bottom:440.640000pt;}
.y116{bottom:442.800400pt;}
.y175{bottom:444.640000pt;}
.yc2{bottom:445.920560pt;}
.yf{bottom:447.440000pt;}
.y11f{bottom:447.520000pt;}
.y6a{bottom:449.920000pt;}
.y181{bottom:453.360240pt;}
.y18d{bottom:454.320000pt;}
.y25{bottom:454.720000pt;}
.y19d{bottom:455.280000pt;}
.y108{bottom:456.720000pt;}
.y1b2{bottom:457.920000pt;}
.y1d3{bottom:459.040000pt;}
.y115{bottom:462.640240pt;}
.yf2{bottom:462.880000pt;}
.yda{bottom:463.280000pt;}
.yb0{bottom:464.240560pt;}
.y14f{bottom:469.040000pt;}
.y4d{bottom:470.720000pt;}
.y38{bottom:471.280000pt;}
.y180{bottom:473.280080pt;}
.y102{bottom:473.520000pt;}
.y12d{bottom:476.080000pt;}
.y143{bottom:476.240133pt;}
.y1b1{bottom:476.320000pt;}
.y7b{bottom:478.560000pt;}
.y106{bottom:479.600000pt;}
.y107{bottom:481.760000pt;}
.y114{bottom:482.560000pt;}
.yaf{bottom:484.160320pt;}
.ye{bottom:484.240000pt;}
.y93{bottom:485.040000pt;}
.y105{bottom:485.120000pt;}
.yc1{bottom:485.840240pt;}
.y11e{bottom:486.320000pt;}
.y69{bottom:486.720000pt;}
.ya4{bottom:489.280000pt;}
.y174{bottom:489.440000pt;}
.y24{bottom:491.520000pt;}
.y17f{bottom:493.280000pt;}
.y113{bottom:494.960000pt;}
.y142{bottom:495.920000pt;}
.y18c{bottom:499.120000pt;}
.yd9{bottom:500.080000pt;}
.y167{bottom:500.880000pt;}
.y14e{bottom:502.554160pt;}
.y1b0{bottom:504.080000pt;}
.yae{bottom:504.080080pt;}
.y1d2{bottom:505.120000pt;}
.y17e{bottom:505.600000pt;}
.yc0{bottom:505.760240pt;}
.y4c{bottom:507.520000pt;}
.y37{bottom:508.080000pt;}
.y101{bottom:515.840240pt;}
.y141{bottom:519.600000pt;}
.y12c{bottom:520.880000pt;}
.yd{bottom:521.040000pt;}
.y92{bottom:521.840000pt;}
.y1af{bottom:522.480000pt;}
.y68{bottom:523.520000pt;}
.yad{bottom:524.080000pt;}
.y166{bottom:524.880000pt;}
.y14d{bottom:525.514000pt;}
.ybf{bottom:525.680000pt;}
.ya3{bottom:526.080000pt;}
.y173{bottom:526.240000pt;}
.y23{bottom:528.320000pt;}
.y18b{bottom:529.440240pt;}
.y1d1{bottom:532.880000pt;}
.y100{bottom:535.760480pt;}
.y13b{bottom:536.640000pt;}
.y19c{bottom:536.880000pt;}
.y160{bottom:542.000000pt;}
.y4b{bottom:544.320000pt;}
.y36{bottom:544.880000pt;}
.y13f{bottom:545.600000pt;}
.y140{bottom:547.200133pt;}
.y14c{bottom:548.560000pt;}
.y18a{bottom:549.360080pt;}
.y1ae{bottom:550.240000pt;}
.y164{bottom:550.880000pt;}
.y1d0{bottom:551.280000pt;}
.y165{bottom:552.560000pt;}
.y13e{bottom:552.880000pt;}
.yff{bottom:555.680240pt;}
.ybe{bottom:557.680000pt;}
.yc{bottom:557.840000pt;}
.y163{bottom:558.240133pt;}
.y91{bottom:558.640000pt;}
.y67{bottom:560.320000pt;}
.ya2{bottom:562.880000pt;}
.y172{bottom:563.040000pt;}
.y22{bottom:565.120000pt;}
.y12b{bottom:565.680000pt;}
.y189{bottom:569.360000pt;}
.y19b{bottom:573.680000pt;}
.yfe{bottom:575.600000pt;}
.y1ad{bottom:577.920000pt;}
.y1cf{bottom:578.960000pt;}
.y4a{bottom:581.120000pt;}
.y35{bottom:581.680000pt;}
.y14b{bottom:587.200000pt;}
.y15f{bottom:588.880080pt;}
.y13a{bottom:588.960240pt;}
.yb{bottom:594.560000pt;}
.y90{bottom:595.440000pt;}
.y1ac{bottom:596.320000pt;}
.y66{bottom:597.120000pt;}
.y1ce{bottom:597.360000pt;}
.ya1{bottom:599.680000pt;}
.y171{bottom:599.840000pt;}
.y21{bottom:601.920000pt;}
.ybd{bottom:602.480000pt;}
.y139{bottom:608.880240pt;}
.y19a{bottom:610.480000pt;}
.y49{bottom:617.920000pt;}
.y34{bottom:618.480000pt;}
.y1ab{bottom:624.080000pt;}
.y1cd{bottom:625.120000pt;}
.yeb{bottom:626.480000pt;}
.y138{bottom:628.800000pt;}
.y8f{bottom:632.240000pt;}
.y7a{bottom:633.920000pt;}
.y170{bottom:636.640000pt;}
.y20{bottom:638.720000pt;}
.ya{bottom:639.200000pt;}
.ybc{bottom:639.280000pt;}
.y65{bottom:641.920000pt;}
.y1aa{bottom:642.480000pt;}
.ya0{bottom:643.044160pt;}
.y9e{bottom:646.880000pt;}
.y199{bottom:647.280000pt;}
.y1cc{bottom:652.880000pt;}
.y9f{bottom:653.200000pt;}
.y48{bottom:654.720000pt;}
.y33{bottom:655.280000pt;}
.yea{bottom:663.280000pt;}
.y8e{bottom:669.040000pt;}
.y1a9{bottom:670.160000pt;}
.y79{bottom:670.720000pt;}
.y1cb{bottom:671.280000pt;}
.y16f{bottom:673.360000pt;}
.y1f{bottom:675.520000pt;}
.ybb{bottom:676.080000pt;}
.y64{bottom:678.720000pt;}
.y9{bottom:683.520000pt;}
.y198{bottom:684.080000pt;}
.y137{bottom:684.480000pt;}
.y1a8{bottom:688.560000pt;}
.y47{bottom:691.520000pt;}
.y32{bottom:692.080000pt;}
.y1ca{bottom:698.960000pt;}
.ye9{bottom:700.080000pt;}
.y8d{bottom:705.840000pt;}
.y78{bottom:707.520000pt;}
.y16e{bottom:710.160000pt;}
.yba{bottom:712.880000pt;}
.y63{bottom:715.520000pt;}
.y1a7{bottom:716.320000pt;}
.y1e{bottom:720.160000pt;}
.y197{bottom:720.880000pt;}
.y8{bottom:725.196800pt;}
.y1c9{bottom:726.720000pt;}
.y31{bottom:728.880000pt;}
.y46{bottom:736.160000pt;}
.ye8{bottom:736.880000pt;}
.y8c{bottom:742.640000pt;}
.y1a6{bottom:744.080000pt;}
.y77{bottom:744.320000pt;}
.y1c8{bottom:745.120000pt;}
.yb9{bottom:749.680000pt;}
.y62{bottom:752.320000pt;}
.y16d{bottom:754.800000pt;}
.y12a{bottom:757.680000pt;}
.y1a5{bottom:762.480000pt;}
.y30{bottom:765.680000pt;}
.y7{bottom:772.880000pt;}
.y56{bottom:773.680000pt;}
.y1d{bottom:781.120000pt;}
.y45{bottom:786.320000pt;}
.y8b{bottom:787.520000pt;}
.y6{bottom:789.834000pt;}
.y1a4{bottom:790.160000pt;}
.y1c7{bottom:791.280000pt;}
.yb8{bottom:794.480000pt;}
.y61{bottom:796.960000pt;}
.y43{bottom:802.480000pt;}
.y88{bottom:805.600000pt;}
.y8a{bottom:806.240000pt;}
.y1a3{bottom:808.560000pt;}
.y16c{bottom:810.400000pt;}
.y2f{bottom:810.480000pt;}
.y76{bottom:817.920000pt;}
.y5{bottom:818.880000pt;}
.y1c6{bottom:818.960000pt;}
.y89{bottom:825.040000pt;}
.y1c{bottom:825.760000pt;}
.y148{bottom:825.920000pt;}
.y4{bottom:835.920000pt;}
.y1a2{bottom:836.320000pt;}
.y42{bottom:839.280000pt;}
.y1c5{bottom:846.720000pt;}
.y2e{bottom:847.280000pt;}
.y75{bottom:854.720000pt;}
.y147{bottom:862.720000pt;}
.y87{bottom:868.560000pt;}
.y1c4{bottom:874.480000pt;}
.y9d{bottom:876.080000pt;}
.y1b{bottom:884.080000pt;}
.y74{bottom:899.360000pt;}
.y146{bottom:899.520000pt;}
.y3{bottom:899.672000pt;}
.y1c3{bottom:902.160000pt;}
.y9c{bottom:912.880000pt;}
.y86{bottom:913.360000pt;}
.y1c2{bottom:920.560000pt;}
.y1a{bottom:920.880000pt;}
.y83{bottom:931.520000pt;}
.y85{bottom:932.160000pt;}
.y145{bottom:936.320000pt;}
.y1c1{bottom:948.320000pt;}
.y73{bottom:949.680000pt;}
.y84{bottom:950.880000pt;}
.y2{bottom:954.800000pt;}
.y19{bottom:957.680000pt;}
.y1c0{bottom:966.720000pt;}
.y144{bottom:980.880000pt;}
.yd8{bottom:994.240000pt;}
.y18{bottom:994.400000pt;}
.h1d{height:24.187500pt;}
.h19{height:26.000000pt;}
.h20{height:30.640000pt;}
.h18{height:31.406250pt;}
.he{height:32.282812pt;}
.h5{height:33.918750pt;}
.h16{height:34.000000pt;}
.h1a{height:34.830000pt;}
.h14{height:35.617969pt;}
.h21{height:36.192031pt;}
.h1b{height:37.705469pt;}
.h1c{height:37.732500pt;}
.h13{height:37.760000pt;}
.hc{height:45.156250pt;}
.hd{height:45.468750pt;}
.h17{height:47.109375pt;}
.h23{height:48.375000pt;}
.h6{height:52.448437pt;}
.h7{height:52.461237pt;}
.h22{height:52.472438pt;}
.hb{height:53.857500pt;}
.h25{height:57.917790pt;}
.h4{height:57.918750pt;}
.h24{height:62.811540pt;}
.h2{height:62.812500pt;}
.h8{height:64.500000pt;}
.h9{height:66.750000pt;}
.ha{height:71.210313pt;}
.h10{height:84.585500pt;}
.hf{height:86.553673pt;}
.h3{height:96.750000pt;}
.h11{height:115.313500pt;}
.h12{height:117.237340pt;}
.h15{height:117.537500pt;}
.h1e{height:793.760000pt;}
.h1f{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:51.040000pt;}
.wc{width:51.680000pt;}
.w11{width:53.680000pt;}
.wd{width:53.760000pt;}
.w16{width:54.798667pt;}
.w1a{width:54.800000pt;}
.w17{width:55.040000pt;}
.w9{width:57.678667pt;}
.w7{width:57.760000pt;}
.w6{width:57.761333pt;}
.w13{width:58.800000pt;}
.we{width:59.200000pt;}
.w8{width:64.400000pt;}
.w4{width:68.400000pt;}
.w19{width:72.000000pt;}
.w1b{width:72.078667pt;}
.w18{width:72.080000pt;}
.w10{width:78.000000pt;}
.w14{width:78.078667pt;}
.w12{width:78.080000pt;}
.wf{width:78.161333pt;}
.w15{width:95.681333pt;}
.w2{width:154.560000pt;}
.w3{width:619.040000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.wa{width:1122.560000pt;}
.wb{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x23{left:7.200000pt;}
.x7d{left:8.240000pt;}
.x2d{left:9.840000pt;}
.x32{left:12.080000pt;}
.x36{left:15.440000pt;}
.x2f{left:17.440000pt;}
.x34{left:18.560000pt;}
.x3a{left:20.800000pt;}
.x3f{left:21.920000pt;}
.x2c{left:23.040000pt;}
.x53{left:24.560000pt;}
.x8c{left:26.160000pt;}
.x82{left:27.280000pt;}
.x1d{left:30.320000pt;}
.x31{left:33.600000pt;}
.x33{left:35.760000pt;}
.x3c{left:36.960000pt;}
.x5f{left:38.080000pt;}
.x35{left:39.120000pt;}
.x4f{left:40.880000pt;}
.x41{left:42.480000pt;}
.x51{left:44.320000pt;}
.x55{left:53.520000pt;}
.x84{left:59.120000pt;}
.x58{left:65.760000pt;}
.x22{left:87.360000pt;}
.x5{left:94.800000pt;}
.x17{left:99.274480pt;}
.x4{left:101.440000pt;}
.x21{left:105.753280pt;}
.x20{left:109.120000pt;}
.x4b{left:112.640000pt;}
.x78{left:115.440000pt;}
.xa{left:118.400000pt;}
.x79{left:123.760000pt;}
.x2{left:129.840000pt;}
.x24{left:132.400000pt;}
.x9d{left:135.760000pt;}
.x7a{left:137.440000pt;}
.x7{left:142.880000pt;}
.x18{left:154.397840pt;}
.x2e{left:155.760000pt;}
.x4d{left:157.920000pt;}
.x3{left:166.152000pt;}
.xe{left:182.400000pt;}
.x11{left:183.520000pt;}
.x30{left:185.120000pt;}
.xc{left:186.720000pt;}
.xd{left:188.000000pt;}
.x10{left:189.040000pt;}
.x13{left:190.080000pt;}
.x14{left:191.520000pt;}
.x27{left:200.960000pt;}
.x7b{left:201.920000pt;}
.xf{left:206.880000pt;}
.x12{left:208.000000pt;}
.x15{left:210.480000pt;}
.x4e{left:211.680000pt;}
.x16{left:221.120000pt;}
.x7c{left:227.600000pt;}
.x29{left:237.040000pt;}
.x25{left:239.680000pt;}
.x37{left:240.880000pt;}
.x50{left:248.800000pt;}
.x7e{left:256.720000pt;}
.x19{left:262.720720pt;}
.x26{left:269.440000pt;}
.x52{left:270.880000pt;}
.x2b{left:274.480000pt;}
.x7f{left:280.320000pt;}
.x38{left:282.720000pt;}
.x80{left:291.760000pt;}
.x8{left:292.810640pt;}
.x56{left:300.320000pt;}
.x28{left:305.600000pt;}
.x81{left:311.760000pt;}
.x39{left:315.600000pt;}
.x1a{left:316.882160pt;}
.x54{left:320.160000pt;}
.x57{left:329.440000pt;}
.x2a{left:342.960000pt;}
.x3b{left:348.320000pt;}
.x3d{left:349.680000pt;}
.x83{left:363.680000pt;}
.x1c{left:366.240000pt;}
.x3e{left:373.360000pt;}
.x59{left:378.400000pt;}
.x6{left:381.684960pt;}
.x85{left:383.840000pt;}
.x1b{left:392.080000pt;}
.x9{left:396.880000pt;}
.x1e{left:404.160000pt;}
.x40{left:407.200000pt;}
.x42{left:410.800000pt;}
.x86{left:416.720000pt;}
.x5a{left:427.040000pt;}
.x87{left:435.760000pt;}
.x5b{left:452.160000pt;}
.x43{left:455.920000pt;}
.x5c{left:461.440000pt;}
.x5d{left:480.720000pt;}
.x44{left:488.800000pt;}
.x88{left:490.800000pt;}
.x5e{left:503.680000pt;}
.x89{left:510.640000pt;}
.x60{left:515.120000pt;}
.x45{left:521.520000pt;}
.x46{left:522.880000pt;}
.x61{left:534.400000pt;}
.x8a{left:545.600000pt;}
.x47{left:546.560000pt;}
.x63{left:563.840000pt;}
.x8b{left:565.440000pt;}
.x48{left:577.040000pt;}
.x49{left:580.640000pt;}
.x62{left:583.680000pt;}
.x64{left:592.960000pt;}
.x8d{left:600.480000pt;}
.x1f{left:602.476480pt;}
.x65{left:612.480000pt;}
.x8e{left:617.360000pt;}
.x4a{left:622.400000pt;}
.x8f{left:637.520000pt;}
.x67{left:641.920000pt;}
.x66{left:659.520000pt;}
.xb{left:661.840000pt;}
.x68{left:671.040000pt;}
.x90{left:689.440000pt;}
.x69{left:690.560000pt;}
.x9e{left:696.560000pt;}
.x1{left:699.200000pt;}
.x91{left:709.600000pt;}
.x6a{left:718.240000pt;}
.x6b{left:727.520000pt;}
.x92{left:735.280000pt;}
.x93{left:744.560000pt;}
.x6c{left:749.360000pt;}
.x94{left:764.400000pt;}
.x6d{left:774.880000pt;}
.x6e{left:786.320000pt;}
.x95{left:787.920000pt;}
.x96{left:799.360000pt;}
.x6f{left:808.160000pt;}
.x97{left:819.200000pt;}
.x71{left:837.600000pt;}
.x98{left:854.240000pt;}
.x70{left:857.440000pt;}
.x72{left:866.720000pt;}
.x99{left:871.120000pt;}
.x73{left:886.240000pt;}
.x9a{left:891.280000pt;}
.x75{left:915.680000pt;}
.x9b{left:924.160000pt;}
.x74{left:933.280000pt;}
.x9c{left:943.200000pt;}
.x76{left:944.800000pt;}
.x77{left:977.680000pt;}
.x4c{left:1009.200000pt;}
}




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