
    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_faa818a846216bcdc2bd57e8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_fefad4f53b93e49e8469e13a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_f7b34d1a1831ca7cdc80a829.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_e41551ca4d09c3fa45022d96.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5af7bad170347c6a06d21a6e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.875000;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_65d38caf0078e6b7d5307f87.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_6f3bebc7613bbeace5670cb9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.890625;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_73668d273a1782aac5521d62.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_39e2906d9089ee7ce8e14853.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_92f6b193379ab1efac402253.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b76c93c501af3ede638d298b.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_4aef823c7f2e2d8d4cfcff9d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.904785;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;}
.m4{transform:matrix(0.184419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184419,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.186293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186293,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.186576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186576,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);}
.m1{transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);}
.m6{transform:matrix(0.236549,0.000000,-0.080899,0.236549,0,0);-ms-transform:matrix(0.236549,0.000000,-0.080899,0.236549,0,0);-webkit-transform:matrix(0.236549,0.000000,-0.080899,0.236549,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-48.962088px;}
.vb{vertical-align:-47.161800px;}
.v5{vertical-align:-33.481644px;}
.v9{vertical-align:-20.880468px;}
.v6{vertical-align:-16.200000px;}
.v12{vertical-align:-14.759005px;}
.v1{vertical-align:-8.960220px;}
.v13{vertical-align:-7.919352px;}
.v11{vertical-align:-2.882325px;}
.vc{vertical-align:-1.441188px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:2.159388px;}
.v7{vertical-align:4.320000px;}
.v2{vertical-align:9.000000px;}
.vf{vertical-align:20.879028px;}
.vd{vertical-align:24.121788px;}
.v3{vertical-align:27.021096px;}
.v4{vertical-align:28.800000px;}
.v10{vertical-align:39.242448px;}
.va{vertical-align:56.522340px;}
.ls92{letter-spacing:-7.642386px;}
.ls91{letter-spacing:-1.520966px;}
.ls70{letter-spacing:-0.685368px;}
.lsab{letter-spacing:-0.498996px;}
.ls6e{letter-spacing:-0.230076px;}
.ls93{letter-spacing:-0.187774px;}
.ls95{letter-spacing:-0.144288px;}
.lsaa{letter-spacing:-0.138276px;}
.ls3a{letter-spacing:-0.114228px;}
.ls61{letter-spacing:-0.108216px;}
.ls5a{letter-spacing:-0.105336px;}
.ls8e{letter-spacing:-0.096192px;}
.lsa8{letter-spacing:-0.090972px;}
.ls2a{letter-spacing:-0.090180px;}
.ls8f{letter-spacing:-0.084498px;}
.ls25{letter-spacing:-0.084168px;}
.ls24{letter-spacing:-0.078156px;}
.lsa7{letter-spacing:-0.076608px;}
.ls26{letter-spacing:-0.072144px;}
.lsa9{letter-spacing:-0.071820px;}
.ls5b{letter-spacing:-0.067032px;}
.ls3b{letter-spacing:-0.066132px;}
.ls2d{letter-spacing:-0.060120px;}
.lsa5{letter-spacing:-0.058716px;}
.ls3f{letter-spacing:-0.054108px;}
.ls59{letter-spacing:-0.052668px;}
.ls2e{letter-spacing:-0.048096px;}
.ls96{letter-spacing:-0.043092px;}
.ls3c{letter-spacing:-0.042084px;}
.ls56{letter-spacing:-0.038304px;}
.ls2f{letter-spacing:-0.036072px;}
.lsa6{letter-spacing:-0.033516px;}
.ls2c{letter-spacing:-0.030060px;}
.ls5c{letter-spacing:-0.028728px;}
.ls28{letter-spacing:-0.024048px;}
.ls5e{letter-spacing:-0.023940px;}
.ls58{letter-spacing:-0.019152px;}
.ls27{letter-spacing:-0.018036px;}
.ls5d{letter-spacing:-0.014364px;}
.ls60{letter-spacing:-0.012024px;}
.ls3d{letter-spacing:-0.007776px;}
.ls22{letter-spacing:-0.007200px;}
.ls29{letter-spacing:-0.006012px;}
.ls5f{letter-spacing:-0.004788px;}
.ls3e{letter-spacing:-0.003888px;}
.ls20{letter-spacing:0.000000px;}
.ls49{letter-spacing:0.004788px;}
.ls1a{letter-spacing:0.006012px;}
.ls2{letter-spacing:0.007200px;}
.ls37{letter-spacing:0.007776px;}
.ls30{letter-spacing:0.009576px;}
.ls40{letter-spacing:0.011664px;}
.lsf{letter-spacing:0.012024px;}
.ls43{letter-spacing:0.012960px;}
.ls8c{letter-spacing:0.014292px;}
.ls65{letter-spacing:0.014364px;}
.ls13{letter-spacing:0.018036px;}
.ls4a{letter-spacing:0.019152px;}
.ls1{letter-spacing:0.023940px;}
.ls19{letter-spacing:0.024048px;}
.ls67{letter-spacing:0.028728px;}
.ls14{letter-spacing:0.030060px;}
.ls51{letter-spacing:0.031019px;}
.ls4f{letter-spacing:0.033516px;}
.ls39{letter-spacing:0.033552px;}
.ls6{letter-spacing:0.036072px;}
.ls4b{letter-spacing:0.038304px;}
.ls2b{letter-spacing:0.041940px;}
.ls1c{letter-spacing:0.042084px;}
.ls64{letter-spacing:0.043092px;}
.ls55{letter-spacing:0.043200px;}
.ls0{letter-spacing:0.047880px;}
.ls21{letter-spacing:0.047952px;}
.lsb{letter-spacing:0.048096px;}
.lsd{letter-spacing:0.050328px;}
.ls9f{letter-spacing:0.052668px;}
.ls17{letter-spacing:0.054108px;}
.ls4e{letter-spacing:0.057456px;}
.ls77{letter-spacing:0.058716px;}
.lsa{letter-spacing:0.060120px;}
.ls9a{letter-spacing:0.062244px;}
.ls1d{letter-spacing:0.066132px;}
.ls4d{letter-spacing:0.067032px;}
.ls72{letter-spacing:0.071820px;}
.ls7{letter-spacing:0.072144px;}
.ls44{letter-spacing:0.076608px;}
.lse{letter-spacing:0.078156px;}
.ls4c{letter-spacing:0.081396px;}
.ls8{letter-spacing:0.084168px;}
.ls68{letter-spacing:0.086184px;}
.lsc{letter-spacing:0.090180px;}
.ls69{letter-spacing:0.090972px;}
.ls97{letter-spacing:0.092268px;}
.ls75{letter-spacing:0.095760px;}
.ls16{letter-spacing:0.096192px;}
.ls71{letter-spacing:0.100548px;}
.ls34{letter-spacing:0.102204px;}
.ls57{letter-spacing:0.105336px;}
.ls4{letter-spacing:0.108216px;}
.ls63{letter-spacing:0.110124px;}
.ls32{letter-spacing:0.114228px;}
.ls62{letter-spacing:0.114912px;}
.ls9d{letter-spacing:0.119700px;}
.ls33{letter-spacing:0.120240px;}
.ls9e{letter-spacing:0.124488px;}
.ls11{letter-spacing:0.125820px;}
.ls9{letter-spacing:0.126252px;}
.ls6d{letter-spacing:0.128484px;}
.ls50{letter-spacing:0.129276px;}
.ls18{letter-spacing:0.132264px;}
.lsa3{letter-spacing:0.134064px;}
.ls46{letter-spacing:0.138276px;}
.ls9b{letter-spacing:0.138852px;}
.ls38{letter-spacing:0.140904px;}
.lsa2{letter-spacing:0.143640px;}
.ls3{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.144288px;}
.ls90{letter-spacing:0.145525px;}
.ls48{letter-spacing:0.150300px;}
.ls76{letter-spacing:0.153216px;}
.lsa4{letter-spacing:0.156312px;}
.ls35{letter-spacing:0.162324px;}
.ls78{letter-spacing:0.166428px;}
.ls8b{letter-spacing:0.173952px;}
.ls85{letter-spacing:0.174348px;}
.ls87{letter-spacing:0.175428px;}
.ls23{letter-spacing:0.176148px;}
.ls9c{letter-spacing:0.177156px;}
.ls88{letter-spacing:0.177552px;}
.ls36{letter-spacing:0.177948px;}
.ls8a{letter-spacing:0.178848px;}
.ls7f{letter-spacing:0.179470px;}
.ls79{letter-spacing:0.179784px;}
.ls73{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.180360px;}
.ls89{letter-spacing:0.181080px;}
.ls52{letter-spacing:0.181944px;}
.ls86{letter-spacing:0.183672px;}
.lsa0{letter-spacing:0.201096px;}
.ls6b{letter-spacing:0.216432px;}
.ls98{letter-spacing:0.220248px;}
.ls7b{letter-spacing:0.269735px;}
.ls7c{letter-spacing:0.539849px;}
.ls6f{letter-spacing:0.593215px;}
.ls6a{letter-spacing:2.248488px;}
.ls74{letter-spacing:6.391980px;}
.lsa1{letter-spacing:8.288028px;}
.ls84{letter-spacing:8.368704px;}
.ls80{letter-spacing:9.953569px;}
.ls82{letter-spacing:16.793569px;}
.ls81{letter-spacing:19.673569px;}
.ls15{letter-spacing:21.084084px;}
.ls47{letter-spacing:23.184000px;}
.ls7e{letter-spacing:26.513569px;}
.ls54{letter-spacing:28.505011px;}
.ls1e{letter-spacing:32.248368px;}
.ls99{letter-spacing:32.409972px;}
.ls1f{letter-spacing:32.609088px;}
.ls7a{letter-spacing:36.593569px;}
.ls1b{letter-spacing:40.887612px;}
.ls10{letter-spacing:41.117976px;}
.ls31{letter-spacing:41.248332px;}
.ls41{letter-spacing:44.128080px;}
.ls42{letter-spacing:44.488800px;}
.ls7d{letter-spacing:52.468638px;}
.ls45{letter-spacing:80.874222px;}
.ls8d{letter-spacing:83.368404px;}
.ls83{letter-spacing:179.873569px;}
.ls66{letter-spacing:221.770584px;}
.ls94{letter-spacing:224.499460px;}
.ls53{letter-spacing:275.972190px;}
.ls6c{letter-spacing:1255.185071px;}
.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;}
}
.ws17b{word-spacing:-246.007360px;}
.ws1{word-spacing:-72.000000px;}
.ws4e{word-spacing:-60.120000px;}
.ws0{word-spacing:-47.880000px;}
.ws3{word-spacing:-21.146148px;}
.wsa4{word-spacing:-18.000000px;}
.ws17d{word-spacing:-17.216324px;}
.wsfb{word-spacing:-16.307850px;}
.ws54{word-spacing:-15.210360px;}
.ws50{word-spacing:-15.192324px;}
.ws2{word-spacing:-15.102144px;}
.ws4{word-spacing:-15.066072px;}
.ws181{word-spacing:-15.042024px;}
.ws5{word-spacing:-15.030000px;}
.wsa5{word-spacing:-15.023988px;}
.ws1c7{word-spacing:-14.891724px;}
.ws1c8{word-spacing:-14.531004px;}
.ws132{word-spacing:-13.353732px;}
.ws133{word-spacing:-13.339368px;}
.ws131{word-spacing:-13.325004px;}
.ws178{word-spacing:-13.050265px;}
.ws1c1{word-spacing:-12.190248px;}
.ws1c3{word-spacing:-12.171096px;}
.ws1c4{word-spacing:-12.113640px;}
.ws1c6{word-spacing:-12.070548px;}
.ws1c2{word-spacing:-12.056184px;}
.ws134{word-spacing:-12.046608px;}
.ws1c5{word-spacing:-11.898180px;}
.ws55{word-spacing:-9.731664px;}
.ws53{word-spacing:-9.727776px;}
.ws4f{word-spacing:-9.720000px;}
.ws52{word-spacing:-9.716112px;}
.ws51{word-spacing:-9.712224px;}
.ws17c{word-spacing:-9.502350px;}
.wsf9{word-spacing:-8.435124px;}
.ws17a{word-spacing:-7.569384px;}
.wsfa{word-spacing:-7.239924px;}
.ws17f{word-spacing:-3.803328px;}
.wsa1{word-spacing:-2.079216px;}
.wsac{word-spacing:-0.272916px;}
.ws1e1{word-spacing:-0.268128px;}
.ws162{word-spacing:-0.244188px;}
.ws208{word-spacing:-0.234612px;}
.ws1dc{word-spacing:-0.229824px;}
.ws211{word-spacing:-0.225036px;}
.wse5{word-spacing:-0.220248px;}
.ws1f3{word-spacing:-0.215460px;}
.ws1f8{word-spacing:-0.210672px;}
.ws109{word-spacing:-0.201096px;}
.ws207{word-spacing:-0.196308px;}
.ws14c{word-spacing:-0.181944px;}
.ws1ce{word-spacing:-0.172368px;}
.wsad{word-spacing:-0.167580px;}
.ws187{word-spacing:-0.162792px;}
.ws1ad{word-spacing:-0.158004px;}
.ws163{word-spacing:-0.150984px;}
.wsa{word-spacing:-0.143856px;}
.ws218{word-spacing:-0.142596px;}
.ws1e6{word-spacing:-0.138852px;}
.ws42{word-spacing:-0.134208px;}
.ws9{word-spacing:-0.131868px;}
.ws115{word-spacing:-0.129276px;}
.ws98{word-spacing:-0.125820px;}
.ws10e{word-spacing:-0.119700px;}
.wsdc{word-spacing:-0.114912px;}
.ws116{word-spacing:-0.092268px;}
.ws6{word-spacing:-0.060120px;}
.ws210{word-spacing:-0.057456px;}
.ws8c{word-spacing:-0.054108px;}
.wsb6{word-spacing:-0.048096px;}
.ws12e{word-spacing:-0.042084px;}
.ws12f{word-spacing:-0.036072px;}
.ws5f{word-spacing:-0.030060px;}
.ws97{word-spacing:-0.024048px;}
.wse{word-spacing:-0.018036px;}
.ws5a{word-spacing:-0.012024px;}
.wsb{word-spacing:-0.007200px;}
.ws36{word-spacing:-0.006012px;}
.ws8{word-spacing:-0.004788px;}
.wsd{word-spacing:0.000000px;}
.ws10c{word-spacing:0.004788px;}
.wsf{word-spacing:0.006012px;}
.wsc{word-spacing:0.007200px;}
.ws56{word-spacing:0.009576px;}
.ws3a{word-spacing:0.012024px;}
.ws2b{word-spacing:0.018036px;}
.wsb5{word-spacing:0.024048px;}
.ws5c{word-spacing:0.030060px;}
.ws41{word-spacing:0.042084px;}
.ws1b{word-spacing:0.048096px;}
.ws10{word-spacing:0.054108px;}
.wsd8{word-spacing:0.057456px;}
.ws27{word-spacing:0.060120px;}
.ws1a9{word-spacing:0.062244px;}
.ws16e{word-spacing:0.066132px;}
.ws76{word-spacing:0.072144px;}
.ws1a{word-spacing:0.078156px;}
.ws35{word-spacing:0.084168px;}
.ws77{word-spacing:0.090180px;}
.ws32{word-spacing:0.096192px;}
.ws71{word-spacing:0.108216px;}
.ws7b{word-spacing:0.120240px;}
.wsef{word-spacing:0.126252px;}
.ws6a{word-spacing:0.132264px;}
.ws4c{word-spacing:0.138276px;}
.ws78{word-spacing:0.144288px;}
.ws46{word-spacing:0.150300px;}
.ws165{word-spacing:0.156312px;}
.ws72{word-spacing:0.162324px;}
.ws1e5{word-spacing:0.162792px;}
.ws74{word-spacing:0.168336px;}
.ws1e4{word-spacing:0.172368px;}
.ws23{word-spacing:0.174348px;}
.ws20f{word-spacing:0.181944px;}
.ws58{word-spacing:0.204408px;}
.ws148{word-spacing:0.253764px;}
.wsbe{word-spacing:0.288576px;}
.ws1e{word-spacing:0.306612px;}
.ws86{word-spacing:0.318636px;}
.ws90{word-spacing:0.324648px;}
.ws79{word-spacing:0.348696px;}
.ws28{word-spacing:0.360720px;}
.ws156{word-spacing:0.426852px;}
.ws157{word-spacing:0.456912px;}
.ws20e{word-spacing:0.526680px;}
.ws147{word-spacing:0.560196px;}
.ws69{word-spacing:0.715428px;}
.wscc{word-spacing:0.727452px;}
.wsc3{word-spacing:0.733464px;}
.ws130{word-spacing:0.775548px;}
.ws22{word-spacing:0.781560px;}
.ws21{word-spacing:0.793584px;}
.wse8{word-spacing:0.871740px;}
.ws6c{word-spacing:1.076148px;}
.ws154{word-spacing:1.094184px;}
.ws40{word-spacing:1.112220px;}
.ws111{word-spacing:1.168272px;}
.ws9b{word-spacing:1.244484px;}
.ws110{word-spacing:1.259244px;}
.ws112{word-spacing:1.283184px;}
.ws1c{word-spacing:1.430856px;}
.ws15a{word-spacing:1.436868px;}
.ws15{word-spacing:1.442880px;}
.ws1b9{word-spacing:1.472940px;}
.ws11a{word-spacing:1.527048px;}
.ws179{word-spacing:1.530355px;}
.ws195{word-spacing:1.545084px;}
.ws196{word-spacing:1.551096px;}
.ws1cc{word-spacing:1.608768px;}
.ws174{word-spacing:1.779552px;}
.ws8a{word-spacing:1.785564px;}
.ws167{word-spacing:1.797588px;}
.ws19d{word-spacing:1.803600px;}
.ws48{word-spacing:1.821636px;}
.ws177{word-spacing:1.827648px;}
.ws184{word-spacing:1.839672px;}
.wsed{word-spacing:1.845684px;}
.wsee{word-spacing:1.887768px;}
.ws119{word-spacing:1.899792px;}
.ws194{word-spacing:1.917828px;}
.ws10f{word-spacing:1.982232px;}
.ws1f2{word-spacing:1.987020px;}
.ws146{word-spacing:2.001384px;}
.ws70{word-spacing:2.128248px;}
.ws125{word-spacing:2.140272px;}
.wsc5{word-spacing:2.146284px;}
.ws24{word-spacing:2.152296px;}
.ws11{word-spacing:2.164320px;}
.ws12d{word-spacing:2.206404px;}
.ws183{word-spacing:2.212416px;}
.ws14e{word-spacing:2.248488px;}
.wsc4{word-spacing:2.308608px;}
.ws1eb{word-spacing:2.331756px;}
.wse0{word-spacing:2.446668px;}
.ws15e{word-spacing:2.500992px;}
.ws158{word-spacing:2.507004px;}
.ws6f{word-spacing:2.513016px;}
.wsc1{word-spacing:2.531052px;}
.ws12c{word-spacing:2.537064px;}
.ws166{word-spacing:2.543076px;}
.ws118{word-spacing:2.579148px;}
.ws39{word-spacing:2.591172px;}
.ws1a8{word-spacing:2.609208px;}
.wsfe{word-spacing:2.657304px;}
.ws149{word-spacing:2.710008px;}
.ws1ed{word-spacing:2.733948px;}
.ws1de{word-spacing:2.777040px;}
.ws1dd{word-spacing:2.796192px;}
.ws1ec{word-spacing:2.834496px;}
.ws59{word-spacing:2.861712px;}
.ws8f{word-spacing:2.903796px;}
.ws11f{word-spacing:2.927844px;}
.ws14d{word-spacing:2.933856px;}
.ws193{word-spacing:2.939868px;}
.ws38{word-spacing:2.951892px;}
.ws138{word-spacing:2.957904px;}
.ws120{word-spacing:2.993976px;}
.ws205{word-spacing:3.097836px;}
.ws206{word-spacing:3.102624px;}
.ws21a{word-spacing:3.222432px;}
.ws11d{word-spacing:3.246480px;}
.ws1b4{word-spacing:3.264516px;}
.ws137{word-spacing:3.270528px;}
.ws29{word-spacing:3.276540px;}
.ws129{word-spacing:3.294576px;}
.ws128{word-spacing:3.318624px;}
.ws191{word-spacing:3.378744px;}
.ws14a{word-spacing:3.413844px;}
.ws1ae{word-spacing:3.423420px;}
.ws15d{word-spacing:3.595176px;}
.ws12{word-spacing:3.607200px;}
.wsf3{word-spacing:3.613212px;}
.wsc7{word-spacing:3.619224px;}
.ws5d{word-spacing:3.655296px;}
.ws104{word-spacing:3.661308px;}
.wsb0{word-spacing:3.691368px;}
.ws1db{word-spacing:3.787308px;}
.ws1da{word-spacing:3.806460px;}
.ws145{word-spacing:3.849552px;}
.wsc6{word-spacing:3.931848px;}
.ws1a1{word-spacing:3.961908px;}
.ws100{word-spacing:3.973932px;}
.wsaf{word-spacing:3.985956px;}
.ws18{word-spacing:4.003992px;}
.ws124{word-spacing:4.028040px;}
.ws192{word-spacing:4.112208px;}
.ws1f9{word-spacing:4.146408px;}
.ws144{word-spacing:4.189500px;}
.ws169{word-spacing:4.316616px;}
.ws91{word-spacing:4.322628px;}
.ws122{word-spacing:4.340664px;}
.ws127{word-spacing:4.376736px;}
.ws21b{word-spacing:4.490964px;}
.wsc2{word-spacing:4.659300px;}
.wsd1{word-spacing:4.695372px;}
.ws1c0{word-spacing:4.743468px;}
.ws152{word-spacing:4.833648px;}
.ws13f{word-spacing:4.902912px;}
.wsbd{word-spacing:5.001984px;}
.ws73{word-spacing:5.026032px;}
.wsa9{word-spacing:5.032044px;}
.ws16b{word-spacing:5.044068px;}
.ws1d0{word-spacing:5.062104px;}
.ws1bf{word-spacing:5.098176px;}
.ws182{word-spacing:5.104188px;}
.ws16a{word-spacing:5.116212px;}
.ws140{word-spacing:5.209344px;}
.wsdd{word-spacing:5.228496px;}
.ws20b{word-spacing:5.233284px;}
.wse1{word-spacing:5.314680px;}
.ws5b{word-spacing:5.374728px;}
.ws19c{word-spacing:5.392764px;}
.ws3e{word-spacing:5.404788px;}
.ws34{word-spacing:5.482944px;}
.ws1cf{word-spacing:5.525028px;}
.ws5e{word-spacing:5.555088px;}
.ws1df{word-spacing:5.573232px;}
.ws1e0{word-spacing:5.592384px;}
.ws200{word-spacing:5.664204px;}
.ws14b{word-spacing:5.668992px;}
.ws7d{word-spacing:5.741460px;}
.ws150{word-spacing:5.747472px;}
.ws1d3{word-spacing:5.765508px;}
.wsd0{word-spacing:5.777532px;}
.ws11c{word-spacing:5.813604px;}
.ws7c{word-spacing:5.819616px;}
.ws151{word-spacing:5.837652px;}
.ws123{word-spacing:5.843664px;}
.ws2e{word-spacing:5.867712px;}
.ws143{word-spacing:5.970636px;}
.ws1ff{word-spacing:6.066396px;}
.ws85{word-spacing:6.108192px;}
.ws11b{word-spacing:6.228432px;}
.ws121{word-spacing:6.270516px;}
.ws108{word-spacing:6.277068px;}
.ws37{word-spacing:6.300576px;}
.ws1fb{word-spacing:6.324948px;}
.ws1fa{word-spacing:6.425496px;}
.wsb2{word-spacing:6.462900px;}
.wsbf{word-spacing:6.468912px;}
.wsd5{word-spacing:6.486948px;}
.wsf2{word-spacing:6.492960px;}
.ws84{word-spacing:6.517008px;}
.ws1be{word-spacing:6.565104px;}
.ws13a{word-spacing:6.631236px;}
.ws1e8{word-spacing:6.631380px;}
.ws141{word-spacing:6.684048px;}
.wsb1{word-spacing:6.817608px;}
.ws57{word-spacing:6.841656px;}
.wse9{word-spacing:6.955884px;}
.ws1f5{word-spacing:7.009632px;}
.ws1e7{word-spacing:7.153272px;}
.ws2c{word-spacing:7.160292px;}
.wsaa{word-spacing:7.190352px;}
.ws105{word-spacing:7.196364px;}
.ws62{word-spacing:7.208388px;}
.ws176{word-spacing:7.232436px;}
.ws2a{word-spacing:7.274520px;}
.ws175{word-spacing:7.292556px;}
.ws1f4{word-spacing:7.502796px;}
.ws61{word-spacing:7.527024px;}
.ws136{word-spacing:7.539048px;}
.wsa8{word-spacing:7.563096px;}
.wsa7{word-spacing:7.641252px;}
.ws219{word-spacing:7.647264px;}
.ws30{word-spacing:7.671312px;}
.ws161{word-spacing:7.742196px;}
.ws1a7{word-spacing:7.893756px;}
.ws1d2{word-spacing:7.899768px;}
.ws1a6{word-spacing:7.905780px;}
.ws14f{word-spacing:7.911792px;}
.ws160{word-spacing:7.953876px;}
.wsf7{word-spacing:7.959888px;}
.wsf5{word-spacing:7.983936px;}
.ws18d{word-spacing:8.218404px;}
.ws18b{word-spacing:8.224416px;}
.ws18c{word-spacing:8.242452px;}
.wsf4{word-spacing:8.272512px;}
.ws44{word-spacing:8.284536px;}
.ws126{word-spacing:8.296560px;}
.ws197{word-spacing:8.302572px;}
.wsf6{word-spacing:8.308584px;}
.ws15f{word-spacing:8.326620px;}
.ws43{word-spacing:8.398764px;}
.ws139{word-spacing:8.422812px;}
.ws1fd{word-spacing:8.489124px;}
.ws1fe{word-spacing:8.498700px;}
.ws13{word-spacing:8.603172px;}
.ws8e{word-spacing:8.633232px;}
.ws3d{word-spacing:8.645256px;}
.wsf8{word-spacing:8.705376px;}
.ws213{word-spacing:8.829072px;}
.ws1ea{word-spacing:8.848224px;}
.wse2{word-spacing:8.853012px;}
.ws1fc{word-spacing:8.857800px;}
.ws214{word-spacing:8.862588px;}
.ws92{word-spacing:9.048060px;}
.wsd7{word-spacing:9.138240px;}
.ws1e9{word-spacing:9.202536px;}
.ws94{word-spacing:9.360684px;}
.wsae{word-spacing:9.372708px;}
.ws11e{word-spacing:9.384732px;}
.ws3b{word-spacing:9.408780px;}
.ws12b{word-spacing:9.432828px;}
.ws82{word-spacing:9.450864px;}
.wse7{word-spacing:9.462888px;}
.ws81{word-spacing:9.468900px;}
.ws4d{word-spacing:9.486936px;}
.wsa6{word-spacing:9.733428px;}
.ws12a{word-spacing:9.745452px;}
.ws168{word-spacing:9.883728px;}
.ws6b{word-spacing:10.088136px;}
.ws19e{word-spacing:10.094148px;}
.ws3c{word-spacing:10.112184px;}
.ws31{word-spacing:10.160280px;}
.ws1cd{word-spacing:10.275048px;}
.ws20a{word-spacing:10.279836px;}
.ws204{word-spacing:10.394748px;}
.ws1d6{word-spacing:10.412784px;}
.ws6d{word-spacing:10.418796px;}
.ws8b{word-spacing:10.430820px;}
.ws19{word-spacing:10.448856px;}
.ws89{word-spacing:10.496952px;}
.wsd2{word-spacing:10.502964px;}
.wsd3{word-spacing:10.521000px;}
.ws1af{word-spacing:10.638936px;}
.ws209{word-spacing:10.749060px;}
.ws106{word-spacing:10.803564px;}
.ws15b{word-spacing:10.809576px;}
.ws9d{word-spacing:10.815588px;}
.ws1d4{word-spacing:10.827612px;}
.ws1ba{word-spacing:10.839636px;}
.ws96{word-spacing:10.923804px;}
.ws1d8{word-spacing:11.021976px;}
.ws1d9{word-spacing:11.036340px;}
.ws186{word-spacing:11.146248px;}
.ws3f{word-spacing:11.182320px;}
.ws8d{word-spacing:11.212380px;}
.ws45{word-spacing:11.248452px;}
.ws135{word-spacing:11.302560px;}
.ws95{word-spacing:11.308572px;}
.wsf1{word-spacing:11.356668px;}
.ws171{word-spacing:11.470896px;}
.ws68{word-spacing:11.525004px;}
.ws16{word-spacing:11.537028px;}
.ws1bb{word-spacing:11.549052px;}
.ws172{word-spacing:11.591136px;}
.ws188{word-spacing:11.687328px;}
.ws185{word-spacing:11.693340px;}
.ws114{word-spacing:11.721024px;}
.ws1d7{word-spacing:11.816784px;}
.wsc8{word-spacing:11.849652px;}
.wsc9{word-spacing:11.855664px;}
.ws17{word-spacing:11.861676px;}
.ws80{word-spacing:11.873700px;}
.ws75{word-spacing:11.879712px;}
.ws170{word-spacing:11.939832px;}
.wscf{word-spacing:12.011976px;}
.ws113{word-spacing:12.089700px;}
.wscd{word-spacing:12.168288px;}
.wsce{word-spacing:12.180312px;}
.ws49{word-spacing:12.240432px;}
.ws88{word-spacing:12.276504px;}
.ws9a{word-spacing:12.282516px;}
.ws4a{word-spacing:12.294540px;}
.ws87{word-spacing:12.300552px;}
.wsfd{word-spacing:12.318588px;}
.ws16f{word-spacing:12.342636px;}
.ws20d{word-spacing:12.429648px;}
.ws159{word-spacing:12.589128px;}
.wsfc{word-spacing:12.625200px;}
.ws83{word-spacing:12.691332px;}
.ws19b{word-spacing:12.739428px;}
.ws99{word-spacing:12.751452px;}
.ws20c{word-spacing:12.769596px;}
.ws1e3{word-spacing:12.946752px;}
.wsd4{word-spacing:12.949848px;}
.ws1d{word-spacing:12.973896px;}
.ws14{word-spacing:12.991932px;}
.wsbc{word-spacing:13.112172px;}
.ws1b1{word-spacing:13.234032px;}
.ws1e2{word-spacing:13.262760px;}
.wsbb{word-spacing:13.286520px;}
.ws153{word-spacing:13.304556px;}
.ws67{word-spacing:13.328604px;}
.ws16d{word-spacing:13.334616px;}
.ws66{word-spacing:13.346640px;}
.wsba{word-spacing:13.388724px;}
.ws1bd{word-spacing:13.412772px;}
.wsab{word-spacing:13.472892px;}
.ws1bc{word-spacing:13.677300px;}
.ws155{word-spacing:13.701348px;}
.ws117{word-spacing:13.743432px;}
.ws7a{word-spacing:13.821588px;}
.ws1f7{word-spacing:13.875624px;}
.wse3{word-spacing:13.913928px;}
.wse4{word-spacing:13.947444px;}
.wsb3{word-spacing:14.019984px;}
.ws1b6{word-spacing:14.050044px;}
.ws1f6{word-spacing:14.249088px;}
.wseb{word-spacing:14.362668px;}
.ws103{word-spacing:14.368680px;}
.ws1b7{word-spacing:14.404752px;}
.ws1cb{word-spacing:14.410764px;}
.ws1b8{word-spacing:14.549040px;}
.ws1d1{word-spacing:14.567076px;}
.ws64{word-spacing:14.777496px;}
.wse6{word-spacing:15.096132px;}
.ws1a2{word-spacing:15.114168px;}
.ws1d5{word-spacing:15.156252px;}
.ws63{word-spacing:15.180300px;}
.ws101{word-spacing:15.486912px;}
.ws102{word-spacing:15.547032px;}
.wsf0{word-spacing:15.625188px;}
.ws26{word-spacing:15.835608px;}
.ws60{word-spacing:16.003944px;}
.ws202{word-spacing:16.020648px;}
.ws203{word-spacing:16.039800px;}
.ws93{word-spacing:16.184304px;}
.ws1a3{word-spacing:16.214364px;}
.ws189{word-spacing:16.526988px;}
.ws1a4{word-spacing:16.545024px;}
.ws1a0{word-spacing:16.569072px;}
.wsea{word-spacing:16.611156px;}
.wscb{word-spacing:16.629192px;}
.ws1ef{word-spacing:16.848972px;}
.ws1a5{word-spacing:16.881696px;}
.ws217{word-spacing:16.901640px;}
.ws1c9{word-spacing:16.905744px;}
.wsca{word-spacing:16.941816px;}
.ws19f{word-spacing:16.959852px;}
.wsb9{word-spacing:16.989912px;}
.ws216{word-spacing:17.107524px;}
.ws1ee{word-spacing:17.117100px;}
.ws1f1{word-spacing:17.193708px;}
.ws215{word-spacing:17.208072px;}
.wsb8{word-spacing:17.242416px;}
.wsb7{word-spacing:17.260452px;}
.ws16c{word-spacing:17.416764px;}
.ws19a{word-spacing:18.017964px;}
.ws6e{word-spacing:18.072072px;}
.ws164{word-spacing:18.078084px;}
.ws13b{word-spacing:18.162252px;}
.ws173{word-spacing:18.360648px;}
.ws1b0{word-spacing:18.644472px;}
.ws190{word-spacing:18.799524px;}
.ws18f{word-spacing:19.009944px;}
.ws18e{word-spacing:19.070064px;}
.ws142{word-spacing:19.276488px;}
.wsb4{word-spacing:19.581084px;}
.ws1f0{word-spacing:19.626012px;}
.ws1b5{word-spacing:20.506932px;}
.ws212{word-spacing:21.086352px;}
.ws9c{word-spacing:21.679272px;}
.ws15c{word-spacing:21.973860px;}
.wsd6{word-spacing:22.304520px;}
.ws4b{word-spacing:22.322556px;}
.wsdf{word-spacing:22.508388px;}
.wsde{word-spacing:22.522752px;}
.ws9e{word-spacing:22.641192px;}
.wsec{word-spacing:23.380668px;}
.wsc0{word-spacing:23.476860px;}
.ws201{word-spacing:25.022088px;}
.ws20{word-spacing:26.284464px;}
.ws1f{word-spacing:26.446788px;}
.wsff{word-spacing:26.627148px;}
.ws47{word-spacing:26.687268px;}
.ws107{word-spacing:27.550152px;}
.ws199{word-spacing:28.070028px;}
.ws7e{word-spacing:28.136160px;}
.ws7f{word-spacing:28.148184px;}
.ws2d{word-spacing:31.334544px;}
.ws2f{word-spacing:32.825520px;}
.ws33{word-spacing:34.538940px;}
.ws1ca{word-spacing:36.709272px;}
.ws65{word-spacing:37.923696px;}
.ws198{word-spacing:41.434704px;}
.ws25{word-spacing:44.801424px;}
.wsd9{word-spacing:73.438344px;}
.wsda{word-spacing:79.557408px;}
.wsdb{word-spacing:79.566984px;}
.ws1ac{word-spacing:86.768136px;}
.ws13c{word-spacing:95.070528px;}
.ws1b3{word-spacing:111.589128px;}
.ws18a{word-spacing:142.502436px;}
.ws13d{word-spacing:149.409540px;}
.ws1aa{word-spacing:149.759064px;}
.ws10d{word-spacing:155.169504px;}
.ws1ab{word-spacing:155.887704px;}
.ws10b{word-spacing:162.356292px;}
.wsa0{word-spacing:164.113398px;}
.ws13e{word-spacing:176.049972px;}
.ws10a{word-spacing:310.712472px;}
.ws1b2{word-spacing:311.430672px;}
.ws9f{word-spacing:378.018621px;}
.wsa2{word-spacing:402.189514px;}
.ws7{word-spacing:419.007456px;}
.ws17e{word-spacing:550.999476px;}
.ws180{word-spacing:930.865624px;}
.wsa3{word-spacing:1070.550342px;}
._26{margin-left:-894.811729px;}
._7{margin-left:-566.911260px;}
._0{margin-left:-419.036184px;}
._9{margin-left:-366.724962px;}
._8{margin-left:-325.032138px;}
._a{margin-left:-308.760822px;}
._48{margin-left:-291.812544px;}
._b{margin-left:-250.331418px;}
._44{margin-left:-229.024368px;}
._41{margin-left:-223.270740px;}
._43{margin-left:-219.667392px;}
._42{margin-left:-212.108832px;}
._c{margin-left:-206.409204px;}
._3f{margin-left:-202.605306px;}
._3e{margin-left:-196.485792px;}
._47{margin-left:-186.018768px;}
._29{margin-left:-152.745846px;}
._40{margin-left:-141.587049px;}
._45{margin-left:-130.333032px;}
._46{margin-left:-118.982160px;}
._28{margin-left:-75.818456px;}
._27{margin-left:-50.149900px;}
._3b{margin-left:-19.206431px;}
._3a{margin-left:-13.554332px;}
._2{margin-left:-11.879712px;}
._37{margin-left:-9.409212px;}
._16{margin-left:-6.693624px;}
._38{margin-left:-4.680504px;}
._2b{margin-left:-3.600576px;}
._1{margin-left:-1.024632px;}
._3{width:1.136268px;}
._6{width:3.627828px;}
._36{width:6.473376px;}
._3d{width:7.588420px;}
._25{width:8.990532px;}
._2d{width:12.635532px;}
._24{width:15.613668px;}
._54{width:20.243664px;}
._1a{width:22.235472px;}
._5{width:30.686292px;}
._39{width:32.400335px;}
._30{width:33.798492px;}
._52{width:38.213028px;}
._19{width:52.476480px;}
._3c{width:58.660473px;}
._50{width:61.473132px;}
._17{width:64.082592px;}
._18{width:68.817924px;}
._13{width:70.201656px;}
._10{width:76.382964px;}
._4f{width:77.819364px;}
._22{width:79.835112px;}
._11{width:83.521872px;}
._4b{width:85.379616px;}
._4e{width:88.013016px;}
._21{width:96.181344px;}
._1c{width:97.622532px;}
._14{width:101.577420px;}
._15{width:102.597264px;}
._f{width:109.606896px;}
._4d{width:111.598704px;}
._2f{width:114.902424px;}
._12{width:120.662388px;}
._4c{width:129.659040px;}
._2c{width:135.735012px;}
._33{width:145.516896px;}
._35{width:146.972448px;}
._53{width:150.362352px;}
._31{width:153.038844px;}
._2a{width:158.492376px;}
._2e{width:160.996500px;}
._23{width:170.510256px;}
._20{width:172.612188px;}
._32{width:174.316716px;}
._e{width:189.724500px;}
._1e{width:195.178032px;}
._1f{width:196.197876px;}
._1d{width:214.263000px;}
._34{width:226.194696px;}
._d{width:255.334464px;}
._49{width:264.331116px;}
._4a{width:266.404320px;}
._51{width:273.691656px;}
._1b{width:285.934572px;}
._4{width:1626.790032px;}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:27.228000px;}
.fse{font-size:29.880000px;}
.fsd{font-size:36.000000px;}
.fsc{font-size:37.694400px;}
.fs19{font-size:38.009400px;}
.fs13{font-size:38.051400px;}
.fs9{font-size:38.773200px;}
.fs5{font-size:38.880000px;}
.fs14{font-size:42.120000px;}
.fs16{font-size:43.188600px;}
.fs15{font-size:46.943400px;}
.fs0{font-size:47.880000px;}
.fsf{font-size:49.026000px;}
.fs7{font-size:57.870000px;}
.fs3{font-size:60.120000px;}
.fs8{font-size:61.161195px;}
.fs6{font-size:63.539045px;}
.fsb{font-size:64.620000px;}
.fs1b{font-size:65.160000px;}
.fs11{font-size:65.231400px;}
.fs1a{font-size:68.865296px;}
.fs12{font-size:68.941203px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.fsa{font-size:85.318800px;}
.fs18{font-size:86.031600px;}
.fs10{font-size:86.125800px;}
.fs1{font-size:119.880000px;}
.yc6{bottom:-0.449550px;}
.y15e{bottom:-0.359550px;}
.y161{bottom:-0.269550px;}
.y0{bottom:0.000000px;}
.y1fc{bottom:2.610450px;}
.yca{bottom:3.150600px;}
.y17f{bottom:4.770450px;}
.y2d{bottom:113.783754px;}
.y51{bottom:119.723787px;}
.y155{bottom:123.959388px;}
.y188{bottom:125.042250px;}
.y266{bottom:126.564609px;}
.y232{bottom:128.451078px;}
.yf9{bottom:129.449919px;}
.y1c6{bottom:130.432485px;}
.y131{bottom:130.613619px;}
.y1eb{bottom:131.156769px;}
.y2c{bottom:131.334285px;}
.yb8{bottom:132.417300px;}
.y277{bottom:138.359919px;}
.y2b1{bottom:139.618794px;}
.y154{bottom:141.509919px;}
.y50{bottom:141.774300px;}
.y187{bottom:143.581755px;}
.y265{bottom:144.115140px;}
.yf8{bottom:144.750450px;}
.y231{bottom:146.001609px;}
.yf6{bottom:146.998821px;}
.yf7{bottom:147.000450px;}
.y1c5{bottom:147.983016px;}
.y130{bottom:148.164150px;}
.y1ea{bottom:148.707300px;}
.y2b{bottom:148.884816px;}
.y276{bottom:155.910450px;}
.yb7{bottom:158.967795px;}
.y153{bottom:159.060450px;}
.y264{bottom:161.665671px;}
.y186{bottom:162.121260px;}
.y230{bottom:163.552140px;}
.y82{bottom:165.178929px;}
.y4f{bottom:165.354867px;}
.y1c4{bottom:165.533547px;}
.yf5{bottom:165.538326px;}
.y12f{bottom:165.714681px;}
.y1e9{bottom:166.257831px;}
.y2b0{bottom:166.438326px;}
.y2a{bottom:173.454357px;}
.yb6{bottom:176.518326px;}
.y263{bottom:179.216202px;}
.y185{bottom:180.660765px;}
.y22f{bottom:181.102671px;}
.y4e{bottom:182.905398px;}
.y1c3{bottom:183.084078px;}
.yf4{bottom:183.088857px;}
.y12e{bottom:183.265212px;}
.y275{bottom:183.540600px;}
.y1e8{bottom:183.808362px;}
.y2af{bottom:183.988857px;}
.y152{bottom:186.689901px;}
.y29{bottom:191.004888px;}
.y81{bottom:191.729424px;}
.yb5{bottom:194.068857px;}
.y262{bottom:196.766733px;}
.y1c2{bottom:200.634609px;}
.yf3{bottom:200.639388px;}
.y12d{bottom:200.815743px;}
.y1e7{bottom:201.358893px;}
.y2ae{bottom:201.539388px;}
.y22e{bottom:207.653166px;}
.y184{bottom:208.200234px;}
.y28{bottom:208.555419px;}
.y80{bottom:209.279955px;}
.y4d{bottom:210.444867px;}
.y151{bottom:211.260450px;}
.yb4{bottom:211.619388px;}
.y261{bottom:214.317264px;}
.y1c1{bottom:218.185140px;}
.yf2{bottom:218.189919px;}
.y12c{bottom:218.366274px;}
.y2ad{bottom:219.089919px;}
.y22d{bottom:225.203697px;}
.y183{bottom:225.750765px;}
.y1e6{bottom:227.909388px;}
.y4c{bottom:227.995398px;}
.yb3{bottom:229.169919px;}
.y260{bottom:231.867795px;}
.y27{bottom:233.124960px;}
.yf1{bottom:233.490450px;}
.y1c0{bottom:235.735671px;}
.yef{bottom:235.736847px;}
.yf0{bottom:235.740450px;}
.y7e{bottom:235.830432px;}
.y7f{bottom:235.830450px;}
.y2ac{bottom:236.640450px;}
.y274{bottom:238.527264px;}
.y22c{bottom:242.754228px;}
.y12b{bottom:244.916769px;}
.y1e5{bottom:245.459919px;}
.yb2{bottom:246.720450px;}
.y25f{bottom:249.418326px;}
.y4b{bottom:250.045911px;}
.y26{bottom:250.675491px;}
.y1bf{bottom:253.286202px;}
.y17e{bottom:253.740000px;}
.yee{bottom:254.276352px;}
.y182{bottom:254.280450px;}
.y273{bottom:256.077795px;}
.y181{bottom:258.420450px;}
.y180{bottom:258.510450px;}
.y7d{bottom:258.869919px;}
.y22b{bottom:260.304759px;}
.y12a{bottom:262.467300px;}
.y1e4{bottom:263.006535px;}
.y2ab{bottom:264.540450px;}
.y25e{bottom:266.968857px;}
.y4a{bottom:267.596442px;}
.y25{bottom:268.226022px;}
.y150{bottom:270.209280px;}
.y1be{bottom:270.836733px;}
.yed{bottom:271.826883px;}
.y272{bottom:273.628326px;}
.yb1{bottom:274.350450px;}
.y7b{bottom:276.417372px;}
.y7c{bottom:276.420450px;}
.y22a{bottom:277.855290px;}
.y129{bottom:280.017831px;}
.y1e3{bottom:280.557066px;}
.y14f{bottom:284.339865px;}
.y25d{bottom:284.519388px;}
.y17d{bottom:285.508857px;}
.y24{bottom:286.765527px;}
.y1bd{bottom:288.387264px;}
.yec{bottom:289.377414px;}
.y49{bottom:289.646955px;}
.y271{bottom:291.178857px;}
.y229{bottom:295.405821px;}
.y128{bottom:297.568362px;}
.y14e{bottom:298.470693px;}
.y7a{bottom:299.456859px;}
.y25c{bottom:302.069919px;}
.y17c{bottom:303.059388px;}
.y23{bottom:304.316058px;}
.y1e2{bottom:305.126607px;}
.y1bc{bottom:305.937795px;}
.yeb{bottom:306.927945px;}
.y270{bottom:308.729388px;}
.y48{bottom:311.697468px;}
.y228{bottom:312.956352px;}
.y14d{bottom:313.410450px;}
.y2aa{bottom:314.488479px;}
.y127{bottom:315.118893px;}
.y79{bottom:317.007390px;}
.y25b{bottom:319.620450px;}
.y17b{bottom:320.609919px;}
.y1bb{bottom:323.488326px;}
.yea{bottom:324.478476px;}
.yb0{bottom:324.839919px;}
.y26f{bottom:326.279919px;}
.y2a9{bottom:328.619064px;}
.y22{bottom:328.885599px;}
.y1e1{bottom:329.696148px;}
.y227{bottom:330.506883px;}
.y126{bottom:332.669424px;}
.y47{bottom:333.747981px;}
.y78{bottom:334.557921px;}
.y179{bottom:338.158857px;}
.y17a{bottom:338.160450px;}
.y1ba{bottom:341.038857px;}
.ye9{bottom:342.029007px;}
.y14c{bottom:342.210600px;}
.yaf{bottom:342.385857px;}
.y26e{bottom:343.830450px;}
.y21{bottom:346.436130px;}
.y2a8{bottom:347.249172px;}
.y25a{bottom:347.250600px;}
.y226{bottom:348.057414px;}
.y77{bottom:352.108452px;}
.y178{bottom:356.698362px;}
.y1e0{bottom:357.235617px;}
.y1b9{bottom:358.589388px;}
.y125{bottom:359.219919px;}
.ye8{bottom:359.579538px;}
.yae{bottom:359.936388px;}
.y46{bottom:360.298476px;}
.y2a7{bottom:361.379757px;}
.y14b{bottom:363.720450px;}
.y20{bottom:363.986661px;}
.y225{bottom:365.607945px;}
.y76{bottom:369.658983px;}
.y177{bottom:374.248893px;}
.y1df{bottom:374.786148px;}
.y2a6{bottom:375.510342px;}
.y1b8{bottom:376.139919px;}
.y124{bottom:376.767300px;}
.ye7{bottom:377.130069px;}
.yad{bottom:377.486919px;}
.y45{bottom:377.849007px;}
.y26d{bottom:378.839865px;}
.y1f{bottom:381.537192px;}
.y224{bottom:383.158476px;}
.y14a{bottom:384.960600px;}
.ye6{bottom:392.430600px;}
.y26c{bottom:392.970450px;}
.y1b7{bottom:393.690450px;}
.y2a5{bottom:394.140450px;}
.y123{bottom:394.317831px;}
.ye5{bottom:394.680600px;}
.yac{bottom:395.037450px;}
.y44{bottom:395.399538px;}
.y75{bottom:396.209478px;}
.y223{bottom:400.709007px;}
.y176{bottom:400.799388px;}
.y1de{bottom:401.336643px;}
.y259{bottom:401.699865px;}
.y26b{bottom:404.490450px;}
.y1e{bottom:406.106733px;}
.y149{bottom:406.560450px;}
.y2a4{bottom:408.258174px;}
.y122{bottom:411.868362px;}
.yab{bottom:412.587981px;}
.y258{bottom:415.830450px;}
.y222{bottom:418.259538px;}
.y175{bottom:418.349919px;}
.y1dd{bottom:418.887174px;}
.y2a3{bottom:422.388759px;}
.ye4{bottom:422.670450px;}
.y43{bottom:422.939007px;}
.y1d{bottom:423.657264px;}
.y74{bottom:423.748947px;}
.y1b6{bottom:425.725770px;}
.y148{bottom:428.430600px;}
.y121{bottom:429.418893px;}
.yaa{bottom:430.138512px;}
.y221{bottom:435.810069px;}
.y173{bottom:435.900288px;}
.y174{bottom:435.900450px;}
.y1dc{bottom:436.437705px;}
.y2a2{bottom:436.518147px;}
.y1b5{bottom:439.856355px;}
.y42{bottom:440.489538px;}
.y1c{bottom:441.207795px;}
.y257{bottom:444.270600px;}
.y73{bottom:446.788434px;}
.y120{bottom:446.969424px;}
.ya9{bottom:447.689043px;}
.y147{bottom:450.300450px;}
.y220{bottom:453.360600px;}
.y1b4{bottom:453.986940px;}
.y1db{bottom:453.988236px;}
.y2a1{bottom:455.148255px;}
.y41{bottom:458.040069px;}
.y1b{bottom:458.758326px;}
.y172{bottom:463.439757px;}
.y11f{bottom:464.519955px;}
.ya8{bottom:465.239574px;}
.y256{bottom:465.870600px;}
.y1b3{bottom:468.117525px;}
.y72{bottom:468.838947px;}
.y2a0{bottom:469.278840px;}
.ye3{bottom:470.279919px;}
.y1da{bottom:471.538767px;}
.y146{bottom:472.170450px;}
.y40{bottom:475.590600px;}
.y21f{bottom:480.360600px;}
.y171{bottom:481.979262px;}
.y1b2{bottom:482.248110px;}
.ya7{bottom:482.790105px;}
.ye2{bottom:485.580450px;}
.y1a{bottom:486.297795px;}
.y255{bottom:487.470450px;}
.ye1{bottom:487.830450px;}
.ye0{bottom:487.831971px;}
.y29f{bottom:487.908948px;}
.y11e{bottom:488.820450px;}
.y11d{bottom:491.070450px;}
.y11c{bottom:491.070873px;}
.y145{bottom:493.680600px;}
.y71{bottom:495.389442px;}
.y1d9{bottom:496.108308px;}
.y1b1{bottom:496.378695px;}
.y170{bottom:500.518767px;}
.y29e{bottom:502.039533px;}
.y3f{bottom:503.220450px;}
.y19{bottom:503.848326px;}
.y254{bottom:509.070450px;}
.ya6{bottom:509.340945px;}
.y11b{bottom:509.610378px;}
.y1b0{bottom:510.509280px;}
.y70{bottom:512.939973px;}
.y1d8{bottom:513.658839px;}
.ydf{bottom:515.371440px;}
.y29d{bottom:516.170118px;}
.y16f{bottom:519.058272px;}
.y18{bottom:521.398857px;}
.y21e{bottom:523.470945px;}
.y1af{bottom:524.639865px;}
.y144{bottom:527.790450px;}
.ya5{bottom:527.880945px;}
.y11a{bottom:528.149883px;}
.y253{bottom:530.670450px;}
.yde{bottom:533.910945px;}
.y29c{bottom:534.800226px;}
.y143{bottom:537.330450px;}
.y1d7{bottom:538.228380px;}
.y1ae{bottom:538.766940px;}
.y17{bottom:538.949388px;}
.y6f{bottom:540.479442px;}
.y21d{bottom:542.010963px;}
.ya4{bottom:546.415176px;}
.y16e{bottom:546.597741px;}
.y119{bottom:546.689388px;}
.y29b{bottom:548.930811px;}
.ydd{bottom:550.200450px;}
.y252{bottom:552.270450px;}
.ydc{bottom:552.450450px;}
.ydb{bottom:552.451260px;}
.y1ad{bottom:552.897525px;}
.y1d6{bottom:555.778911px;}
.y142{bottom:556.140450px;}
.y16{bottom:556.499919px;}
.y6e{bottom:562.529955px;}
.y3e{bottom:562.701297px;}
.y29a{bottom:563.061396px;}
.y16d{bottom:564.148272px;}
.y21c{bottom:565.050945px;}
.y141{bottom:566.760450px;}
.y1ac{bottom:567.028110px;}
.yda{bottom:570.990765px;}
.y251{bottom:573.870450px;}
.ya3{bottom:573.954645px;}
.y15{bottom:574.050450px;}
.y118{bottom:574.228857px;}
.y299{bottom:577.191981px;}
.y140{bottom:578.099280px;}
.y3d{bottom:580.251828px;}
.y1ab{bottom:581.158695px;}
.y1d5{bottom:581.788326px;}
.y21b{bottom:583.590963px;}
.y6d{bottom:589.070505px;}
.y16c{bottom:590.698767px;}
.ya2{bottom:591.505176px;}
.y117{bottom:591.779388px;}
.y13f{bottom:592.229865px;}
.y1aa{bottom:595.289280px;}
.y250{bottom:595.470450px;}
.y298{bottom:595.822089px;}
.y3c{bottom:597.802359px;}
.yd9{bottom:598.530234px;}
.y1d4{bottom:599.338857px;}
.y14{bottom:601.680450px;}
.y13e{bottom:606.360450px;}
.y6c{bottom:606.621036px;}
.y21a{bottom:606.630963px;}
.y16b{bottom:608.249298px;}
.ya1{bottom:609.055707px;}
.y116{bottom:609.329919px;}
.y1a9{bottom:609.419865px;}
.y297{bottom:609.952674px;}
.y3b{bottom:615.352890px;}
.yd8{bottom:616.080765px;}
.y1d3{bottom:616.889388px;}
.y1a8{bottom:623.550450px;}
.y296{bottom:624.083259px;}
.y6b{bottom:624.171567px;}
.y16a{bottom:625.799829px;}
.ya0{bottom:626.606238px;}
.y115{bottom:626.880450px;}
.y24f{bottom:629.580450px;}
.y219{bottom:629.669388px;}
.y3a{bottom:632.903421px;}
.y1d2{bottom:634.439919px;}
.y24e{bottom:639.120450px;}
.y6a{bottom:642.711072px;}
.y295{bottom:642.713367px;}
.y9f{bottom:644.156769px;}
.yd6{bottom:648.660450px;}
.yd5{bottom:648.750450px;}
.y169{bottom:648.839316px;}
.y1a7{bottom:651.989865px;}
.y1d1{bottom:651.990450px;}
.y114{bottom:653.156940px;}
.y13{bottom:656.669919px;}
.y294{bottom:656.843952px;}
.yd7{bottom:657.030861px;}
.y218{bottom:657.208857px;}
.y24d{bottom:657.570450px;}
.y39{bottom:659.453916px;}
.y69{bottom:660.261603px;}
.y9e{bottom:661.707300px;}
.y1a6{bottom:666.120450px;}
.y168{bottom:666.389847px;}
.y113{bottom:667.287525px;}
.y24c{bottom:667.468110px;}
.y293{bottom:670.974537px;}
.y12{bottom:674.220450px;}
.y217{bottom:674.759388px;}
.y68{bottom:677.812134px;}
.y38{bottom:677.993421px;}
.y9d{bottom:679.257831px;}
.yd4{bottom:679.439883px;}
.y1d0{bottom:679.620450px;}
.y112{bottom:681.418110px;}
.y24b{bottom:681.598695px;}
.y1a5{bottom:687.720405px;}
.y292{bottom:689.604645px;}
.y1a3{bottom:690.329865px;}
.y167{bottom:690.959388px;}
.y216{bottom:692.309919px;}
.y67{bottom:695.362665px;}
.y111{bottom:695.548695px;}
.y24a{bottom:695.729280px;}
.y37{bottom:696.532926px;}
.y9c{bottom:696.808362px;}
.yd3{bottom:696.990414px;}
.y26a{bottom:700.409280px;}
.y11{bottom:701.850450px;}
.y291{bottom:703.735230px;}
.y1a2{bottom:704.460450px;}
.y1a4{bottom:707.430207px;}
.y215{bottom:707.610450px;}
.y166{bottom:708.509919px;}
.y110{bottom:709.679280px;}
.y249{bottom:709.859865px;}
.y214{bottom:709.860450px;}
.y213{bottom:709.860945px;}
.y66{bottom:712.913196px;}
.y9b{bottom:714.358893px;}
.y269{bottom:714.539865px;}
.yd2{bottom:714.540945px;}
.y290{bottom:717.864618px;}
.y10f{bottom:723.809865px;}
.y248{bottom:723.990450px;}
.y36{bottom:724.072395px;}
.y165{bottom:726.060450px;}
.y212{bottom:728.400288px;}
.y1a1{bottom:728.670405px;}
.y268{bottom:728.670450px;}
.y1cf{bottom:729.569280px;}
.yd1{bottom:730.830450px;}
.y1a0{bottom:731.281062px;}
.yd0{bottom:733.080450px;}
.ycf{bottom:733.080945px;}
.y28f{bottom:736.494726px;}
.y10e{bottom:737.940450px;}
.y65{bottom:740.452665px;}
.y9a{bottom:740.909388px;}
.y1ce{bottom:743.699865px;}
.y19f{bottom:745.410450px;}
.y267{bottom:749.190450px;}
.y35{bottom:750.622890px;}
.y28e{bottom:750.625311px;}
.yce{bottom:751.620450px;}
.y164{bottom:752.070450px;}
.y247{bottom:752.430450px;}
.y10{bottom:756.835716px;}
.y1cd{bottom:757.830450px;}
.y64{bottom:758.003196px;}
.y210{bottom:758.010484px;}
.y99{bottom:758.459919px;}
.y20e{bottom:762.150450px;}
.y163{bottom:763.590450px;}
.y28d{bottom:764.755896px;}
.y10d{bottom:766.380450px;}
.y34{bottom:768.173421px;}
.y211{bottom:769.440861px;}
.y19e{bottom:769.620555px;}
.y20f{bottom:770.610600px;}
.y19d{bottom:772.230015px;}
.y246{bottom:774.030450px;}
.yf{bottom:774.386247px;}
.y98{bottom:776.010369px;}
.y15f{bottom:776.010450px;}
.ycd{bottom:777.630450px;}
.y1cc{bottom:778.350450px;}
.y28c{bottom:783.386004px;}
.y63{bottom:785.542665px;}
.y33{bottom:785.723952px;}
.y19c{bottom:786.360600px;}
.y10c{bottom:787.980450px;}
.ye{bottom:791.936778px;}
.y245{bottom:795.630450px;}
.y28b{bottom:797.516589px;}
.y20d{bottom:797.609388px;}
.ycc{bottom:798.150450px;}
.y97{bottom:798.329919px;}
.y62{bottom:803.093196px;}
.yd{bottom:809.487309px;}
.y10b{bottom:809.580450px;}
.y32{bottom:810.293493px;}
.y19b{bottom:810.570450px;}
.y28a{bottom:811.647174px;}
.y20c{bottom:815.159919px;}
.y96{bottom:815.880519px;}
.y244{bottom:817.230450px;}
.y61{bottom:825.143709px;}
.y289{bottom:825.777759px;}
.yc{bottom:827.037840px;}
.y31{bottom:827.844024px;}
.yc9{bottom:828.390000px;}
.ycb{bottom:829.650450px;}
.yc8{bottom:829.830000px;}
.y10a{bottom:831.180600px;}
.y19a{bottom:832.170450px;}
.y20b{bottom:832.710450px;}
.y95{bottom:838.200069px;}
.y243{bottom:838.830450px;}
.y60{bottom:842.694240px;}
.y288{bottom:844.407867px;}
.yb{bottom:844.588371px;}
.y15d{bottom:850.080000px;}
.y30{bottom:852.413565px;}
.y109{bottom:852.780450px;}
.y199{bottom:853.770450px;}
.y93{bottom:855.748548px;}
.y94{bottom:855.750600px;}
.y287{bottom:858.537255px;}
.y20a{bottom:858.720450px;}
.y242{bottom:860.430600px;}
.ya{bottom:862.138902px;}
.y5f{bottom:864.744753px;}
.y2f{bottom:869.964096px;}
.y286{bottom:872.666643px;}
.y108{bottom:874.380450px;}
.y198{bottom:875.370555px;}
.y197{bottom:877.980015px;}
.y92{bottom:878.788035px;}
.y209{bottom:879.240450px;}
.y9{bottom:879.689433px;}
.y241{bottom:882.030450px;}
.y1f8{bottom:883.379849px;}
.y201{bottom:885.630000px;}
.y5e{bottom:886.795266px;}
.y285{bottom:886.797228px;}
.y206{bottom:887.700450px;}
.y202{bottom:888.240450px;}
.y203{bottom:890.400000px;}
.y196{bottom:892.110600px;}
.y204{bottom:893.010450px;}
.y107{bottom:895.980450px;}
.y8{bottom:897.239964px;}
.y2e{bottom:897.503565px;}
.y207{bottom:901.560450px;}
.y1f9{bottom:901.740450px;}
.y205{bottom:902.460450px;}
.y240{bottom:903.630450px;}
.y91{bottom:905.338530px;}
.y284{bottom:905.427336px;}
.y1fa{bottom:905.430450px;}
.yc7{bottom:905.790000px;}
.y5d{bottom:908.845779px;}
.y7{bottom:915.059532px;}
.y195{bottom:917.039973px;}
.y106{bottom:917.580450px;}
.y283{bottom:919.557921px;}
.y90{bottom:922.889061px;}
.y1f5{bottom:923.160450px;}
.y23f{bottom:925.950513px;}
.y1f6{bottom:927.210492px;}
.y13d{bottom:928.284078px;}
.y1f7{bottom:928.290600px;}
.y282{bottom:933.688506px;}
.y5c{bottom:935.396274px;}
.y194{bottom:936.480450px;}
.y160{bottom:938.280000px;}
.yc5{bottom:938.370000px;}
.y105{bottom:939.899748px;}
.y8f{bottom:940.439592px;}
.y1fd{bottom:943.770450px;}
.y1fb{bottom:943.950000px;}
.y1fe{bottom:944.400450px;}
.y13c{bottom:945.834609px;}
.y208{bottom:946.560450px;}
.y200{bottom:946.740450px;}
.y1ff{bottom:947.460450px;}
.y23e{bottom:948.000450px;}
.y6{bottom:950.609991px;}
.y281{bottom:952.318614px;}
.y5b{bottom:952.946805px;}
.y193{bottom:953.580450px;}
.y104{bottom:959.250450px;}
.y8e{bottom:962.490105px;}
.y13b{bottom:963.385140px;}
.y280{bottom:966.449199px;}
.y23d{bottom:967.710450px;}
.yc4{bottom:967.977300px;}
.y192{bottom:972.750450px;}
.y103{bottom:976.350450px;}
.y5a{bottom:980.486274px;}
.y27f{bottom:980.579784px;}
.y13a{bottom:980.935671px;}
.yc3{bottom:985.527831px;}
.y191{bottom:985.976733px;}
.y5{bottom:986.160450px;}
.y8d{bottom:989.039937px;}
.y1f4{bottom:993.810450px;}
.y102{bottom:995.160450px;}
.y59{bottom:998.036805px;}
.y139{bottom:998.486202px;}
.y27e{bottom:999.209892px;}
.yc2{bottom:1003.078362px;}
.y190{bottom:1003.527264px;}
.y23c{bottom:1005.600945px;}
.y8c{bottom:1011.090450px;}
.y8b{bottom:1011.090963px;}
.y27d{bottom:1013.340477px;}
.y162{bottom:1015.590000px;}
.y101{bottom:1016.036553px;}
.y138{bottom:1016.036733px;}
.y1f3{bottom:1017.119919px;}
.y58{bottom:1020.087318px;}
.yc1{bottom:1020.628893px;}
.y18f{bottom:1021.077795px;}
.y4{bottom:1022.250450px;}
.y23b{bottom:1024.140450px;}
.y23a{bottom:1024.141458px;}
.y27c{bottom:1027.471062px;}
.y1f2{bottom:1032.420450px;}
.y15c{bottom:1033.585509px;}
.y100{bottom:1033.587084px;}
.y137{bottom:1033.587264px;}
.y8a{bottom:1034.129937px;}
.y1f1{bottom:1034.670450px;}
.y1f0{bottom:1034.670945px;}
.y57{bottom:1037.637849px;}
.yc0{bottom:1038.179424px;}
.y18e{bottom:1038.628326px;}
.y27b{bottom:1041.600450px;}
.y239{bottom:1042.680963px;}
.y15b{bottom:1051.136040px;}
.yff{bottom:1051.137615px;}
.y136{bottom:1051.137795px;}
.y1ef{bottom:1053.210450px;}
.y1ee{bottom:1053.210963px;}
.ybf{bottom:1055.729955px;}
.y18d{bottom:1056.178857px;}
.y89{bottom:1056.179883px;}
.y56{bottom:1059.688362px;}
.y237{bottom:1065.720414px;}
.y238{bottom:1065.720450px;}
.y27a{bottom:1066.350450px;}
.y1cb{bottom:1068.680235px;}
.y15a{bottom:1068.686571px;}
.yfe{bottom:1068.688146px;}
.y135{bottom:1068.688326px;}
.y3{bottom:1072.558956px;}
.y18c{bottom:1073.729388px;}
.y1ed{bottom:1076.249919px;}
.y55{bottom:1077.238893px;}
.y87{bottom:1079.760432px;}
.y88{bottom:1079.760450px;}
.ybe{bottom:1080.030450px;}
.ybd{bottom:1082.280450px;}
.ybc{bottom:1082.281935px;}
.y236{bottom:1084.259919px;}
.y1ca{bottom:1086.230766px;}
.y159{bottom:1086.237102px;}
.yfd{bottom:1086.238677px;}
.y134{bottom:1086.238857px;}
.y18b{bottom:1091.279919px;}
.y1ec{bottom:1093.800450px;}
.y86{bottom:1098.299937px;}
.y54{bottom:1099.289406px;}
.ybb{bottom:1100.821440px;}
.y235{bottom:1101.810414px;}
.y1c9{bottom:1103.781297px;}
.y158{bottom:1103.787633px;}
.yfc{bottom:1103.789208px;}
.y133{bottom:1103.789388px;}
.y2{bottom:1107.030450px;}
.y18a{bottom:1108.830450px;}
.y53{bottom:1116.839937px;}
.yba{bottom:1119.360945px;}
.y234{bottom:1120.349919px;}
.y85{bottom:1120.350450px;}
.y84{bottom:1120.350477px;}
.y1c8{bottom:1121.331828px;}
.y157{bottom:1121.338164px;}
.yfb{bottom:1121.339739px;}
.y132{bottom:1121.339919px;}
.y279{bottom:1121.339955px;}
.y189{bottom:1135.830450px;}
.y233{bottom:1137.891429px;}
.yb9{bottom:1137.900450px;}
.y1c7{bottom:1138.882359px;}
.y156{bottom:1138.888695px;}
.y83{bottom:1138.889982px;}
.yfa{bottom:1138.890270px;}
.y52{bottom:1138.890450px;}
.y278{bottom:1138.890486px;}
.y1{bottom:1189.740450px;}
.h23{height:10.890000px;}
.h25{height:10.980000px;}
.h12{height:12.870000px;}
.h39{height:13.320000px;}
.h14{height:17.460000px;}
.h26{height:22.320000px;}
.h49{height:26.217949px;}
.h2a{height:26.420454px;}
.h3a{height:28.397953px;}
.h1c{height:31.587891px;}
.h36{height:32.594490px;}
.h1a{height:33.074627px;}
.h4b{height:33.244805px;}
.h3f{height:33.351021px;}
.h35{height:34.199000px;}
.h38{height:34.201494px;}
.h9{height:34.881328px;}
.h2c{height:36.957832px;}
.h16{height:40.439236px;}
.h4a{height:40.745391px;}
.h5{height:41.743477px;}
.h17{height:42.011895px;}
.h15{height:42.466416px;}
.h1{height:42.783398px;}
.h48{height:43.798359px;}
.hb{height:44.117442px;}
.h3d{height:45.044360px;}
.h22{height:47.096977px;}
.h32{height:47.111989px;}
.h40{height:47.815650px;}
.h29{height:47.868355px;}
.h37{height:48.960499px;}
.h1d{height:49.937344px;}
.h20{height:49.937932px;}
.h21{height:49.939132px;}
.h24{height:51.132586px;}
.h44{height:52.749725px;}
.h45{height:52.749797px;}
.h4{height:52.751777px;}
.h47{height:52.751921px;}
.h42{height:52.752425px;}
.h34{height:52.753901px;}
.h33{height:52.767437px;}
.ha{height:52.791557px;}
.h4c{height:53.573730px;}
.h41{height:56.351777px;}
.h2b{height:56.711777px;}
.h6{height:56.848359px;}
.h28{height:57.236731px;}
.h3b{height:57.600499px;}
.h3c{height:58.679000px;}
.h8{height:58.975137px;}
.h18{height:59.239909px;}
.h3e{height:59.734832px;}
.h27{height:59.800238px;}
.h13{height:60.356602px;}
.hd{height:61.112942px;}
.he{height:61.113542px;}
.h10{height:61.117046px;}
.h43{height:61.119170px;}
.h1f{height:61.127522px;}
.hf{height:61.133294px;}
.hc{height:61.136018px;}
.h46{height:61.151006px;}
.h11{height:61.751777px;}
.h19{height:61.874627px;}
.h3{height:62.156250px;}
.h2e{height:74.482876px;}
.h1b{height:75.093750px;}
.h31{height:78.378064px;}
.h2{height:81.246797px;}
.h7{height:87.484219px;}
.h2f{height:103.277908px;}
.h2d{height:103.282696px;}
.h1e{height:106.459684px;}
.h30{height:113.720536px;}
.h0{height:1263.000000px;}
.w9{width:4.770000px;}
.w8{width:5.310000px;}
.w6{width:7.020000px;}
.wa{width:7.200000px;}
.w7{width:7.650000px;}
.w4{width:8.010000px;}
.w3{width:8.910000px;}
.w5{width:9.000000px;}
.w1{width:10.530000px;}
.w2{width:10.710000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:63.810000px;}
.x3{left:67.229235px;}
.x9{left:74.429604px;}
.x2{left:81.450000px;}
.xe{left:85.140000px;}
.x5c{left:86.760000px;}
.x23{left:88.110000px;}
.x7b{left:90.180000px;}
.x5b{left:91.350000px;}
.x5d{left:93.870000px;}
.x8{left:95.670000px;}
.x59{left:97.380000px;}
.x7c{left:99.270000px;}
.x5e{left:100.980180px;}
.x40{left:106.470000px;}
.x71{left:108.270000px;}
.x27{left:110.250000px;}
.x72{left:112.770000px;}
.x5{left:114.300000px;}
.xf{left:117.000000px;}
.x46{left:118.710000px;}
.x43{left:120.600000px;}
.x7d{left:122.670000px;}
.x45{left:126.900000px;}
.x44{left:131.490000px;}
.x74{left:134.730000px;}
.x10{left:138.330576px;}
.x42{left:145.620000px;}
.x41{left:148.950333px;}
.x66{left:152.010269px;}
.x11{left:159.661152px;}
.x57{left:161.100000px;}
.x2a{left:162.990000px;}
.x6d{left:171.630000px;}
.x6c{left:174.780000px;}
.x5f{left:175.860639px;}
.x6f{left:177.660000px;}
.x6e{left:178.740000px;}
.x64{left:179.910000px;}
.x65{left:183.510000px;}
.x78{left:199.259701px;}
.x68{left:201.150000px;}
.x69{left:206.910000px;}
.x2f{left:217.800000px;}
.x2c{left:225.359645px;}
.x75{left:236.970000px;}
.x28{left:246.330000px;}
.x22{left:251.370000px;}
.x29{left:252.900000px;}
.x34{left:255.870000px;}
.x2d{left:257.130000px;}
.x35{left:262.440000px;}
.x2e{left:263.700000px;}
.x63{left:264.780000px;}
.x77{left:276.749465px;}
.x12{left:281.160000px;}
.x5a{left:283.320783px;}
.x13{left:289.440000px;}
.x6{left:290.609415px;}
.x32{left:295.020000px;}
.x14{left:298.980000px;}
.x33{left:301.590000px;}
.x4{left:313.920000px;}
.x67{left:321.120243px;}
.x20{left:331.830000px;}
.x21{left:338.400000px;}
.x7a{left:345.870000px;}
.x79{left:355.590000px;}
.x58{left:362.250864px;}
.x30{left:365.400000px;}
.x70{left:366.480000px;}
.x31{left:371.970000px;}
.x61{left:376.740000px;}
.x76{left:378.990000px;}
.x24{left:382.320000px;}
.x62{left:385.830000px;}
.x25{left:388.710000px;}
.x2b{left:405.900000px;}
.x26{left:407.340000px;}
.x6a{left:410.850000px;}
.x6b{left:416.700000px;}
.x73{left:423.810000px;}
.x88{left:426.870000px;}
.x7{left:435.869856px;}
.xa{left:448.553358px;}
.xb{left:459.173556px;}
.x3d{left:464.670000px;}
.x3c{left:468.630000px;}
.x1f{left:469.890558px;}
.x3b{left:471.330000px;}
.x89{left:474.029766px;}
.x3a{left:476.820000px;}
.xc{left:480.504132px;}
.x86{left:491.220000px;}
.x37{left:495.540000px;}
.x85{left:499.230000px;}
.xd{left:501.750576px;}
.x84{left:503.190000px;}
.x83{left:505.080000px;}
.x56{left:507.240000px;}
.x3e{left:512.370333px;}
.x4b{left:515.880000px;}
.x80{left:521.550000px;}
.x15{left:523.080432px;}
.x81{left:530.100000px;}
.x87{left:533.700333px;}
.x16{left:544.411008px;}
.x8a{left:552.960000px;}
.x55{left:560.880000px;}
.x17{left:597.870000px;}
.x3f{left:599.130000px;}
.x18{left:606.150000px;}
.x36{left:609.300000px;}
.x1b{left:618.300000px;}
.x4e{left:622.260000px;}
.x1c{left:626.580000px;}
.x19{left:628.830000px;}
.x4f{left:630.540000px;}
.x1d{left:633.960000px;}
.x1a{left:637.110000px;}
.x1e{left:640.620000px;}
.x38{left:660.330990px;}
.x50{left:669.420000px;}
.x51{left:677.700000px;}
.x48{left:693.180000px;}
.x49{left:696.240000px;}
.x82{left:714.599595px;}
.x4c{left:726.390000px;}
.x4d{left:734.670000px;}
.x7e{left:741.600000px;}
.x7f{left:750.690000px;}
.x47{left:755.100000px;}
.x39{left:758.341350px;}
.x4a{left:766.440000px;}
.x52{left:804.510000px;}
.x54{left:809.550000px;}
.x53{left:818.100000px;}
.x60{left:820.530000px;}
@media print{
.v8{vertical-align:-43.521856pt;}
.vb{vertical-align:-41.921600pt;}
.v5{vertical-align:-29.761462pt;}
.v9{vertical-align:-18.560416pt;}
.v6{vertical-align:-14.400000pt;}
.v12{vertical-align:-13.119116pt;}
.v1{vertical-align:-7.964640pt;}
.v13{vertical-align:-7.039424pt;}
.v11{vertical-align:-2.562066pt;}
.vc{vertical-align:-1.281056pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:1.919456pt;}
.v7{vertical-align:3.840000pt;}
.v2{vertical-align:8.000000pt;}
.vf{vertical-align:18.559136pt;}
.vd{vertical-align:21.441589pt;}
.v3{vertical-align:24.018752pt;}
.v4{vertical-align:25.600000pt;}
.v10{vertical-align:34.882176pt;}
.va{vertical-align:50.242080pt;}
.ls92{letter-spacing:-6.793232pt;}
.ls91{letter-spacing:-1.351970pt;}
.ls70{letter-spacing:-0.609216pt;}
.lsab{letter-spacing:-0.443552pt;}
.ls6e{letter-spacing:-0.204512pt;}
.ls93{letter-spacing:-0.166910pt;}
.ls95{letter-spacing:-0.128256pt;}
.lsaa{letter-spacing:-0.122912pt;}
.ls3a{letter-spacing:-0.101536pt;}
.ls61{letter-spacing:-0.096192pt;}
.ls5a{letter-spacing:-0.093632pt;}
.ls8e{letter-spacing:-0.085504pt;}
.lsa8{letter-spacing:-0.080864pt;}
.ls2a{letter-spacing:-0.080160pt;}
.ls8f{letter-spacing:-0.075109pt;}
.ls25{letter-spacing:-0.074816pt;}
.ls24{letter-spacing:-0.069472pt;}
.lsa7{letter-spacing:-0.068096pt;}
.ls26{letter-spacing:-0.064128pt;}
.lsa9{letter-spacing:-0.063840pt;}
.ls5b{letter-spacing:-0.059584pt;}
.ls3b{letter-spacing:-0.058784pt;}
.ls2d{letter-spacing:-0.053440pt;}
.lsa5{letter-spacing:-0.052192pt;}
.ls3f{letter-spacing:-0.048096pt;}
.ls59{letter-spacing:-0.046816pt;}
.ls2e{letter-spacing:-0.042752pt;}
.ls96{letter-spacing:-0.038304pt;}
.ls3c{letter-spacing:-0.037408pt;}
.ls56{letter-spacing:-0.034048pt;}
.ls2f{letter-spacing:-0.032064pt;}
.lsa6{letter-spacing:-0.029792pt;}
.ls2c{letter-spacing:-0.026720pt;}
.ls5c{letter-spacing:-0.025536pt;}
.ls28{letter-spacing:-0.021376pt;}
.ls5e{letter-spacing:-0.021280pt;}
.ls58{letter-spacing:-0.017024pt;}
.ls27{letter-spacing:-0.016032pt;}
.ls5d{letter-spacing:-0.012768pt;}
.ls60{letter-spacing:-0.010688pt;}
.ls3d{letter-spacing:-0.006912pt;}
.ls22{letter-spacing:-0.006400pt;}
.ls29{letter-spacing:-0.005344pt;}
.ls5f{letter-spacing:-0.004256pt;}
.ls3e{letter-spacing:-0.003456pt;}
.ls20{letter-spacing:0.000000pt;}
.ls49{letter-spacing:0.004256pt;}
.ls1a{letter-spacing:0.005344pt;}
.ls2{letter-spacing:0.006400pt;}
.ls37{letter-spacing:0.006912pt;}
.ls30{letter-spacing:0.008512pt;}
.ls40{letter-spacing:0.010368pt;}
.lsf{letter-spacing:0.010688pt;}
.ls43{letter-spacing:0.011520pt;}
.ls8c{letter-spacing:0.012704pt;}
.ls65{letter-spacing:0.012768pt;}
.ls13{letter-spacing:0.016032pt;}
.ls4a{letter-spacing:0.017024pt;}
.ls1{letter-spacing:0.021280pt;}
.ls19{letter-spacing:0.021376pt;}
.ls67{letter-spacing:0.025536pt;}
.ls14{letter-spacing:0.026720pt;}
.ls51{letter-spacing:0.027572pt;}
.ls4f{letter-spacing:0.029792pt;}
.ls39{letter-spacing:0.029824pt;}
.ls6{letter-spacing:0.032064pt;}
.ls4b{letter-spacing:0.034048pt;}
.ls2b{letter-spacing:0.037280pt;}
.ls1c{letter-spacing:0.037408pt;}
.ls64{letter-spacing:0.038304pt;}
.ls55{letter-spacing:0.038400pt;}
.ls0{letter-spacing:0.042560pt;}
.ls21{letter-spacing:0.042624pt;}
.lsb{letter-spacing:0.042752pt;}
.lsd{letter-spacing:0.044736pt;}
.ls9f{letter-spacing:0.046816pt;}
.ls17{letter-spacing:0.048096pt;}
.ls4e{letter-spacing:0.051072pt;}
.ls77{letter-spacing:0.052192pt;}
.lsa{letter-spacing:0.053440pt;}
.ls9a{letter-spacing:0.055328pt;}
.ls1d{letter-spacing:0.058784pt;}
.ls4d{letter-spacing:0.059584pt;}
.ls72{letter-spacing:0.063840pt;}
.ls7{letter-spacing:0.064128pt;}
.ls44{letter-spacing:0.068096pt;}
.lse{letter-spacing:0.069472pt;}
.ls4c{letter-spacing:0.072352pt;}
.ls8{letter-spacing:0.074816pt;}
.ls68{letter-spacing:0.076608pt;}
.lsc{letter-spacing:0.080160pt;}
.ls69{letter-spacing:0.080864pt;}
.ls97{letter-spacing:0.082016pt;}
.ls75{letter-spacing:0.085120pt;}
.ls16{letter-spacing:0.085504pt;}
.ls71{letter-spacing:0.089376pt;}
.ls34{letter-spacing:0.090848pt;}
.ls57{letter-spacing:0.093632pt;}
.ls4{letter-spacing:0.096192pt;}
.ls63{letter-spacing:0.097888pt;}
.ls32{letter-spacing:0.101536pt;}
.ls62{letter-spacing:0.102144pt;}
.ls9d{letter-spacing:0.106400pt;}
.ls33{letter-spacing:0.106880pt;}
.ls9e{letter-spacing:0.110656pt;}
.ls11{letter-spacing:0.111840pt;}
.ls9{letter-spacing:0.112224pt;}
.ls6d{letter-spacing:0.114208pt;}
.ls50{letter-spacing:0.114912pt;}
.ls18{letter-spacing:0.117568pt;}
.lsa3{letter-spacing:0.119168pt;}
.ls46{letter-spacing:0.122912pt;}
.ls9b{letter-spacing:0.123424pt;}
.ls38{letter-spacing:0.125248pt;}
.lsa2{letter-spacing:0.127680pt;}
.ls3{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.128256pt;}
.ls90{letter-spacing:0.129355pt;}
.ls48{letter-spacing:0.133600pt;}
.ls76{letter-spacing:0.136192pt;}
.lsa4{letter-spacing:0.138944pt;}
.ls35{letter-spacing:0.144288pt;}
.ls78{letter-spacing:0.147936pt;}
.ls8b{letter-spacing:0.154624pt;}
.ls85{letter-spacing:0.154976pt;}
.ls87{letter-spacing:0.155936pt;}
.ls23{letter-spacing:0.156576pt;}
.ls9c{letter-spacing:0.157472pt;}
.ls88{letter-spacing:0.157824pt;}
.ls36{letter-spacing:0.158176pt;}
.ls8a{letter-spacing:0.158976pt;}
.ls7f{letter-spacing:0.159529pt;}
.ls79{letter-spacing:0.159808pt;}
.ls73{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.160320pt;}
.ls89{letter-spacing:0.160960pt;}
.ls52{letter-spacing:0.161728pt;}
.ls86{letter-spacing:0.163264pt;}
.lsa0{letter-spacing:0.178752pt;}
.ls6b{letter-spacing:0.192384pt;}
.ls98{letter-spacing:0.195776pt;}
.ls7b{letter-spacing:0.239764pt;}
.ls7c{letter-spacing:0.479866pt;}
.ls6f{letter-spacing:0.527302pt;}
.ls6a{letter-spacing:1.998656pt;}
.ls74{letter-spacing:5.681760pt;}
.lsa1{letter-spacing:7.367136pt;}
.ls84{letter-spacing:7.438848pt;}
.ls80{letter-spacing:8.847617pt;}
.ls82{letter-spacing:14.927617pt;}
.ls81{letter-spacing:17.487617pt;}
.ls15{letter-spacing:18.741408pt;}
.ls47{letter-spacing:20.608000pt;}
.ls7e{letter-spacing:23.567617pt;}
.ls54{letter-spacing:25.337788pt;}
.ls1e{letter-spacing:28.665216pt;}
.ls99{letter-spacing:28.808864pt;}
.ls1f{letter-spacing:28.985856pt;}
.ls7a{letter-spacing:32.527617pt;}
.ls1b{letter-spacing:36.344544pt;}
.ls10{letter-spacing:36.549312pt;}
.ls31{letter-spacing:36.665184pt;}
.ls41{letter-spacing:39.224960pt;}
.ls42{letter-spacing:39.545600pt;}
.ls7d{letter-spacing:46.638789pt;}
.ls45{letter-spacing:71.888197pt;}
.ls8d{letter-spacing:74.105248pt;}
.ls83{letter-spacing:159.887617pt;}
.ls66{letter-spacing:197.129408pt;}
.ls94{letter-spacing:199.555076pt;}
.ls53{letter-spacing:245.308614pt;}
.ls6c{letter-spacing:1115.720063pt;}
.ws17b{word-spacing:-218.673209pt;}
.ws1{word-spacing:-64.000000pt;}
.ws4e{word-spacing:-53.440000pt;}
.ws0{word-spacing:-42.560000pt;}
.ws3{word-spacing:-18.796576pt;}
.wsa4{word-spacing:-16.000000pt;}
.ws17d{word-spacing:-15.303399pt;}
.wsfb{word-spacing:-14.495867pt;}
.ws54{word-spacing:-13.520320pt;}
.ws50{word-spacing:-13.504288pt;}
.ws2{word-spacing:-13.424128pt;}
.ws4{word-spacing:-13.392064pt;}
.ws181{word-spacing:-13.370688pt;}
.ws5{word-spacing:-13.360000pt;}
.wsa5{word-spacing:-13.354656pt;}
.ws1c7{word-spacing:-13.237088pt;}
.ws1c8{word-spacing:-12.916448pt;}
.ws132{word-spacing:-11.869984pt;}
.ws133{word-spacing:-11.857216pt;}
.ws131{word-spacing:-11.844448pt;}
.ws178{word-spacing:-11.600236pt;}
.ws1c1{word-spacing:-10.835776pt;}
.ws1c3{word-spacing:-10.818752pt;}
.ws1c4{word-spacing:-10.767680pt;}
.ws1c6{word-spacing:-10.729376pt;}
.ws1c2{word-spacing:-10.716608pt;}
.ws134{word-spacing:-10.708096pt;}
.ws1c5{word-spacing:-10.576160pt;}
.ws55{word-spacing:-8.650368pt;}
.ws53{word-spacing:-8.646912pt;}
.ws4f{word-spacing:-8.640000pt;}
.ws52{word-spacing:-8.636544pt;}
.ws51{word-spacing:-8.633088pt;}
.ws17c{word-spacing:-8.446533pt;}
.wsf9{word-spacing:-7.497888pt;}
.ws17a{word-spacing:-6.728341pt;}
.wsfa{word-spacing:-6.435488pt;}
.ws17f{word-spacing:-3.380736pt;}
.wsa1{word-spacing:-1.848192pt;}
.wsac{word-spacing:-0.242592pt;}
.ws1e1{word-spacing:-0.238336pt;}
.ws162{word-spacing:-0.217056pt;}
.ws208{word-spacing:-0.208544pt;}
.ws1dc{word-spacing:-0.204288pt;}
.ws211{word-spacing:-0.200032pt;}
.wse5{word-spacing:-0.195776pt;}
.ws1f3{word-spacing:-0.191520pt;}
.ws1f8{word-spacing:-0.187264pt;}
.ws109{word-spacing:-0.178752pt;}
.ws207{word-spacing:-0.174496pt;}
.ws14c{word-spacing:-0.161728pt;}
.ws1ce{word-spacing:-0.153216pt;}
.wsad{word-spacing:-0.148960pt;}
.ws187{word-spacing:-0.144704pt;}
.ws1ad{word-spacing:-0.140448pt;}
.ws163{word-spacing:-0.134208pt;}
.wsa{word-spacing:-0.127872pt;}
.ws218{word-spacing:-0.126752pt;}
.ws1e6{word-spacing:-0.123424pt;}
.ws42{word-spacing:-0.119296pt;}
.ws9{word-spacing:-0.117216pt;}
.ws115{word-spacing:-0.114912pt;}
.ws98{word-spacing:-0.111840pt;}
.ws10e{word-spacing:-0.106400pt;}
.wsdc{word-spacing:-0.102144pt;}
.ws116{word-spacing:-0.082016pt;}
.ws6{word-spacing:-0.053440pt;}
.ws210{word-spacing:-0.051072pt;}
.ws8c{word-spacing:-0.048096pt;}
.wsb6{word-spacing:-0.042752pt;}
.ws12e{word-spacing:-0.037408pt;}
.ws12f{word-spacing:-0.032064pt;}
.ws5f{word-spacing:-0.026720pt;}
.ws97{word-spacing:-0.021376pt;}
.wse{word-spacing:-0.016032pt;}
.ws5a{word-spacing:-0.010688pt;}
.wsb{word-spacing:-0.006400pt;}
.ws36{word-spacing:-0.005344pt;}
.ws8{word-spacing:-0.004256pt;}
.wsd{word-spacing:0.000000pt;}
.ws10c{word-spacing:0.004256pt;}
.wsf{word-spacing:0.005344pt;}
.wsc{word-spacing:0.006400pt;}
.ws56{word-spacing:0.008512pt;}
.ws3a{word-spacing:0.010688pt;}
.ws2b{word-spacing:0.016032pt;}
.wsb5{word-spacing:0.021376pt;}
.ws5c{word-spacing:0.026720pt;}
.ws41{word-spacing:0.037408pt;}
.ws1b{word-spacing:0.042752pt;}
.ws10{word-spacing:0.048096pt;}
.wsd8{word-spacing:0.051072pt;}
.ws27{word-spacing:0.053440pt;}
.ws1a9{word-spacing:0.055328pt;}
.ws16e{word-spacing:0.058784pt;}
.ws76{word-spacing:0.064128pt;}
.ws1a{word-spacing:0.069472pt;}
.ws35{word-spacing:0.074816pt;}
.ws77{word-spacing:0.080160pt;}
.ws32{word-spacing:0.085504pt;}
.ws71{word-spacing:0.096192pt;}
.ws7b{word-spacing:0.106880pt;}
.wsef{word-spacing:0.112224pt;}
.ws6a{word-spacing:0.117568pt;}
.ws4c{word-spacing:0.122912pt;}
.ws78{word-spacing:0.128256pt;}
.ws46{word-spacing:0.133600pt;}
.ws165{word-spacing:0.138944pt;}
.ws72{word-spacing:0.144288pt;}
.ws1e5{word-spacing:0.144704pt;}
.ws74{word-spacing:0.149632pt;}
.ws1e4{word-spacing:0.153216pt;}
.ws23{word-spacing:0.154976pt;}
.ws20f{word-spacing:0.161728pt;}
.ws58{word-spacing:0.181696pt;}
.ws148{word-spacing:0.225568pt;}
.wsbe{word-spacing:0.256512pt;}
.ws1e{word-spacing:0.272544pt;}
.ws86{word-spacing:0.283232pt;}
.ws90{word-spacing:0.288576pt;}
.ws79{word-spacing:0.309952pt;}
.ws28{word-spacing:0.320640pt;}
.ws156{word-spacing:0.379424pt;}
.ws157{word-spacing:0.406144pt;}
.ws20e{word-spacing:0.468160pt;}
.ws147{word-spacing:0.497952pt;}
.ws69{word-spacing:0.635936pt;}
.wscc{word-spacing:0.646624pt;}
.wsc3{word-spacing:0.651968pt;}
.ws130{word-spacing:0.689376pt;}
.ws22{word-spacing:0.694720pt;}
.ws21{word-spacing:0.705408pt;}
.wse8{word-spacing:0.774880pt;}
.ws6c{word-spacing:0.956576pt;}
.ws154{word-spacing:0.972608pt;}
.ws40{word-spacing:0.988640pt;}
.ws111{word-spacing:1.038464pt;}
.ws9b{word-spacing:1.106208pt;}
.ws110{word-spacing:1.119328pt;}
.ws112{word-spacing:1.140608pt;}
.ws1c{word-spacing:1.271872pt;}
.ws15a{word-spacing:1.277216pt;}
.ws15{word-spacing:1.282560pt;}
.ws1b9{word-spacing:1.309280pt;}
.ws11a{word-spacing:1.357376pt;}
.ws179{word-spacing:1.360315pt;}
.ws195{word-spacing:1.373408pt;}
.ws196{word-spacing:1.378752pt;}
.ws1cc{word-spacing:1.430016pt;}
.ws174{word-spacing:1.581824pt;}
.ws8a{word-spacing:1.587168pt;}
.ws167{word-spacing:1.597856pt;}
.ws19d{word-spacing:1.603200pt;}
.ws48{word-spacing:1.619232pt;}
.ws177{word-spacing:1.624576pt;}
.ws184{word-spacing:1.635264pt;}
.wsed{word-spacing:1.640608pt;}
.wsee{word-spacing:1.678016pt;}
.ws119{word-spacing:1.688704pt;}
.ws194{word-spacing:1.704736pt;}
.ws10f{word-spacing:1.761984pt;}
.ws1f2{word-spacing:1.766240pt;}
.ws146{word-spacing:1.779008pt;}
.ws70{word-spacing:1.891776pt;}
.ws125{word-spacing:1.902464pt;}
.wsc5{word-spacing:1.907808pt;}
.ws24{word-spacing:1.913152pt;}
.ws11{word-spacing:1.923840pt;}
.ws12d{word-spacing:1.961248pt;}
.ws183{word-spacing:1.966592pt;}
.ws14e{word-spacing:1.998656pt;}
.wsc4{word-spacing:2.052096pt;}
.ws1eb{word-spacing:2.072672pt;}
.wse0{word-spacing:2.174816pt;}
.ws15e{word-spacing:2.223104pt;}
.ws158{word-spacing:2.228448pt;}
.ws6f{word-spacing:2.233792pt;}
.wsc1{word-spacing:2.249824pt;}
.ws12c{word-spacing:2.255168pt;}
.ws166{word-spacing:2.260512pt;}
.ws118{word-spacing:2.292576pt;}
.ws39{word-spacing:2.303264pt;}
.ws1a8{word-spacing:2.319296pt;}
.wsfe{word-spacing:2.362048pt;}
.ws149{word-spacing:2.408896pt;}
.ws1ed{word-spacing:2.430176pt;}
.ws1de{word-spacing:2.468480pt;}
.ws1dd{word-spacing:2.485504pt;}
.ws1ec{word-spacing:2.519552pt;}
.ws59{word-spacing:2.543744pt;}
.ws8f{word-spacing:2.581152pt;}
.ws11f{word-spacing:2.602528pt;}
.ws14d{word-spacing:2.607872pt;}
.ws193{word-spacing:2.613216pt;}
.ws38{word-spacing:2.623904pt;}
.ws138{word-spacing:2.629248pt;}
.ws120{word-spacing:2.661312pt;}
.ws205{word-spacing:2.753632pt;}
.ws206{word-spacing:2.757888pt;}
.ws21a{word-spacing:2.864384pt;}
.ws11d{word-spacing:2.885760pt;}
.ws1b4{word-spacing:2.901792pt;}
.ws137{word-spacing:2.907136pt;}
.ws29{word-spacing:2.912480pt;}
.ws129{word-spacing:2.928512pt;}
.ws128{word-spacing:2.949888pt;}
.ws191{word-spacing:3.003328pt;}
.ws14a{word-spacing:3.034528pt;}
.ws1ae{word-spacing:3.043040pt;}
.ws15d{word-spacing:3.195712pt;}
.ws12{word-spacing:3.206400pt;}
.wsf3{word-spacing:3.211744pt;}
.wsc7{word-spacing:3.217088pt;}
.ws5d{word-spacing:3.249152pt;}
.ws104{word-spacing:3.254496pt;}
.wsb0{word-spacing:3.281216pt;}
.ws1db{word-spacing:3.366496pt;}
.ws1da{word-spacing:3.383520pt;}
.ws145{word-spacing:3.421824pt;}
.wsc6{word-spacing:3.494976pt;}
.ws1a1{word-spacing:3.521696pt;}
.ws100{word-spacing:3.532384pt;}
.wsaf{word-spacing:3.543072pt;}
.ws18{word-spacing:3.559104pt;}
.ws124{word-spacing:3.580480pt;}
.ws192{word-spacing:3.655296pt;}
.ws1f9{word-spacing:3.685696pt;}
.ws144{word-spacing:3.724000pt;}
.ws169{word-spacing:3.836992pt;}
.ws91{word-spacing:3.842336pt;}
.ws122{word-spacing:3.858368pt;}
.ws127{word-spacing:3.890432pt;}
.ws21b{word-spacing:3.991968pt;}
.wsc2{word-spacing:4.141600pt;}
.wsd1{word-spacing:4.173664pt;}
.ws1c0{word-spacing:4.216416pt;}
.ws152{word-spacing:4.296576pt;}
.ws13f{word-spacing:4.358144pt;}
.wsbd{word-spacing:4.446208pt;}
.ws73{word-spacing:4.467584pt;}
.wsa9{word-spacing:4.472928pt;}
.ws16b{word-spacing:4.483616pt;}
.ws1d0{word-spacing:4.499648pt;}
.ws1bf{word-spacing:4.531712pt;}
.ws182{word-spacing:4.537056pt;}
.ws16a{word-spacing:4.547744pt;}
.ws140{word-spacing:4.630528pt;}
.wsdd{word-spacing:4.647552pt;}
.ws20b{word-spacing:4.651808pt;}
.wse1{word-spacing:4.724160pt;}
.ws5b{word-spacing:4.777536pt;}
.ws19c{word-spacing:4.793568pt;}
.ws3e{word-spacing:4.804256pt;}
.ws34{word-spacing:4.873728pt;}
.ws1cf{word-spacing:4.911136pt;}
.ws5e{word-spacing:4.937856pt;}
.ws1df{word-spacing:4.953984pt;}
.ws1e0{word-spacing:4.971008pt;}
.ws200{word-spacing:5.034848pt;}
.ws14b{word-spacing:5.039104pt;}
.ws7d{word-spacing:5.103520pt;}
.ws150{word-spacing:5.108864pt;}
.ws1d3{word-spacing:5.124896pt;}
.wsd0{word-spacing:5.135584pt;}
.ws11c{word-spacing:5.167648pt;}
.ws7c{word-spacing:5.172992pt;}
.ws151{word-spacing:5.189024pt;}
.ws123{word-spacing:5.194368pt;}
.ws2e{word-spacing:5.215744pt;}
.ws143{word-spacing:5.307232pt;}
.ws1ff{word-spacing:5.392352pt;}
.ws85{word-spacing:5.429504pt;}
.ws11b{word-spacing:5.536384pt;}
.ws121{word-spacing:5.573792pt;}
.ws108{word-spacing:5.579616pt;}
.ws37{word-spacing:5.600512pt;}
.ws1fb{word-spacing:5.622176pt;}
.ws1fa{word-spacing:5.711552pt;}
.wsb2{word-spacing:5.744800pt;}
.wsbf{word-spacing:5.750144pt;}
.wsd5{word-spacing:5.766176pt;}
.wsf2{word-spacing:5.771520pt;}
.ws84{word-spacing:5.792896pt;}
.ws1be{word-spacing:5.835648pt;}
.ws13a{word-spacing:5.894432pt;}
.ws1e8{word-spacing:5.894560pt;}
.ws141{word-spacing:5.941376pt;}
.wsb1{word-spacing:6.060096pt;}
.ws57{word-spacing:6.081472pt;}
.wse9{word-spacing:6.183008pt;}
.ws1f5{word-spacing:6.230784pt;}
.ws1e7{word-spacing:6.358464pt;}
.ws2c{word-spacing:6.364704pt;}
.wsaa{word-spacing:6.391424pt;}
.ws105{word-spacing:6.396768pt;}
.ws62{word-spacing:6.407456pt;}
.ws176{word-spacing:6.428832pt;}
.ws2a{word-spacing:6.466240pt;}
.ws175{word-spacing:6.482272pt;}
.ws1f4{word-spacing:6.669152pt;}
.ws61{word-spacing:6.690688pt;}
.ws136{word-spacing:6.701376pt;}
.wsa8{word-spacing:6.722752pt;}
.wsa7{word-spacing:6.792224pt;}
.ws219{word-spacing:6.797568pt;}
.ws30{word-spacing:6.818944pt;}
.ws161{word-spacing:6.881952pt;}
.ws1a7{word-spacing:7.016672pt;}
.ws1d2{word-spacing:7.022016pt;}
.ws1a6{word-spacing:7.027360pt;}
.ws14f{word-spacing:7.032704pt;}
.ws160{word-spacing:7.070112pt;}
.wsf7{word-spacing:7.075456pt;}
.wsf5{word-spacing:7.096832pt;}
.ws18d{word-spacing:7.305248pt;}
.ws18b{word-spacing:7.310592pt;}
.ws18c{word-spacing:7.326624pt;}
.wsf4{word-spacing:7.353344pt;}
.ws44{word-spacing:7.364032pt;}
.ws126{word-spacing:7.374720pt;}
.ws197{word-spacing:7.380064pt;}
.wsf6{word-spacing:7.385408pt;}
.ws15f{word-spacing:7.401440pt;}
.ws43{word-spacing:7.465568pt;}
.ws139{word-spacing:7.486944pt;}
.ws1fd{word-spacing:7.545888pt;}
.ws1fe{word-spacing:7.554400pt;}
.ws13{word-spacing:7.647264pt;}
.ws8e{word-spacing:7.673984pt;}
.ws3d{word-spacing:7.684672pt;}
.wsf8{word-spacing:7.738112pt;}
.ws213{word-spacing:7.848064pt;}
.ws1ea{word-spacing:7.865088pt;}
.wse2{word-spacing:7.869344pt;}
.ws1fc{word-spacing:7.873600pt;}
.ws214{word-spacing:7.877856pt;}
.ws92{word-spacing:8.042720pt;}
.wsd7{word-spacing:8.122880pt;}
.ws1e9{word-spacing:8.180032pt;}
.ws94{word-spacing:8.320608pt;}
.wsae{word-spacing:8.331296pt;}
.ws11e{word-spacing:8.341984pt;}
.ws3b{word-spacing:8.363360pt;}
.ws12b{word-spacing:8.384736pt;}
.ws82{word-spacing:8.400768pt;}
.wse7{word-spacing:8.411456pt;}
.ws81{word-spacing:8.416800pt;}
.ws4d{word-spacing:8.432832pt;}
.wsa6{word-spacing:8.651936pt;}
.ws12a{word-spacing:8.662624pt;}
.ws168{word-spacing:8.785536pt;}
.ws6b{word-spacing:8.967232pt;}
.ws19e{word-spacing:8.972576pt;}
.ws3c{word-spacing:8.988608pt;}
.ws31{word-spacing:9.031360pt;}
.ws1cd{word-spacing:9.133376pt;}
.ws20a{word-spacing:9.137632pt;}
.ws204{word-spacing:9.239776pt;}
.ws1d6{word-spacing:9.255808pt;}
.ws6d{word-spacing:9.261152pt;}
.ws8b{word-spacing:9.271840pt;}
.ws19{word-spacing:9.287872pt;}
.ws89{word-spacing:9.330624pt;}
.wsd2{word-spacing:9.335968pt;}
.wsd3{word-spacing:9.352000pt;}
.ws1af{word-spacing:9.456832pt;}
.ws209{word-spacing:9.554720pt;}
.ws106{word-spacing:9.603168pt;}
.ws15b{word-spacing:9.608512pt;}
.ws9d{word-spacing:9.613856pt;}
.ws1d4{word-spacing:9.624544pt;}
.ws1ba{word-spacing:9.635232pt;}
.ws96{word-spacing:9.710048pt;}
.ws1d8{word-spacing:9.797312pt;}
.ws1d9{word-spacing:9.810080pt;}
.ws186{word-spacing:9.907776pt;}
.ws3f{word-spacing:9.939840pt;}
.ws8d{word-spacing:9.966560pt;}
.ws45{word-spacing:9.998624pt;}
.ws135{word-spacing:10.046720pt;}
.ws95{word-spacing:10.052064pt;}
.wsf1{word-spacing:10.094816pt;}
.ws171{word-spacing:10.196352pt;}
.ws68{word-spacing:10.244448pt;}
.ws16{word-spacing:10.255136pt;}
.ws1bb{word-spacing:10.265824pt;}
.ws172{word-spacing:10.303232pt;}
.ws188{word-spacing:10.388736pt;}
.ws185{word-spacing:10.394080pt;}
.ws114{word-spacing:10.418688pt;}
.ws1d7{word-spacing:10.503808pt;}
.wsc8{word-spacing:10.533024pt;}
.wsc9{word-spacing:10.538368pt;}
.ws17{word-spacing:10.543712pt;}
.ws80{word-spacing:10.554400pt;}
.ws75{word-spacing:10.559744pt;}
.ws170{word-spacing:10.613184pt;}
.wscf{word-spacing:10.677312pt;}
.ws113{word-spacing:10.746400pt;}
.wscd{word-spacing:10.816256pt;}
.wsce{word-spacing:10.826944pt;}
.ws49{word-spacing:10.880384pt;}
.ws88{word-spacing:10.912448pt;}
.ws9a{word-spacing:10.917792pt;}
.ws4a{word-spacing:10.928480pt;}
.ws87{word-spacing:10.933824pt;}
.wsfd{word-spacing:10.949856pt;}
.ws16f{word-spacing:10.971232pt;}
.ws20d{word-spacing:11.048576pt;}
.ws159{word-spacing:11.190336pt;}
.wsfc{word-spacing:11.222400pt;}
.ws83{word-spacing:11.281184pt;}
.ws19b{word-spacing:11.323936pt;}
.ws99{word-spacing:11.334624pt;}
.ws20c{word-spacing:11.350752pt;}
.ws1e3{word-spacing:11.508224pt;}
.wsd4{word-spacing:11.510976pt;}
.ws1d{word-spacing:11.532352pt;}
.ws14{word-spacing:11.548384pt;}
.wsbc{word-spacing:11.655264pt;}
.ws1b1{word-spacing:11.763584pt;}
.ws1e2{word-spacing:11.789120pt;}
.wsbb{word-spacing:11.810240pt;}
.ws153{word-spacing:11.826272pt;}
.ws67{word-spacing:11.847648pt;}
.ws16d{word-spacing:11.852992pt;}
.ws66{word-spacing:11.863680pt;}
.wsba{word-spacing:11.901088pt;}
.ws1bd{word-spacing:11.922464pt;}
.wsab{word-spacing:11.975904pt;}
.ws1bc{word-spacing:12.157600pt;}
.ws155{word-spacing:12.178976pt;}
.ws117{word-spacing:12.216384pt;}
.ws7a{word-spacing:12.285856pt;}
.ws1f7{word-spacing:12.333888pt;}
.wse3{word-spacing:12.367936pt;}
.wse4{word-spacing:12.397728pt;}
.wsb3{word-spacing:12.462208pt;}
.ws1b6{word-spacing:12.488928pt;}
.ws1f6{word-spacing:12.665856pt;}
.wseb{word-spacing:12.766816pt;}
.ws103{word-spacing:12.772160pt;}
.ws1b7{word-spacing:12.804224pt;}
.ws1cb{word-spacing:12.809568pt;}
.ws1b8{word-spacing:12.932480pt;}
.ws1d1{word-spacing:12.948512pt;}
.ws64{word-spacing:13.135552pt;}
.wse6{word-spacing:13.418784pt;}
.ws1a2{word-spacing:13.434816pt;}
.ws1d5{word-spacing:13.472224pt;}
.ws63{word-spacing:13.493600pt;}
.ws101{word-spacing:13.766144pt;}
.ws102{word-spacing:13.819584pt;}
.wsf0{word-spacing:13.889056pt;}
.ws26{word-spacing:14.076096pt;}
.ws60{word-spacing:14.225728pt;}
.ws202{word-spacing:14.240576pt;}
.ws203{word-spacing:14.257600pt;}
.ws93{word-spacing:14.386048pt;}
.ws1a3{word-spacing:14.412768pt;}
.ws189{word-spacing:14.690656pt;}
.ws1a4{word-spacing:14.706688pt;}
.ws1a0{word-spacing:14.728064pt;}
.wsea{word-spacing:14.765472pt;}
.wscb{word-spacing:14.781504pt;}
.ws1ef{word-spacing:14.976864pt;}
.ws1a5{word-spacing:15.005952pt;}
.ws217{word-spacing:15.023680pt;}
.ws1c9{word-spacing:15.027328pt;}
.wsca{word-spacing:15.059392pt;}
.ws19f{word-spacing:15.075424pt;}
.wsb9{word-spacing:15.102144pt;}
.ws216{word-spacing:15.206688pt;}
.ws1ee{word-spacing:15.215200pt;}
.ws1f1{word-spacing:15.283296pt;}
.ws215{word-spacing:15.296064pt;}
.wsb8{word-spacing:15.326592pt;}
.wsb7{word-spacing:15.342624pt;}
.ws16c{word-spacing:15.481568pt;}
.ws19a{word-spacing:16.015968pt;}
.ws6e{word-spacing:16.064064pt;}
.ws164{word-spacing:16.069408pt;}
.ws13b{word-spacing:16.144224pt;}
.ws173{word-spacing:16.320576pt;}
.ws1b0{word-spacing:16.572864pt;}
.ws190{word-spacing:16.710688pt;}
.ws18f{word-spacing:16.897728pt;}
.ws18e{word-spacing:16.951168pt;}
.ws142{word-spacing:17.134656pt;}
.wsb4{word-spacing:17.405408pt;}
.ws1f0{word-spacing:17.445344pt;}
.ws1b5{word-spacing:18.228384pt;}
.ws212{word-spacing:18.743424pt;}
.ws9c{word-spacing:19.270464pt;}
.ws15c{word-spacing:19.532320pt;}
.wsd6{word-spacing:19.826240pt;}
.ws4b{word-spacing:19.842272pt;}
.wsdf{word-spacing:20.007456pt;}
.wsde{word-spacing:20.020224pt;}
.ws9e{word-spacing:20.125504pt;}
.wsec{word-spacing:20.782816pt;}
.wsc0{word-spacing:20.868320pt;}
.ws201{word-spacing:22.241856pt;}
.ws20{word-spacing:23.363968pt;}
.ws1f{word-spacing:23.508256pt;}
.wsff{word-spacing:23.668576pt;}
.ws47{word-spacing:23.722016pt;}
.ws107{word-spacing:24.489024pt;}
.ws199{word-spacing:24.951136pt;}
.ws7e{word-spacing:25.009920pt;}
.ws7f{word-spacing:25.020608pt;}
.ws2d{word-spacing:27.852928pt;}
.ws2f{word-spacing:29.178240pt;}
.ws33{word-spacing:30.701280pt;}
.ws1ca{word-spacing:32.630464pt;}
.ws65{word-spacing:33.709952pt;}
.ws198{word-spacing:36.830848pt;}
.ws25{word-spacing:39.823488pt;}
.wsd9{word-spacing:65.278528pt;}
.wsda{word-spacing:70.717696pt;}
.wsdb{word-spacing:70.726208pt;}
.ws1ac{word-spacing:77.127232pt;}
.ws13c{word-spacing:84.507136pt;}
.ws1b3{word-spacing:99.190336pt;}
.ws18a{word-spacing:126.668832pt;}
.ws13d{word-spacing:132.808480pt;}
.ws1aa{word-spacing:133.119168pt;}
.ws10d{word-spacing:137.928448pt;}
.ws1ab{word-spacing:138.566848pt;}
.ws10b{word-spacing:144.316704pt;}
.wsa0{word-spacing:145.878576pt;}
.ws13e{word-spacing:156.488864pt;}
.ws10a{word-spacing:276.188864pt;}
.ws1b2{word-spacing:276.827264pt;}
.ws9f{word-spacing:336.016552pt;}
.wsa2{word-spacing:357.501790pt;}
.ws7{word-spacing:372.451072pt;}
.ws17e{word-spacing:489.777312pt;}
.ws180{word-spacing:827.436110pt;}
.wsa3{word-spacing:951.600304pt;}
._26{margin-left:-795.388204pt;}
._7{margin-left:-503.921120pt;}
._0{margin-left:-372.476608pt;}
._9{margin-left:-325.977744pt;}
._8{margin-left:-288.917456pt;}
._a{margin-left:-274.454064pt;}
._48{margin-left:-259.388928pt;}
._b{margin-left:-222.516816pt;}
._44{margin-left:-203.577216pt;}
._41{margin-left:-198.462880pt;}
._43{margin-left:-195.259904pt;}
._42{margin-left:-188.541184pt;}
._c{margin-left:-183.474848pt;}
._3f{margin-left:-180.093605pt;}
._3e{margin-left:-174.654038pt;}
._47{margin-left:-165.350016pt;}
._29{margin-left:-135.774086pt;}
._40{margin-left:-125.855154pt;}
._45{margin-left:-115.851584pt;}
._46{margin-left:-105.761920pt;}
._28{margin-left:-67.394183pt;}
._27{margin-left:-44.577689pt;}
._3b{margin-left:-17.072383pt;}
._3a{margin-left:-12.048295pt;}
._2{margin-left:-10.559744pt;}
._37{margin-left:-8.363744pt;}
._16{margin-left:-5.949888pt;}
._38{margin-left:-4.160448pt;}
._2b{margin-left:-3.200512pt;}
._1{margin-left:-0.910784pt;}
._3{width:1.010016pt;}
._6{width:3.224736pt;}
._36{width:5.754112pt;}
._3d{width:6.745262pt;}
._25{width:7.991584pt;}
._2d{width:11.231584pt;}
._24{width:13.878816pt;}
._54{width:17.994368pt;}
._1a{width:19.764864pt;}
._5{width:27.276704pt;}
._39{width:28.800297pt;}
._30{width:30.043104pt;}
._52{width:33.967136pt;}
._19{width:46.645760pt;}
._3c{width:52.142642pt;}
._50{width:54.642784pt;}
._17{width:56.962304pt;}
._18{width:61.171488pt;}
._13{width:62.401472pt;}
._10{width:67.895968pt;}
._4f{width:69.172768pt;}
._22{width:70.964544pt;}
._11{width:74.241664pt;}
._4b{width:75.892992pt;}
._4e{width:78.233792pt;}
._21{width:85.494528pt;}
._1c{width:86.775584pt;}
._14{width:90.291040pt;}
._15{width:91.197568pt;}
._f{width:97.428352pt;}
._4d{width:99.198848pt;}
._2f{width:102.135488pt;}
._12{width:107.255456pt;}
._4c{width:115.252480pt;}
._2c{width:120.653344pt;}
._33{width:129.348352pt;}
._35{width:130.642176pt;}
._53{width:133.655424pt;}
._31{width:136.034528pt;}
._2a{width:140.882112pt;}
._2e{width:143.108000pt;}
._23{width:151.564672pt;}
._20{width:153.433056pt;}
._32{width:154.948192pt;}
._e{width:168.644000pt;}
._1e{width:173.491584pt;}
._1f{width:174.398112pt;}
._1d{width:190.456000pt;}
._34{width:201.061952pt;}
._d{width:226.963968pt;}
._49{width:234.960992pt;}
._4a{width:236.803840pt;}
._51{width:243.281472pt;}
._1b{width:254.164064pt;}
._4{width:1446.035584pt;}
.fs17{font-size:24.202667pt;}
.fse{font-size:26.560000pt;}
.fsd{font-size:32.000000pt;}
.fsc{font-size:33.506133pt;}
.fs19{font-size:33.786133pt;}
.fs13{font-size:33.823467pt;}
.fs9{font-size:34.465067pt;}
.fs5{font-size:34.560000pt;}
.fs14{font-size:37.440000pt;}
.fs16{font-size:38.389867pt;}
.fs15{font-size:41.727467pt;}
.fs0{font-size:42.560000pt;}
.fsf{font-size:43.578667pt;}
.fs7{font-size:51.440000pt;}
.fs3{font-size:53.440000pt;}
.fs8{font-size:54.365507pt;}
.fs6{font-size:56.479151pt;}
.fsb{font-size:57.440000pt;}
.fs1b{font-size:57.920000pt;}
.fs11{font-size:57.983467pt;}
.fs1a{font-size:61.213596pt;}
.fs12{font-size:61.281069pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.fsa{font-size:75.838933pt;}
.fs18{font-size:76.472533pt;}
.fs10{font-size:76.556267pt;}
.fs1{font-size:106.560000pt;}
.yc6{bottom:-0.399600pt;}
.y15e{bottom:-0.319600pt;}
.y161{bottom:-0.239600pt;}
.y0{bottom:0.000000pt;}
.y1fc{bottom:2.320400pt;}
.yca{bottom:2.800533pt;}
.y17f{bottom:4.240400pt;}
.y2d{bottom:101.141115pt;}
.y51{bottom:106.421144pt;}
.y155{bottom:110.186123pt;}
.y188{bottom:111.148667pt;}
.y266{bottom:112.501875pt;}
.y232{bottom:114.178736pt;}
.yf9{bottom:115.066595pt;}
.y1c6{bottom:115.939987pt;}
.y131{bottom:116.100995pt;}
.y1eb{bottom:116.583795pt;}
.y2c{bottom:116.741587pt;}
.yb8{bottom:117.704267pt;}
.y277{bottom:122.986595pt;}
.y2b1{bottom:124.105595pt;}
.y154{bottom:125.786595pt;}
.y50{bottom:126.021600pt;}
.y187{bottom:127.628227pt;}
.y265{bottom:128.102347pt;}
.yf8{bottom:128.667067pt;}
.y231{bottom:129.779208pt;}
.yf6{bottom:130.665619pt;}
.yf7{bottom:130.667067pt;}
.y1c5{bottom:131.540459pt;}
.y130{bottom:131.701467pt;}
.y1ea{bottom:132.184267pt;}
.y2b{bottom:132.342059pt;}
.y276{bottom:138.587067pt;}
.yb7{bottom:141.304707pt;}
.y153{bottom:141.387067pt;}
.y264{bottom:143.702819pt;}
.y186{bottom:144.107787pt;}
.y230{bottom:145.379680pt;}
.y82{bottom:146.825715pt;}
.y4f{bottom:146.982104pt;}
.y1c4{bottom:147.140931pt;}
.yf5{bottom:147.145179pt;}
.y12f{bottom:147.301939pt;}
.y1e9{bottom:147.784739pt;}
.y2b0{bottom:147.945179pt;}
.y2a{bottom:154.181651pt;}
.yb6{bottom:156.905179pt;}
.y263{bottom:159.303291pt;}
.y185{bottom:160.587347pt;}
.y22f{bottom:160.980152pt;}
.y4e{bottom:162.582576pt;}
.y1c3{bottom:162.741403pt;}
.yf4{bottom:162.745651pt;}
.y12e{bottom:162.902411pt;}
.y275{bottom:163.147200pt;}
.y1e8{bottom:163.385211pt;}
.y2af{bottom:163.545651pt;}
.y152{bottom:165.946579pt;}
.y29{bottom:169.782123pt;}
.y81{bottom:170.426155pt;}
.yb5{bottom:172.505651pt;}
.y262{bottom:174.903763pt;}
.y1c2{bottom:178.341875pt;}
.yf3{bottom:178.346123pt;}
.y12d{bottom:178.502883pt;}
.y1e7{bottom:178.985683pt;}
.y2ae{bottom:179.146123pt;}
.y22e{bottom:184.580592pt;}
.y184{bottom:185.066875pt;}
.y28{bottom:185.382595pt;}
.y80{bottom:186.026627pt;}
.y4d{bottom:187.062104pt;}
.y151{bottom:187.787067pt;}
.yb4{bottom:188.106123pt;}
.y261{bottom:190.504235pt;}
.y1c1{bottom:193.942347pt;}
.yf2{bottom:193.946595pt;}
.y12c{bottom:194.103355pt;}
.y2ad{bottom:194.746595pt;}
.y22d{bottom:200.181064pt;}
.y183{bottom:200.667347pt;}
.y1e6{bottom:202.586123pt;}
.y4c{bottom:202.662576pt;}
.yb3{bottom:203.706595pt;}
.y260{bottom:206.104707pt;}
.y27{bottom:207.222187pt;}
.yf1{bottom:207.547067pt;}
.y1c0{bottom:209.542819pt;}
.yef{bottom:209.543864pt;}
.yf0{bottom:209.547067pt;}
.y7e{bottom:209.627051pt;}
.y7f{bottom:209.627067pt;}
.y2ac{bottom:210.347067pt;}
.y274{bottom:212.024235pt;}
.y22c{bottom:215.781536pt;}
.y12b{bottom:217.703795pt;}
.y1e5{bottom:218.186595pt;}
.yb2{bottom:219.307067pt;}
.y25f{bottom:221.705179pt;}
.y4b{bottom:222.263032pt;}
.y26{bottom:222.822659pt;}
.y1bf{bottom:225.143291pt;}
.y17e{bottom:225.546667pt;}
.yee{bottom:226.023424pt;}
.y182{bottom:226.027067pt;}
.y273{bottom:227.624707pt;}
.y181{bottom:229.707067pt;}
.y180{bottom:229.787067pt;}
.y7d{bottom:230.106595pt;}
.y22b{bottom:231.382008pt;}
.y12a{bottom:233.304267pt;}
.y1e4{bottom:233.783587pt;}
.y2ab{bottom:235.147067pt;}
.y25e{bottom:237.305651pt;}
.y4a{bottom:237.863504pt;}
.y25{bottom:238.423131pt;}
.y150{bottom:240.186027pt;}
.y1be{bottom:240.743763pt;}
.yed{bottom:241.623896pt;}
.y272{bottom:243.225179pt;}
.yb1{bottom:243.867067pt;}
.y7b{bottom:245.704331pt;}
.y7c{bottom:245.707067pt;}
.y22a{bottom:246.982480pt;}
.y129{bottom:248.904739pt;}
.y1e3{bottom:249.384059pt;}
.y14f{bottom:252.746547pt;}
.y25d{bottom:252.906123pt;}
.y17d{bottom:253.785651pt;}
.y24{bottom:254.902691pt;}
.y1bd{bottom:256.344235pt;}
.yec{bottom:257.224368pt;}
.y49{bottom:257.463960pt;}
.y271{bottom:258.825651pt;}
.y229{bottom:262.582952pt;}
.y128{bottom:264.505211pt;}
.y14e{bottom:265.307283pt;}
.y7a{bottom:266.183875pt;}
.y25c{bottom:268.506595pt;}
.y17c{bottom:269.386123pt;}
.y23{bottom:270.503163pt;}
.y1e2{bottom:271.223651pt;}
.y1bc{bottom:271.944707pt;}
.yeb{bottom:272.824840pt;}
.y270{bottom:274.426123pt;}
.y48{bottom:277.064416pt;}
.y228{bottom:278.183424pt;}
.y14d{bottom:278.587067pt;}
.y2aa{bottom:279.545315pt;}
.y127{bottom:280.105683pt;}
.y79{bottom:281.784347pt;}
.y25b{bottom:284.107067pt;}
.y17b{bottom:284.986595pt;}
.y1bb{bottom:287.545179pt;}
.yea{bottom:288.425312pt;}
.yb0{bottom:288.746595pt;}
.y26f{bottom:290.026595pt;}
.y2a9{bottom:292.105835pt;}
.y22{bottom:292.342755pt;}
.y1e1{bottom:293.063243pt;}
.y227{bottom:293.783896pt;}
.y126{bottom:295.706155pt;}
.y47{bottom:296.664872pt;}
.y78{bottom:297.384819pt;}
.y179{bottom:300.585651pt;}
.y17a{bottom:300.587067pt;}
.y1ba{bottom:303.145651pt;}
.ye9{bottom:304.025784pt;}
.y14c{bottom:304.187200pt;}
.yaf{bottom:304.342984pt;}
.y26e{bottom:305.627067pt;}
.y21{bottom:307.943227pt;}
.y2a8{bottom:308.665931pt;}
.y25a{bottom:308.667200pt;}
.y226{bottom:309.384368pt;}
.y77{bottom:312.985291pt;}
.y178{bottom:317.065211pt;}
.y1e0{bottom:317.542771pt;}
.y1b9{bottom:318.746123pt;}
.y125{bottom:319.306595pt;}
.ye8{bottom:319.626256pt;}
.yae{bottom:319.943456pt;}
.y46{bottom:320.265312pt;}
.y2a7{bottom:321.226451pt;}
.y14b{bottom:323.307067pt;}
.y20{bottom:323.543699pt;}
.y225{bottom:324.984840pt;}
.y76{bottom:328.585763pt;}
.y177{bottom:332.665683pt;}
.y1df{bottom:333.143243pt;}
.y2a6{bottom:333.786971pt;}
.y1b8{bottom:334.346595pt;}
.y124{bottom:334.904267pt;}
.ye7{bottom:335.226728pt;}
.yad{bottom:335.543928pt;}
.y45{bottom:335.865784pt;}
.y26d{bottom:336.746547pt;}
.y1f{bottom:339.144171pt;}
.y224{bottom:340.585312pt;}
.y14a{bottom:342.187200pt;}
.ye6{bottom:348.827200pt;}
.y26c{bottom:349.307067pt;}
.y1b7{bottom:349.947067pt;}
.y2a5{bottom:350.347067pt;}
.y123{bottom:350.504739pt;}
.ye5{bottom:350.827200pt;}
.yac{bottom:351.144400pt;}
.y44{bottom:351.466256pt;}
.y75{bottom:352.186203pt;}
.y223{bottom:356.185784pt;}
.y176{bottom:356.266123pt;}
.y1de{bottom:356.743683pt;}
.y259{bottom:357.066547pt;}
.y26b{bottom:359.547067pt;}
.y1e{bottom:360.983763pt;}
.y149{bottom:361.387067pt;}
.y2a4{bottom:362.896155pt;}
.y122{bottom:366.105211pt;}
.yab{bottom:366.744872pt;}
.y258{bottom:369.627067pt;}
.y222{bottom:371.786256pt;}
.y175{bottom:371.866595pt;}
.y1dd{bottom:372.344155pt;}
.y2a3{bottom:375.456675pt;}
.ye4{bottom:375.707067pt;}
.y43{bottom:375.945784pt;}
.y1d{bottom:376.584235pt;}
.y74{bottom:376.665731pt;}
.y1b6{bottom:378.422907pt;}
.y148{bottom:380.827200pt;}
.y121{bottom:381.705683pt;}
.yaa{bottom:382.345344pt;}
.y221{bottom:387.386728pt;}
.y173{bottom:387.466923pt;}
.y174{bottom:387.467067pt;}
.y1dc{bottom:387.944627pt;}
.y2a2{bottom:388.016131pt;}
.y1b5{bottom:390.983427pt;}
.y42{bottom:391.546256pt;}
.y1c{bottom:392.184707pt;}
.y257{bottom:394.907200pt;}
.y73{bottom:397.145275pt;}
.y120{bottom:397.306155pt;}
.ya9{bottom:397.945816pt;}
.y147{bottom:400.267067pt;}
.y220{bottom:402.987200pt;}
.y1b4{bottom:403.543947pt;}
.y1db{bottom:403.545099pt;}
.y2a1{bottom:404.576227pt;}
.y41{bottom:407.146728pt;}
.y1b{bottom:407.785179pt;}
.y172{bottom:411.946451pt;}
.y11f{bottom:412.906627pt;}
.ya8{bottom:413.546288pt;}
.y256{bottom:414.107200pt;}
.y1b3{bottom:416.104467pt;}
.y72{bottom:416.745731pt;}
.y2a0{bottom:417.136747pt;}
.ye3{bottom:418.026595pt;}
.y1da{bottom:419.145571pt;}
.y146{bottom:419.707067pt;}
.y40{bottom:422.747200pt;}
.y21f{bottom:426.987200pt;}
.y171{bottom:428.426011pt;}
.y1b2{bottom:428.664987pt;}
.ya7{bottom:429.146760pt;}
.ye2{bottom:431.627067pt;}
.y1a{bottom:432.264707pt;}
.y255{bottom:433.307067pt;}
.ye1{bottom:433.627067pt;}
.ye0{bottom:433.628419pt;}
.y29f{bottom:433.696843pt;}
.y11e{bottom:434.507067pt;}
.y11d{bottom:436.507067pt;}
.y11c{bottom:436.507443pt;}
.y145{bottom:438.827200pt;}
.y71{bottom:440.346171pt;}
.y1d9{bottom:440.985163pt;}
.y1b1{bottom:441.225507pt;}
.y170{bottom:444.905571pt;}
.y29e{bottom:446.257363pt;}
.y3f{bottom:447.307067pt;}
.y19{bottom:447.865179pt;}
.y254{bottom:452.507067pt;}
.ya6{bottom:452.747507pt;}
.y11b{bottom:452.987003pt;}
.y1b0{bottom:453.786027pt;}
.y70{bottom:455.946643pt;}
.y1d8{bottom:456.585635pt;}
.ydf{bottom:458.107947pt;}
.y29d{bottom:458.817883pt;}
.y16f{bottom:461.385131pt;}
.y18{bottom:463.465651pt;}
.y21e{bottom:465.307507pt;}
.y1af{bottom:466.346547pt;}
.y144{bottom:469.147067pt;}
.ya5{bottom:469.227507pt;}
.y11a{bottom:469.466563pt;}
.y253{bottom:471.707067pt;}
.yde{bottom:474.587507pt;}
.y29c{bottom:475.377979pt;}
.y143{bottom:477.627067pt;}
.y1d7{bottom:478.425227pt;}
.y1ae{bottom:478.903947pt;}
.y17{bottom:479.066123pt;}
.y6f{bottom:480.426171pt;}
.y21d{bottom:481.787523pt;}
.ya4{bottom:485.702379pt;}
.y16e{bottom:485.864659pt;}
.y119{bottom:485.946123pt;}
.y29b{bottom:487.938499pt;}
.ydd{bottom:489.067067pt;}
.y252{bottom:490.907067pt;}
.ydc{bottom:491.067067pt;}
.ydb{bottom:491.067787pt;}
.y1ad{bottom:491.464467pt;}
.y1d6{bottom:494.025699pt;}
.y142{bottom:494.347067pt;}
.y16{bottom:494.666595pt;}
.y6e{bottom:500.026627pt;}
.y3e{bottom:500.178931pt;}
.y29a{bottom:500.499019pt;}
.y16d{bottom:501.465131pt;}
.y21c{bottom:502.267507pt;}
.y141{bottom:503.787067pt;}
.y1ac{bottom:504.024987pt;}
.yda{bottom:507.547347pt;}
.y251{bottom:510.107067pt;}
.ya3{bottom:510.181907pt;}
.y15{bottom:510.267067pt;}
.y118{bottom:510.425651pt;}
.y299{bottom:513.059539pt;}
.y140{bottom:513.866027pt;}
.y3d{bottom:515.779403pt;}
.y1ab{bottom:516.585507pt;}
.y1d5{bottom:517.145179pt;}
.y21b{bottom:518.747523pt;}
.y6d{bottom:523.618227pt;}
.y16c{bottom:525.065571pt;}
.ya2{bottom:525.782379pt;}
.y117{bottom:526.026123pt;}
.y13f{bottom:526.426547pt;}
.y1aa{bottom:529.146027pt;}
.y250{bottom:529.307067pt;}
.y298{bottom:529.619635pt;}
.y3c{bottom:531.379875pt;}
.yd9{bottom:532.026875pt;}
.y1d4{bottom:532.745651pt;}
.y14{bottom:534.827067pt;}
.y13e{bottom:538.987067pt;}
.y6c{bottom:539.218699pt;}
.y21a{bottom:539.227523pt;}
.y16b{bottom:540.666043pt;}
.ya1{bottom:541.382851pt;}
.y116{bottom:541.626595pt;}
.y1a9{bottom:541.706547pt;}
.y297{bottom:542.180155pt;}
.y3b{bottom:546.980347pt;}
.yd8{bottom:547.627347pt;}
.y1d3{bottom:548.346123pt;}
.y1a8{bottom:554.267067pt;}
.y296{bottom:554.740675pt;}
.y6b{bottom:554.819171pt;}
.y16a{bottom:556.266515pt;}
.ya0{bottom:556.983323pt;}
.y115{bottom:557.227067pt;}
.y24f{bottom:559.627067pt;}
.y219{bottom:559.706123pt;}
.y3a{bottom:562.580819pt;}
.y1d2{bottom:563.946595pt;}
.y24e{bottom:568.107067pt;}
.y6a{bottom:571.298731pt;}
.y295{bottom:571.300771pt;}
.y9f{bottom:572.583795pt;}
.yd6{bottom:576.587067pt;}
.yd5{bottom:576.667067pt;}
.y169{bottom:576.746059pt;}
.y1a7{bottom:579.546547pt;}
.y1d1{bottom:579.547067pt;}
.y114{bottom:580.583947pt;}
.y13{bottom:583.706595pt;}
.y294{bottom:583.861291pt;}
.yd7{bottom:584.027432pt;}
.y218{bottom:584.185651pt;}
.y24d{bottom:584.507067pt;}
.y39{bottom:586.181259pt;}
.y69{bottom:586.899203pt;}
.y9e{bottom:588.184267pt;}
.y1a6{bottom:592.107067pt;}
.y168{bottom:592.346531pt;}
.y113{bottom:593.144467pt;}
.y24c{bottom:593.304987pt;}
.y293{bottom:596.421811pt;}
.y12{bottom:599.307067pt;}
.y217{bottom:599.786123pt;}
.y68{bottom:602.499675pt;}
.y38{bottom:602.660819pt;}
.y9d{bottom:603.784739pt;}
.yd4{bottom:603.946563pt;}
.y1d0{bottom:604.107067pt;}
.y112{bottom:605.704987pt;}
.y24b{bottom:605.865507pt;}
.y1a5{bottom:611.307027pt;}
.y292{bottom:612.981907pt;}
.y1a3{bottom:613.626547pt;}
.y167{bottom:614.186123pt;}
.y216{bottom:615.386595pt;}
.y67{bottom:618.100147pt;}
.y111{bottom:618.265507pt;}
.y24a{bottom:618.426027pt;}
.y37{bottom:619.140379pt;}
.y9c{bottom:619.385211pt;}
.yd3{bottom:619.547035pt;}
.y26a{bottom:622.586027pt;}
.y11{bottom:623.867067pt;}
.y291{bottom:625.542427pt;}
.y1a2{bottom:626.187067pt;}
.y1a4{bottom:628.826851pt;}
.y215{bottom:628.987067pt;}
.y166{bottom:629.786595pt;}
.y110{bottom:630.826027pt;}
.y249{bottom:630.986547pt;}
.y214{bottom:630.987067pt;}
.y213{bottom:630.987507pt;}
.y66{bottom:633.700619pt;}
.y9b{bottom:634.985683pt;}
.y269{bottom:635.146547pt;}
.yd2{bottom:635.147507pt;}
.y290{bottom:638.101883pt;}
.y10f{bottom:643.386547pt;}
.y248{bottom:643.547067pt;}
.y36{bottom:643.619907pt;}
.y165{bottom:645.387067pt;}
.y212{bottom:647.466923pt;}
.y1a1{bottom:647.707027pt;}
.y268{bottom:647.707067pt;}
.y1cf{bottom:648.506027pt;}
.yd1{bottom:649.627067pt;}
.y1a0{bottom:650.027611pt;}
.yd0{bottom:651.627067pt;}
.ycf{bottom:651.627507pt;}
.y28f{bottom:654.661979pt;}
.y10e{bottom:655.947067pt;}
.y65{bottom:658.180147pt;}
.y9a{bottom:658.586123pt;}
.y1ce{bottom:661.066547pt;}
.y19f{bottom:662.587067pt;}
.y267{bottom:665.947067pt;}
.y35{bottom:667.220347pt;}
.y28e{bottom:667.222499pt;}
.yce{bottom:668.107067pt;}
.y164{bottom:668.507067pt;}
.y247{bottom:668.827067pt;}
.y10{bottom:672.742859pt;}
.y1cd{bottom:673.627067pt;}
.y64{bottom:673.780619pt;}
.y210{bottom:673.787097pt;}
.y99{bottom:674.186595pt;}
.y20e{bottom:677.467067pt;}
.y163{bottom:678.747067pt;}
.y28d{bottom:679.783019pt;}
.y10d{bottom:681.227067pt;}
.y34{bottom:682.820819pt;}
.y211{bottom:683.947432pt;}
.y19e{bottom:684.107160pt;}
.y20f{bottom:684.987200pt;}
.y19d{bottom:686.426680pt;}
.y246{bottom:688.027067pt;}
.yf{bottom:688.343331pt;}
.y98{bottom:689.786995pt;}
.y15f{bottom:689.787067pt;}
.ycd{bottom:691.227067pt;}
.y1cc{bottom:691.867067pt;}
.y28c{bottom:696.343115pt;}
.y63{bottom:698.260147pt;}
.y33{bottom:698.421291pt;}
.y19c{bottom:698.987200pt;}
.y10c{bottom:700.427067pt;}
.ye{bottom:703.943803pt;}
.y245{bottom:707.227067pt;}
.y28b{bottom:708.903635pt;}
.y20d{bottom:708.986123pt;}
.ycc{bottom:709.467067pt;}
.y97{bottom:709.626595pt;}
.y62{bottom:713.860619pt;}
.yd{bottom:719.544275pt;}
.y10b{bottom:719.627067pt;}
.y32{bottom:720.260883pt;}
.y19b{bottom:720.507067pt;}
.y28a{bottom:721.464155pt;}
.y20c{bottom:724.586595pt;}
.y96{bottom:725.227128pt;}
.y244{bottom:726.427067pt;}
.y61{bottom:733.461075pt;}
.y289{bottom:734.024675pt;}
.yc{bottom:735.144747pt;}
.y31{bottom:735.861355pt;}
.yc9{bottom:736.346667pt;}
.ycb{bottom:737.467067pt;}
.yc8{bottom:737.626667pt;}
.y10a{bottom:738.827200pt;}
.y19a{bottom:739.707067pt;}
.y20b{bottom:740.187067pt;}
.y95{bottom:745.066728pt;}
.y243{bottom:745.627067pt;}
.y60{bottom:749.061547pt;}
.y288{bottom:750.584771pt;}
.yb{bottom:750.745219pt;}
.y15d{bottom:755.626667pt;}
.y30{bottom:757.700947pt;}
.y109{bottom:758.027067pt;}
.y199{bottom:758.907067pt;}
.y93{bottom:760.665376pt;}
.y94{bottom:760.667200pt;}
.y287{bottom:763.144227pt;}
.y20a{bottom:763.307067pt;}
.y242{bottom:764.827200pt;}
.ya{bottom:766.345691pt;}
.y5f{bottom:768.662003pt;}
.y2f{bottom:773.301419pt;}
.y286{bottom:775.703683pt;}
.y108{bottom:777.227067pt;}
.y198{bottom:778.107160pt;}
.y197{bottom:780.426680pt;}
.y92{bottom:781.144920pt;}
.y209{bottom:781.547067pt;}
.y9{bottom:781.946163pt;}
.y241{bottom:784.027067pt;}
.y1f8{bottom:785.226533pt;}
.y201{bottom:787.226667pt;}
.y5e{bottom:788.262459pt;}
.y285{bottom:788.264203pt;}
.y206{bottom:789.067067pt;}
.y202{bottom:789.547067pt;}
.y203{bottom:791.466667pt;}
.y196{bottom:792.987200pt;}
.y204{bottom:793.787067pt;}
.y107{bottom:796.427067pt;}
.y8{bottom:797.546635pt;}
.y2e{bottom:797.780947pt;}
.y207{bottom:801.387067pt;}
.y1f9{bottom:801.547067pt;}
.y205{bottom:802.187067pt;}
.y240{bottom:803.227067pt;}
.y91{bottom:804.745360pt;}
.y284{bottom:804.824299pt;}
.y1fa{bottom:804.827067pt;}
.yc7{bottom:805.146667pt;}
.y5d{bottom:807.862915pt;}
.y7{bottom:813.386251pt;}
.y195{bottom:815.146643pt;}
.y106{bottom:815.627067pt;}
.y283{bottom:817.384819pt;}
.y90{bottom:820.345832pt;}
.y1f5{bottom:820.587067pt;}
.y23f{bottom:823.067123pt;}
.y1f6{bottom:824.187104pt;}
.y13d{bottom:825.141403pt;}
.y1f7{bottom:825.147200pt;}
.y282{bottom:829.945339pt;}
.y5c{bottom:831.463355pt;}
.y194{bottom:832.427067pt;}
.y160{bottom:834.026667pt;}
.yc5{bottom:834.106667pt;}
.y105{bottom:835.466443pt;}
.y8f{bottom:835.946304pt;}
.y1fd{bottom:838.907067pt;}
.y1fb{bottom:839.066667pt;}
.y1fe{bottom:839.467067pt;}
.y13c{bottom:840.741875pt;}
.y208{bottom:841.387067pt;}
.y200{bottom:841.547067pt;}
.y1ff{bottom:842.187067pt;}
.y23e{bottom:842.667067pt;}
.y6{bottom:844.986659pt;}
.y281{bottom:846.505435pt;}
.y5b{bottom:847.063827pt;}
.y193{bottom:847.627067pt;}
.y104{bottom:852.667067pt;}
.y8e{bottom:855.546760pt;}
.y13b{bottom:856.342347pt;}
.y280{bottom:859.065955pt;}
.y23d{bottom:860.187067pt;}
.yc4{bottom:860.424267pt;}
.y192{bottom:864.667067pt;}
.y103{bottom:867.867067pt;}
.y5a{bottom:871.543355pt;}
.y27f{bottom:871.626475pt;}
.y13a{bottom:871.942819pt;}
.yc3{bottom:876.024739pt;}
.y191{bottom:876.423763pt;}
.y5{bottom:876.587067pt;}
.y8d{bottom:879.146611pt;}
.y1f4{bottom:883.387067pt;}
.y102{bottom:884.587067pt;}
.y59{bottom:887.143827pt;}
.y139{bottom:887.543291pt;}
.y27e{bottom:888.186571pt;}
.yc2{bottom:891.625211pt;}
.y190{bottom:892.024235pt;}
.y23c{bottom:893.867507pt;}
.y8c{bottom:898.747067pt;}
.y8b{bottom:898.747523pt;}
.y27d{bottom:900.747091pt;}
.y162{bottom:902.746667pt;}
.y101{bottom:903.143603pt;}
.y138{bottom:903.143763pt;}
.y1f3{bottom:904.106595pt;}
.y58{bottom:906.744283pt;}
.yc1{bottom:907.225683pt;}
.y18f{bottom:907.624707pt;}
.y4{bottom:908.667067pt;}
.y23b{bottom:910.347067pt;}
.y23a{bottom:910.347963pt;}
.y27c{bottom:913.307611pt;}
.y1f2{bottom:917.707067pt;}
.y15c{bottom:918.742675pt;}
.y100{bottom:918.744075pt;}
.y137{bottom:918.744235pt;}
.y8a{bottom:919.226611pt;}
.y1f1{bottom:919.707067pt;}
.y1f0{bottom:919.707507pt;}
.y57{bottom:922.344755pt;}
.yc0{bottom:922.826155pt;}
.y18e{bottom:923.225179pt;}
.y27b{bottom:925.867067pt;}
.y239{bottom:926.827523pt;}
.y15b{bottom:934.343147pt;}
.yff{bottom:934.344547pt;}
.y136{bottom:934.344707pt;}
.y1ef{bottom:936.187067pt;}
.y1ee{bottom:936.187523pt;}
.ybf{bottom:938.426627pt;}
.y18d{bottom:938.825651pt;}
.y89{bottom:938.826563pt;}
.y56{bottom:941.945211pt;}
.y237{bottom:947.307035pt;}
.y238{bottom:947.307067pt;}
.y27a{bottom:947.867067pt;}
.y1cb{bottom:949.937987pt;}
.y15a{bottom:949.943619pt;}
.yfe{bottom:949.945019pt;}
.y135{bottom:949.945179pt;}
.y3{bottom:953.385739pt;}
.y18c{bottom:954.426123pt;}
.y1ed{bottom:956.666595pt;}
.y55{bottom:957.545683pt;}
.y87{bottom:959.787051pt;}
.y88{bottom:959.787067pt;}
.ybe{bottom:960.027067pt;}
.ybd{bottom:962.027067pt;}
.ybc{bottom:962.028387pt;}
.y236{bottom:963.786595pt;}
.y1ca{bottom:965.538459pt;}
.y159{bottom:965.544091pt;}
.yfd{bottom:965.545491pt;}
.y134{bottom:965.545651pt;}
.y18b{bottom:970.026595pt;}
.y1ec{bottom:972.267067pt;}
.y86{bottom:976.266611pt;}
.y54{bottom:977.146139pt;}
.ybb{bottom:978.507947pt;}
.y235{bottom:979.387035pt;}
.y1c9{bottom:981.138931pt;}
.y158{bottom:981.144563pt;}
.yfc{bottom:981.145963pt;}
.y133{bottom:981.146123pt;}
.y2{bottom:984.027067pt;}
.y18a{bottom:985.627067pt;}
.y53{bottom:992.746611pt;}
.yba{bottom:994.987507pt;}
.y234{bottom:995.866595pt;}
.y85{bottom:995.867067pt;}
.y84{bottom:995.867091pt;}
.y1c8{bottom:996.739403pt;}
.y157{bottom:996.745035pt;}
.yfb{bottom:996.746435pt;}
.y132{bottom:996.746595pt;}
.y279{bottom:996.746627pt;}
.y189{bottom:1009.627067pt;}
.y233{bottom:1011.459048pt;}
.yb9{bottom:1011.467067pt;}
.y1c7{bottom:1012.339875pt;}
.y156{bottom:1012.345507pt;}
.y83{bottom:1012.346651pt;}
.yfa{bottom:1012.346907pt;}
.y52{bottom:1012.347067pt;}
.y278{bottom:1012.347099pt;}
.y1{bottom:1057.547067pt;}
.h23{height:9.680000pt;}
.h25{height:9.760000pt;}
.h12{height:11.440000pt;}
.h39{height:11.840000pt;}
.h14{height:15.520000pt;}
.h26{height:19.840000pt;}
.h49{height:23.304844pt;}
.h2a{height:23.484848pt;}
.h3a{height:25.242625pt;}
.h1c{height:28.078125pt;}
.h36{height:28.972880pt;}
.h1a{height:29.399669pt;}
.h4b{height:29.550937pt;}
.h3f{height:29.645352pt;}
.h35{height:30.399111pt;}
.h38{height:30.401328pt;}
.h9{height:31.005625pt;}
.h2c{height:32.851406pt;}
.h16{height:35.945988pt;}
.h4a{height:36.218125pt;}
.h5{height:37.105312pt;}
.h17{height:37.343906pt;}
.h15{height:37.747925pt;}
.h1{height:38.029688pt;}
.h48{height:38.931875pt;}
.hb{height:39.215504pt;}
.h3d{height:40.039431pt;}
.h22{height:41.863980pt;}
.h32{height:41.877324pt;}
.h40{height:42.502800pt;}
.h29{height:42.549649pt;}
.h37{height:43.520444pt;}
.h1d{height:44.388750pt;}
.h20{height:44.389273pt;}
.h21{height:44.390339pt;}
.h24{height:45.451187pt;}
.h44{height:46.888645pt;}
.h45{height:46.888709pt;}
.h4{height:46.890469pt;}
.h47{height:46.890597pt;}
.h42{height:46.891045pt;}
.h34{height:46.892357pt;}
.h33{height:46.904389pt;}
.ha{height:46.925829pt;}
.h4c{height:47.621094pt;}
.h41{height:50.090469pt;}
.h2b{height:50.410469pt;}
.h6{height:50.531875pt;}
.h28{height:50.877095pt;}
.h3b{height:51.200444pt;}
.h3c{height:52.159111pt;}
.h8{height:52.422344pt;}
.h18{height:52.657697pt;}
.h3e{height:53.097628pt;}
.h27{height:53.155767pt;}
.h13{height:53.650312pt;}
.hd{height:54.322615pt;}
.he{height:54.323148pt;}
.h10{height:54.326263pt;}
.h43{height:54.328151pt;}
.h1f{height:54.335575pt;}
.hf{height:54.340706pt;}
.hc{height:54.343127pt;}
.h46{height:54.356450pt;}
.h11{height:54.890469pt;}
.h19{height:54.999669pt;}
.h3{height:55.250000pt;}
.h2e{height:66.207001pt;}
.h1b{height:66.750000pt;}
.h31{height:69.669390pt;}
.h2{height:72.219375pt;}
.h7{height:77.763750pt;}
.h2f{height:91.802585pt;}
.h2d{height:91.806841pt;}
.h1e{height:94.630830pt;}
.h30{height:101.084921pt;}
.h0{height:1122.666667pt;}
.w9{width:4.240000pt;}
.w8{width:4.720000pt;}
.w6{width:6.240000pt;}
.wa{width:6.400000pt;}
.w7{width:6.800000pt;}
.w4{width:7.120000pt;}
.w3{width:7.920000pt;}
.w5{width:8.000000pt;}
.w1{width:9.360000pt;}
.w2{width:9.520000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:56.720000pt;}
.x3{left:59.759320pt;}
.x9{left:66.159648pt;}
.x2{left:72.400000pt;}
.xe{left:75.680000pt;}
.x5c{left:77.120000pt;}
.x23{left:78.320000pt;}
.x7b{left:80.160000pt;}
.x5b{left:81.200000pt;}
.x5d{left:83.440000pt;}
.x8{left:85.040000pt;}
.x59{left:86.560000pt;}
.x7c{left:88.240000pt;}
.x5e{left:89.760160pt;}
.x40{left:94.640000pt;}
.x71{left:96.240000pt;}
.x27{left:98.000000pt;}
.x72{left:100.240000pt;}
.x5{left:101.600000pt;}
.xf{left:104.000000pt;}
.x46{left:105.520000pt;}
.x43{left:107.200000pt;}
.x7d{left:109.040000pt;}
.x45{left:112.800000pt;}
.x44{left:116.880000pt;}
.x74{left:119.760000pt;}
.x10{left:122.960512pt;}
.x42{left:129.440000pt;}
.x41{left:132.400296pt;}
.x66{left:135.120239pt;}
.x11{left:141.921024pt;}
.x57{left:143.200000pt;}
.x2a{left:144.880000pt;}
.x6d{left:152.560000pt;}
.x6c{left:155.360000pt;}
.x5f{left:156.320568pt;}
.x6f{left:157.920000pt;}
.x6e{left:158.880000pt;}
.x64{left:159.920000pt;}
.x65{left:163.120000pt;}
.x78{left:177.119735pt;}
.x68{left:178.800000pt;}
.x69{left:183.920000pt;}
.x2f{left:193.600000pt;}
.x2c{left:200.319684pt;}
.x75{left:210.640000pt;}
.x28{left:218.960000pt;}
.x22{left:223.440000pt;}
.x29{left:224.800000pt;}
.x34{left:227.440000pt;}
.x2d{left:228.560000pt;}
.x35{left:233.280000pt;}
.x2e{left:234.400000pt;}
.x63{left:235.360000pt;}
.x77{left:245.999525pt;}
.x12{left:249.920000pt;}
.x5a{left:251.840696pt;}
.x13{left:257.280000pt;}
.x6{left:258.319480pt;}
.x32{left:262.240000pt;}
.x14{left:265.760000pt;}
.x33{left:268.080000pt;}
.x4{left:279.040000pt;}
.x67{left:285.440216pt;}
.x20{left:294.960000pt;}
.x21{left:300.800000pt;}
.x7a{left:307.440000pt;}
.x79{left:316.080000pt;}
.x58{left:322.000768pt;}
.x30{left:324.800000pt;}
.x70{left:325.760000pt;}
.x31{left:330.640000pt;}
.x61{left:334.880000pt;}
.x76{left:336.880000pt;}
.x24{left:339.840000pt;}
.x62{left:342.960000pt;}
.x25{left:345.520000pt;}
.x2b{left:360.800000pt;}
.x26{left:362.080000pt;}
.x6a{left:365.200000pt;}
.x6b{left:370.400000pt;}
.x73{left:376.720000pt;}
.x88{left:379.440000pt;}
.x7{left:387.439872pt;}
.xa{left:398.714096pt;}
.xb{left:408.154272pt;}
.x3d{left:413.040000pt;}
.x3c{left:416.560000pt;}
.x1f{left:417.680496pt;}
.x3b{left:418.960000pt;}
.x89{left:421.359792pt;}
.x3a{left:423.840000pt;}
.xc{left:427.114784pt;}
.x86{left:436.640000pt;}
.x37{left:440.480000pt;}
.x85{left:443.760000pt;}
.xd{left:446.000512pt;}
.x84{left:447.280000pt;}
.x83{left:448.960000pt;}
.x56{left:450.880000pt;}
.x3e{left:455.440296pt;}
.x4b{left:458.560000pt;}
.x80{left:463.600000pt;}
.x15{left:464.960384pt;}
.x81{left:471.200000pt;}
.x87{left:474.400296pt;}
.x16{left:483.920896pt;}
.x8a{left:491.520000pt;}
.x55{left:498.560000pt;}
.x17{left:531.440000pt;}
.x3f{left:532.560000pt;}
.x18{left:538.800000pt;}
.x36{left:541.600000pt;}
.x1b{left:549.600000pt;}
.x4e{left:553.120000pt;}
.x1c{left:556.960000pt;}
.x19{left:558.960000pt;}
.x4f{left:560.480000pt;}
.x1d{left:563.520000pt;}
.x1a{left:566.320000pt;}
.x1e{left:569.440000pt;}
.x38{left:586.960880pt;}
.x50{left:595.040000pt;}
.x51{left:602.400000pt;}
.x48{left:616.160000pt;}
.x49{left:618.880000pt;}
.x82{left:635.199640pt;}
.x4c{left:645.680000pt;}
.x4d{left:653.040000pt;}
.x7e{left:659.200000pt;}
.x7f{left:667.280000pt;}
.x47{left:671.200000pt;}
.x39{left:674.081200pt;}
.x4a{left:681.280000pt;}
.x52{left:715.120000pt;}
.x54{left:719.600000pt;}
.x53{left:727.200000pt;}
.x60{left:729.360000pt;}
}




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