
    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_e8a66109f0e8ef879f4729d0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.696000;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_fadabef918452b8caf02c100.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936035;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_4c4df33471885fb7503c0e8e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.760254;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_a637b03c3fab7732a8a7cb09.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_fadabef918452b8caf02c100.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936035;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_4c4df33471885fb7503c0e8e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.760254;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_a637b03c3fab7732a8a7cb09.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e8a66109f0e8ef879f4729d0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.696000;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_119b367306d8180074d6069d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.092773;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_9a071f5c5ae650c41736f157.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_57486c2f10acc9a027e14a0c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_5b3caf395311daf12a930dcc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_c881f692924ef8dde4154928.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c291b16b6b6909c8080ffeb9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.954102;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_6d9417eba454249d7797d88b.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_c1466876143875511a7f3861.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.120117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c72d3f6f18bd2b72a2f0773f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.154602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154602,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,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);}
.m1{transform:matrix(0.253781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253781,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-24.120000px;}
.v1{vertical-align:-13.936800px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.111216px;}
.ls2a{letter-spacing:-1.899792px;}
.ls1e{letter-spacing:-1.886472px;}
.ls29{letter-spacing:-1.852956px;}
.ls27{letter-spacing:-1.848168px;}
.ls5f{letter-spacing:-1.833660px;}
.ls5e{letter-spacing:-1.815624px;}
.lse7{letter-spacing:-1.811700px;}
.ls25{letter-spacing:-1.805076px;}
.lse8{letter-spacing:-1.798524px;}
.lse0{letter-spacing:-1.791936px;}
.ls26{letter-spacing:-1.790712px;}
.lse3{letter-spacing:-1.785348px;}
.lsea{letter-spacing:-1.772172px;}
.lse6{letter-spacing:-1.765584px;}
.lsec{letter-spacing:-1.758996px;}
.ls21{letter-spacing:-1.757196px;}
.ls24{letter-spacing:-1.755504px;}
.lse4{letter-spacing:-1.752408px;}
.lsdd{letter-spacing:-1.745820px;}
.lsdf{letter-spacing:-1.739232px;}
.lsdc{letter-spacing:-1.732644px;}
.lse2{letter-spacing:-1.726056px;}
.ls20{letter-spacing:-1.723680px;}
.lsde{letter-spacing:-1.719468px;}
.ls28{letter-spacing:-1.707408px;}
.lsdb{letter-spacing:-1.706292px;}
.lse5{letter-spacing:-1.693116px;}
.ls1f{letter-spacing:-1.690164px;}
.ls36{letter-spacing:-1.684800px;}
.lse1{letter-spacing:-1.679940px;}
.ls35{letter-spacing:-1.667952px;}
.lseb{letter-spacing:-1.666764px;}
.ls23{letter-spacing:-1.656648px;}
.ls37{letter-spacing:-1.655316px;}
.ls22{letter-spacing:-1.603980px;}
.lsc1{letter-spacing:-1.548180px;}
.lse9{letter-spacing:-1.535004px;}
.ls91{letter-spacing:-1.475712px;}
.ls98{letter-spacing:-1.469124px;}
.lsc6{letter-spacing:-1.466928px;}
.lsb4{letter-spacing:-1.462536px;}
.lsca{letter-spacing:-1.460916px;}
.ls94{letter-spacing:-1.455948px;}
.ls93{letter-spacing:-1.449360px;}
.ls52{letter-spacing:-1.448892px;}
.lsc3{letter-spacing:-1.442880px;}
.ls92{letter-spacing:-1.442772px;}
.ls96{letter-spacing:-1.436184px;}
.ls50{letter-spacing:-1.430856px;}
.ls8c{letter-spacing:-1.429596px;}
.lsc4{letter-spacing:-1.424844px;}
.ls97{letter-spacing:-1.423008px;}
.ls6d{letter-spacing:-1.418832px;}
.ls90{letter-spacing:-1.416420px;}
.lsb9{letter-spacing:-1.412820px;}
.ls8d{letter-spacing:-1.409832px;}
.lsed{letter-spacing:-1.406808px;}
.lsd7{letter-spacing:-1.404000px;}
.ls8f{letter-spacing:-1.403244px;}
.lsbd{letter-spacing:-1.400796px;}
.lsab{letter-spacing:-1.396656px;}
.lsc5{letter-spacing:-1.394784px;}
.ls8e{letter-spacing:-1.390068px;}
.lsee{letter-spacing:-1.388772px;}
.ls8b{letter-spacing:-1.383480px;}
.lsbc{letter-spacing:-1.382760px;}
.ls7e{letter-spacing:-1.376892px;}
.ls67{letter-spacing:-1.376748px;}
.ls99{letter-spacing:-1.370304px;}
.lsbf{letter-spacing:-1.364724px;}
.lscb{letter-spacing:-1.350540px;}
.lsf4{letter-spacing:-1.343952px;}
.lsac{letter-spacing:-1.337364px;}
.lsa7{letter-spacing:-1.330776px;}
.ls6b{letter-spacing:-1.328652px;}
.ls6a{letter-spacing:-1.322640px;}
.lscd{letter-spacing:-1.317600px;}
.lsf0{letter-spacing:-1.301400px;}
.ls9e{letter-spacing:-1.297836px;}
.ls86{letter-spacing:-1.291248px;}
.lsd6{letter-spacing:-1.263600px;}
.ls6c{letter-spacing:-1.256508px;}
.ls58{letter-spacing:-1.238472px;}
.ls47{letter-spacing:-1.232460px;}
.ls85{letter-spacing:-1.231956px;}
.ls63{letter-spacing:-1.226448px;}
.ls66{letter-spacing:-1.220436px;}
.lsf2{letter-spacing:-1.220400px;}
.lsb7{letter-spacing:-1.218780px;}
.ls5d{letter-spacing:-1.214424px;}
.lsa3{letter-spacing:-1.212192px;}
.lsb1{letter-spacing:-1.211112px;}
.lsd5{letter-spacing:-1.209600px;}
.ls4e{letter-spacing:-1.208412px;}
.lsa8{letter-spacing:-1.205604px;}
.ls46{letter-spacing:-1.202400px;}
.lsa2{letter-spacing:-1.199016px;}
.ls59{letter-spacing:-1.196388px;}
.ls7c{letter-spacing:-1.192428px;}
.ls48{letter-spacing:-1.190376px;}
.ls3{letter-spacing:-1.188000px;}
.ls87{letter-spacing:-1.185840px;}
.ls5c{letter-spacing:-1.184364px;}
.lsd0{letter-spacing:-1.182600px;}
.ls7b{letter-spacing:-1.179252px;}
.ls55{letter-spacing:-1.178352px;}
.lsae{letter-spacing:-1.172664px;}
.lsef{letter-spacing:-1.172448px;}
.ls4b{letter-spacing:-1.172340px;}
.lsd9{letter-spacing:-1.171800px;}
.lsd4{letter-spacing:-1.166400px;}
.ls49{letter-spacing:-1.166328px;}
.lsaf{letter-spacing:-1.166076px;}
.ls51{letter-spacing:-1.160316px;}
.lsa1{letter-spacing:-1.159488px;}
.ls4a{letter-spacing:-1.154304px;}
.ls89{letter-spacing:-1.152900px;}
.ls53{letter-spacing:-1.148292px;}
.ls9f{letter-spacing:-1.146312px;}
.lsd1{letter-spacing:-1.144800px;}
.ls61{letter-spacing:-1.142280px;}
.ls5b{letter-spacing:-1.136268px;}
.lsd3{letter-spacing:-1.134000px;}
.lsa4{letter-spacing:-1.133136px;}
.lsb2{letter-spacing:-1.132380px;}
.lsbb{letter-spacing:-1.130256px;}
.lsf3{letter-spacing:-1.128600px;}
.ls82{letter-spacing:-1.126548px;}
.lsbe{letter-spacing:-1.124244px;}
.ls76{letter-spacing:-1.119960px;}
.lsd2{letter-spacing:-1.117800px;}
.ls6f{letter-spacing:-1.114992px;}
.ls9b{letter-spacing:-1.113372px;}
.ls57{letter-spacing:-1.112220px;}
.lsf1{letter-spacing:-1.107000px;}
.ls84{letter-spacing:-1.106784px;}
.lsba{letter-spacing:-1.106208px;}
.ls69{letter-spacing:-1.100196px;}
.ls70{letter-spacing:-1.098828px;}
.ls62{letter-spacing:-1.094184px;}
.ls83{letter-spacing:-1.093608px;}
.ls75{letter-spacing:-1.087020px;}
.ls6e{letter-spacing:-1.082160px;}
.ls79{letter-spacing:-1.080432px;}
.ls71{letter-spacing:-1.073844px;}
.ls56{letter-spacing:-1.070136px;}
.ls7a{letter-spacing:-1.067256px;}
.lsc0{letter-spacing:-1.064124px;}
.ls78{letter-spacing:-1.060668px;}
.ls54{letter-spacing:-1.058112px;}
.ls74{letter-spacing:-1.054080px;}
.lsc9{letter-spacing:-1.052100px;}
.ls81{letter-spacing:-1.047492px;}
.ls4f{letter-spacing:-1.046088px;}
.ls7d{letter-spacing:-1.040904px;}
.lsd8{letter-spacing:-1.036800px;}
.ls73{letter-spacing:-1.034316px;}
.lsc2{letter-spacing:-1.034064px;}
.ls68{letter-spacing:-1.028052px;}
.ls8a{letter-spacing:-1.027728px;}
.ls4c{letter-spacing:-1.022040px;}
.ls72{letter-spacing:-1.021140px;}
.ls88{letter-spacing:-1.014552px;}
.ls9d{letter-spacing:-1.007964px;}
.ls9c{letter-spacing:-1.001376px;}
.ls65{letter-spacing:-0.997992px;}
.lsa6{letter-spacing:-0.994788px;}
.ls60{letter-spacing:-0.991980px;}
.lsa9{letter-spacing:-0.988200px;}
.ls4d{letter-spacing:-0.973944px;}
.lsb3{letter-spacing:-0.955260px;}
.ls80{letter-spacing:-0.941184px;}
.lsa0{letter-spacing:-0.467748px;}
.ls31{letter-spacing:-0.180360px;}
.ls18{letter-spacing:-0.172692px;}
.ls32{letter-spacing:-0.156312px;}
.ls2e{letter-spacing:-0.102204px;}
.lsb8{letter-spacing:-0.072144px;}
.ls14{letter-spacing:-0.064800px;}
.ls30{letter-spacing:-0.054108px;}
.ls2d{letter-spacing:-0.052668px;}
.ls13{letter-spacing:-0.043200px;}
.ls3c{letter-spacing:-0.039528px;}
.ls2f{letter-spacing:-0.036072px;}
.ls3d{letter-spacing:-0.032940px;}
.ls12{letter-spacing:-0.032400px;}
.ls33{letter-spacing:-0.030060px;}
.ls2c{letter-spacing:-0.028728px;}
.ls1b{letter-spacing:-0.028440px;}
.ls64{letter-spacing:-0.024048px;}
.ls17{letter-spacing:-0.021600px;}
.ls2{letter-spacing:-0.014400px;}
.ls44{letter-spacing:-0.013176px;}
.ls45{letter-spacing:-0.009612px;}
.ls3b{letter-spacing:-0.006588px;}
.ls1a{letter-spacing:-0.005688px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.005400px;}
.ls42{letter-spacing:0.006588px;}
.ls41{letter-spacing:0.013176px;}
.ls11{letter-spacing:0.016200px;}
.ls38{letter-spacing:0.019764px;}
.ls19{letter-spacing:0.022752px;}
.ls39{letter-spacing:0.026352px;}
.lse{letter-spacing:0.027000px;}
.lscf{letter-spacing:0.028800px;}
.ls5{letter-spacing:0.032940px;}
.ls3f{letter-spacing:0.039528px;}
.ls10{letter-spacing:0.043200px;}
.ls3a{letter-spacing:0.046116px;}
.lsd{letter-spacing:0.048600px;}
.lsf{letter-spacing:0.054000px;}
.ls40{letter-spacing:0.059292px;}
.lsa{letter-spacing:0.064800px;}
.ls43{letter-spacing:0.079056px;}
.ls1d{letter-spacing:0.084168px;}
.ls34{letter-spacing:0.090180px;}
.ls7{letter-spacing:0.091810px;}
.ls6{letter-spacing:0.094734px;}
.ls15{letter-spacing:0.097200px;}
.lsc{letter-spacing:0.108000px;}
.lscc{letter-spacing:0.127264px;}
.ls1c{letter-spacing:0.153360px;}
.ls8{letter-spacing:0.181520px;}
.ls9{letter-spacing:0.184464px;}
.ls3e{letter-spacing:0.256932px;}
.ls7f{letter-spacing:0.612684px;}
.ls77{letter-spacing:0.975024px;}
.lsaa{letter-spacing:1.693116px;}
.lsc7{letter-spacing:2.055456px;}
.ls5a{letter-spacing:2.242476px;}
.lsda{letter-spacing:2.305800px;}
.ls16{letter-spacing:2.343600px;}
.lsb0{letter-spacing:2.411208px;}
.lsc8{letter-spacing:2.521600px;}
.lsb5{letter-spacing:3.241680px;}
.ls0{letter-spacing:3.600000px;}
.ls95{letter-spacing:3.853980px;}
.ls9a{letter-spacing:4.934412px;}
.lsa5{letter-spacing:5.652504px;}
.lsb6{letter-spacing:6.014844px;}
.ls4{letter-spacing:6.026400px;}
.lsad{letter-spacing:9.611892px;}
.ls2b{letter-spacing:70.292304px;}
.lsce{letter-spacing:115.560000px;}
.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;}
}
.ws32{word-spacing:-15.030000px;}
.ws31{word-spacing:-14.191560px;}
.ws30{word-spacing:-13.505400px;}
.ws2f{word-spacing:-13.456800px;}
.ws246{word-spacing:-13.176000px;}
.ws60{word-spacing:-12.252456px;}
.ws62{word-spacing:-12.180312px;}
.ws91{word-spacing:-12.132216px;}
.ws140{word-spacing:-12.069216px;}
.ws63{word-spacing:-12.060072px;}
.ws92{word-spacing:-12.054060px;}
.ws1f8{word-spacing:-12.029688px;}
.ws245{word-spacing:-12.024000px;}
.wsfa{word-spacing:-12.023100px;}
.ws35{word-spacing:-11.917332px;}
.ws249{word-spacing:-10.751400px;}
.ws248{word-spacing:-10.697400px;}
.ws247{word-spacing:-10.659600px;}
.ws81{word-spacing:-10.635228px;}
.wsa4{word-spacing:-10.274508px;}
.ws33{word-spacing:-10.121832px;}
.ws34{word-spacing:-10.117044px;}
.ws225{word-spacing:-9.763200px;}
.ws9c{word-spacing:-9.192348px;}
.ws94{word-spacing:-8.825616px;}
.wsb0{word-spacing:-8.470908px;}
.ws8e{word-spacing:-8.464896px;}
.wsaf{word-spacing:-7.749468px;}
.ws68{word-spacing:-7.028028px;}
.ws8b{word-spacing:-7.022016px;}
.ws7c{word-spacing:-5.951880px;}
.ws5{word-spacing:-3.960000px;}
.ws7a{word-spacing:-3.793572px;}
.wsa9{word-spacing:-3.432852px;}
.ws98{word-spacing:-3.066120px;}
.ws8f{word-spacing:-3.060108px;}
.ws9f{word-spacing:-3.054096px;}
.ws10{word-spacing:-2.664000px;}
.ws27{word-spacing:-2.376000px;}
.ws6{word-spacing:-1.872000px;}
.ws21{word-spacing:-1.656000px;}
.ws70{word-spacing:-1.629252px;}
.ws7d{word-spacing:-1.268532px;}
.ws77{word-spacing:-1.262520px;}
.wsa1{word-spacing:-1.256508px;}
.ws6c{word-spacing:-1.232460px;}
.ws237{word-spacing:-1.116000px;}
.ws25{word-spacing:-1.080000px;}
.ws84{word-spacing:-0.895788px;}
.ws1d{word-spacing:-0.648000px;}
.ws4b{word-spacing:-0.593892px;}
.ws66{word-spacing:-0.553104px;}
.wsa0{word-spacing:-0.541080px;}
.ws1b6{word-spacing:-0.513864px;}
.ws13d{word-spacing:-0.494100px;}
.ws1a9{word-spacing:-0.467748px;}
.ws6a{word-spacing:-0.384768px;}
.ws8a{word-spacing:-0.366732px;}
.ws93{word-spacing:-0.360720px;}
.ws45{word-spacing:-0.354708px;}
.ws6f{word-spacing:-0.312624px;}
.wsb1{word-spacing:-0.276552px;}
.ws9b{word-spacing:-0.258516px;}
.ws24b{word-spacing:-0.246492px;}
.ws3b{word-spacing:-0.234612px;}
.ws82{word-spacing:-0.222444px;}
.ws75{word-spacing:-0.210420px;}
.ws67{word-spacing:-0.204408px;}
.ws6e{word-spacing:-0.198396px;}
.ws6d{word-spacing:-0.192384px;}
.ws6b{word-spacing:-0.186372px;}
.ws234{word-spacing:-0.184464px;}
.ws7f{word-spacing:-0.180360px;}
.ws99{word-spacing:-0.174348px;}
.ws150{word-spacing:-0.171288px;}
.ws65{word-spacing:-0.168336px;}
.ws5a{word-spacing:-0.164700px;}
.ws80{word-spacing:-0.162324px;}
.ws26f{word-spacing:-0.156312px;}
.ws53{word-spacing:-0.151524px;}
.ws8c{word-spacing:-0.150300px;}
.ws103{word-spacing:-0.144936px;}
.ws85{word-spacing:-0.144288px;}
.wsf5{word-spacing:-0.138348px;}
.ws95{word-spacing:-0.138276px;}
.ws90{word-spacing:-0.132264px;}
.ws56{word-spacing:-0.131760px;}
.ws88{word-spacing:-0.126252px;}
.ws11e{word-spacing:-0.125172px;}
.ws7e{word-spacing:-0.120240px;}
.ws190{word-spacing:-0.118584px;}
.ws116{word-spacing:-0.111996px;}
.ws1b9{word-spacing:-0.105408px;}
.wsca{word-spacing:-0.098820px;}
.wsd6{word-spacing:-0.092232px;}
.ws43{word-spacing:-0.090180px;}
.ws12d{word-spacing:-0.085644px;}
.ws1e1{word-spacing:-0.084168px;}
.wsd7{word-spacing:-0.079056px;}
.ws1{word-spacing:-0.078000px;}
.ws276{word-spacing:-0.059292px;}
.ws14f{word-spacing:-0.026352px;}
.ws275{word-spacing:-0.019764px;}
.ws2{word-spacing:0.000000px;}
.wsb2{word-spacing:0.033552px;}
.ws79{word-spacing:0.048096px;}
.ws2c{word-spacing:0.072000px;}
.ws244{word-spacing:0.081000px;}
.wsae{word-spacing:0.084168px;}
.ws54{word-spacing:0.085644px;}
.ws42{word-spacing:0.090180px;}
.ws57{word-spacing:0.092232px;}
.ws86{word-spacing:0.096192px;}
.ws23c{word-spacing:0.097200px;}
.ws58{word-spacing:0.098820px;}
.ws55{word-spacing:0.105408px;}
.ws59{word-spacing:0.111996px;}
.ws87{word-spacing:0.114228px;}
.ws46{word-spacing:0.120240px;}
.ws40{word-spacing:0.126252px;}
.ws1c1{word-spacing:0.131760px;}
.ws41{word-spacing:0.144288px;}
.ws5f{word-spacing:0.144936px;}
.ws4a{word-spacing:0.155844px;}
.ws72{word-spacing:0.162324px;}
.ws51{word-spacing:0.164700px;}
.ws74{word-spacing:0.168336px;}
.ws97{word-spacing:0.174348px;}
.ws89{word-spacing:0.180360px;}
.ws11d{word-spacing:0.184464px;}
.ws1ba{word-spacing:0.184536px;}
.wsab{word-spacing:0.186372px;}
.ws3d{word-spacing:0.192384px;}
.ws11c{word-spacing:0.197640px;}
.ws71{word-spacing:0.198396px;}
.wsfd{word-spacing:0.204228px;}
.ws64{word-spacing:0.204408px;}
.ws83{word-spacing:0.210420px;}
.ws1cb{word-spacing:0.210816px;}
.ws73{word-spacing:0.216432px;}
.wsa2{word-spacing:0.222444px;}
.ws52{word-spacing:0.223992px;}
.ws128{word-spacing:0.230580px;}
.wsfe{word-spacing:0.237168px;}
.ws124{word-spacing:0.243756px;}
.ws44{word-spacing:0.246492px;}
.ws12a{word-spacing:0.256932px;}
.wsaa{word-spacing:0.258516px;}
.ws3e{word-spacing:0.296856px;}
.ws218{word-spacing:0.462924px;}
.ws1e3{word-spacing:0.468936px;}
.ws24c{word-spacing:0.520452px;}
.ws181{word-spacing:0.533628px;}
.ws1a5{word-spacing:0.540216px;}
.ws274{word-spacing:0.559980px;}
.ws109{word-spacing:0.566568px;}
.ws1a4{word-spacing:0.579744px;}
.wsce{word-spacing:0.586332px;}
.ws117{word-spacing:0.592920px;}
.wsc5{word-spacing:0.599508px;}
.ws1b5{word-spacing:0.606096px;}
.ws1d4{word-spacing:0.612684px;}
.ws131{word-spacing:0.625860px;}
.ws132{word-spacing:0.652212px;}
.ws1f3{word-spacing:0.853704px;}
.ws16c{word-spacing:0.889380px;}
.ws182{word-spacing:0.902556px;}
.ws264{word-spacing:0.922320px;}
.ws12e{word-spacing:0.928908px;}
.wsf1{word-spacing:0.935496px;}
.ws119{word-spacing:0.942084px;}
.ws1dc{word-spacing:0.948672px;}
.ws219{word-spacing:0.955260px;}
.wsed{word-spacing:0.961848px;}
.wsf6{word-spacing:0.968436px;}
.ws133{word-spacing:0.981612px;}
.ws198{word-spacing:0.988200px;}
.ws156{word-spacing:0.994788px;}
.ws11a{word-spacing:1.001376px;}
.ws134{word-spacing:1.007964px;}
.ws213{word-spacing:1.073844px;}
.ws3f{word-spacing:1.088172px;}
.ws212{word-spacing:1.100196px;}
.ws23d{word-spacing:1.123200px;}
.ws235{word-spacing:1.154304px;}
.ws23e{word-spacing:1.155600px;}
.ws23f{word-spacing:1.171800px;}
.ws1fe{word-spacing:1.190376px;}
.ws240{word-spacing:1.198800px;}
.ws215{word-spacing:1.226448px;}
.ws251{word-spacing:1.264896px;}
.ws13e{word-spacing:1.284660px;}
.ws171{word-spacing:1.291248px;}
.ws16a{word-spacing:1.304424px;}
.ws1fd{word-spacing:1.310616px;}
.wse9{word-spacing:1.311012px;}
.ws1c8{word-spacing:1.317600px;}
.ws126{word-spacing:1.324188px;}
.ws191{word-spacing:1.330776px;}
.wsba{word-spacing:1.337364px;}
.ws192{word-spacing:1.343952px;}
.ws197{word-spacing:1.363716px;}
.ws1f1{word-spacing:1.509012px;}
.ws1fc{word-spacing:1.569132px;}
.ws1e6{word-spacing:1.593180px;}
.ws255{word-spacing:1.600884px;}
.ws165{word-spacing:1.633824px;}
.ws152{word-spacing:1.640412px;}
.ws16b{word-spacing:1.647000px;}
.ws196{word-spacing:1.653588px;}
.ws1da{word-spacing:1.660176px;}
.ws13a{word-spacing:1.666764px;}
.ws1db{word-spacing:1.673352px;}
.ws22a{word-spacing:1.679940px;}
.ws153{word-spacing:1.686528px;}
.ws1d0{word-spacing:1.693116px;}
.ws138{word-spacing:1.699704px;}
.ws129{word-spacing:1.706292px;}
.wsdb{word-spacing:1.712880px;}
.ws9{word-spacing:1.728000px;}
.ws224{word-spacing:1.732644px;}
.ws1b0{word-spacing:1.785348px;}
.ws1f{word-spacing:1.800000px;}
.ws1f0{word-spacing:1.809612px;}
.wsdc{word-spacing:1.844640px;}
.ws1ea{word-spacing:1.923840px;}
.ws214{word-spacing:1.965924px;}
.wscd{word-spacing:1.989576px;}
.ws254{word-spacing:1.996164px;}
.ws154{word-spacing:2.002752px;}
.ws1aa{word-spacing:2.015928px;}
.ws11f{word-spacing:2.022516px;}
.ws1bc{word-spacing:2.029104px;}
.ws14e{word-spacing:2.035692px;}
.wsbe{word-spacing:2.042280px;}
.wsbb{word-spacing:2.048868px;}
.ws19b{word-spacing:2.055456px;}
.ws136{word-spacing:2.068632px;}
.ws1d8{word-spacing:2.088396px;}
.wsbc{word-spacing:2.094984px;}
.ws170{word-spacing:2.121336px;}
.ws23b{word-spacing:2.187000px;}
.ws1fb{word-spacing:2.194380px;}
.ws26d{word-spacing:2.206404px;}
.ws23a{word-spacing:2.208600px;}
.ws201{word-spacing:2.224440px;}
.ws4e{word-spacing:2.266272px;}
.ws24a{word-spacing:2.284560px;}
.ws1f2{word-spacing:2.290572px;}
.ws4f{word-spacing:2.299212px;}
.wsa6{word-spacing:2.344680px;}
.wsf3{word-spacing:2.351916px;}
.ws1a2{word-spacing:2.371680px;}
.ws172{word-spacing:2.378268px;}
.ws10d{word-spacing:2.384856px;}
.wsf7{word-spacing:2.391444px;}
.ws1ae{word-spacing:2.404620px;}
.wsc3{word-spacing:2.411208px;}
.wsf4{word-spacing:2.417796px;}
.ws10e{word-spacing:2.424384px;}
.wsa5{word-spacing:2.488968px;}
.wsac{word-spacing:2.579148px;}
.ws1f5{word-spacing:2.591172px;}
.ws217{word-spacing:2.603196px;}
.ws208{word-spacing:2.645280px;}
.ws1d9{word-spacing:2.701080px;}
.ws270{word-spacing:2.714256px;}
.ws125{word-spacing:2.720844px;}
.ws135{word-spacing:2.727432px;}
.ws17f{word-spacing:2.734020px;}
.ws1c{word-spacing:2.736000px;}
.ws1ab{word-spacing:2.740608px;}
.ws118{word-spacing:2.747196px;}
.ws180{word-spacing:2.753784px;}
.ws145{word-spacing:2.760372px;}
.ws12f{word-spacing:2.766960px;}
.wscb{word-spacing:2.786724px;}
.ws18{word-spacing:2.808000px;}
.ws12b{word-spacing:2.819664px;}
.ws36{word-spacing:2.877588px;}
.ws1e9{word-spacing:2.903796px;}
.ws19{word-spacing:2.952000px;}
.ws20b{word-spacing:2.987964px;}
.ws146{word-spacing:2.990952px;}
.ws1e4{word-spacing:3.012012px;}
.ws1f4{word-spacing:3.030048px;}
.ws1ad{word-spacing:3.030480px;}
.ws183{word-spacing:3.056832px;}
.ws230{word-spacing:3.070008px;}
.ws147{word-spacing:3.076596px;}
.ws160{word-spacing:3.083184px;}
.wsdd{word-spacing:3.089772px;}
.ws1b1{word-spacing:3.096360px;}
.ws15f{word-spacing:3.102948px;}
.wsbf{word-spacing:3.109536px;}
.wsb6{word-spacing:3.122712px;}
.ws151{word-spacing:3.129300px;}
.ws176{word-spacing:3.135888px;}
.wsc0{word-spacing:3.142476px;}
.wsde{word-spacing:3.155652px;}
.ws157{word-spacing:3.168828px;}
.ws1b2{word-spacing:3.221532px;}
.ws1e2{word-spacing:3.294576px;}
.ws1f6{word-spacing:3.300588px;}
.ws49{word-spacing:3.378024px;}
.ws24f{word-spacing:3.412584px;}
.ws1bf{word-spacing:3.425760px;}
.ws1c3{word-spacing:3.432348px;}
.ws104{word-spacing:3.438936px;}
.ws19c{word-spacing:3.445524px;}
.wsd9{word-spacing:3.458700px;}
.ws123{word-spacing:3.471876px;}
.ws102{word-spacing:3.478464px;}
.wsda{word-spacing:3.485052px;}
.ws19f{word-spacing:3.491640px;}
.ws184{word-spacing:3.498228px;}
.wse0{word-spacing:3.517992px;}
.ws163{word-spacing:3.531168px;}
.ws164{word-spacing:3.570696px;}
.ws239{word-spacing:3.655800px;}
.ws1ff{word-spacing:3.685356px;}
.ws238{word-spacing:3.693600px;}
.ws20c{word-spacing:3.722220px;}
.wsad{word-spacing:3.739464px;}
.ws142{word-spacing:3.781512px;}
.wsb4{word-spacing:3.794688px;}
.ws1c9{word-spacing:3.801276px;}
.ws1bd{word-spacing:3.814452px;}
.ws106{word-spacing:3.821040px;}
.ws204{word-spacing:3.827628px;}
.ws17c{word-spacing:3.834216px;}
.ws105{word-spacing:3.840804px;}
.wsb5{word-spacing:3.847392px;}
.ws158{word-spacing:3.860568px;}
.ws1ca{word-spacing:3.867156px;}
.ws227{word-spacing:3.926448px;}
.ws26e{word-spacing:4.016016px;}
.ws78{word-spacing:4.034052px;}
.ws5b{word-spacing:4.077972px;}
.ws209{word-spacing:4.094172px;}
.ws130{word-spacing:4.150440px;}
.ws1c7{word-spacing:4.157028px;}
.wsff{word-spacing:4.163616px;}
.ws22d{word-spacing:4.170204px;}
.ws189{word-spacing:4.176792px;}
.ws1c6{word-spacing:4.183380px;}
.ws1cc{word-spacing:4.189968px;}
.ws120{word-spacing:4.196556px;}
.wse4{word-spacing:4.203144px;}
.wsc9{word-spacing:4.209732px;}
.ws19a{word-spacing:4.216320px;}
.wse1{word-spacing:4.229496px;}
.wsfb{word-spacing:4.236084px;}
.ws22c{word-spacing:4.242672px;}
.wseb{word-spacing:4.255848px;}
.wsea{word-spacing:4.321728px;}
.ws265{word-spacing:4.370724px;}
.ws216{word-spacing:4.376736px;}
.ws256{word-spacing:4.466664px;}
.ws50{word-spacing:4.493016px;}
.wsd8{word-spacing:4.512780px;}
.ws18c{word-spacing:4.519368px;}
.ws18f{word-spacing:4.525956px;}
.ws14a{word-spacing:4.539132px;}
.ws1cf{word-spacing:4.545720px;}
.wsd0{word-spacing:4.552308px;}
.ws1f9{word-spacing:4.558896px;}
.ws188{word-spacing:4.565484px;}
.ws21a{word-spacing:4.572072px;}
.ws18e{word-spacing:4.578660px;}
.ws228{word-spacing:4.585248px;}
.ws1cd{word-spacing:4.591836px;}
.ws1ce{word-spacing:4.598424px;}
.ws1e7{word-spacing:4.707396px;}
.ws242{word-spacing:4.725000px;}
.ws17b{word-spacing:4.842180px;}
.ws207{word-spacing:4.881708px;}
.ws1af{word-spacing:4.894884px;}
.ws1c2{word-spacing:4.901472px;}
.ws112{word-spacing:4.908060px;}
.ws27c{word-spacing:4.914648px;}
.ws113{word-spacing:4.921236px;}
.ws1ac{word-spacing:4.927824px;}
.ws149{word-spacing:4.934412px;}
.wsee{word-spacing:4.941000px;}
.ws21d{word-spacing:4.954176px;}
.ws21e{word-spacing:4.960764px;}
.wsc7{word-spacing:5.033232px;}
.wsc8{word-spacing:5.046408px;}
.ws26a{word-spacing:5.054400px;}
.ws268{word-spacing:5.130000px;}
.ws5c{word-spacing:5.164992px;}
.wsa3{word-spacing:5.176332px;}
.ws241{word-spacing:5.211000px;}
.ws16d{word-spacing:5.230872px;}
.ws144{word-spacing:5.237460px;}
.wsa8{word-spacing:5.242464px;}
.ws107{word-spacing:5.244048px;}
.ws269{word-spacing:5.254200px;}
.ws108{word-spacing:5.257224px;}
.wse2{word-spacing:5.263812px;}
.wse6{word-spacing:5.270400px;}
.wsf2{word-spacing:5.276988px;}
.ws114{word-spacing:5.290164px;}
.ws27a{word-spacing:5.296752px;}
.ws141{word-spacing:5.303340px;}
.ws1eb{word-spacing:5.309928px;}
.ws143{word-spacing:5.329692px;}
.ws27b{word-spacing:5.336280px;}
.ws243{word-spacing:5.356800px;}
.ws17a{word-spacing:5.421924px;}
.wsa7{word-spacing:5.446872px;}
.ws76{word-spacing:5.458896px;}
.ws8{word-spacing:5.472000px;}
.wse7{word-spacing:5.507568px;}
.ws252{word-spacing:5.533920px;}
.ws13c{word-spacing:5.573448px;}
.ws253{word-spacing:5.580036px;}
.ws1c0{word-spacing:5.606388px;}
.wsdf{word-spacing:5.612976px;}
.wse3{word-spacing:5.626152px;}
.ws1a6{word-spacing:5.632740px;}
.ws229{word-spacing:5.639328px;}
.wsc6{word-spacing:5.645916px;}
.ws277{word-spacing:5.652504px;}
.ws161{word-spacing:5.659092px;}
.ws272{word-spacing:5.672268px;}
.ws185{word-spacing:5.678856px;}
.ws100{word-spacing:5.692032px;}
.ws9e{word-spacing:5.723424px;}
.ws266{word-spacing:5.801580px;}
.ws5e{word-spacing:5.883084px;}
.ws1ef{word-spacing:5.891760px;}
.ws16e{word-spacing:5.902848px;}
.ws23{word-spacing:5.976000px;}
.ws122{word-spacing:5.988492px;}
.ws1d6{word-spacing:5.995080px;}
.ws1dd{word-spacing:6.001668px;}
.ws121{word-spacing:6.014844px;}
.ws1d3{word-spacing:6.021432px;}
.ws15c{word-spacing:6.120252px;}
.ws101{word-spacing:6.166368px;}
.ws5d{word-spacing:6.172956px;}
.wse8{word-spacing:6.331068px;}
.ws187{word-spacing:6.344244px;}
.ws10a{word-spacing:6.350832px;}
.wse5{word-spacing:6.364008px;}
.ws210{word-spacing:6.370596px;}
.ws10c{word-spacing:6.377184px;}
.ws21f{word-spacing:6.383772px;}
.ws139{word-spacing:6.390360px;}
.ws220{word-spacing:6.403536px;}
.ws2a{word-spacing:6.408000px;}
.ws15d{word-spacing:6.429888px;}
.wsd{word-spacing:6.480000px;}
.ws202{word-spacing:6.517008px;}
.ws1e8{word-spacing:6.523020px;}
.ws17{word-spacing:6.552000px;}
.ws8d{word-spacing:6.577128px;}
.ws278{word-spacing:6.640704px;}
.ws10b{word-spacing:6.647292px;}
.wsf8{word-spacing:6.667056px;}
.ws22e{word-spacing:6.673644px;}
.ws262{word-spacing:6.680232px;}
.wsf9{word-spacing:6.686820px;}
.ws1d5{word-spacing:6.693408px;}
.ws137{word-spacing:6.699996px;}
.ws175{word-spacing:6.719760px;}
.wsb3{word-spacing:6.726348px;}
.ws1a1{word-spacing:6.732936px;}
.ws174{word-spacing:6.739524px;}
.wsfc{word-spacing:6.746112px;}
.ws226{word-spacing:6.970104px;}
.ws47{word-spacing:6.979284px;}
.ws24d{word-spacing:7.029396px;}
.ws24e{word-spacing:7.042572px;}
.ws11b{word-spacing:7.055748px;}
.ws221{word-spacing:7.068924px;}
.ws1d2{word-spacing:7.075512px;}
.ws17e{word-spacing:7.088688px;}
.ws14d{word-spacing:7.095276px;}
.ws14c{word-spacing:7.108452px;}
.ws17d{word-spacing:7.134804px;}
.ws4c{word-spacing:7.312680px;}
.ws4d{word-spacing:7.332444px;}
.ws26c{word-spacing:7.334640px;}
.ws9d{word-spacing:7.340652px;}
.ws37{word-spacing:7.359156px;}
.ws21c{word-spacing:7.365384px;}
.ws250{word-spacing:7.391736px;}
.ws38{word-spacing:7.392672px;}
.ws25f{word-spacing:7.404912px;}
.wsef{word-spacing:7.424676px;}
.wsf0{word-spacing:7.431264px;}
.ws22b{word-spacing:7.437852px;}
.wsd1{word-spacing:7.444440px;}
.ws1e0{word-spacing:7.451028px;}
.ws1b3{word-spacing:7.457616px;}
.ws279{word-spacing:7.497144px;}
.ws25d{word-spacing:7.681608px;}
.ws1f7{word-spacing:7.689348px;}
.ws236{word-spacing:7.713396px;}
.ws25c{word-spacing:7.734312px;}
.ws25b{word-spacing:7.747488px;}
.ws159{word-spacing:7.754076px;}
.ws260{word-spacing:7.760664px;}
.ws261{word-spacing:7.767252px;}
.ws186{word-spacing:7.773840px;}
.wscf{word-spacing:7.780428px;}
.wsb8{word-spacing:7.787016px;}
.wsc1{word-spacing:7.793604px;}
.ws13f{word-spacing:7.813368px;}
.wsb9{word-spacing:7.819956px;}
.ws195{word-spacing:7.833132px;}
.wsc2{word-spacing:7.852896px;}
.ws96{word-spacing:7.941852px;}
.ws1de{word-spacing:7.951716px;}
.ws200{word-spacing:8.056080px;}
.ws7{word-spacing:8.064000px;}
.ws1a8{word-spacing:8.109828px;}
.ws168{word-spacing:8.116416px;}
.ws205{word-spacing:8.129592px;}
.wscc{word-spacing:8.136180px;}
.ws206{word-spacing:8.142768px;}
.ws1d1{word-spacing:8.155944px;}
.ws203{word-spacing:8.162532px;}
.ws1df{word-spacing:8.182296px;}
.ws127{word-spacing:8.195472px;}
.ws25a{word-spacing:8.267940px;}
.ws7b{word-spacing:8.392752px;}
.ws259{word-spacing:8.452404px;}
.ws258{word-spacing:8.478756px;}
.ws110{word-spacing:8.485344px;}
.ws271{word-spacing:8.498520px;}
.ws111{word-spacing:8.524872px;}
.ws22f{word-spacing:8.538048px;}
.ws257{word-spacing:8.544636px;}
.ws162{word-spacing:8.551224px;}
.ws1ee{word-spacing:8.681328px;}
.ws48{word-spacing:8.773596px;}
.ws25e{word-spacing:8.847684px;}
.ws1c4{word-spacing:8.854272px;}
.ws1c5{word-spacing:8.867448px;}
.ws155{word-spacing:8.874036px;}
.ws232{word-spacing:8.893800px;}
.ws222{word-spacing:8.906976px;}
.ws20a{word-spacing:9.120204px;}
.ws1be{word-spacing:9.210024px;}
.ws16f{word-spacing:9.216612px;}
.ws10f{word-spacing:9.229788px;}
.ws1d7{word-spacing:9.236376px;}
.wsc4{word-spacing:9.242964px;}
.ws233{word-spacing:9.249552px;}
.ws193{word-spacing:9.262728px;}
.ws194{word-spacing:9.282492px;}
.ws1b{word-spacing:9.432000px;}
.ws263{word-spacing:9.578952px;}
.ws231{word-spacing:9.585540px;}
.wsd4{word-spacing:9.605304px;}
.ws211{word-spacing:9.618480px;}
.ws20d{word-spacing:9.631656px;}
.wsd5{word-spacing:9.658008px;}
.ws16{word-spacing:9.864000px;}
.ws1b7{word-spacing:9.954468px;}
.ws27d{word-spacing:9.961056px;}
.ws223{word-spacing:9.967644px;}
.wsd2{word-spacing:9.980820px;}
.ws12c{word-spacing:10.277280px;}
.ws19e{word-spacing:10.303632px;}
.ws199{word-spacing:10.316808px;}
.wsd3{word-spacing:10.323396px;}
.ws148{word-spacing:10.329984px;}
.ws15e{word-spacing:10.343160px;}
.ws173{word-spacing:10.349748px;}
.ws20{word-spacing:10.440000px;}
.wsb7{word-spacing:10.646208px;}
.ws1bb{word-spacing:10.665972px;}
.ws1a3{word-spacing:10.672560px;}
.ws179{word-spacing:10.705500px;}
.ws1b4{word-spacing:10.712088px;}
.ws178{word-spacing:10.718676px;}
.ws14b{word-spacing:11.001960px;}
.ws18b{word-spacing:11.008548px;}
.ws13b{word-spacing:11.028312px;}
.ws1fa{word-spacing:11.054664px;}
.ws1a0{word-spacing:11.061252px;}
.ws1b8{word-spacing:11.074428px;}
.ws267{word-spacing:11.194344px;}
.wsec{word-spacing:11.377476px;}
.ws177{word-spacing:11.397240px;}
.ws273{word-spacing:11.410416px;}
.ws19d{word-spacing:11.752992px;}
.ws1e5{word-spacing:11.779344px;}
.ws169{word-spacing:11.785932px;}
.ws1a7{word-spacing:12.135096px;}
.ws15a{word-spacing:12.253680px;}
.ws15b{word-spacing:12.266856px;}
.ws18a{word-spacing:12.457908px;}
.ws115{word-spacing:12.840012px;}
.wsbd{word-spacing:13.195764px;}
.ws18d{word-spacing:13.887504px;}
.ws1ed{word-spacing:13.927032px;}
.wse{word-spacing:14.040000px;}
.ws1ec{word-spacing:14.052204px;}
.ws69{word-spacing:14.068080px;}
.ws13{word-spacing:14.112000px;}
.ws20f{word-spacing:14.223492px;}
.ws166{word-spacing:14.282784px;}
.ws167{word-spacing:14.309136px;}
.ws3a{word-spacing:14.474124px;}
.ws24{word-spacing:14.544000px;}
.ws3{word-spacing:14.616000px;}
.ws39{word-spacing:14.627340px;}
.wsb{word-spacing:15.192000px;}
.ws1e{word-spacing:15.480000px;}
.ws20e{word-spacing:16.430472px;}
.ws21b{word-spacing:16.443648px;}
.ws4{word-spacing:17.208000px;}
.ws9a{word-spacing:17.314560px;}
.ws0{word-spacing:19.414200px;}
.ws1a{word-spacing:20.952000px;}
.ws26{word-spacing:21.240000px;}
.ws2d{word-spacing:23.662800px;}
.ws22{word-spacing:23.688000px;}
.wsc{word-spacing:24.408000px;}
.wsa{word-spacing:24.480000px;}
.ws29{word-spacing:26.064000px;}
.ws2e{word-spacing:26.362800px;}
.ws3c{word-spacing:28.124136px;}
.ws11{word-spacing:29.232000px;}
.ws28{word-spacing:30.600000px;}
.ws14{word-spacing:31.896000px;}
.wsf{word-spacing:38.232000px;}
.ws12{word-spacing:40.896000px;}
.ws15{word-spacing:46.728000px;}
.ws2b{word-spacing:47.592000px;}
.ws61{word-spacing:69.282365px;}
.ws26b{word-spacing:131.830200px;}
._c{margin-left:-70.305300px;}
._b{margin-left:-26.643600px;}
._1c{margin-left:-18.390708px;}
._1d{margin-left:-16.563060px;}
._e{margin-left:-14.404752px;}
._17{margin-left:-11.355120px;}
._13{margin-left:-9.538647px;}
._14{margin-left:-8.288028px;}
._12{margin-left:-7.191324px;}
._26{margin-left:-6.155146px;}
._2{margin-left:-5.068416px;}
._3{margin-left:-3.391200px;}
._0{margin-left:-2.278800px;}
._5{margin-left:-1.144800px;}
._1{width:1.034252px;}
._7{width:2.210400px;}
._9{width:3.241497px;}
._25{width:4.894884px;}
._d{width:6.167340px;}
._18{width:7.649784px;}
._a{width:15.482020px;}
._15{width:18.006240px;}
._22{width:19.358640px;}
._1f{width:20.891700px;}
._1e{width:23.056020px;}
._1a{width:33.126120px;}
._16{width:37.265991px;}
._11{width:38.398644px;}
._f{width:41.043924px;}
._20{width:42.745572px;}
._10{width:45.005832px;}
._6{width:46.418400px;}
._19{width:47.885580px;}
._21{width:62.230212px;}
._8{width:71.733600px;}
._1b{width:110.175912px;}
._4{width:284.427600px;}
._27{width:606.316212px;}
._24{width:983.280636px;}
._23{width:1222.347816px;}
.fc3{color:transparent;}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(5,3,1);}
.fsc{font-size:11.880000px;}
.fs12{font-size:33.120000px;}
.fs11{font-size:36.000000px;}
.fs10{font-size:38.880000px;}
.fs8{font-size:42.120000px;}
.fsb{font-size:47.880000px;}
.fs0{font-size:49.908600px;}
.fs7{font-size:54.000000px;}
.fs9{font-size:56.880000px;}
.fsa{font-size:60.120000px;}
.fs6{font-size:65.880000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fse{font-size:83.880000px;}
.fsd{font-size:96.120000px;}
.fs1{font-size:108.000000px;}
.fs3{font-size:134.318400px;}
.fs5{font-size:144.000000px;}
.fsf{font-size:218.880000px;}
.y3b{bottom:-198.728850px;}
.y37{bottom:-197.275800px;}
.y3c{bottom:-197.270850px;}
.y36{bottom:-29.098500px;}
.y39{bottom:-29.093250px;}
.y0{bottom:0.000000px;}
.y33{bottom:41.242500px;}
.y3{bottom:42.380100px;}
.y32{bottom:60.736500px;}
.y14a{bottom:64.942500px;}
.y31{bottom:80.230500px;}
.y235{bottom:97.162050px;}
.y20e{bottom:97.162500px;}
.y20d{bottom:97.163400px;}
.y6d{bottom:98.875839px;}
.y30{bottom:99.724500px;}
.y104{bottom:107.153760px;}
.yd9{bottom:112.772550px;}
.y234{bottom:112.822050px;}
.y20c{bottom:112.823400px;}
.y1d1{bottom:112.914732px;}
.y6c{bottom:114.265407px;}
.y127{bottom:116.345235px;}
.y16e{bottom:118.687404px;}
.y149{bottom:118.687467px;}
.y2f{bottom:119.218500px;}
.y9b{bottom:119.302500px;}
.y1ea{bottom:123.628575px;}
.y9a{bottom:126.682968px;}
.y1{bottom:127.304400px;}
.y49{bottom:127.942500px;}
.y20b{bottom:128.392950px;}
.y233{bottom:128.842500px;}
.yd8{bottom:130.147230px;}
.y232{bottom:133.342500px;}
.y231{bottom:134.872500px;}
.y1d0{bottom:134.874183px;}
.y103{bottom:136.578900px;}
.y1b0{bottom:137.392473px;}
.y1b1{bottom:137.392500px;}
.y126{bottom:138.304686px;}
.y2e{bottom:138.712500px;}
.y99{bottom:138.832482px;}
.y18c{bottom:140.644722px;}
.y16d{bottom:140.646855px;}
.y148{bottom:140.646918px;}
.y20a{bottom:144.502500px;}
.y1e9{bottom:145.588026px;}
.y230{bottom:145.762500px;}
.yd7{bottom:147.521910px;}
.y209{bottom:150.532500px;}
.y98{bottom:150.892491px;}
.y48{bottom:153.862500px;}
.y1af{bottom:154.762644px;}
.y1cf{bottom:156.744696px;}
.y2d{bottom:158.206500px;}
.y125{bottom:160.264137px;}
.y208{bottom:161.332500px;}
.y207{bottom:161.332950px;}
.y18b{bottom:162.604173px;}
.y16c{bottom:162.606306px;}
.y147{bottom:162.606369px;}
.y97{bottom:162.952500px;}
.y22f{bottom:164.302158px;}
.yd6{bottom:164.806410px;}
.y102{bottom:166.071180px;}
.y1e8{bottom:167.547477px;}
.y256{bottom:168.990294px;}
.y47{bottom:169.342500px;}
.y6{bottom:171.413700px;}
.y1ae{bottom:172.042635px;}
.y96{bottom:175.012500px;}
.y206{bottom:176.992950px;}
.y2c{bottom:177.700500px;}
.y1ce{bottom:178.704147px;}
.y22e{bottom:181.672329px;}
.yd5{bottom:182.181090px;}
.y124{bottom:182.223588px;}
.y101{bottom:183.445860px;}
.y18a{bottom:184.563624px;}
.y16b{bottom:184.565757px;}
.y146{bottom:184.565820px;}
.y1ad{bottom:189.412806px;}
.y1e7{bottom:189.506928px;}
.y95{bottom:190.223337px;}
.y255{bottom:190.949745px;}
.y205{bottom:193.102500px;}
.y6b{bottom:194.365605px;}
.y46{bottom:195.172500px;}
.y2b{bottom:197.194500px;}
.y22d{bottom:199.042500px;}
.y204{bottom:199.132500px;}
.yd4{bottom:199.555770px;}
.y1cd{bottom:200.663598px;}
.y123{bottom:204.094101px;}
.y189{bottom:206.434137px;}
.y16a{bottom:206.436270px;}
.y145{bottom:206.436333px;}
.y1ac{bottom:206.782977px;}
.y94{bottom:207.503328px;}
.y5{bottom:209.726700px;}
.y203{bottom:209.932500px;}
.y45{bottom:210.742500px;}
.y1e6{bottom:211.466379px;}
.y254{bottom:212.820258px;}
.y100{bottom:212.964780px;}
.y6a{bottom:213.355515px;}
.y2a{bottom:216.688500px;}
.yd3{bottom:216.930450px;}
.y1cc{bottom:222.623049px;}
.y1ab{bottom:224.153148px;}
.y93{bottom:224.783319px;}
.y22c{bottom:225.594696px;}
.y122{bottom:226.053552px;}
.y188{bottom:228.393588px;}
.y169{bottom:228.395721px;}
.y144{bottom:228.395784px;}
.yff{bottom:230.339460px;}
.y69{bottom:232.345425px;}
.y1e5{bottom:233.425830px;}
.yd2{bottom:234.305130px;}
.y253{bottom:234.779709px;}
.y29{bottom:236.182500px;}
.y44{bottom:236.572500px;}
.y7{bottom:237.946950px;}
.y92{bottom:241.973130px;}
.y1cb{bottom:244.582500px;}
.y22b{bottom:247.554147px;}
.yfe{bottom:247.623960px;}
.y121{bottom:248.013003px;}
.y202{bottom:250.342329px;}
.y187{bottom:250.353039px;}
.y168{bottom:250.355172px;}
.y143{bottom:250.355235px;}
.y1a9{bottom:250.882005px;}
.y1aa{bottom:250.882500px;}
.y68{bottom:251.335335px;}
.y43{bottom:252.142500px;}
.y1e4{bottom:255.385281px;}
.y28{bottom:255.676500px;}
.y252{bottom:256.739160px;}
.y91{bottom:259.253121px;}
.y4{bottom:260.572950px;}
.yfd{bottom:264.998640px;}
.y42{bottom:267.622500px;}
.y201{bottom:267.712500px;}
.yd1{bottom:268.949280px;}
.y22a{bottom:269.513598px;}
.y1a8{bottom:269.962500px;}
.y120{bottom:269.972454px;}
.y67{bottom:270.234660px;}
.y186{bottom:272.312490px;}
.y167{bottom:272.314623px;}
.y142{bottom:272.314686px;}
.y27{bottom:275.170500px;}
.y1ca{bottom:275.271816px;}
.y90{bottom:276.533112px;}
.y1e3{bottom:277.255794px;}
.y251{bottom:278.698611px;}
.yfc{bottom:282.373320px;}
.y41{bottom:283.192500px;}
.yd0{bottom:286.323960px;}
.y66{bottom:289.224570px;}
.y229{bottom:291.473049px;}
.y11f{bottom:291.931905px;}
.y1c9{bottom:292.641987px;}
.y8f{bottom:293.722923px;}
.y200{bottom:294.271392px;}
.y185{bottom:294.271941px;}
.y166{bottom:294.274074px;}
.y141{bottom:294.274137px;}
.y26{bottom:294.664500px;}
.y1e2{bottom:299.215245px;}
.yfb{bottom:299.748000px;}
.y1a7{bottom:300.651816px;}
.y250{bottom:300.658062px;}
.ycf{bottom:303.698640px;}
.y65{bottom:308.214480px;}
.y1c8{bottom:310.012158px;}
.y8e{bottom:311.002914px;}
.y228{bottom:313.432500px;}
.y11e{bottom:313.891356px;}
.y25{bottom:314.158500px;}
.y1ff{bottom:316.230843px;}
.y184{bottom:316.231392px;}
.y165{bottom:316.233525px;}
.y140{bottom:316.233588px;}
.yfa{bottom:317.032500px;}
.y1a6{bottom:318.021987px;}
.yce{bottom:321.073320px;}
.y1e1{bottom:321.174696px;}
.y24f{bottom:322.617513px;}
.y64{bottom:327.204390px;}
.y1c7{bottom:327.382329px;}
.y8d{bottom:328.282905px;}
.y24{bottom:333.652500px;}
.y1a5{bottom:335.392158px;}
.y227{bottom:335.392500px;}
.y11d{bottom:335.850807px;}
.y1fe{bottom:338.190294px;}
.y183{bottom:338.190843px;}
.y164{bottom:338.192976px;}
.y13f{bottom:338.193039px;}
.ycd{bottom:338.335680px;}
.y1e0{bottom:343.134147px;}
.y24e{bottom:344.576964px;}
.y1c6{bottom:344.752500px;}
.y8c{bottom:345.472716px;}
.y63{bottom:346.194300px;}
.yf9{bottom:346.552500px;}
.y1a4{bottom:352.672149px;}
.y23{bottom:353.146500px;}
.ycc{bottom:355.710360px;}
.yb1{bottom:356.907315px;}
.y226{bottom:357.262500px;}
.y11c{bottom:357.810258px;}
.y1fd{bottom:360.149745px;}
.y182{bottom:360.150294px;}
.y163{bottom:360.152427px;}
.y13e{bottom:360.152490px;}
.y8b{bottom:362.752707px;}
.yf8{bottom:363.922500px;}
.y1df{bottom:365.093598px;}
.y62{bottom:365.093625px;}
.y24d{bottom:366.536415px;}
.y1a3{bottom:370.132500px;}
.y22{bottom:372.640500px;}
.y1c5{bottom:374.275281px;}
.yb0{bottom:378.866766px;}
.y225{bottom:379.231755px;}
.y11b{bottom:379.769709px;}
.y8a{bottom:380.032698px;}
.yf7{bottom:381.283320px;}
.y1fc{bottom:382.020258px;}
.y181{bottom:382.020807px;}
.y162{bottom:382.022940px;}
.y13d{bottom:382.023003px;}
.y61{bottom:384.083535px;}
.ycb{bottom:385.229280px;}
.y1de{bottom:387.053049px;}
.y24c{bottom:388.406928px;}
.y21{bottom:392.134500px;}
.y1c4{bottom:396.234732px;}
.y1a2{bottom:396.595245px;}
.y89{bottom:397.222509px;}
.yf6{bottom:398.658000px;}
.yaf{bottom:400.737279px;}
.y224{bottom:401.191206px;}
.y11a{bottom:401.640222px;}
.yca{bottom:402.603960px;}
.y60{bottom:403.073445px;}
.y1fb{bottom:403.979709px;}
.y180{bottom:403.980258px;}
.y161{bottom:403.982391px;}
.y13c{bottom:403.982454px;}
.y1dd{bottom:409.013985px;}
.y24b{bottom:410.366379px;}
.y20{bottom:411.628500px;}
.y88{bottom:414.502509px;}
.yf5{bottom:415.942500px;}
.y1c3{bottom:418.194183px;}
.y1a1{bottom:418.554696px;}
.yc9{bottom:419.888460px;}
.y5f{bottom:422.063355px;}
.y223{bottom:423.150657px;}
.y119{bottom:423.599673px;}
.y1fa{bottom:425.939160px;}
.y17f{bottom:425.939709px;}
.y160{bottom:425.941842px;}
.y13b{bottom:425.941905px;}
.y1dc{bottom:430.973436px;}
.y1f{bottom:431.122500px;}
.yae{bottom:431.336892px;}
.y87{bottom:431.782698px;}
.y24a{bottom:432.325830px;}
.yf4{bottom:433.312500px;}
.yc8{bottom:437.263140px;}
.y1c2{bottom:440.153634px;}
.y1a0{bottom:440.514147px;}
.y5e{bottom:441.053265px;}
.y222{bottom:445.110108px;}
.y118{bottom:445.559124px;}
.y1f9{bottom:447.898611px;}
.y17e{bottom:447.899160px;}
.y15f{bottom:447.901293px;}
.y13a{bottom:447.901356px;}
.y86{bottom:448.972509px;}
.y1e{bottom:450.616500px;}
.yf3{bottom:450.673140px;}
.yad{bottom:452.756127px;}
.y1db{bottom:452.932887px;}
.y249{bottom:454.285281px;}
.yc7{bottom:454.626210px;}
.y5d{bottom:460.043175px;}
.y1c1{bottom:462.113085px;}
.y19f{bottom:462.473598px;}
.y85{bottom:466.252500px;}
.y221{bottom:467.069559px;}
.y117{bottom:467.518575px;}
.yf2{bottom:468.047820px;}
.y1f8{bottom:469.858062px;}
.y17d{bottom:469.858611px;}
.y15e{bottom:469.860744px;}
.y139{bottom:469.860807px;}
.y1d{bottom:470.110500px;}
.yc6{bottom:472.000890px;}
.yac{bottom:474.175362px;}
.y1da{bottom:474.803400px;}
.y248{bottom:476.244732px;}
.y5c{bottom:478.942500px;}
.y84{bottom:482.991924px;}
.y1c0{bottom:484.072536px;}
.y19e{bottom:484.433049px;}
.yf1{bottom:485.422500px;}
.y220{bottom:489.029010px;}
.y116{bottom:489.478026px;}
.y1c{bottom:489.604500px;}
.y1f7{bottom:491.817513px;}
.y17c{bottom:491.818062px;}
.y15d{bottom:491.820195px;}
.y138{bottom:491.820258px;}
.yab{bottom:495.955290px;}
.y83{bottom:496.762212px;}
.y1d9{bottom:496.762851px;}
.y247{bottom:498.204183px;}
.y5b{bottom:501.441600px;}
.yc5{bottom:501.519810px;}
.yf0{bottom:502.702500px;}
.y1bf{bottom:505.943049px;}
.y19d{bottom:506.392500px;}
.y82{bottom:510.532500px;}
.y21f{bottom:510.988461px;}
.y115{bottom:511.437477px;}
.y1f6{bottom:513.776964px;}
.y17b{bottom:513.777513px;}
.y15c{bottom:513.779646px;}
.y137{bottom:513.779709px;}
.yaa{bottom:517.914741px;}
.y1d8{bottom:518.722302px;}
.yc4{bottom:518.804310px;}
.yef{bottom:520.072500px;}
.y246{bottom:520.163634px;}
.y1be{bottom:527.902500px;}
.y1bd{bottom:527.904696px;}
.y1b{bottom:528.610500px;}
.y5a{bottom:531.951600px;}
.y21e{bottom:532.858974px;}
.y114{bottom:533.396928px;}
.y1f5{bottom:535.736415px;}
.y17a{bottom:535.736964px;}
.y15b{bottom:535.739097px;}
.y136{bottom:535.739160px;}
.yc3{bottom:536.178990px;}
.y19c{bottom:537.081654px;}
.yee{bottom:537.442500px;}
.ya9{bottom:539.874192px;}
.y245{bottom:542.123085px;}
.y81{bottom:543.922320px;}
.y1a{bottom:548.104500px;}
.y1d6{bottom:549.411816px;}
.y1d7{bottom:549.412500px;}
.y1bc{bottom:549.864147px;}
.yc2{bottom:553.552200px;}
.y19b{bottom:554.451825px;}
.yed{bottom:554.807820px;}
.y21d{bottom:554.818425px;}
.y113{bottom:555.356379px;}
.y1f4{bottom:557.606928px;}
.y179{bottom:557.607477px;}
.y15a{bottom:557.609610px;}
.y135{bottom:557.609673px;}
.y80{bottom:559.401924px;}
.y59{bottom:562.372500px;}
.y244{bottom:563.993598px;}
.y3f{bottom:566.152500px;}
.y1d5{bottom:566.781987px;}
.y19{bottom:567.598500px;}
.ya8{bottom:570.473805px;}
.yc1{bottom:570.913320px;}
.y19a{bottom:571.821996px;}
.y1bb{bottom:571.823598px;}
.yec{bottom:572.182500px;}
.y7f{bottom:574.972500px;}
.y21c{bottom:576.777876px;}
.y112{bottom:577.226892px;}
.y1f3{bottom:579.566379px;}
.y178{bottom:579.566928px;}
.y159{bottom:579.569061px;}
.y134{bottom:579.569124px;}
.y1d4{bottom:584.152158px;}
.y243{bottom:585.953049px;}
.y18{bottom:587.092500px;}
.yc0{bottom:588.288000px;}
.y199{bottom:589.192167px;}
.yeb{bottom:589.462500px;}
.y7e{bottom:590.452500px;}
.ya7{bottom:591.893040px;}
.y1ba{bottom:593.783049px;}
.y3e{bottom:596.662500px;}
.y21b{bottom:598.737327px;}
.y111{bottom:599.186343px;}
.y1d3{bottom:601.522329px;}
.y1f2{bottom:601.525830px;}
.y177{bottom:601.526379px;}
.y158{bottom:601.528512px;}
.y133{bottom:601.528575px;}
.ybf{bottom:605.550360px;}
.y198{bottom:606.472158px;}
.y17{bottom:606.586500px;}
.yea{bottom:606.832500px;}
.y242{bottom:607.912500px;}
.y241{bottom:607.916379px;}
.y58{bottom:613.222500px;}
.ya6{bottom:613.223337px;}
.y1b9{bottom:615.742500px;}
.y1d2{bottom:618.892500px;}
.y21a{bottom:620.696778px;}
.y110{bottom:621.145794px;}
.y1f1{bottom:623.485281px;}
.y176{bottom:623.485830px;}
.y157{bottom:623.487963px;}
.y132{bottom:623.488026px;}
.y197{bottom:623.842329px;}
.ye9{bottom:624.202500px;}
.y7d{bottom:624.563625px;}
.y16{bottom:626.080500px;}
.y240{bottom:629.875830px;}
.ya5{bottom:634.642572px;}
.ybe{bottom:635.069280px;}
.y7c{bottom:640.853139px;}
.y196{bottom:641.212500px;}
.ye8{bottom:641.572500px;}
.y219{bottom:642.656229px;}
.y10f{bottom:643.105245px;}
.y1f0{bottom:645.444732px;}
.y175{bottom:645.445281px;}
.y156{bottom:645.447414px;}
.y131{bottom:645.447477px;}
.y15{bottom:645.574500px;}
.y1b8{bottom:646.431654px;}
.y3d{bottom:647.512500px;}
.y57{bottom:648.052500px;}
.y23f{bottom:651.835281px;}
.ybd{bottom:652.443960px;}
.ya4{bottom:656.422500px;}
.y7b{bottom:658.133130px;}
.ye7{bottom:658.852500px;}
.y1b7{bottom:663.801825px;}
.y218{bottom:664.615680px;}
.y128{bottom:664.792350px;}
.y10e{bottom:665.064696px;}
.y14{bottom:665.068500px;}
.y56{bottom:666.772905px;}
.y1ef{bottom:667.404183px;}
.y174{bottom:667.404732px;}
.y155{bottom:667.406865px;}
.y130{bottom:667.406928px;}
.y195{bottom:667.764696px;}
.ybc{bottom:669.818640px;}
.y23e{bottom:673.794732px;}
.y7a{bottom:675.413121px;}
.ye6{bottom:676.222350px;}
.y1b6{bottom:681.171996px;}
.y55{bottom:684.052896px;}
.y13{bottom:684.562500px;}
.y217{bottom:686.575131px;}
.y10d{bottom:687.024147px;}
.ybb{bottom:687.103140px;}
.ya3{bottom:687.382350px;}
.y1ee{bottom:689.363634px;}
.y173{bottom:689.364183px;}
.y154{bottom:689.366316px;}
.y12f{bottom:689.366379px;}
.y194{bottom:689.724147px;}
.y79{bottom:692.602932px;}
.ye5{bottom:693.592500px;}
.y23d{bottom:695.754183px;}
.y1b5{bottom:698.542167px;}
.y54{bottom:701.242707px;}
.y12{bottom:704.056500px;}
.yba{bottom:704.475300px;}
.y216{bottom:708.445644px;}
.ya2{bottom:708.982500px;}
.y10c{bottom:708.983598px;}
.y78{bottom:709.882923px;}
.ye4{bottom:710.962500px;}
.y1ed{bottom:711.323085px;}
.y172{bottom:711.323634px;}
.y153{bottom:711.325767px;}
.y12e{bottom:711.325830px;}
.y193{bottom:711.683598px;}
.yb5{bottom:715.755090px;}
.y1b4{bottom:715.822158px;}
.y23c{bottom:717.713634px;}
.y53{bottom:718.522698px;}
.yb9{bottom:721.849980px;}
.y11{bottom:723.550500px;}
.y77{bottom:727.162914px;}
.ye3{bottom:728.332500px;}
.ya1{bottom:730.402500px;}
.y215{bottom:730.405095px;}
.y10b{bottom:730.943049px;}
.y1b3{bottom:733.192329px;}
.y1ec{bottom:733.282536px;}
.y171{bottom:733.283085px;}
.y152{bottom:733.285218px;}
.y12d{bottom:733.285281px;}
.y192{bottom:733.643049px;}
.y52{bottom:735.712509px;}
.yb4{bottom:737.166090px;}
.y23b{bottom:739.673085px;}
.y10{bottom:743.044500px;}
.y76{bottom:744.352725px;}
.ye2{bottom:745.612500px;}
.y1b2{bottom:750.562500px;}
.ya0{bottom:751.822500px;}
.y214{bottom:752.364546px;}
.y10a{bottom:752.902500px;}
.y51{bottom:752.992500px;}
.yb8{bottom:753.169980px;}
.y1eb{bottom:755.153049px;}
.y170{bottom:755.153598px;}
.y151{bottom:755.155731px;}
.y12c{bottom:755.155794px;}
.y191{bottom:755.602500px;}
.yb3{bottom:758.577090px;}
.y23a{bottom:761.543598px;}
.y75{bottom:761.632716px;}
.yf{bottom:762.538500px;}
.ye1{bottom:762.982500px;}
.y50{bottom:770.543385px;}
.y9f{bottom:773.242500px;}
.y213{bottom:774.323997px;}
.y109{bottom:776.392500px;}
.y16f{bottom:777.113049px;}
.y150{bottom:777.115182px;}
.y12b{bottom:777.115245px;}
.y74{bottom:778.912707px;}
.yb2{bottom:779.996400px;}
.ye{bottom:782.032500px;}
.y239{bottom:783.503049px;}
.yb7{bottom:784.492500px;}
.y190{bottom:786.291837px;}
.y4f{bottom:789.533295px;}
.y9e{bottom:791.153385px;}
.y73{bottom:796.102518px;}
.y212{bottom:796.283448px;}
.y14f{bottom:799.074633px;}
.y12a{bottom:799.074696px;}
.ye0{bottom:801.479130px;}
.yd{bottom:801.526500px;}
.y18f{bottom:803.662008px;}
.y238{bottom:805.462500px;}
.y4e{bottom:808.432620px;}
.y9d{bottom:810.143295px;}
.y72{bottom:813.382509px;}
.y108{bottom:814.372500px;}
.y211{bottom:818.242899px;}
.ydf{bottom:818.853810px;}
.yc{bottom:821.020500px;}
.y18e{bottom:821.032179px;}
.y14e{bottom:821.034084px;}
.y129{bottom:821.034147px;}
.y4d{bottom:827.422530px;}
.y9c{bottom:829.042620px;}
.y71{bottom:830.662500px;}
.y237{bottom:836.151837px;}
.yde{bottom:836.228490px;}
.y18d{bottom:838.402350px;}
.y210{bottom:840.202350px;}
.yb{bottom:840.514500px;}
.y14d{bottom:842.993535px;}
.y107{bottom:842.993598px;}
.y4c{bottom:846.412440px;}
.y70{bottom:848.032530px;}
.ydd{bottom:853.512990px;}
.y236{bottom:853.522008px;}
.yb6{bottom:856.312350px;}
.ya{bottom:860.008500px;}
.y14c{bottom:864.952986px;}
.y106{bottom:864.953049px;}
.y4b{bottom:865.402350px;}
.y6f{bottom:867.022440px;}
.ydc{bottom:870.887670px;}
.y20f{bottom:870.892179px;}
.y9{bottom:879.502500px;}
.y4a{bottom:884.752500px;}
.y6e{bottom:886.012350px;}
.y40{bottom:886.102500px;}
.y14b{bottom:886.912437px;}
.y105{bottom:886.912500px;}
.ydb{bottom:888.262350px;}
.y8{bottom:898.996500px;}
.yda{bottom:939.472350px;}
.y2{bottom:957.820950px;}
.y34{bottom:1036.902750px;}
.y38{bottom:1066.270200px;}
.y3a{bottom:1066.275150px;}
.y35{bottom:1067.728200px;}
.h17{height:10.424004px;}
.h2a{height:27.961172px;}
.h28{height:30.392578px;}
.h15{height:33.338320px;}
.h2{height:34.187391px;}
.hf{height:36.957832px;}
.h14{height:41.860898px;}
.h16{height:42.011895px;}
.h13{height:43.909277px;}
.h27{height:45.588867px;}
.he{height:47.381836px;}
.h9{height:49.320000px;}
.h11{height:49.908867px;}
.h20{height:50.139141px;}
.h1b{height:50.755605px;}
.h1e{height:50.761485px;}
.h1c{height:50.765685px;}
.h22{height:50.770005px;}
.h1f{height:50.802045px;}
.h1d{height:50.844165px;}
.h21{height:50.862165px;}
.h12{height:52.751777px;}
.h8{height:54.000000px;}
.h18{height:54.942891px;}
.h19{height:55.618418px;}
.h25{height:56.935200px;}
.h26{height:56.941788px;}
.h29{height:56.943984px;}
.hd{height:57.805840px;}
.h4{height:58.500000px;}
.h10{height:63.175781px;}
.h23{height:69.954609px;}
.h3{height:81.000000px;}
.h1a{height:81.148184px;}
.h7{height:83.252653px;}
.hc{height:90.070312px;}
.h6{height:97.189453px;}
.hb{height:120.093750px;}
.h5{height:120.873443px;}
.h24{height:184.786875px;}
.ha{height:1020.000000px;}
.h0{height:1020.474000px;}
.h1{height:1020.750000px;}
.w0{width:722.832000px;}
.w2{width:722.838000px;}
.w1{width:723.000000px;}
.x12{left:-1289.015100px;}
.x13{left:-1286.009100px;}
.x17{left:-1133.173800px;}
.x14{left:-1131.373800px;}
.x16{left:-798.121800px;}
.x11{left:-794.825400px;}
.x29{left:-506.652600px;}
.x2a{left:-503.646600px;}
.x2e{left:-350.811300px;}
.x2b{left:-349.011300px;}
.x1{left:-235.960200px;}
.x15{left:-72.307800px;}
.x10{left:-60.011400px;}
.x7{left:-25.236600px;}
.x2d{left:-15.759300px;}
.x28{left:-12.462900px;}
.xe{left:-9.449400px;}
.xa{left:-7.660650px;}
.x0{left:0.000000px;}
.x3e{left:95.670000px;}
.x58{left:99.900000px;}
.x4e{left:121.500372px;}
.x4c{left:122.669659px;}
.x48{left:127.530000px;}
.x4{left:130.994100px;}
.x5{left:132.942450px;}
.x30{left:148.590000px;}
.x4f{left:150.120000px;}
.x50{left:153.180000px;}
.x3f{left:159.480000px;}
.x59{left:167.220000px;}
.x49{left:170.100000px;}
.x33{left:180.720000px;}
.x34{left:202.050450px;}
.x31{left:212.670000px;}
.x32{left:248.220000px;}
.x4b{left:253.350000px;}
.x37{left:255.240000px;}
.x38{left:265.230000px;}
.x44{left:276.390000px;}
.x4a{left:286.020000px;}
.x39{left:307.530000px;}
.x4d{left:315.090000px;}
.x3a{left:320.580000px;}
.x47{left:326.970000px;}
.x43{left:329.580387px;}
.x6{left:331.932450px;}
.x35{left:338.580000px;}
.x36{left:357.210000px;}
.x40{left:361.440000px;}
.x3b{left:368.460000px;}
.x3c{left:380.430000px;}
.x52{left:381.690000px;}
.x56{left:396.990000px;}
.x2{left:409.315200px;}
.x5a{left:453.240000px;}
.x5b{left:456.930000px;}
.x53{left:462.600000px;}
.x3d{left:467.640000px;}
.x54{left:470.430000px;}
.x41{left:475.199032px;}
.x3{left:477.753450px;}
.x51{left:484.740000px;}
.x46{left:501.931777px;}
.x45{left:505.260000px;}
.x57{left:533.070000px;}
.x55{left:595.620000px;}
.x42{left:627.209604px;}
.x2c{left:710.054700px;}
.xf{left:713.124600px;}
.x27{left:722.351100px;}
.xb{left:750.913350px;}
.x1e{left:757.125900px;}
.x8{left:765.305250px;}
.x25{left:772.913100px;}
.x21{left:774.701850px;}
.x1b{left:913.356600px;}
.x1c{left:915.304950px;}
.xd{left:1052.622600px;}
.x18{left:1055.320200px;}
.x9{left:1107.970200px;}
.x1d{left:1114.294950px;}
.xc{left:1115.470200px;}
.x19{left:1191.677700px;}
.x1a{left:1260.115950px;}
.x26{left:1495.487100px;}
.x22{left:1533.275850px;}
.x1f{left:1547.667750px;}
.x24{left:1834.985100px;}
.x2f{left:1837.682700px;}
.x20{left:1890.332700px;}
.x23{left:1897.832700px;}
@media print{
.v3{vertical-align:-21.440000pt;}
.v1{vertical-align:-12.388267pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.432192pt;}
.ls2a{letter-spacing:-1.688704pt;}
.ls1e{letter-spacing:-1.676864pt;}
.ls29{letter-spacing:-1.647072pt;}
.ls27{letter-spacing:-1.642816pt;}
.ls5f{letter-spacing:-1.629920pt;}
.ls5e{letter-spacing:-1.613888pt;}
.lse7{letter-spacing:-1.610400pt;}
.ls25{letter-spacing:-1.604512pt;}
.lse8{letter-spacing:-1.598688pt;}
.lse0{letter-spacing:-1.592832pt;}
.ls26{letter-spacing:-1.591744pt;}
.lse3{letter-spacing:-1.586976pt;}
.lsea{letter-spacing:-1.575264pt;}
.lse6{letter-spacing:-1.569408pt;}
.lsec{letter-spacing:-1.563552pt;}
.ls21{letter-spacing:-1.561952pt;}
.ls24{letter-spacing:-1.560448pt;}
.lse4{letter-spacing:-1.557696pt;}
.lsdd{letter-spacing:-1.551840pt;}
.lsdf{letter-spacing:-1.545984pt;}
.lsdc{letter-spacing:-1.540128pt;}
.lse2{letter-spacing:-1.534272pt;}
.ls20{letter-spacing:-1.532160pt;}
.lsde{letter-spacing:-1.528416pt;}
.ls28{letter-spacing:-1.517696pt;}
.lsdb{letter-spacing:-1.516704pt;}
.lse5{letter-spacing:-1.504992pt;}
.ls1f{letter-spacing:-1.502368pt;}
.ls36{letter-spacing:-1.497600pt;}
.lse1{letter-spacing:-1.493280pt;}
.ls35{letter-spacing:-1.482624pt;}
.lseb{letter-spacing:-1.481568pt;}
.ls23{letter-spacing:-1.472576pt;}
.ls37{letter-spacing:-1.471392pt;}
.ls22{letter-spacing:-1.425760pt;}
.lsc1{letter-spacing:-1.376160pt;}
.lse9{letter-spacing:-1.364448pt;}
.ls91{letter-spacing:-1.311744pt;}
.ls98{letter-spacing:-1.305888pt;}
.lsc6{letter-spacing:-1.303936pt;}
.lsb4{letter-spacing:-1.300032pt;}
.lsca{letter-spacing:-1.298592pt;}
.ls94{letter-spacing:-1.294176pt;}
.ls93{letter-spacing:-1.288320pt;}
.ls52{letter-spacing:-1.287904pt;}
.lsc3{letter-spacing:-1.282560pt;}
.ls92{letter-spacing:-1.282464pt;}
.ls96{letter-spacing:-1.276608pt;}
.ls50{letter-spacing:-1.271872pt;}
.ls8c{letter-spacing:-1.270752pt;}
.lsc4{letter-spacing:-1.266528pt;}
.ls97{letter-spacing:-1.264896pt;}
.ls6d{letter-spacing:-1.261184pt;}
.ls90{letter-spacing:-1.259040pt;}
.lsb9{letter-spacing:-1.255840pt;}
.ls8d{letter-spacing:-1.253184pt;}
.lsed{letter-spacing:-1.250496pt;}
.lsd7{letter-spacing:-1.248000pt;}
.ls8f{letter-spacing:-1.247328pt;}
.lsbd{letter-spacing:-1.245152pt;}
.lsab{letter-spacing:-1.241472pt;}
.lsc5{letter-spacing:-1.239808pt;}
.ls8e{letter-spacing:-1.235616pt;}
.lsee{letter-spacing:-1.234464pt;}
.ls8b{letter-spacing:-1.229760pt;}
.lsbc{letter-spacing:-1.229120pt;}
.ls7e{letter-spacing:-1.223904pt;}
.ls67{letter-spacing:-1.223776pt;}
.ls99{letter-spacing:-1.218048pt;}
.lsbf{letter-spacing:-1.213088pt;}
.lscb{letter-spacing:-1.200480pt;}
.lsf4{letter-spacing:-1.194624pt;}
.lsac{letter-spacing:-1.188768pt;}
.lsa7{letter-spacing:-1.182912pt;}
.ls6b{letter-spacing:-1.181024pt;}
.ls6a{letter-spacing:-1.175680pt;}
.lscd{letter-spacing:-1.171200pt;}
.lsf0{letter-spacing:-1.156800pt;}
.ls9e{letter-spacing:-1.153632pt;}
.ls86{letter-spacing:-1.147776pt;}
.lsd6{letter-spacing:-1.123200pt;}
.ls6c{letter-spacing:-1.116896pt;}
.ls58{letter-spacing:-1.100864pt;}
.ls47{letter-spacing:-1.095520pt;}
.ls85{letter-spacing:-1.095072pt;}
.ls63{letter-spacing:-1.090176pt;}
.ls66{letter-spacing:-1.084832pt;}
.lsf2{letter-spacing:-1.084800pt;}
.lsb7{letter-spacing:-1.083360pt;}
.ls5d{letter-spacing:-1.079488pt;}
.lsa3{letter-spacing:-1.077504pt;}
.lsb1{letter-spacing:-1.076544pt;}
.lsd5{letter-spacing:-1.075200pt;}
.ls4e{letter-spacing:-1.074144pt;}
.lsa8{letter-spacing:-1.071648pt;}
.ls46{letter-spacing:-1.068800pt;}
.lsa2{letter-spacing:-1.065792pt;}
.ls59{letter-spacing:-1.063456pt;}
.ls7c{letter-spacing:-1.059936pt;}
.ls48{letter-spacing:-1.058112pt;}
.ls3{letter-spacing:-1.056000pt;}
.ls87{letter-spacing:-1.054080pt;}
.ls5c{letter-spacing:-1.052768pt;}
.lsd0{letter-spacing:-1.051200pt;}
.ls7b{letter-spacing:-1.048224pt;}
.ls55{letter-spacing:-1.047424pt;}
.lsae{letter-spacing:-1.042368pt;}
.lsef{letter-spacing:-1.042176pt;}
.ls4b{letter-spacing:-1.042080pt;}
.lsd9{letter-spacing:-1.041600pt;}
.lsd4{letter-spacing:-1.036800pt;}
.ls49{letter-spacing:-1.036736pt;}
.lsaf{letter-spacing:-1.036512pt;}
.ls51{letter-spacing:-1.031392pt;}
.lsa1{letter-spacing:-1.030656pt;}
.ls4a{letter-spacing:-1.026048pt;}
.ls89{letter-spacing:-1.024800pt;}
.ls53{letter-spacing:-1.020704pt;}
.ls9f{letter-spacing:-1.018944pt;}
.lsd1{letter-spacing:-1.017600pt;}
.ls61{letter-spacing:-1.015360pt;}
.ls5b{letter-spacing:-1.010016pt;}
.lsd3{letter-spacing:-1.008000pt;}
.lsa4{letter-spacing:-1.007232pt;}
.lsb2{letter-spacing:-1.006560pt;}
.lsbb{letter-spacing:-1.004672pt;}
.lsf3{letter-spacing:-1.003200pt;}
.ls82{letter-spacing:-1.001376pt;}
.lsbe{letter-spacing:-0.999328pt;}
.ls76{letter-spacing:-0.995520pt;}
.lsd2{letter-spacing:-0.993600pt;}
.ls6f{letter-spacing:-0.991104pt;}
.ls9b{letter-spacing:-0.989664pt;}
.ls57{letter-spacing:-0.988640pt;}
.lsf1{letter-spacing:-0.984000pt;}
.ls84{letter-spacing:-0.983808pt;}
.lsba{letter-spacing:-0.983296pt;}
.ls69{letter-spacing:-0.977952pt;}
.ls70{letter-spacing:-0.976736pt;}
.ls62{letter-spacing:-0.972608pt;}
.ls83{letter-spacing:-0.972096pt;}
.ls75{letter-spacing:-0.966240pt;}
.ls6e{letter-spacing:-0.961920pt;}
.ls79{letter-spacing:-0.960384pt;}
.ls71{letter-spacing:-0.954528pt;}
.ls56{letter-spacing:-0.951232pt;}
.ls7a{letter-spacing:-0.948672pt;}
.lsc0{letter-spacing:-0.945888pt;}
.ls78{letter-spacing:-0.942816pt;}
.ls54{letter-spacing:-0.940544pt;}
.ls74{letter-spacing:-0.936960pt;}
.lsc9{letter-spacing:-0.935200pt;}
.ls81{letter-spacing:-0.931104pt;}
.ls4f{letter-spacing:-0.929856pt;}
.ls7d{letter-spacing:-0.925248pt;}
.lsd8{letter-spacing:-0.921600pt;}
.ls73{letter-spacing:-0.919392pt;}
.lsc2{letter-spacing:-0.919168pt;}
.ls68{letter-spacing:-0.913824pt;}
.ls8a{letter-spacing:-0.913536pt;}
.ls4c{letter-spacing:-0.908480pt;}
.ls72{letter-spacing:-0.907680pt;}
.ls88{letter-spacing:-0.901824pt;}
.ls9d{letter-spacing:-0.895968pt;}
.ls9c{letter-spacing:-0.890112pt;}
.ls65{letter-spacing:-0.887104pt;}
.lsa6{letter-spacing:-0.884256pt;}
.ls60{letter-spacing:-0.881760pt;}
.lsa9{letter-spacing:-0.878400pt;}
.ls4d{letter-spacing:-0.865728pt;}
.lsb3{letter-spacing:-0.849120pt;}
.ls80{letter-spacing:-0.836608pt;}
.lsa0{letter-spacing:-0.415776pt;}
.ls31{letter-spacing:-0.160320pt;}
.ls18{letter-spacing:-0.153504pt;}
.ls32{letter-spacing:-0.138944pt;}
.ls2e{letter-spacing:-0.090848pt;}
.lsb8{letter-spacing:-0.064128pt;}
.ls14{letter-spacing:-0.057600pt;}
.ls30{letter-spacing:-0.048096pt;}
.ls2d{letter-spacing:-0.046816pt;}
.ls13{letter-spacing:-0.038400pt;}
.ls3c{letter-spacing:-0.035136pt;}
.ls2f{letter-spacing:-0.032064pt;}
.ls3d{letter-spacing:-0.029280pt;}
.ls12{letter-spacing:-0.028800pt;}
.ls33{letter-spacing:-0.026720pt;}
.ls2c{letter-spacing:-0.025536pt;}
.ls1b{letter-spacing:-0.025280pt;}
.ls64{letter-spacing:-0.021376pt;}
.ls17{letter-spacing:-0.019200pt;}
.ls2{letter-spacing:-0.012800pt;}
.ls44{letter-spacing:-0.011712pt;}
.ls45{letter-spacing:-0.008544pt;}
.ls3b{letter-spacing:-0.005856pt;}
.ls1a{letter-spacing:-0.005056pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.004800pt;}
.ls42{letter-spacing:0.005856pt;}
.ls41{letter-spacing:0.011712pt;}
.ls11{letter-spacing:0.014400pt;}
.ls38{letter-spacing:0.017568pt;}
.ls19{letter-spacing:0.020224pt;}
.ls39{letter-spacing:0.023424pt;}
.lse{letter-spacing:0.024000pt;}
.lscf{letter-spacing:0.025600pt;}
.ls5{letter-spacing:0.029280pt;}
.ls3f{letter-spacing:0.035136pt;}
.ls10{letter-spacing:0.038400pt;}
.ls3a{letter-spacing:0.040992pt;}
.lsd{letter-spacing:0.043200pt;}
.lsf{letter-spacing:0.048000pt;}
.ls40{letter-spacing:0.052704pt;}
.lsa{letter-spacing:0.057600pt;}
.ls43{letter-spacing:0.070272pt;}
.ls1d{letter-spacing:0.074816pt;}
.ls34{letter-spacing:0.080160pt;}
.ls7{letter-spacing:0.081609pt;}
.ls6{letter-spacing:0.084208pt;}
.ls15{letter-spacing:0.086400pt;}
.lsc{letter-spacing:0.096000pt;}
.lscc{letter-spacing:0.113123pt;}
.ls1c{letter-spacing:0.136320pt;}
.ls8{letter-spacing:0.161351pt;}
.ls9{letter-spacing:0.163968pt;}
.ls3e{letter-spacing:0.228384pt;}
.ls7f{letter-spacing:0.544608pt;}
.ls77{letter-spacing:0.866688pt;}
.lsaa{letter-spacing:1.504992pt;}
.lsc7{letter-spacing:1.827072pt;}
.ls5a{letter-spacing:1.993312pt;}
.lsda{letter-spacing:2.049600pt;}
.ls16{letter-spacing:2.083200pt;}
.lsb0{letter-spacing:2.143296pt;}
.lsc8{letter-spacing:2.241422pt;}
.lsb5{letter-spacing:2.881493pt;}
.ls0{letter-spacing:3.200000pt;}
.ls95{letter-spacing:3.425760pt;}
.ls9a{letter-spacing:4.386144pt;}
.lsa5{letter-spacing:5.024448pt;}
.lsb6{letter-spacing:5.346528pt;}
.ls4{letter-spacing:5.356800pt;}
.lsad{letter-spacing:8.543904pt;}
.ls2b{letter-spacing:62.482048pt;}
.lsce{letter-spacing:102.720000pt;}
.ws32{word-spacing:-13.360000pt;}
.ws31{word-spacing:-12.614720pt;}
.ws30{word-spacing:-12.004800pt;}
.ws2f{word-spacing:-11.961600pt;}
.ws246{word-spacing:-11.712000pt;}
.ws60{word-spacing:-10.891072pt;}
.ws62{word-spacing:-10.826944pt;}
.ws91{word-spacing:-10.784192pt;}
.ws140{word-spacing:-10.728192pt;}
.ws63{word-spacing:-10.720064pt;}
.ws92{word-spacing:-10.714720pt;}
.ws1f8{word-spacing:-10.693056pt;}
.ws245{word-spacing:-10.688000pt;}
.wsfa{word-spacing:-10.687200pt;}
.ws35{word-spacing:-10.593184pt;}
.ws249{word-spacing:-9.556800pt;}
.ws248{word-spacing:-9.508800pt;}
.ws247{word-spacing:-9.475200pt;}
.ws81{word-spacing:-9.453536pt;}
.wsa4{word-spacing:-9.132896pt;}
.ws33{word-spacing:-8.997184pt;}
.ws34{word-spacing:-8.992928pt;}
.ws225{word-spacing:-8.678400pt;}
.ws9c{word-spacing:-8.170976pt;}
.ws94{word-spacing:-7.844992pt;}
.wsb0{word-spacing:-7.529696pt;}
.ws8e{word-spacing:-7.524352pt;}
.wsaf{word-spacing:-6.888416pt;}
.ws68{word-spacing:-6.247136pt;}
.ws8b{word-spacing:-6.241792pt;}
.ws7c{word-spacing:-5.290560pt;}
.ws5{word-spacing:-3.520000pt;}
.ws7a{word-spacing:-3.372064pt;}
.wsa9{word-spacing:-3.051424pt;}
.ws98{word-spacing:-2.725440pt;}
.ws8f{word-spacing:-2.720096pt;}
.ws9f{word-spacing:-2.714752pt;}
.ws10{word-spacing:-2.368000pt;}
.ws27{word-spacing:-2.112000pt;}
.ws6{word-spacing:-1.664000pt;}
.ws21{word-spacing:-1.472000pt;}
.ws70{word-spacing:-1.448224pt;}
.ws7d{word-spacing:-1.127584pt;}
.ws77{word-spacing:-1.122240pt;}
.wsa1{word-spacing:-1.116896pt;}
.ws6c{word-spacing:-1.095520pt;}
.ws237{word-spacing:-0.992000pt;}
.ws25{word-spacing:-0.960000pt;}
.ws84{word-spacing:-0.796256pt;}
.ws1d{word-spacing:-0.576000pt;}
.ws4b{word-spacing:-0.527904pt;}
.ws66{word-spacing:-0.491648pt;}
.wsa0{word-spacing:-0.480960pt;}
.ws1b6{word-spacing:-0.456768pt;}
.ws13d{word-spacing:-0.439200pt;}
.ws1a9{word-spacing:-0.415776pt;}
.ws6a{word-spacing:-0.342016pt;}
.ws8a{word-spacing:-0.325984pt;}
.ws93{word-spacing:-0.320640pt;}
.ws45{word-spacing:-0.315296pt;}
.ws6f{word-spacing:-0.277888pt;}
.wsb1{word-spacing:-0.245824pt;}
.ws9b{word-spacing:-0.229792pt;}
.ws24b{word-spacing:-0.219104pt;}
.ws3b{word-spacing:-0.208544pt;}
.ws82{word-spacing:-0.197728pt;}
.ws75{word-spacing:-0.187040pt;}
.ws67{word-spacing:-0.181696pt;}
.ws6e{word-spacing:-0.176352pt;}
.ws6d{word-spacing:-0.171008pt;}
.ws6b{word-spacing:-0.165664pt;}
.ws234{word-spacing:-0.163968pt;}
.ws7f{word-spacing:-0.160320pt;}
.ws99{word-spacing:-0.154976pt;}
.ws150{word-spacing:-0.152256pt;}
.ws65{word-spacing:-0.149632pt;}
.ws5a{word-spacing:-0.146400pt;}
.ws80{word-spacing:-0.144288pt;}
.ws26f{word-spacing:-0.138944pt;}
.ws53{word-spacing:-0.134688pt;}
.ws8c{word-spacing:-0.133600pt;}
.ws103{word-spacing:-0.128832pt;}
.ws85{word-spacing:-0.128256pt;}
.wsf5{word-spacing:-0.122976pt;}
.ws95{word-spacing:-0.122912pt;}
.ws90{word-spacing:-0.117568pt;}
.ws56{word-spacing:-0.117120pt;}
.ws88{word-spacing:-0.112224pt;}
.ws11e{word-spacing:-0.111264pt;}
.ws7e{word-spacing:-0.106880pt;}
.ws190{word-spacing:-0.105408pt;}
.ws116{word-spacing:-0.099552pt;}
.ws1b9{word-spacing:-0.093696pt;}
.wsca{word-spacing:-0.087840pt;}
.wsd6{word-spacing:-0.081984pt;}
.ws43{word-spacing:-0.080160pt;}
.ws12d{word-spacing:-0.076128pt;}
.ws1e1{word-spacing:-0.074816pt;}
.wsd7{word-spacing:-0.070272pt;}
.ws1{word-spacing:-0.069333pt;}
.ws276{word-spacing:-0.052704pt;}
.ws14f{word-spacing:-0.023424pt;}
.ws275{word-spacing:-0.017568pt;}
.ws2{word-spacing:0.000000pt;}
.wsb2{word-spacing:0.029824pt;}
.ws79{word-spacing:0.042752pt;}
.ws2c{word-spacing:0.064000pt;}
.ws244{word-spacing:0.072000pt;}
.wsae{word-spacing:0.074816pt;}
.ws54{word-spacing:0.076128pt;}
.ws42{word-spacing:0.080160pt;}
.ws57{word-spacing:0.081984pt;}
.ws86{word-spacing:0.085504pt;}
.ws23c{word-spacing:0.086400pt;}
.ws58{word-spacing:0.087840pt;}
.ws55{word-spacing:0.093696pt;}
.ws59{word-spacing:0.099552pt;}
.ws87{word-spacing:0.101536pt;}
.ws46{word-spacing:0.106880pt;}
.ws40{word-spacing:0.112224pt;}
.ws1c1{word-spacing:0.117120pt;}
.ws41{word-spacing:0.128256pt;}
.ws5f{word-spacing:0.128832pt;}
.ws4a{word-spacing:0.138528pt;}
.ws72{word-spacing:0.144288pt;}
.ws51{word-spacing:0.146400pt;}
.ws74{word-spacing:0.149632pt;}
.ws97{word-spacing:0.154976pt;}
.ws89{word-spacing:0.160320pt;}
.ws11d{word-spacing:0.163968pt;}
.ws1ba{word-spacing:0.164032pt;}
.wsab{word-spacing:0.165664pt;}
.ws3d{word-spacing:0.171008pt;}
.ws11c{word-spacing:0.175680pt;}
.ws71{word-spacing:0.176352pt;}
.wsfd{word-spacing:0.181536pt;}
.ws64{word-spacing:0.181696pt;}
.ws83{word-spacing:0.187040pt;}
.ws1cb{word-spacing:0.187392pt;}
.ws73{word-spacing:0.192384pt;}
.wsa2{word-spacing:0.197728pt;}
.ws52{word-spacing:0.199104pt;}
.ws128{word-spacing:0.204960pt;}
.wsfe{word-spacing:0.210816pt;}
.ws124{word-spacing:0.216672pt;}
.ws44{word-spacing:0.219104pt;}
.ws12a{word-spacing:0.228384pt;}
.wsaa{word-spacing:0.229792pt;}
.ws3e{word-spacing:0.263872pt;}
.ws218{word-spacing:0.411488pt;}
.ws1e3{word-spacing:0.416832pt;}
.ws24c{word-spacing:0.462624pt;}
.ws181{word-spacing:0.474336pt;}
.ws1a5{word-spacing:0.480192pt;}
.ws274{word-spacing:0.497760pt;}
.ws109{word-spacing:0.503616pt;}
.ws1a4{word-spacing:0.515328pt;}
.wsce{word-spacing:0.521184pt;}
.ws117{word-spacing:0.527040pt;}
.wsc5{word-spacing:0.532896pt;}
.ws1b5{word-spacing:0.538752pt;}
.ws1d4{word-spacing:0.544608pt;}
.ws131{word-spacing:0.556320pt;}
.ws132{word-spacing:0.579744pt;}
.ws1f3{word-spacing:0.758848pt;}
.ws16c{word-spacing:0.790560pt;}
.ws182{word-spacing:0.802272pt;}
.ws264{word-spacing:0.819840pt;}
.ws12e{word-spacing:0.825696pt;}
.wsf1{word-spacing:0.831552pt;}
.ws119{word-spacing:0.837408pt;}
.ws1dc{word-spacing:0.843264pt;}
.ws219{word-spacing:0.849120pt;}
.wsed{word-spacing:0.854976pt;}
.wsf6{word-spacing:0.860832pt;}
.ws133{word-spacing:0.872544pt;}
.ws198{word-spacing:0.878400pt;}
.ws156{word-spacing:0.884256pt;}
.ws11a{word-spacing:0.890112pt;}
.ws134{word-spacing:0.895968pt;}
.ws213{word-spacing:0.954528pt;}
.ws3f{word-spacing:0.967264pt;}
.ws212{word-spacing:0.977952pt;}
.ws23d{word-spacing:0.998400pt;}
.ws235{word-spacing:1.026048pt;}
.ws23e{word-spacing:1.027200pt;}
.ws23f{word-spacing:1.041600pt;}
.ws1fe{word-spacing:1.058112pt;}
.ws240{word-spacing:1.065600pt;}
.ws215{word-spacing:1.090176pt;}
.ws251{word-spacing:1.124352pt;}
.ws13e{word-spacing:1.141920pt;}
.ws171{word-spacing:1.147776pt;}
.ws16a{word-spacing:1.159488pt;}
.ws1fd{word-spacing:1.164992pt;}
.wse9{word-spacing:1.165344pt;}
.ws1c8{word-spacing:1.171200pt;}
.ws126{word-spacing:1.177056pt;}
.ws191{word-spacing:1.182912pt;}
.wsba{word-spacing:1.188768pt;}
.ws192{word-spacing:1.194624pt;}
.ws197{word-spacing:1.212192pt;}
.ws1f1{word-spacing:1.341344pt;}
.ws1fc{word-spacing:1.394784pt;}
.ws1e6{word-spacing:1.416160pt;}
.ws255{word-spacing:1.423008pt;}
.ws165{word-spacing:1.452288pt;}
.ws152{word-spacing:1.458144pt;}
.ws16b{word-spacing:1.464000pt;}
.ws196{word-spacing:1.469856pt;}
.ws1da{word-spacing:1.475712pt;}
.ws13a{word-spacing:1.481568pt;}
.ws1db{word-spacing:1.487424pt;}
.ws22a{word-spacing:1.493280pt;}
.ws153{word-spacing:1.499136pt;}
.ws1d0{word-spacing:1.504992pt;}
.ws138{word-spacing:1.510848pt;}
.ws129{word-spacing:1.516704pt;}
.wsdb{word-spacing:1.522560pt;}
.ws9{word-spacing:1.536000pt;}
.ws224{word-spacing:1.540128pt;}
.ws1b0{word-spacing:1.586976pt;}
.ws1f{word-spacing:1.600000pt;}
.ws1f0{word-spacing:1.608544pt;}
.wsdc{word-spacing:1.639680pt;}
.ws1ea{word-spacing:1.710080pt;}
.ws214{word-spacing:1.747488pt;}
.wscd{word-spacing:1.768512pt;}
.ws254{word-spacing:1.774368pt;}
.ws154{word-spacing:1.780224pt;}
.ws1aa{word-spacing:1.791936pt;}
.ws11f{word-spacing:1.797792pt;}
.ws1bc{word-spacing:1.803648pt;}
.ws14e{word-spacing:1.809504pt;}
.wsbe{word-spacing:1.815360pt;}
.wsbb{word-spacing:1.821216pt;}
.ws19b{word-spacing:1.827072pt;}
.ws136{word-spacing:1.838784pt;}
.ws1d8{word-spacing:1.856352pt;}
.wsbc{word-spacing:1.862208pt;}
.ws170{word-spacing:1.885632pt;}
.ws23b{word-spacing:1.944000pt;}
.ws1fb{word-spacing:1.950560pt;}
.ws26d{word-spacing:1.961248pt;}
.ws23a{word-spacing:1.963200pt;}
.ws201{word-spacing:1.977280pt;}
.ws4e{word-spacing:2.014464pt;}
.ws24a{word-spacing:2.030720pt;}
.ws1f2{word-spacing:2.036064pt;}
.ws4f{word-spacing:2.043744pt;}
.wsa6{word-spacing:2.084160pt;}
.wsf3{word-spacing:2.090592pt;}
.ws1a2{word-spacing:2.108160pt;}
.ws172{word-spacing:2.114016pt;}
.ws10d{word-spacing:2.119872pt;}
.wsf7{word-spacing:2.125728pt;}
.ws1ae{word-spacing:2.137440pt;}
.wsc3{word-spacing:2.143296pt;}
.wsf4{word-spacing:2.149152pt;}
.ws10e{word-spacing:2.155008pt;}
.wsa5{word-spacing:2.212416pt;}
.wsac{word-spacing:2.292576pt;}
.ws1f5{word-spacing:2.303264pt;}
.ws217{word-spacing:2.313952pt;}
.ws208{word-spacing:2.351360pt;}
.ws1d9{word-spacing:2.400960pt;}
.ws270{word-spacing:2.412672pt;}
.ws125{word-spacing:2.418528pt;}
.ws135{word-spacing:2.424384pt;}
.ws17f{word-spacing:2.430240pt;}
.ws1c{word-spacing:2.432000pt;}
.ws1ab{word-spacing:2.436096pt;}
.ws118{word-spacing:2.441952pt;}
.ws180{word-spacing:2.447808pt;}
.ws145{word-spacing:2.453664pt;}
.ws12f{word-spacing:2.459520pt;}
.wscb{word-spacing:2.477088pt;}
.ws18{word-spacing:2.496000pt;}
.ws12b{word-spacing:2.506368pt;}
.ws36{word-spacing:2.557856pt;}
.ws1e9{word-spacing:2.581152pt;}
.ws19{word-spacing:2.624000pt;}
.ws20b{word-spacing:2.655968pt;}
.ws146{word-spacing:2.658624pt;}
.ws1e4{word-spacing:2.677344pt;}
.ws1f4{word-spacing:2.693376pt;}
.ws1ad{word-spacing:2.693760pt;}
.ws183{word-spacing:2.717184pt;}
.ws230{word-spacing:2.728896pt;}
.ws147{word-spacing:2.734752pt;}
.ws160{word-spacing:2.740608pt;}
.wsdd{word-spacing:2.746464pt;}
.ws1b1{word-spacing:2.752320pt;}
.ws15f{word-spacing:2.758176pt;}
.wsbf{word-spacing:2.764032pt;}
.wsb6{word-spacing:2.775744pt;}
.ws151{word-spacing:2.781600pt;}
.ws176{word-spacing:2.787456pt;}
.wsc0{word-spacing:2.793312pt;}
.wsde{word-spacing:2.805024pt;}
.ws157{word-spacing:2.816736pt;}
.ws1b2{word-spacing:2.863584pt;}
.ws1e2{word-spacing:2.928512pt;}
.ws1f6{word-spacing:2.933856pt;}
.ws49{word-spacing:3.002688pt;}
.ws24f{word-spacing:3.033408pt;}
.ws1bf{word-spacing:3.045120pt;}
.ws1c3{word-spacing:3.050976pt;}
.ws104{word-spacing:3.056832pt;}
.ws19c{word-spacing:3.062688pt;}
.wsd9{word-spacing:3.074400pt;}
.ws123{word-spacing:3.086112pt;}
.ws102{word-spacing:3.091968pt;}
.wsda{word-spacing:3.097824pt;}
.ws19f{word-spacing:3.103680pt;}
.ws184{word-spacing:3.109536pt;}
.wse0{word-spacing:3.127104pt;}
.ws163{word-spacing:3.138816pt;}
.ws164{word-spacing:3.173952pt;}
.ws239{word-spacing:3.249600pt;}
.ws1ff{word-spacing:3.275872pt;}
.ws238{word-spacing:3.283200pt;}
.ws20c{word-spacing:3.308640pt;}
.wsad{word-spacing:3.323968pt;}
.ws142{word-spacing:3.361344pt;}
.wsb4{word-spacing:3.373056pt;}
.ws1c9{word-spacing:3.378912pt;}
.ws1bd{word-spacing:3.390624pt;}
.ws106{word-spacing:3.396480pt;}
.ws204{word-spacing:3.402336pt;}
.ws17c{word-spacing:3.408192pt;}
.ws105{word-spacing:3.414048pt;}
.wsb5{word-spacing:3.419904pt;}
.ws158{word-spacing:3.431616pt;}
.ws1ca{word-spacing:3.437472pt;}
.ws227{word-spacing:3.490176pt;}
.ws26e{word-spacing:3.569792pt;}
.ws78{word-spacing:3.585824pt;}
.ws5b{word-spacing:3.624864pt;}
.ws209{word-spacing:3.639264pt;}
.ws130{word-spacing:3.689280pt;}
.ws1c7{word-spacing:3.695136pt;}
.wsff{word-spacing:3.700992pt;}
.ws22d{word-spacing:3.706848pt;}
.ws189{word-spacing:3.712704pt;}
.ws1c6{word-spacing:3.718560pt;}
.ws1cc{word-spacing:3.724416pt;}
.ws120{word-spacing:3.730272pt;}
.wse4{word-spacing:3.736128pt;}
.wsc9{word-spacing:3.741984pt;}
.ws19a{word-spacing:3.747840pt;}
.wse1{word-spacing:3.759552pt;}
.wsfb{word-spacing:3.765408pt;}
.ws22c{word-spacing:3.771264pt;}
.wseb{word-spacing:3.782976pt;}
.wsea{word-spacing:3.841536pt;}
.ws265{word-spacing:3.885088pt;}
.ws216{word-spacing:3.890432pt;}
.ws256{word-spacing:3.970368pt;}
.ws50{word-spacing:3.993792pt;}
.wsd8{word-spacing:4.011360pt;}
.ws18c{word-spacing:4.017216pt;}
.ws18f{word-spacing:4.023072pt;}
.ws14a{word-spacing:4.034784pt;}
.ws1cf{word-spacing:4.040640pt;}
.wsd0{word-spacing:4.046496pt;}
.ws1f9{word-spacing:4.052352pt;}
.ws188{word-spacing:4.058208pt;}
.ws21a{word-spacing:4.064064pt;}
.ws18e{word-spacing:4.069920pt;}
.ws228{word-spacing:4.075776pt;}
.ws1cd{word-spacing:4.081632pt;}
.ws1ce{word-spacing:4.087488pt;}
.ws1e7{word-spacing:4.184352pt;}
.ws242{word-spacing:4.200000pt;}
.ws17b{word-spacing:4.304160pt;}
.ws207{word-spacing:4.339296pt;}
.ws1af{word-spacing:4.351008pt;}
.ws1c2{word-spacing:4.356864pt;}
.ws112{word-spacing:4.362720pt;}
.ws27c{word-spacing:4.368576pt;}
.ws113{word-spacing:4.374432pt;}
.ws1ac{word-spacing:4.380288pt;}
.ws149{word-spacing:4.386144pt;}
.wsee{word-spacing:4.392000pt;}
.ws21d{word-spacing:4.403712pt;}
.ws21e{word-spacing:4.409568pt;}
.wsc7{word-spacing:4.473984pt;}
.wsc8{word-spacing:4.485696pt;}
.ws26a{word-spacing:4.492800pt;}
.ws268{word-spacing:4.560000pt;}
.ws5c{word-spacing:4.591104pt;}
.wsa3{word-spacing:4.601184pt;}
.ws241{word-spacing:4.632000pt;}
.ws16d{word-spacing:4.649664pt;}
.ws144{word-spacing:4.655520pt;}
.wsa8{word-spacing:4.659968pt;}
.ws107{word-spacing:4.661376pt;}
.ws269{word-spacing:4.670400pt;}
.ws108{word-spacing:4.673088pt;}
.wse2{word-spacing:4.678944pt;}
.wse6{word-spacing:4.684800pt;}
.wsf2{word-spacing:4.690656pt;}
.ws114{word-spacing:4.702368pt;}
.ws27a{word-spacing:4.708224pt;}
.ws141{word-spacing:4.714080pt;}
.ws1eb{word-spacing:4.719936pt;}
.ws143{word-spacing:4.737504pt;}
.ws27b{word-spacing:4.743360pt;}
.ws243{word-spacing:4.761600pt;}
.ws17a{word-spacing:4.819488pt;}
.wsa7{word-spacing:4.841664pt;}
.ws76{word-spacing:4.852352pt;}
.ws8{word-spacing:4.864000pt;}
.wse7{word-spacing:4.895616pt;}
.ws252{word-spacing:4.919040pt;}
.ws13c{word-spacing:4.954176pt;}
.ws253{word-spacing:4.960032pt;}
.ws1c0{word-spacing:4.983456pt;}
.wsdf{word-spacing:4.989312pt;}
.wse3{word-spacing:5.001024pt;}
.ws1a6{word-spacing:5.006880pt;}
.ws229{word-spacing:5.012736pt;}
.wsc6{word-spacing:5.018592pt;}
.ws277{word-spacing:5.024448pt;}
.ws161{word-spacing:5.030304pt;}
.ws272{word-spacing:5.042016pt;}
.ws185{word-spacing:5.047872pt;}
.ws100{word-spacing:5.059584pt;}
.ws9e{word-spacing:5.087488pt;}
.ws266{word-spacing:5.156960pt;}
.ws5e{word-spacing:5.229408pt;}
.ws1ef{word-spacing:5.237120pt;}
.ws16e{word-spacing:5.246976pt;}
.ws23{word-spacing:5.312000pt;}
.ws122{word-spacing:5.323104pt;}
.ws1d6{word-spacing:5.328960pt;}
.ws1dd{word-spacing:5.334816pt;}
.ws121{word-spacing:5.346528pt;}
.ws1d3{word-spacing:5.352384pt;}
.ws15c{word-spacing:5.440224pt;}
.ws101{word-spacing:5.481216pt;}
.ws5d{word-spacing:5.487072pt;}
.wse8{word-spacing:5.627616pt;}
.ws187{word-spacing:5.639328pt;}
.ws10a{word-spacing:5.645184pt;}
.wse5{word-spacing:5.656896pt;}
.ws210{word-spacing:5.662752pt;}
.ws10c{word-spacing:5.668608pt;}
.ws21f{word-spacing:5.674464pt;}
.ws139{word-spacing:5.680320pt;}
.ws220{word-spacing:5.692032pt;}
.ws2a{word-spacing:5.696000pt;}
.ws15d{word-spacing:5.715456pt;}
.wsd{word-spacing:5.760000pt;}
.ws202{word-spacing:5.792896pt;}
.ws1e8{word-spacing:5.798240pt;}
.ws17{word-spacing:5.824000pt;}
.ws8d{word-spacing:5.846336pt;}
.ws278{word-spacing:5.902848pt;}
.ws10b{word-spacing:5.908704pt;}
.wsf8{word-spacing:5.926272pt;}
.ws22e{word-spacing:5.932128pt;}
.ws262{word-spacing:5.937984pt;}
.wsf9{word-spacing:5.943840pt;}
.ws1d5{word-spacing:5.949696pt;}
.ws137{word-spacing:5.955552pt;}
.ws175{word-spacing:5.973120pt;}
.wsb3{word-spacing:5.978976pt;}
.ws1a1{word-spacing:5.984832pt;}
.ws174{word-spacing:5.990688pt;}
.wsfc{word-spacing:5.996544pt;}
.ws226{word-spacing:6.195648pt;}
.ws47{word-spacing:6.203808pt;}
.ws24d{word-spacing:6.248352pt;}
.ws24e{word-spacing:6.260064pt;}
.ws11b{word-spacing:6.271776pt;}
.ws221{word-spacing:6.283488pt;}
.ws1d2{word-spacing:6.289344pt;}
.ws17e{word-spacing:6.301056pt;}
.ws14d{word-spacing:6.306912pt;}
.ws14c{word-spacing:6.318624pt;}
.ws17d{word-spacing:6.342048pt;}
.ws4c{word-spacing:6.500160pt;}
.ws4d{word-spacing:6.517728pt;}
.ws26c{word-spacing:6.519680pt;}
.ws9d{word-spacing:6.525024pt;}
.ws37{word-spacing:6.541472pt;}
.ws21c{word-spacing:6.547008pt;}
.ws250{word-spacing:6.570432pt;}
.ws38{word-spacing:6.571264pt;}
.ws25f{word-spacing:6.582144pt;}
.wsef{word-spacing:6.599712pt;}
.wsf0{word-spacing:6.605568pt;}
.ws22b{word-spacing:6.611424pt;}
.wsd1{word-spacing:6.617280pt;}
.ws1e0{word-spacing:6.623136pt;}
.ws1b3{word-spacing:6.628992pt;}
.ws279{word-spacing:6.664128pt;}
.ws25d{word-spacing:6.828096pt;}
.ws1f7{word-spacing:6.834976pt;}
.ws236{word-spacing:6.856352pt;}
.ws25c{word-spacing:6.874944pt;}
.ws25b{word-spacing:6.886656pt;}
.ws159{word-spacing:6.892512pt;}
.ws260{word-spacing:6.898368pt;}
.ws261{word-spacing:6.904224pt;}
.ws186{word-spacing:6.910080pt;}
.wscf{word-spacing:6.915936pt;}
.wsb8{word-spacing:6.921792pt;}
.wsc1{word-spacing:6.927648pt;}
.ws13f{word-spacing:6.945216pt;}
.wsb9{word-spacing:6.951072pt;}
.ws195{word-spacing:6.962784pt;}
.wsc2{word-spacing:6.980352pt;}
.ws96{word-spacing:7.059424pt;}
.ws1de{word-spacing:7.068192pt;}
.ws200{word-spacing:7.160960pt;}
.ws7{word-spacing:7.168000pt;}
.ws1a8{word-spacing:7.208736pt;}
.ws168{word-spacing:7.214592pt;}
.ws205{word-spacing:7.226304pt;}
.wscc{word-spacing:7.232160pt;}
.ws206{word-spacing:7.238016pt;}
.ws1d1{word-spacing:7.249728pt;}
.ws203{word-spacing:7.255584pt;}
.ws1df{word-spacing:7.273152pt;}
.ws127{word-spacing:7.284864pt;}
.ws25a{word-spacing:7.349280pt;}
.ws7b{word-spacing:7.460224pt;}
.ws259{word-spacing:7.513248pt;}
.ws258{word-spacing:7.536672pt;}
.ws110{word-spacing:7.542528pt;}
.ws271{word-spacing:7.554240pt;}
.ws111{word-spacing:7.577664pt;}
.ws22f{word-spacing:7.589376pt;}
.ws257{word-spacing:7.595232pt;}
.ws162{word-spacing:7.601088pt;}
.ws1ee{word-spacing:7.716736pt;}
.ws48{word-spacing:7.798752pt;}
.ws25e{word-spacing:7.864608pt;}
.ws1c4{word-spacing:7.870464pt;}
.ws1c5{word-spacing:7.882176pt;}
.ws155{word-spacing:7.888032pt;}
.ws232{word-spacing:7.905600pt;}
.ws222{word-spacing:7.917312pt;}
.ws20a{word-spacing:8.106848pt;}
.ws1be{word-spacing:8.186688pt;}
.ws16f{word-spacing:8.192544pt;}
.ws10f{word-spacing:8.204256pt;}
.ws1d7{word-spacing:8.210112pt;}
.wsc4{word-spacing:8.215968pt;}
.ws233{word-spacing:8.221824pt;}
.ws193{word-spacing:8.233536pt;}
.ws194{word-spacing:8.251104pt;}
.ws1b{word-spacing:8.384000pt;}
.ws263{word-spacing:8.514624pt;}
.ws231{word-spacing:8.520480pt;}
.wsd4{word-spacing:8.538048pt;}
.ws211{word-spacing:8.549760pt;}
.ws20d{word-spacing:8.561472pt;}
.wsd5{word-spacing:8.584896pt;}
.ws16{word-spacing:8.768000pt;}
.ws1b7{word-spacing:8.848416pt;}
.ws27d{word-spacing:8.854272pt;}
.ws223{word-spacing:8.860128pt;}
.wsd2{word-spacing:8.871840pt;}
.ws12c{word-spacing:9.135360pt;}
.ws19e{word-spacing:9.158784pt;}
.ws199{word-spacing:9.170496pt;}
.wsd3{word-spacing:9.176352pt;}
.ws148{word-spacing:9.182208pt;}
.ws15e{word-spacing:9.193920pt;}
.ws173{word-spacing:9.199776pt;}
.ws20{word-spacing:9.280000pt;}
.wsb7{word-spacing:9.463296pt;}
.ws1bb{word-spacing:9.480864pt;}
.ws1a3{word-spacing:9.486720pt;}
.ws179{word-spacing:9.516000pt;}
.ws1b4{word-spacing:9.521856pt;}
.ws178{word-spacing:9.527712pt;}
.ws14b{word-spacing:9.779520pt;}
.ws18b{word-spacing:9.785376pt;}
.ws13b{word-spacing:9.802944pt;}
.ws1fa{word-spacing:9.826368pt;}
.ws1a0{word-spacing:9.832224pt;}
.ws1b8{word-spacing:9.843936pt;}
.ws267{word-spacing:9.950528pt;}
.wsec{word-spacing:10.113312pt;}
.ws177{word-spacing:10.130880pt;}
.ws273{word-spacing:10.142592pt;}
.ws19d{word-spacing:10.447104pt;}
.ws1e5{word-spacing:10.470528pt;}
.ws169{word-spacing:10.476384pt;}
.ws1a7{word-spacing:10.786752pt;}
.ws15a{word-spacing:10.892160pt;}
.ws15b{word-spacing:10.903872pt;}
.ws18a{word-spacing:11.073696pt;}
.ws115{word-spacing:11.413344pt;}
.wsbd{word-spacing:11.729568pt;}
.ws18d{word-spacing:12.344448pt;}
.ws1ed{word-spacing:12.379584pt;}
.wse{word-spacing:12.480000pt;}
.ws1ec{word-spacing:12.490848pt;}
.ws69{word-spacing:12.504960pt;}
.ws13{word-spacing:12.544000pt;}
.ws20f{word-spacing:12.643104pt;}
.ws166{word-spacing:12.695808pt;}
.ws167{word-spacing:12.719232pt;}
.ws3a{word-spacing:12.865888pt;}
.ws24{word-spacing:12.928000pt;}
.ws3{word-spacing:12.992000pt;}
.ws39{word-spacing:13.002080pt;}
.wsb{word-spacing:13.504000pt;}
.ws1e{word-spacing:13.760000pt;}
.ws20e{word-spacing:14.604864pt;}
.ws21b{word-spacing:14.616576pt;}
.ws4{word-spacing:15.296000pt;}
.ws9a{word-spacing:15.390720pt;}
.ws0{word-spacing:17.257067pt;}
.ws1a{word-spacing:18.624000pt;}
.ws26{word-spacing:18.880000pt;}
.ws2d{word-spacing:21.033600pt;}
.ws22{word-spacing:21.056000pt;}
.wsc{word-spacing:21.696000pt;}
.wsa{word-spacing:21.760000pt;}
.ws29{word-spacing:23.168000pt;}
.ws2e{word-spacing:23.433600pt;}
.ws3c{word-spacing:24.999232pt;}
.ws11{word-spacing:25.984000pt;}
.ws28{word-spacing:27.200000pt;}
.ws14{word-spacing:28.352000pt;}
.wsf{word-spacing:33.984000pt;}
.ws12{word-spacing:36.352000pt;}
.ws15{word-spacing:41.536000pt;}
.ws2b{word-spacing:42.304000pt;}
.ws61{word-spacing:61.584324pt;}
.ws26b{word-spacing:117.182400pt;}
._c{margin-left:-62.493600pt;}
._b{margin-left:-23.683200pt;}
._1c{margin-left:-16.347296pt;}
._1d{margin-left:-14.722720pt;}
._e{margin-left:-12.804224pt;}
._17{margin-left:-10.093440pt;}
._13{margin-left:-8.478798pt;}
._14{margin-left:-7.367136pt;}
._12{margin-left:-6.392288pt;}
._26{margin-left:-5.471241pt;}
._2{margin-left:-4.505259pt;}
._3{margin-left:-3.014400pt;}
._0{margin-left:-2.025600pt;}
._5{margin-left:-1.017600pt;}
._1{width:0.919335pt;}
._7{width:1.964800pt;}
._9{width:2.881330pt;}
._25{width:4.351008pt;}
._d{width:5.482080pt;}
._18{width:6.799808pt;}
._a{width:13.761796pt;}
._15{width:16.005547pt;}
._22{width:17.207680pt;}
._1f{width:18.570400pt;}
._1e{width:20.494240pt;}
._1a{width:29.445440pt;}
._16{width:33.125326pt;}
._11{width:34.132128pt;}
._f{width:36.483488pt;}
._20{width:37.996064pt;}
._10{width:40.005184pt;}
._6{width:41.260800pt;}
._19{width:42.564960pt;}
._21{width:55.315744pt;}
._8{width:63.763200pt;}
._1b{width:97.934144pt;}
._4{width:252.824533pt;}
._27{width:538.947744pt;}
._24{width:874.027232pt;}
._23{width:1086.531392pt;}
.fsc{font-size:10.560000pt;}
.fs12{font-size:29.440000pt;}
.fs11{font-size:32.000000pt;}
.fs10{font-size:34.560000pt;}
.fs8{font-size:37.440000pt;}
.fsb{font-size:42.560000pt;}
.fs0{font-size:44.363200pt;}
.fs7{font-size:48.000000pt;}
.fs9{font-size:50.560000pt;}
.fsa{font-size:53.440000pt;}
.fs6{font-size:58.560000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fse{font-size:74.560000pt;}
.fsd{font-size:85.440000pt;}
.fs1{font-size:96.000000pt;}
.fs3{font-size:119.394133pt;}
.fs5{font-size:128.000000pt;}
.fsf{font-size:194.560000pt;}
.y3b{bottom:-176.647867pt;}
.y37{bottom:-175.356267pt;}
.y3c{bottom:-175.351867pt;}
.y36{bottom:-25.865333pt;}
.y39{bottom:-25.860667pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:36.660000pt;}
.y3{bottom:37.671200pt;}
.y32{bottom:53.988000pt;}
.y14a{bottom:57.726667pt;}
.y31{bottom:71.316000pt;}
.y235{bottom:86.366267pt;}
.y20e{bottom:86.366667pt;}
.y20d{bottom:86.367467pt;}
.y6d{bottom:87.889635pt;}
.y30{bottom:88.644000pt;}
.y104{bottom:95.247787pt;}
.yd9{bottom:100.242267pt;}
.y234{bottom:100.286267pt;}
.y20c{bottom:100.287467pt;}
.y1d1{bottom:100.368651pt;}
.y6c{bottom:101.569251pt;}
.y127{bottom:103.417987pt;}
.y16e{bottom:105.499915pt;}
.y149{bottom:105.499971pt;}
.y2f{bottom:105.972000pt;}
.y9b{bottom:106.046667pt;}
.y1ea{bottom:109.892067pt;}
.y9a{bottom:112.607083pt;}
.y1{bottom:113.159467pt;}
.y49{bottom:113.726667pt;}
.y20b{bottom:114.127067pt;}
.y233{bottom:114.526667pt;}
.yd8{bottom:115.686427pt;}
.y232{bottom:118.526667pt;}
.y231{bottom:119.886667pt;}
.y1d0{bottom:119.888163pt;}
.y103{bottom:121.403467pt;}
.y1b0{bottom:122.126643pt;}
.y1b1{bottom:122.126667pt;}
.y126{bottom:122.937499pt;}
.y2e{bottom:123.300000pt;}
.y99{bottom:123.406651pt;}
.y18c{bottom:125.017531pt;}
.y16d{bottom:125.019427pt;}
.y148{bottom:125.019483pt;}
.y20a{bottom:128.446667pt;}
.y1e9{bottom:129.411579pt;}
.y230{bottom:129.566667pt;}
.yd7{bottom:131.130587pt;}
.y209{bottom:133.806667pt;}
.y98{bottom:134.126659pt;}
.y48{bottom:136.766667pt;}
.y1af{bottom:137.566795pt;}
.y1cf{bottom:139.328619pt;}
.y2d{bottom:140.628000pt;}
.y125{bottom:142.457011pt;}
.y208{bottom:143.406667pt;}
.y207{bottom:143.407067pt;}
.y18b{bottom:144.537043pt;}
.y16c{bottom:144.538939pt;}
.y147{bottom:144.538995pt;}
.y97{bottom:144.846667pt;}
.y22f{bottom:146.046363pt;}
.yd6{bottom:146.494587pt;}
.y102{bottom:147.618827pt;}
.y1e8{bottom:148.931091pt;}
.y256{bottom:150.213595pt;}
.y47{bottom:150.526667pt;}
.y6{bottom:152.367733pt;}
.y1ae{bottom:152.926787pt;}
.y96{bottom:155.566667pt;}
.y206{bottom:157.327067pt;}
.y2c{bottom:157.956000pt;}
.y1ce{bottom:158.848131pt;}
.y22e{bottom:161.486515pt;}
.yd5{bottom:161.938747pt;}
.y124{bottom:161.976523pt;}
.y101{bottom:163.062987pt;}
.y18a{bottom:164.056555pt;}
.y16b{bottom:164.058451pt;}
.y146{bottom:164.058507pt;}
.y1ad{bottom:168.366939pt;}
.y1e7{bottom:168.450603pt;}
.y95{bottom:169.087411pt;}
.y255{bottom:169.733107pt;}
.y205{bottom:171.646667pt;}
.y6b{bottom:172.769427pt;}
.y46{bottom:173.486667pt;}
.y2b{bottom:175.284000pt;}
.y22d{bottom:176.926667pt;}
.y204{bottom:177.006667pt;}
.yd4{bottom:177.382907pt;}
.y1cd{bottom:178.367643pt;}
.y123{bottom:181.416979pt;}
.y189{bottom:183.497011pt;}
.y16a{bottom:183.498907pt;}
.y145{bottom:183.498963pt;}
.y1ac{bottom:183.807091pt;}
.y94{bottom:184.447403pt;}
.y5{bottom:186.423733pt;}
.y203{bottom:186.606667pt;}
.y45{bottom:187.326667pt;}
.y1e6{bottom:187.970115pt;}
.y254{bottom:189.173563pt;}
.y100{bottom:189.302027pt;}
.y6a{bottom:189.649347pt;}
.y2a{bottom:192.612000pt;}
.yd3{bottom:192.827067pt;}
.y1cc{bottom:197.887155pt;}
.y1ab{bottom:199.247243pt;}
.y93{bottom:199.807395pt;}
.y22c{bottom:200.528619pt;}
.y122{bottom:200.936491pt;}
.y188{bottom:203.016523pt;}
.y169{bottom:203.018419pt;}
.y144{bottom:203.018475pt;}
.yff{bottom:204.746187pt;}
.y69{bottom:206.529267pt;}
.y1e5{bottom:207.489627pt;}
.yd2{bottom:208.271227pt;}
.y253{bottom:208.693075pt;}
.y29{bottom:209.940000pt;}
.y44{bottom:210.286667pt;}
.y7{bottom:211.508400pt;}
.y92{bottom:215.087227pt;}
.y1cb{bottom:217.406667pt;}
.y22b{bottom:220.048131pt;}
.yfe{bottom:220.110187pt;}
.y121{bottom:220.456003pt;}
.y202{bottom:222.526515pt;}
.y187{bottom:222.536035pt;}
.y168{bottom:222.537931pt;}
.y143{bottom:222.537987pt;}
.y1a9{bottom:223.006227pt;}
.y1aa{bottom:223.006667pt;}
.y68{bottom:223.409187pt;}
.y43{bottom:224.126667pt;}
.y1e4{bottom:227.009139pt;}
.y28{bottom:227.268000pt;}
.y252{bottom:228.212587pt;}
.y91{bottom:230.447219pt;}
.y4{bottom:231.620400pt;}
.yfd{bottom:235.554347pt;}
.y42{bottom:237.886667pt;}
.y201{bottom:237.966667pt;}
.yd1{bottom:239.066027pt;}
.y22a{bottom:239.567643pt;}
.y1a8{bottom:239.966667pt;}
.y120{bottom:239.975515pt;}
.y67{bottom:240.208587pt;}
.y186{bottom:242.055547pt;}
.y167{bottom:242.057443pt;}
.y142{bottom:242.057499pt;}
.y27{bottom:244.596000pt;}
.y1ca{bottom:244.686059pt;}
.y90{bottom:245.807211pt;}
.y1e3{bottom:246.449595pt;}
.y251{bottom:247.732099pt;}
.yfc{bottom:250.998507pt;}
.y41{bottom:251.726667pt;}
.yd0{bottom:254.510187pt;}
.y66{bottom:257.088507pt;}
.y229{bottom:259.087155pt;}
.y11f{bottom:259.495027pt;}
.y1c9{bottom:260.126211pt;}
.y8f{bottom:261.087043pt;}
.y200{bottom:261.574571pt;}
.y185{bottom:261.575059pt;}
.y166{bottom:261.576955pt;}
.y141{bottom:261.577011pt;}
.y26{bottom:261.924000pt;}
.y1e2{bottom:265.969107pt;}
.yfb{bottom:266.442667pt;}
.y1a7{bottom:267.246059pt;}
.y250{bottom:267.251611pt;}
.ycf{bottom:269.954347pt;}
.y65{bottom:273.968427pt;}
.y1c8{bottom:275.566363pt;}
.y8e{bottom:276.447035pt;}
.y228{bottom:278.606667pt;}
.y11e{bottom:279.014539pt;}
.y25{bottom:279.252000pt;}
.y1ff{bottom:281.094083pt;}
.y184{bottom:281.094571pt;}
.y165{bottom:281.096467pt;}
.y140{bottom:281.096523pt;}
.yfa{bottom:281.806667pt;}
.y1a6{bottom:282.686211pt;}
.yce{bottom:285.398507pt;}
.y1e1{bottom:285.488619pt;}
.y24f{bottom:286.771123pt;}
.y64{bottom:290.848347pt;}
.y1c7{bottom:291.006515pt;}
.y8d{bottom:291.807027pt;}
.y24{bottom:296.580000pt;}
.y1a5{bottom:298.126363pt;}
.y227{bottom:298.126667pt;}
.y11d{bottom:298.534051pt;}
.y1fe{bottom:300.613595pt;}
.y183{bottom:300.614083pt;}
.y164{bottom:300.615979pt;}
.y13f{bottom:300.616035pt;}
.ycd{bottom:300.742827pt;}
.y1e0{bottom:305.008131pt;}
.y24e{bottom:306.290635pt;}
.y1c6{bottom:306.446667pt;}
.y8c{bottom:307.086859pt;}
.y63{bottom:307.728267pt;}
.yf9{bottom:308.046667pt;}
.y1a4{bottom:313.486355pt;}
.y23{bottom:313.908000pt;}
.ycc{bottom:316.186987pt;}
.yb1{bottom:317.250947pt;}
.y226{bottom:317.566667pt;}
.y11c{bottom:318.053563pt;}
.y1fd{bottom:320.133107pt;}
.y182{bottom:320.133595pt;}
.y163{bottom:320.135491pt;}
.y13e{bottom:320.135547pt;}
.y8b{bottom:322.446851pt;}
.yf8{bottom:323.486667pt;}
.y1df{bottom:324.527643pt;}
.y62{bottom:324.527667pt;}
.y24d{bottom:325.810147pt;}
.y1a3{bottom:329.006667pt;}
.y22{bottom:331.236000pt;}
.y1c5{bottom:332.689139pt;}
.yb0{bottom:336.770459pt;}
.y225{bottom:337.094893pt;}
.y11b{bottom:337.573075pt;}
.y8a{bottom:337.806843pt;}
.yf7{bottom:338.918507pt;}
.y1fc{bottom:339.573563pt;}
.y181{bottom:339.574051pt;}
.y162{bottom:339.575947pt;}
.y13d{bottom:339.576003pt;}
.y61{bottom:341.407587pt;}
.ycb{bottom:342.426027pt;}
.y1de{bottom:344.047155pt;}
.y24c{bottom:345.250603pt;}
.y21{bottom:348.564000pt;}
.y1c4{bottom:352.208651pt;}
.y1a2{bottom:352.529107pt;}
.y89{bottom:353.086675pt;}
.yf6{bottom:354.362667pt;}
.yaf{bottom:356.210915pt;}
.y224{bottom:356.614405pt;}
.y11a{bottom:357.013531pt;}
.yca{bottom:357.870187pt;}
.y60{bottom:358.287507pt;}
.y1fb{bottom:359.093075pt;}
.y180{bottom:359.093563pt;}
.y161{bottom:359.095459pt;}
.y13c{bottom:359.095515pt;}
.y1dd{bottom:363.567987pt;}
.y24b{bottom:364.770115pt;}
.y20{bottom:365.892000pt;}
.y88{bottom:368.446675pt;}
.yf5{bottom:369.726667pt;}
.y1c3{bottom:371.728163pt;}
.y1a1{bottom:372.048619pt;}
.yc9{bottom:373.234187pt;}
.y5f{bottom:375.167427pt;}
.y223{bottom:376.133917pt;}
.y119{bottom:376.533043pt;}
.y1fa{bottom:378.612587pt;}
.y17f{bottom:378.613075pt;}
.y160{bottom:378.614971pt;}
.y13b{bottom:378.615027pt;}
.y1dc{bottom:383.087499pt;}
.y1f{bottom:383.220000pt;}
.yae{bottom:383.410571pt;}
.y87{bottom:383.806843pt;}
.y24a{bottom:384.289627pt;}
.yf4{bottom:385.166667pt;}
.yc8{bottom:388.678347pt;}
.y1c2{bottom:391.247675pt;}
.y1a0{bottom:391.568131pt;}
.y5e{bottom:392.047347pt;}
.y222{bottom:395.653429pt;}
.y118{bottom:396.052555pt;}
.y1f9{bottom:398.132099pt;}
.y17e{bottom:398.132587pt;}
.y15f{bottom:398.134483pt;}
.y13a{bottom:398.134539pt;}
.y86{bottom:399.086675pt;}
.y1e{bottom:400.548000pt;}
.yf3{bottom:400.598347pt;}
.yad{bottom:402.449891pt;}
.y1db{bottom:402.607011pt;}
.y249{bottom:403.809139pt;}
.yc7{bottom:404.112187pt;}
.y5d{bottom:408.927267pt;}
.y1c1{bottom:410.767187pt;}
.y19f{bottom:411.087643pt;}
.y85{bottom:414.446667pt;}
.y221{bottom:415.172941pt;}
.y117{bottom:415.572067pt;}
.yf2{bottom:416.042507pt;}
.y1f8{bottom:417.651611pt;}
.y17d{bottom:417.652099pt;}
.y15e{bottom:417.653995pt;}
.y139{bottom:417.654051pt;}
.y1d{bottom:417.876000pt;}
.yc6{bottom:419.556347pt;}
.yac{bottom:421.489211pt;}
.y1da{bottom:422.047467pt;}
.y248{bottom:423.328651pt;}
.y5c{bottom:425.726667pt;}
.y84{bottom:429.326155pt;}
.y1c0{bottom:430.286699pt;}
.y19e{bottom:430.607155pt;}
.yf1{bottom:431.486667pt;}
.y220{bottom:434.692453pt;}
.y116{bottom:435.091579pt;}
.y1c{bottom:435.204000pt;}
.y1f7{bottom:437.171123pt;}
.y17c{bottom:437.171611pt;}
.y15d{bottom:437.173507pt;}
.y138{bottom:437.173563pt;}
.yab{bottom:440.849147pt;}
.y83{bottom:441.566411pt;}
.y1d9{bottom:441.566979pt;}
.y247{bottom:442.848163pt;}
.y5b{bottom:445.725867pt;}
.yc5{bottom:445.795387pt;}
.yf0{bottom:446.846667pt;}
.y1bf{bottom:449.727155pt;}
.y19d{bottom:450.126667pt;}
.y82{bottom:453.806667pt;}
.y21f{bottom:454.211965pt;}
.y115{bottom:454.611091pt;}
.y1f6{bottom:456.690635pt;}
.y17b{bottom:456.691123pt;}
.y15c{bottom:456.693019pt;}
.y137{bottom:456.693075pt;}
.yaa{bottom:460.368659pt;}
.y1d8{bottom:461.086491pt;}
.yc4{bottom:461.159387pt;}
.yef{bottom:462.286667pt;}
.y246{bottom:462.367675pt;}
.y1be{bottom:469.246667pt;}
.y1bd{bottom:469.248619pt;}
.y1b{bottom:469.876000pt;}
.y5a{bottom:472.845867pt;}
.y21e{bottom:473.652421pt;}
.y114{bottom:474.130603pt;}
.y1f5{bottom:476.210147pt;}
.y17a{bottom:476.210635pt;}
.y15b{bottom:476.212531pt;}
.y136{bottom:476.212587pt;}
.yc3{bottom:476.603547pt;}
.y19c{bottom:477.405915pt;}
.yee{bottom:477.726667pt;}
.ya9{bottom:479.888171pt;}
.y245{bottom:481.887187pt;}
.y81{bottom:483.486507pt;}
.y1a{bottom:487.204000pt;}
.y1d6{bottom:488.366059pt;}
.y1d7{bottom:488.366667pt;}
.y1bc{bottom:488.768131pt;}
.yc2{bottom:492.046400pt;}
.y19b{bottom:492.846067pt;}
.yed{bottom:493.162507pt;}
.y21d{bottom:493.171933pt;}
.y113{bottom:493.650115pt;}
.y1f4{bottom:495.650603pt;}
.y179{bottom:495.651091pt;}
.y15a{bottom:495.652987pt;}
.y135{bottom:495.653043pt;}
.y80{bottom:497.246155pt;}
.y59{bottom:499.886667pt;}
.y244{bottom:501.327643pt;}
.y3f{bottom:503.246667pt;}
.y1d5{bottom:503.806211pt;}
.y19{bottom:504.532000pt;}
.ya8{bottom:507.087827pt;}
.yc1{bottom:507.478507pt;}
.y19a{bottom:508.286219pt;}
.y1bb{bottom:508.287643pt;}
.yec{bottom:508.606667pt;}
.y7f{bottom:511.086667pt;}
.y21c{bottom:512.691445pt;}
.y112{bottom:513.090571pt;}
.y1f3{bottom:515.170115pt;}
.y178{bottom:515.170603pt;}
.y159{bottom:515.172499pt;}
.y134{bottom:515.172555pt;}
.y1d4{bottom:519.246363pt;}
.y243{bottom:520.847155pt;}
.y18{bottom:521.860000pt;}
.yc0{bottom:522.922667pt;}
.y199{bottom:523.726371pt;}
.yeb{bottom:523.966667pt;}
.y7e{bottom:524.846667pt;}
.ya7{bottom:526.127147pt;}
.y1ba{bottom:527.807155pt;}
.y3e{bottom:530.366667pt;}
.y21b{bottom:532.210957pt;}
.y111{bottom:532.610083pt;}
.y1d3{bottom:534.686515pt;}
.y1f2{bottom:534.689627pt;}
.y177{bottom:534.690115pt;}
.y158{bottom:534.692011pt;}
.y133{bottom:534.692067pt;}
.ybf{bottom:538.266987pt;}
.y198{bottom:539.086363pt;}
.y17{bottom:539.188000pt;}
.yea{bottom:539.406667pt;}
.y242{bottom:540.366667pt;}
.y241{bottom:540.370115pt;}
.y58{bottom:545.086667pt;}
.ya6{bottom:545.087411pt;}
.y1b9{bottom:547.326667pt;}
.y1d2{bottom:550.126667pt;}
.y21a{bottom:551.730469pt;}
.y110{bottom:552.129595pt;}
.y1f1{bottom:554.209139pt;}
.y176{bottom:554.209627pt;}
.y157{bottom:554.211523pt;}
.y132{bottom:554.211579pt;}
.y197{bottom:554.526515pt;}
.ye9{bottom:554.846667pt;}
.y7d{bottom:555.167667pt;}
.y16{bottom:556.516000pt;}
.y240{bottom:559.889627pt;}
.ya5{bottom:564.126731pt;}
.ybe{bottom:564.506027pt;}
.y7c{bottom:569.647235pt;}
.y196{bottom:569.966667pt;}
.ye8{bottom:570.286667pt;}
.y219{bottom:571.249981pt;}
.y10f{bottom:571.649107pt;}
.y1f0{bottom:573.728651pt;}
.y175{bottom:573.729139pt;}
.y156{bottom:573.731035pt;}
.y131{bottom:573.731091pt;}
.y15{bottom:573.844000pt;}
.y1b8{bottom:574.605915pt;}
.y3d{bottom:575.566667pt;}
.y57{bottom:576.046667pt;}
.y23f{bottom:579.409139pt;}
.ybd{bottom:579.950187pt;}
.ya4{bottom:583.486667pt;}
.y7b{bottom:585.007227pt;}
.ye7{bottom:585.646667pt;}
.y1b7{bottom:590.046067pt;}
.y218{bottom:590.769493pt;}
.y128{bottom:590.926533pt;}
.y10e{bottom:591.168619pt;}
.y14{bottom:591.172000pt;}
.y56{bottom:592.687027pt;}
.y1ef{bottom:593.248163pt;}
.y174{bottom:593.248651pt;}
.y155{bottom:593.250547pt;}
.y130{bottom:593.250603pt;}
.y195{bottom:593.568619pt;}
.ybc{bottom:595.394347pt;}
.y23e{bottom:598.928651pt;}
.y7a{bottom:600.367219pt;}
.ye6{bottom:601.086533pt;}
.y1b6{bottom:605.486219pt;}
.y55{bottom:608.047019pt;}
.y13{bottom:608.500000pt;}
.y217{bottom:610.289005pt;}
.y10d{bottom:610.688131pt;}
.ybb{bottom:610.758347pt;}
.ya3{bottom:611.006533pt;}
.y1ee{bottom:612.767675pt;}
.y173{bottom:612.768163pt;}
.y154{bottom:612.770059pt;}
.y12f{bottom:612.770115pt;}
.y194{bottom:613.088131pt;}
.y79{bottom:615.647051pt;}
.ye5{bottom:616.526667pt;}
.y23d{bottom:618.448163pt;}
.y1b5{bottom:620.926371pt;}
.y54{bottom:623.326851pt;}
.y12{bottom:625.828000pt;}
.yba{bottom:626.200267pt;}
.y216{bottom:629.729461pt;}
.ya2{bottom:630.206667pt;}
.y10c{bottom:630.207643pt;}
.y78{bottom:631.007043pt;}
.ye4{bottom:631.966667pt;}
.y1ed{bottom:632.287187pt;}
.y172{bottom:632.287675pt;}
.y153{bottom:632.289571pt;}
.y12e{bottom:632.289627pt;}
.y193{bottom:632.607643pt;}
.yb5{bottom:636.226747pt;}
.y1b4{bottom:636.286363pt;}
.y23c{bottom:637.967675pt;}
.y53{bottom:638.686843pt;}
.yb9{bottom:641.644427pt;}
.y11{bottom:643.156000pt;}
.y77{bottom:646.367035pt;}
.ye3{bottom:647.406667pt;}
.ya1{bottom:649.246667pt;}
.y215{bottom:649.248973pt;}
.y10b{bottom:649.727155pt;}
.y1b3{bottom:651.726515pt;}
.y1ec{bottom:651.806699pt;}
.y171{bottom:651.807187pt;}
.y152{bottom:651.809083pt;}
.y12d{bottom:651.809139pt;}
.y192{bottom:652.127155pt;}
.y52{bottom:653.966675pt;}
.yb4{bottom:655.258747pt;}
.y23b{bottom:657.487187pt;}
.y10{bottom:660.484000pt;}
.y76{bottom:661.646867pt;}
.ye2{bottom:662.766667pt;}
.y1b2{bottom:667.166667pt;}
.ya0{bottom:668.286667pt;}
.y214{bottom:668.768485pt;}
.y10a{bottom:669.246667pt;}
.y51{bottom:669.326667pt;}
.yb8{bottom:669.484427pt;}
.y1eb{bottom:671.247155pt;}
.y170{bottom:671.247643pt;}
.y151{bottom:671.249539pt;}
.y12c{bottom:671.249595pt;}
.y191{bottom:671.646667pt;}
.yb3{bottom:674.290747pt;}
.y23a{bottom:676.927643pt;}
.y75{bottom:677.006859pt;}
.yf{bottom:677.812000pt;}
.ye1{bottom:678.206667pt;}
.y50{bottom:684.927453pt;}
.y9f{bottom:687.326667pt;}
.y213{bottom:688.287997pt;}
.y109{bottom:690.126667pt;}
.y16f{bottom:690.767155pt;}
.y150{bottom:690.769051pt;}
.y12b{bottom:690.769107pt;}
.y74{bottom:692.366851pt;}
.yb2{bottom:693.330133pt;}
.ye{bottom:695.140000pt;}
.y239{bottom:696.447155pt;}
.yb7{bottom:697.326667pt;}
.y190{bottom:698.926077pt;}
.y4f{bottom:701.807373pt;}
.y9e{bottom:703.247453pt;}
.y73{bottom:707.646683pt;}
.y212{bottom:707.807509pt;}
.y14f{bottom:710.288563pt;}
.y12a{bottom:710.288619pt;}
.ye0{bottom:712.425893pt;}
.yd{bottom:712.468000pt;}
.y18f{bottom:714.366229pt;}
.y238{bottom:715.966667pt;}
.y4e{bottom:718.606773pt;}
.y9d{bottom:720.127373pt;}
.y72{bottom:723.006675pt;}
.y108{bottom:723.886667pt;}
.y211{bottom:727.327021pt;}
.ydf{bottom:727.870053pt;}
.yc{bottom:729.796000pt;}
.y18e{bottom:729.806381pt;}
.y14e{bottom:729.808075pt;}
.y129{bottom:729.808131pt;}
.y4d{bottom:735.486693pt;}
.y9c{bottom:736.926773pt;}
.y71{bottom:738.366667pt;}
.y237{bottom:743.246077pt;}
.yde{bottom:743.314213pt;}
.y18d{bottom:745.246533pt;}
.y210{bottom:746.846533pt;}
.yb{bottom:747.124000pt;}
.y14d{bottom:749.327587pt;}
.y107{bottom:749.327643pt;}
.y4c{bottom:752.366613pt;}
.y70{bottom:753.806693pt;}
.ydd{bottom:758.678213pt;}
.y236{bottom:758.686229pt;}
.yb6{bottom:761.166533pt;}
.ya{bottom:764.452000pt;}
.y14c{bottom:768.847099pt;}
.y106{bottom:768.847155pt;}
.y4b{bottom:769.246533pt;}
.y6f{bottom:770.686613pt;}
.ydc{bottom:774.122373pt;}
.y20f{bottom:774.126381pt;}
.y9{bottom:781.780000pt;}
.y4a{bottom:786.446667pt;}
.y6e{bottom:787.566533pt;}
.y40{bottom:787.646667pt;}
.y14b{bottom:788.366611pt;}
.y105{bottom:788.366667pt;}
.ydb{bottom:789.566533pt;}
.y8{bottom:799.108000pt;}
.yda{bottom:835.086533pt;}
.y2{bottom:851.396400pt;}
.y34{bottom:921.691333pt;}
.y38{bottom:947.795733pt;}
.y3a{bottom:947.800133pt;}
.y35{bottom:949.091733pt;}
.h17{height:9.265781pt;}
.h2a{height:24.854375pt;}
.h28{height:27.015625pt;}
.h15{height:29.634062pt;}
.h2{height:30.388792pt;}
.hf{height:32.851406pt;}
.h14{height:37.209687pt;}
.h16{height:37.343906pt;}
.h13{height:39.030469pt;}
.h27{height:40.523438pt;}
.he{height:42.117188pt;}
.h9{height:43.840000pt;}
.h11{height:44.363437pt;}
.h20{height:44.568125pt;}
.h1b{height:45.116094pt;}
.h1e{height:45.121320pt;}
.h1c{height:45.125054pt;}
.h22{height:45.128894pt;}
.h1f{height:45.157374pt;}
.h1d{height:45.194814pt;}
.h21{height:45.210814pt;}
.h12{height:46.890469pt;}
.h8{height:48.000000pt;}
.h18{height:48.838125pt;}
.h19{height:49.438594pt;}
.h25{height:50.609067pt;}
.h26{height:50.614923pt;}
.h29{height:50.616875pt;}
.hd{height:51.382969pt;}
.h4{height:52.000000pt;}
.h10{height:56.156250pt;}
.h23{height:62.181875pt;}
.h3{height:72.000000pt;}
.h1a{height:72.131719pt;}
.h7{height:74.002358pt;}
.hc{height:80.062500pt;}
.h6{height:86.390625pt;}
.hb{height:106.750000pt;}
.h5{height:107.443060pt;}
.h24{height:164.255000pt;}
.ha{height:906.666667pt;}
.h0{height:907.088000pt;}
.h1{height:907.333333pt;}
.w0{width:642.517333pt;}
.w2{width:642.522667pt;}
.w1{width:642.666667pt;}
.x12{left:-1145.791200pt;}
.x13{left:-1143.119200pt;}
.x17{left:-1007.265600pt;}
.x14{left:-1005.665600pt;}
.x16{left:-709.441600pt;}
.x11{left:-706.511467pt;}
.x29{left:-450.357867pt;}
.x2a{left:-447.685867pt;}
.x2e{left:-311.832267pt;}
.x2b{left:-310.232267pt;}
.x1{left:-209.742400pt;}
.x15{left:-64.273600pt;}
.x10{left:-53.343467pt;}
.x7{left:-22.432533pt;}
.x2d{left:-14.008267pt;}
.x28{left:-11.078133pt;}
.xe{left:-8.399467pt;}
.xa{left:-6.809467pt;}
.x0{left:0.000000pt;}
.x3e{left:85.040000pt;}
.x58{left:88.800000pt;}
.x4e{left:108.000330pt;}
.x4c{left:109.039697pt;}
.x48{left:113.360000pt;}
.x4{left:116.439200pt;}
.x5{left:118.171067pt;}
.x30{left:132.080000pt;}
.x4f{left:133.440000pt;}
.x50{left:136.160000pt;}
.x3f{left:141.760000pt;}
.x59{left:148.640000pt;}
.x49{left:151.200000pt;}
.x33{left:160.640000pt;}
.x34{left:179.600400pt;}
.x31{left:189.040000pt;}
.x32{left:220.640000pt;}
.x4b{left:225.200000pt;}
.x37{left:226.880000pt;}
.x38{left:235.760000pt;}
.x44{left:245.680000pt;}
.x4a{left:254.240000pt;}
.x39{left:273.360000pt;}
.x4d{left:280.080000pt;}
.x3a{left:284.960000pt;}
.x47{left:290.640000pt;}
.x43{left:292.960344pt;}
.x6{left:295.051067pt;}
.x35{left:300.960000pt;}
.x36{left:317.520000pt;}
.x40{left:321.280000pt;}
.x3b{left:327.520000pt;}
.x3c{left:338.160000pt;}
.x52{left:339.280000pt;}
.x56{left:352.880000pt;}
.x2{left:363.835733pt;}
.x5a{left:402.880000pt;}
.x5b{left:406.160000pt;}
.x53{left:411.200000pt;}
.x3d{left:415.680000pt;}
.x54{left:418.160000pt;}
.x41{left:422.399140pt;}
.x3{left:424.669733pt;}
.x51{left:430.880000pt;}
.x46{left:446.161579pt;}
.x45{left:449.120000pt;}
.x57{left:473.840000pt;}
.x55{left:529.440000pt;}
.x42{left:557.519648pt;}
.x2c{left:631.159733pt;}
.xf{left:633.888533pt;}
.x27{left:642.089867pt;}
.xb{left:667.478533pt;}
.x1e{left:673.000800pt;}
.x8{left:680.271333pt;}
.x25{left:687.033867pt;}
.x21{left:688.623867pt;}
.x1b{left:811.872533pt;}
.x1c{left:813.604400pt;}
.xd{left:935.664533pt;}
.x18{left:938.062400pt;}
.x9{left:984.862400pt;}
.x1d{left:990.484400pt;}
.xc{left:991.529067pt;}
.x19{left:1059.269067pt;}
.x1a{left:1120.103067pt;}
.x26{left:1329.321867pt;}
.x22{left:1362.911867pt;}
.x1f{left:1375.704667pt;}
.x24{left:1631.097867pt;}
.x2f{left:1633.495733pt;}
.x20{left:1680.295733pt;}
.x23{left:1686.962400pt;}
}




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