
    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_e9083a741df0b03227fcc947.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.931000;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_a1fb2f7703de555d0430b143.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933000;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_5421c1498ca3f2cb84c63e00.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.473000;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_8158ad6ffe5f100c5ab0bda7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.923000;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_70abcb7268faedd0d9d6dbbd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.732000;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_dbde250b275b308d1a56351a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_76eb9bac34d1d2c45fd09b70.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910000;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_fe8f6ec26949ac97aae36ac3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.894000;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_48de63fe615be1c265ff09c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722000;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_41d42c766b0dd95599911f1c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.252000;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_6f82df09885b3b68a7d46929.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.891000;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_e67306b7c6512cda55a37f7b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.058000;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_440c4508200fbea5204391d4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.845000;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_b414a07e294177a6d1a77ba3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.825000;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_26de18382db00b3383c69a50.woff2')format("woff");}.fff{font-family:fff;line-height:0.245000;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_c57b101406b3c94edf8b601b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.934000;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_abbd2ddad4f232b49c29516d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.685000;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:ff12;src:url('chunks/assets/font_64577fe979a883d2d86949e0.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.260000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-5.080920px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:11.895344px;}
.ls70{letter-spacing:-3.815771px;}
.ls85{letter-spacing:-3.485511px;}
.ls3d{letter-spacing:-2.337226px;}
.ls74{letter-spacing:-2.276252px;}
.lsc7{letter-spacing:-1.900864px;}
.lsc2{letter-spacing:-1.709582px;}
.ls13{letter-spacing:-1.691649px;}
.ls10{letter-spacing:-1.685672px;}
.lsc4{letter-spacing:-1.679694px;}
.ls12{letter-spacing:-1.673717px;}
.lsf{letter-spacing:-1.667739px;}
.lsc5{letter-spacing:-1.661762px;}
.ls39{letter-spacing:-1.655784px;}
.ls11{letter-spacing:-1.649807px;}
.ls6a{letter-spacing:-1.613941px;}
.ls60{letter-spacing:-1.601986px;}
.ls5e{letter-spacing:-1.572098px;}
.lsc3{letter-spacing:-1.566121px;}
.ls3a{letter-spacing:-1.560143px;}
.ls28{letter-spacing:-1.554166px;}
.lsb6{letter-spacing:-1.548188px;}
.ls18{letter-spacing:-1.513962px;}
.ls33{letter-spacing:-1.494390px;}
.ls37{letter-spacing:-1.488412px;}
.lsb4{letter-spacing:-1.416682px;}
.ls2c{letter-spacing:-1.398749px;}
.ls36{letter-spacing:-1.386794px;}
.ls5f{letter-spacing:-1.380816px;}
.ls2e{letter-spacing:-1.374839px;}
.ls29{letter-spacing:-1.368861px;}
.ls69{letter-spacing:-1.362884px;}
.ls35{letter-spacing:-1.356906px;}
.ls61{letter-spacing:-1.350929px;}
.ls2b{letter-spacing:-1.344951px;}
.lsb7{letter-spacing:-1.338973px;}
.lsb5{letter-spacing:-1.332996px;}
.ls2d{letter-spacing:-1.327018px;}
.ls2a{letter-spacing:-1.321041px;}
.ls32{letter-spacing:-1.315063px;}
.ls34{letter-spacing:-1.309086px;}
.lsb3{letter-spacing:-1.303108px;}
.lsaf{letter-spacing:-1.291153px;}
.lsab{letter-spacing:-1.279198px;}
.ls45{letter-spacing:-1.273220px;}
.lsac{letter-spacing:-1.267243px;}
.ls3c{letter-spacing:-1.261265px;}
.ls57{letter-spacing:-1.255288px;}
.ls4c{letter-spacing:-1.249310px;}
.ls5a{letter-spacing:-1.243332px;}
.ls6b{letter-spacing:-1.237355px;}
.ls40{letter-spacing:-1.231377px;}
.ls4b{letter-spacing:-1.225400px;}
.ls4e{letter-spacing:-1.219422px;}
.ls2f{letter-spacing:-1.195512px;}
.ls6d{letter-spacing:-1.183557px;}
.lsad{letter-spacing:-1.177579px;}
.ls6f{letter-spacing:-1.171602px;}
.ls56{letter-spacing:-1.165624px;}
.ls30{letter-spacing:-1.159647px;}
.ls31{letter-spacing:-1.153669px;}
.ls73{letter-spacing:-1.148288px;}
.ls44{letter-spacing:-1.147691px;}
.ls42{letter-spacing:-1.141714px;}
.ls9d{letter-spacing:-1.138126px;}
.ls3b{letter-spacing:-1.135736px;}
.ls3f{letter-spacing:-1.129759px;}
.ls62{letter-spacing:-1.123781px;}
.lsd0{letter-spacing:-1.122883px;}
.ls43{letter-spacing:-1.117804px;}
.ls59{letter-spacing:-1.111826px;}
.lse8{letter-spacing:-1.102560px;}
.ls4a{letter-spacing:-1.093893px;}
.ls9b{letter-spacing:-1.082236px;}
.lsf0{letter-spacing:-1.077155px;}
.ls46{letter-spacing:-1.075961px;}
.lsb2{letter-spacing:-1.058639px;}
.ls3e{letter-spacing:-1.058028px;}
.ls41{letter-spacing:-1.052051px;}
.ls23{letter-spacing:-1.046073px;}
.ls58{letter-spacing:-1.040095px;}
.ls72{letter-spacing:-1.031427px;}
.ls47{letter-spacing:-1.028140px;}
.lsd6{letter-spacing:-1.022163px;}
.ls55{letter-spacing:-1.016185px;}
.ls5d{letter-spacing:-1.004230px;}
.ls4f{letter-spacing:-1.000941px;}
.ls4d{letter-spacing:-0.998252px;}
.ls49{letter-spacing:-0.986297px;}
.ls48{letter-spacing:-0.974342px;}
.ls5c{letter-spacing:-0.962387px;}
.ls24{letter-spacing:-0.956410px;}
.ls38{letter-spacing:-0.950432px;}
.ls5b{letter-spacing:-0.938477px;}
.ls95{letter-spacing:-0.920544px;}
.ls94{letter-spacing:-0.914567px;}
.lse9{letter-spacing:-0.914566px;}
.lsa0{letter-spacing:-0.909485px;}
.ls98{letter-spacing:-0.908589px;}
.lse7{letter-spacing:-0.889459px;}
.ls96{letter-spacing:-0.884679px;}
.ls27{letter-spacing:-0.878701px;}
.ls26{letter-spacing:-0.866746px;}
.lsb8{letter-spacing:-0.860769px;}
.ls9f{letter-spacing:-0.858675px;}
.ls97{letter-spacing:-0.854791px;}
.ls25{letter-spacing:-0.848813px;}
.ls9c{letter-spacing:-0.848514px;}
.lscf{letter-spacing:-0.843433px;}
.ls9a{letter-spacing:-0.836858px;}
.lsc0{letter-spacing:-0.800993px;}
.ls22{letter-spacing:-0.789038px;}
.ls99{letter-spacing:-0.789037px;}
.ls76{letter-spacing:-0.787543px;}
.lsa1{letter-spacing:-0.772300px;}
.ls9e{letter-spacing:-0.721491px;}
.ls16{letter-spacing:-0.711329px;}
.lse5{letter-spacing:-0.706248px;}
.lse{letter-spacing:-0.691005px;}
.ls19{letter-spacing:-0.650358px;}
.ls17{letter-spacing:-0.609649px;}
.lsd{letter-spacing:-0.597690px;}
.lsc{letter-spacing:0.000000px;}
.lsbd{letter-spacing:0.059774px;}
.lsa{letter-spacing:0.101617px;}
.ls9{letter-spacing:0.101618px;}
.lsbc{letter-spacing:0.119551px;}
.ls8f{letter-spacing:0.179326px;}
.lsb0{letter-spacing:0.460272px;}
.ls3{letter-spacing:0.478205px;}
.ls5{letter-spacing:0.502115px;}
.lsd1{letter-spacing:0.508093px;}
.lsdc{letter-spacing:0.528416px;}
.lsdd{letter-spacing:0.558901px;}
.ls52{letter-spacing:0.573846px;}
.lsef{letter-spacing:0.584306px;}
.lsa6{letter-spacing:0.603734px;}
.ls50{letter-spacing:0.615689px;}
.lsdf{letter-spacing:0.619872px;}
.lsee{letter-spacing:0.635115px;}
.ls86{letter-spacing:0.657532px;}
.ls1f{letter-spacing:0.669487px;}
.ls8d{letter-spacing:0.681442px;}
.ls80{letter-spacing:0.699375px;}
.ls81{letter-spacing:0.705352px;}
.ls87{letter-spacing:0.711330px;}
.ls7f{letter-spacing:0.717307px;}
.ls8c{letter-spacing:0.723285px;}
.ls8b{letter-spacing:0.729262px;}
.ls21{letter-spacing:0.735240px;}
.lsda{letter-spacing:0.751976px;}
.ls65{letter-spacing:0.753173px;}
.lseb{letter-spacing:0.762138px;}
.lsed{letter-spacing:0.797704px;}
.lse0{letter-spacing:0.818028px;}
.lsc8{letter-spacing:0.836858px;}
.lsec{letter-spacing:0.843433px;}
.lse1{letter-spacing:0.853595px;}
.lsd4{letter-spacing:0.909485px;}
.lsbb{letter-spacing:0.914567px;}
.lsa9{letter-spacing:0.944454px;}
.ls77{letter-spacing:1.010208px;}
.ls6e{letter-spacing:1.040095px;}
.lsa5{letter-spacing:1.099871px;}
.lsea{letter-spacing:1.117802px;}
.ls89{letter-spacing:1.123781px;}
.lsa3{letter-spacing:1.141714px;}
.ls88{letter-spacing:1.153669px;}
.lse2{letter-spacing:1.239744px;}
.lsd7{letter-spacing:1.326120px;}
.lscd{letter-spacing:1.380816px;}
.ls7e{letter-spacing:1.386794px;}
.lsa7{letter-spacing:1.392771px;}
.lsb1{letter-spacing:1.398749px;}
.lse4{letter-spacing:1.402334px;}
.lse3{letter-spacing:1.442981px;}
.ls8e{letter-spacing:1.769358px;}
.ls63{letter-spacing:1.823156px;}
.ls54{letter-spacing:1.869778px;}
.lsdb{letter-spacing:2.103501px;}
.ls64{letter-spacing:2.128011px;}
.lscb{letter-spacing:2.151922px;}
.lsd3{letter-spacing:2.194957px;}
.ls92{letter-spacing:2.391024px;}
.ls8a{letter-spacing:2.438844px;}
.lsbe{letter-spacing:2.803476px;}
.ls7a{letter-spacing:2.958892px;}
.ls79{letter-spacing:3.054533px;}
.ls78{letter-spacing:3.227881px;}
.ls51{letter-spacing:3.461007px;}
.lsde{letter-spacing:3.495673px;}
.lsd5{letter-spacing:4.948816px;}
.lsd9{letter-spacing:5.401018px;}
.ls93{letter-spacing:5.989515px;}
.lsca{letter-spacing:9.201546px;}
.lsbf{letter-spacing:9.298084px;}
.ls71{letter-spacing:9.541967px;}
.ls68{letter-spacing:9.602939px;}
.ls67{letter-spacing:9.653748px;}
.lsce{letter-spacing:9.699476px;}
.lsc6{letter-spacing:9.946660px;}
.lsba{letter-spacing:10.221627px;}
.ls1c{letter-spacing:10.580280px;}
.lsa2{letter-spacing:10.616141px;}
.lscc{letter-spacing:10.669930px;}
.lse6{letter-spacing:10.878249px;}
.ls1d{letter-spacing:10.938935px;}
.lsb9{letter-spacing:10.938936px;}
.ls7{letter-spacing:11.297589px;}
.ls14{letter-spacing:11.303566px;}
.ls15{letter-spacing:11.309543px;}
.ls6{letter-spacing:11.596466px;}
.ls4{letter-spacing:12.313771px;}
.lsc1{letter-spacing:12.313773px;}
.lsaa{letter-spacing:12.517039px;}
.ls53{letter-spacing:12.612651px;}
.lsa4{letter-spacing:12.971305px;}
.ls66{letter-spacing:13.007154px;}
.ls83{letter-spacing:13.108773px;}
.ls84{letter-spacing:13.159581px;}
.lsd8{letter-spacing:13.159582px;}
.lsc9{letter-spacing:13.174825px;}
.ls75{letter-spacing:13.286605px;}
.lsa8{letter-spacing:13.329957px;}
.ls82{letter-spacing:13.362820px;}
.lsb{letter-spacing:13.820099px;}
.ls1e{letter-spacing:13.987490px;}
.ls20{letter-spacing:14.645022px;}
.lsae{letter-spacing:14.991721px;}
.ls6c{letter-spacing:15.105294px;}
.lsd2{letter-spacing:15.302552px;}
.ls1a{letter-spacing:15.541654px;}
.ls2{letter-spacing:16.066351px;}
.ls1{letter-spacing:16.066534px;}
.ls0{letter-spacing:16.067084px;}
.ls91{letter-spacing:16.378513px;}
.ls90{letter-spacing:17.753353px;}
.ls7d{letter-spacing:21.937646px;}
.ls1b{letter-spacing:21.997421px;}
.ls7c{letter-spacing:22.296298px;}
.ls7b{letter-spacing:22.475624px;}
.ls8{letter-spacing:35.718863px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse0{word-spacing:-15.165069px;}
.ws16f{word-spacing:-15.051496px;}
.ws10a{word-spacing:-13.337415px;}
.ws19d{word-spacing:-13.225634px;}
.ws185{word-spacing:-12.373549px;}
.ws23{word-spacing:-11.369319px;}
.ws22{word-spacing:-11.363341px;}
.ws192{word-spacing:-10.006435px;}
.wsfc{word-spacing:-9.592777px;}
.ws19e{word-spacing:-9.252355px;}
.ws114{word-spacing:-3.114309px;}
.ws226{word-spacing:-0.848514px;}
.ws12c{word-spacing:-0.783060px;}
.ws229{word-spacing:-0.635115px;}
.ws46{word-spacing:-0.071731px;}
.ws9c{word-spacing:-0.065754px;}
.wsc{word-spacing:-0.059776px;}
.ws0{word-spacing:-0.056906px;}
.ws28{word-spacing:-0.050809px;}
.ws4{word-spacing:-0.039846px;}
.ws38{word-spacing:0.000000px;}
.ws6{word-spacing:0.557844px;}
.ws36{word-spacing:0.599549px;}
.ws32{word-spacing:0.660520px;}
.ws15a{word-spacing:0.670681px;}
.ws14c{word-spacing:0.717306px;}
.ws15d{word-spacing:0.721491px;}
.ws40{word-spacing:0.729262px;}
.ws144{word-spacing:0.789038px;}
.ws157{word-spacing:0.797704px;}
.ws15b{word-spacing:0.807866px;}
.ws1ed{word-spacing:0.817729px;}
.ws15c{word-spacing:0.858675px;}
.ws1fe{word-spacing:0.863756px;}
.ws86{word-spacing:0.914567px;}
.ws156{word-spacing:1.031427px;}
.ws20b{word-spacing:1.072074px;}
.ws159{word-spacing:1.087317px;}
.wsdf{word-spacing:1.093893px;}
.ws83{word-spacing:1.255288px;}
.ws17f{word-spacing:1.303108px;}
.ws6d{word-spacing:1.596008px;}
.ws217{word-spacing:2.225443px;}
.ws77{word-spacing:2.277450px;}
.ws1ea{word-spacing:7.441571px;}
.ws19b{word-spacing:8.485136px;}
.ws19c{word-spacing:8.688373px;}
.ws104{word-spacing:8.789991px;}
.ws1ce{word-spacing:8.891610px;}
.ws10c{word-spacing:9.044035px;}
.wsc8{word-spacing:9.196465px;}
.ws1eb{word-spacing:9.277313px;}
.wsfb{word-spacing:9.501320px;}
.ws10e{word-spacing:9.501321px;}
.ws10d{word-spacing:9.552125px;}
.ws22c{word-spacing:9.552129px;}
.ws10f{word-spacing:9.602938px;}
.ws108{word-spacing:9.653748px;}
.ws1a4{word-spacing:9.704557px;}
.ws127{word-spacing:9.856984px;}
.wsc9{word-spacing:9.907794px;}
.ws30{word-spacing:9.958603px;}
.ws14e{word-spacing:9.982525px;}
.ws3f{word-spacing:10.042301px;}
.ws128{word-spacing:10.161840px;}
.ws1b2{word-spacing:10.212649px;}
.ws20f{word-spacing:10.263458px;}
.ws1a1{word-spacing:10.281403px;}
.ws1ee{word-spacing:10.314267px;}
.ws1ae{word-spacing:10.314268px;}
.wsd3{word-spacing:10.365076px;}
.ws177{word-spacing:10.377044px;}
.ws3d{word-spacing:10.400954px;}
.ws1f7{word-spacing:10.415886px;}
.ws1b3{word-spacing:10.415894px;}
.ws1af{word-spacing:10.517500px;}
.ws148{word-spacing:10.580281px;}
.ws1de{word-spacing:10.720741px;}
.ws1e2{word-spacing:10.822359px;}
.ws3e{word-spacing:10.879159px;}
.ws1f5{word-spacing:10.923978px;}
.ws4b{word-spacing:10.938935px;}
.wsf8{word-spacing:10.998710px;}
.ws13a{word-spacing:11.058486px;}
.ws1cd{word-spacing:11.076405px;}
.ws33{word-spacing:11.178024px;}
.ws222{word-spacing:11.228833px;}
.ws21{word-spacing:11.237813px;}
.wscf{word-spacing:11.279642px;}
.ws13b{word-spacing:11.297588px;}
.ws208{word-spacing:11.330451px;}
.ws20{word-spacing:11.357364px;}
.ws175{word-spacing:11.417139px;}
.wsd2{word-spacing:11.482879px;}
.ws1f9{word-spacing:11.533688px;}
.ws13f{word-spacing:11.536691px;}
.ws1ff{word-spacing:11.584497px;}
.ws1f{word-spacing:11.596466px;}
.ws20d{word-spacing:11.635306px;}
.ws1bb{word-spacing:11.716017px;}
.ws1ec{word-spacing:11.716194px;}
.ws204{word-spacing:11.736925px;}
.ws1df{word-spacing:11.889352px;}
.ws1bc{word-spacing:11.895344px;}
.ws85{word-spacing:11.907299px;}
.ws50{word-spacing:11.925232px;}
.wsca{word-spacing:11.940162px;}
.ws1fa{word-spacing:11.990971px;}
.ws1e1{word-spacing:12.041780px;}
.ws1b5{word-spacing:12.074671px;}
.ws1e9{word-spacing:12.092589px;}
.ws34{word-spacing:12.194208px;}
.ws103{word-spacing:12.245017px;}
.ws73{word-spacing:12.253998px;}
.ws210{word-spacing:12.295826px;}
.ws1cb{word-spacing:12.313773px;}
.ws2c{word-spacing:12.346635px;}
.ws35{word-spacing:12.397444px;}
.ws161{word-spacing:12.397449px;}
.ws7a{word-spacing:12.427347px;}
.ws183{word-spacing:12.448254px;}
.ws14f{word-spacing:12.493100px;}
.ws182{word-spacing:12.499063px;}
.ws7d{word-spacing:12.499078px;}
.ws184{word-spacing:12.517010px;}
.ws27{word-spacing:12.549872px;}
.ws93{word-spacing:12.552876px;}
.ws126{word-spacing:12.564831px;}
.ws2f{word-spacing:12.600681px;}
.ws11f{word-spacing:12.612651px;}
.ws168{word-spacing:12.636562px;}
.ws1b4{word-spacing:12.651489px;}
.ws26{word-spacing:12.651490px;}
.ws110{word-spacing:12.702300px;}
.ws12a{word-spacing:12.753097px;}
.ws31{word-spacing:12.753109px;}
.ws80{word-spacing:12.774045px;}
.wsd7{word-spacing:12.803918px;}
.ws169{word-spacing:12.803933px;}
.ws1b0{word-spacing:12.844567px;}
.ws29{word-spacing:12.854727px;}
.ws81{word-spacing:12.863709px;}
.ws17d{word-spacing:12.869686px;}
.wsda{word-spacing:12.881641px;}
.wsd9{word-spacing:12.899574px;}
.wsf9{word-spacing:12.905536px;}
.ws13c{word-spacing:12.911529px;}
.ws1c8{word-spacing:12.917507px;}
.ws2b{word-spacing:12.956346px;}
.ws47{word-spacing:12.971305px;}
.ws2d{word-spacing:13.007155px;}
.ws48{word-spacing:13.031080px;}
.ws1c7{word-spacing:13.049013px;}
.ws2e{word-spacing:13.057964px;}
.ws1b6{word-spacing:13.090856px;}
.ws2a{word-spacing:13.108773px;}
.ws109{word-spacing:13.108774px;}
.ws167{word-spacing:13.114766px;}
.ws1ad{word-spacing:13.210392px;}
.ws51{word-spacing:13.270183px;}
.ws8c{word-spacing:13.300071px;}
.ws18f{word-spacing:13.306048px;}
.wsd5{word-spacing:13.312010px;}
.ws1b1{word-spacing:13.317091px;}
.ws153{word-spacing:13.329958px;}
.ws13d{word-spacing:13.347891px;}
.wsaf{word-spacing:13.371801px;}
.ws166{word-spacing:13.383757px;}
.wsae{word-spacing:13.395712px;}
.ws214{word-spacing:13.413628px;}
.ws196{word-spacing:13.449510px;}
.ws158{word-spacing:13.464438px;}
.ws8b{word-spacing:13.509285px;}
.ws154{word-spacing:13.509289px;}
.ws52{word-spacing:13.569061px;}
.ws84{word-spacing:13.688612px;}
.ws1f3{word-spacing:13.718484px;}
.ws152{word-spacing:13.748388px;}
.ws1da{word-spacing:13.769293px;}
.wsa6{word-spacing:13.784253px;}
.ws1c6{word-spacing:13.808163px;}
.wsea{word-spacing:13.820118px;}
.ws10b{word-spacing:13.845507px;}
.ws15{word-spacing:13.861961px;}
.ws212{word-spacing:13.870911px;}
.ws1c0{word-spacing:13.873916px;}
.ws17b{word-spacing:13.897827px;}
.ws1b{word-spacing:13.927714px;}
.wsa5{word-spacing:13.951625px;}
.ws186{word-spacing:13.963580px;}
.ws17c{word-spacing:14.011400px;}
.ws1d2{word-spacing:14.023339px;}
.ws147{word-spacing:14.047266px;}
.ws16a{word-spacing:14.059221px;}
.ws82{word-spacing:14.065198px;}
.ws37{word-spacing:14.114795px;}
.ws69{word-spacing:14.118996px;}
.ws1db{word-spacing:14.124957px;}
.ws181{word-spacing:14.130951px;}
.ws17a{word-spacing:14.154862px;}
.ws1f8{word-spacing:14.226576px;}
.wsf7{word-spacing:14.226592px;}
.ws14{word-spacing:14.238548px;}
.ws6a{word-spacing:14.280390px;}
.ws53{word-spacing:14.286368px;}
.wse9{word-spacing:14.316256px;}
.ws227{word-spacing:14.328194px;}
.ws5c{word-spacing:14.370054px;}
.ws1e0{word-spacing:14.373922px;}
.wsa4{word-spacing:14.405919px;}
.ws76{word-spacing:14.411897px;}
.ws1d9{word-spacing:14.429812px;}
.wsb{word-spacing:14.460298px;}
.wsd1{word-spacing:14.480622px;}
.ws75{word-spacing:14.525470px;}
.ws5d{word-spacing:14.537426px;}
.ws1e3{word-spacing:14.582240px;}
.ws13e{word-spacing:14.585246px;}
.ws120{word-spacing:14.645022px;}
.ws1e5{word-spacing:14.681109px;}
.wsce{word-spacing:14.683858px;}
.wsac{word-spacing:14.692842px;}
.ws171{word-spacing:14.704797px;}
.ws1ac{word-spacing:14.749911px;}
.ws4a{word-spacing:14.764573px;}
.ws1fd{word-spacing:14.785477px;}
.ws43{word-spacing:14.824348px;}
.ws5e{word-spacing:14.914012px;}
.ws7{word-spacing:14.943900px;}
.ws3{word-spacing:15.003675px;}
.ws99{word-spacing:15.024280px;}
.ws5{word-spacing:15.063451px;}
.ws98{word-spacing:15.123226px;}
.wsbb{word-spacing:15.123229px;}
.ws11b{word-spacing:15.123232px;}
.ws180{word-spacing:15.129210px;}
.ws205{word-spacing:15.141141px;}
.ws44{word-spacing:15.183002px;}
.ws1fc{word-spacing:15.217343px;}
.ws9{word-spacing:15.242778px;}
.ws220{word-spacing:15.252921px;}
.ws106{word-spacing:15.273245px;}
.ws160{word-spacing:15.293545px;}
.ws42{word-spacing:15.302553px;}
.ws15e{word-spacing:15.344375px;}
.ws1d0{word-spacing:15.344378px;}
.ws10{word-spacing:15.362329px;}
.ws39{word-spacing:15.422104px;}
.ws1e4{word-spacing:15.445996px;}
.ws163{word-spacing:15.481880px;}
.ws21d{word-spacing:15.496805px;}
.ws1c2{word-spacing:15.541656px;}
.ws1bf{word-spacing:15.547633px;}
.ws1be{word-spacing:15.559588px;}
.ws87{word-spacing:15.571543px;}
.ws17{word-spacing:15.601431px;}
.wsa{word-spacing:15.661207px;}
.wsc3{word-spacing:15.667184px;}
.ws21a{word-spacing:15.700042px;}
.ws8{word-spacing:15.720982px;}
.wsb8{word-spacing:15.726960px;}
.ws223{word-spacing:15.750851px;}
.ws72{word-spacing:15.780758px;}
.wsc2{word-spacing:15.798691px;}
.ws21b{word-spacing:15.801661px;}
.ws64{word-spacing:15.900309px;}
.wsd0{word-spacing:15.954088px;}
.ws1ba{word-spacing:15.960085px;}
.ws141{word-spacing:16.019843px;}
.ws117{word-spacing:16.079636px;}
.ws9f{word-spacing:16.139412px;}
.ws1e6{word-spacing:16.157325px;}
.ws88{word-spacing:16.205165px;}
.ws65{word-spacing:16.258963px;}
.wsb6{word-spacing:16.306991px;}
.ws209{word-spacing:16.309753px;}
.ws118{word-spacing:16.318738px;}
.ws7c{word-spacing:16.354604px;}
.ws1f2{word-spacing:16.360562px;}
.ws11d{word-spacing:16.378514px;}
.wsf2{word-spacing:16.438499px;}
.ws151{word-spacing:16.498065px;}
.ws123{word-spacing:16.504253px;}
.ws1f6{word-spacing:16.512989px;}
.ws143{word-spacing:16.521975px;}
.wsbd{word-spacing:16.570007px;}
.ws162{word-spacing:16.635761px;}
.ws20c{word-spacing:16.665417px;}
.ws116{word-spacing:16.677392px;}
.ws67{word-spacing:16.719235px;}
.ws1a0{word-spacing:16.737168px;}
.wsa0{word-spacing:16.796943px;}
.ws213{word-spacing:16.868654px;}
.ws189{word-spacing:16.868674px;}
.ws66{word-spacing:16.910517px;}
.ws124{word-spacing:16.916494px;}
.ws131{word-spacing:16.928449px;}
.ws8f{word-spacing:16.958337px;}
.ws21f{word-spacing:16.970272px;}
.ws68{word-spacing:16.976270px;}
.ws18a{word-spacing:17.012135px;}
.ws119{word-spacing:17.036046px;}
.wsb5{word-spacing:17.059956px;}
.ws137{word-spacing:17.071911px;}
.ws18d{word-spacing:17.083866px;}
.ws16e{word-spacing:17.089841px;}
.ws111{word-spacing:17.096039px;}
.ws18e{word-spacing:17.119735px;}
.ws11c{word-spacing:17.161793px;}
.wsbc{word-spacing:17.179507px;}
.wsf1{word-spacing:17.197440px;}
.ws96{word-spacing:17.215372px;}
.ws19{word-spacing:17.275148px;}
.ws1c9{word-spacing:17.281126px;}
.ws18{word-spacing:17.293081px;}
.ws17e{word-spacing:17.299058px;}
.wse1{word-spacing:17.322968px;}
.ws6c{word-spacing:17.334924px;}
.ws145{word-spacing:17.352856px;}
.ws14b{word-spacing:17.364811px;}
.wsdc{word-spacing:17.376766px;}
.ws6e{word-spacing:17.394699px;}
.wse2{word-spacing:17.448497px;}
.ws15f{word-spacing:17.463121px;}
.wsdb{word-spacing:17.514250px;}
.ws211{word-spacing:17.529173px;}
.ws170{word-spacing:17.550116px;}
.ws1d6{word-spacing:17.630792px;}
.ws190{word-spacing:17.651734px;}
.ws12f{word-spacing:17.675644px;}
.ws1d8{word-spacing:17.681601px;}
.ws14a{word-spacing:17.693577px;}
.wsad{word-spacing:17.729443px;}
.ws21e{word-spacing:17.732410px;}
.ws191{word-spacing:17.741396px;}
.ws165{word-spacing:17.747375px;}
.wscd{word-spacing:17.783219px;}
.ws1b8{word-spacing:17.813128px;}
.ws1b7{word-spacing:17.872904px;}
.ws18b{word-spacing:17.908769px;}
.ws12{word-spacing:17.926702px;}
.wsb9{word-spacing:17.992455px;}
.ws18c{word-spacing:17.998433px;}
.ws13{word-spacing:18.004410px;}
.ws1fb{word-spacing:18.037265px;}
.ws198{word-spacing:18.052231px;}
.wsd4{word-spacing:18.088075px;}
.ws199{word-spacing:18.112006px;}
.ws1c4{word-spacing:18.177760px;}
.ws1e8{word-spacing:18.189693px;}
.wsa8{word-spacing:18.207647px;}
.wscb{word-spacing:18.240502px;}
.ws16{word-spacing:18.267423px;}
.ws216{word-spacing:18.342121px;}
.wsf6{word-spacing:18.351109px;}
.ws54{word-spacing:18.392952px;}
.ws56{word-spacing:18.410884px;}
.ws179{word-spacing:18.417695px;}
.ws9b{word-spacing:18.434764px;}
.wsa7{word-spacing:18.458705px;}
.ws1{word-spacing:18.481912px;}
.ws8a{word-spacing:18.488593px;}
.ws22a{word-spacing:18.494548px;}
.ws1ef{word-spacing:18.545357px;}
.ws89{word-spacing:18.584234px;}
.ws20a{word-spacing:18.646976px;}
.ws12d{word-spacing:18.655964px;}
.wsa1{word-spacing:18.709762px;}
.ws7b{word-spacing:18.745628px;}
.ws201{word-spacing:18.748594px;}
.ws12b{word-spacing:18.769538px;}
.ws203{word-spacing:18.799403px;}
.wsde{word-spacing:18.811381px;}
.ws6f{word-spacing:18.829314px;}
.ws224{word-spacing:18.850213px;}
.ws142{word-spacing:18.853224px;}
.ws9e{word-spacing:18.889089px;}
.ws1f4{word-spacing:18.901022px;}
.wsed{word-spacing:18.924954px;}
.ws215{word-spacing:18.946750px;}
.ws174{word-spacing:18.948865px;}
.wsa2{word-spacing:18.978753px;}
.ws1f1{word-spacing:18.982316px;}
.ws3c{word-spacing:19.008637px;}
.wsf4{word-spacing:19.008640px;}
.ws1f0{word-spacing:19.063611px;}
.ws5f{word-spacing:19.068416px;}
.ws200{word-spacing:19.083935px;}
.ws1d1{word-spacing:19.104259px;}
.ws71{word-spacing:19.128192px;}
.ws1cf{word-spacing:19.144906px;}
.ws21c{word-spacing:19.175391px;}
.ws225{word-spacing:19.226201px;}
.ws207{word-spacing:19.246524px;}
.ws221{word-spacing:19.256686px;}
.ws7e{word-spacing:19.301541px;}
.ws1d5{word-spacing:19.302414px;}
.ws1c1{word-spacing:19.307518px;}
.ws1d3{word-spacing:19.312576px;}
.wscc{word-spacing:19.317657px;}
.ws7f{word-spacing:19.325451px;}
.ws228{word-spacing:19.332900px;}
.ws219{word-spacing:19.337981px;}
.wsf5{word-spacing:19.367294px;}
.ws206{word-spacing:19.368466px;}
.ws1d4{word-spacing:19.388790px;}
.ws218{word-spacing:19.419276px;}
.ws1a2{word-spacing:19.427070px;}
.ws202{word-spacing:19.459923px;}
.ws94{word-spacing:19.486845px;}
.ws1e7{word-spacing:19.546299px;}
.ws1b9{word-spacing:19.546621px;}
.ws20e{word-spacing:19.561541px;}
.ws4f{word-spacing:19.737903px;}
.ws1dd{word-spacing:19.764778px;}
.ws79{word-spacing:19.767790px;}
.ws112{word-spacing:19.785723px;}
.ws70{word-spacing:19.845499px;}
.wsb2{word-spacing:19.851476px;}
.wse7{word-spacing:19.899297px;}
.ws22b{word-spacing:19.917206px;}
.ws129{word-spacing:19.947691px;}
.ws1c3{word-spacing:20.012870px;}
.ws95{word-spacing:20.024825px;}
.ws25{word-spacing:20.084601px;}
.ws8e{word-spacing:20.120466px;}
.ws1dc{word-spacing:20.171252px;}
.ws194{word-spacing:20.263928px;}
.wsfa{word-spacing:20.277951px;}
.ws133{word-spacing:20.311748px;}
.ws135{word-spacing:20.377502px;}
.ws121{word-spacing:20.383479px;}
.ws57{word-spacing:20.437277px;}
.ws11e{word-spacing:20.443255px;}
.ws8d{word-spacing:20.497053px;}
.ws146{word-spacing:20.514985px;}
.ws149{word-spacing:20.562806px;}
.wsba{word-spacing:20.622581px;}
.wsbe{word-spacing:20.712245px;}
.wsa3{word-spacing:20.783976px;}
.ws134{word-spacing:20.987213px;}
.ws125{word-spacing:21.058943px;}
.ws49{word-spacing:21.100786px;}
.ws197{word-spacing:21.160562px;}
.wsf0{word-spacing:21.220337px;}
.ws138{word-spacing:21.280113px;}
.ws195{word-spacing:21.339889px;}
.wsab{word-spacing:21.357821px;}
.ws150{word-spacing:21.399664px;}
.wsa9{word-spacing:21.459440px;}
.wsaa{word-spacing:21.489328px;}
.ws92{word-spacing:21.578991px;}
.ws11a{word-spacing:21.638767px;}
.ws136{word-spacing:21.692565px;}
.ws3a{word-spacing:21.698542px;}
.wsf{word-spacing:21.758318px;}
.ws78{word-spacing:21.818093px;}
.wsf3{word-spacing:21.877869px;}
.wsef{word-spacing:21.913734px;}
.ws1ca{word-spacing:21.997420px;}
.wsee{word-spacing:22.033286px;}
.ws19f{word-spacing:22.051218px;}
.ws122{word-spacing:22.057199px;}
.wsdd{word-spacing:22.116971px;}
.ws63{word-spacing:22.176747px;}
.ws9d{word-spacing:22.218590px;}
.ws172{word-spacing:22.230545px;}
.ws4d{word-spacing:22.296298px;}
.wse{word-spacing:22.356074px;}
.ws178{word-spacing:22.368029px;}
.ws176{word-spacing:22.397917px;}
.wsd8{word-spacing:22.415849px;}
.ws1bd{word-spacing:22.445737px;}
.ws74{word-spacing:22.457692px;}
.ws1e{word-spacing:22.475625px;}
.ws113{word-spacing:22.481603px;}
.ws140{word-spacing:22.535401px;}
.ws1d{word-spacing:22.571266px;}
.ws1c{word-spacing:22.595176px;}
.ws19a{word-spacing:22.601154px;}
.ws115{word-spacing:22.625064px;}
.wsc5{word-spacing:22.631042px;}
.ws193{word-spacing:22.637019px;}
.ws24{word-spacing:22.654938px;}
.wsb7{word-spacing:22.660929px;}
.ws139{word-spacing:22.678862px;}
.ws14d{word-spacing:22.702772px;}
.ws187{word-spacing:22.708750px;}
.ws97{word-spacing:22.714727px;}
.ws5a{word-spacing:22.720705px;}
.ws5b{word-spacing:22.744615px;}
.ws188{word-spacing:22.750593px;}
.ws4e{word-spacing:22.774503px;}
.wsb1{word-spacing:22.834279px;}
.ws173{word-spacing:22.852211px;}
.ws1c5{word-spacing:22.864166px;}
.ws1a{word-spacing:22.894054px;}
.wsec{word-spacing:22.947852px;}
.ws164{word-spacing:22.953830px;}
.ws90{word-spacing:23.013605px;}
.wsb3{word-spacing:23.043493px;}
.wse3{word-spacing:23.049471px;}
.wsb4{word-spacing:23.055448px;}
.wse8{word-spacing:23.061426px;}
.wseb{word-spacing:23.067403px;}
.ws11{word-spacing:23.133149px;}
.ws1a3{word-spacing:23.133157px;}
.ws12e{word-spacing:23.175000px;}
.ws16b{word-spacing:23.204887px;}
.ws16c{word-spacing:23.216846px;}
.wse4{word-spacing:23.222820px;}
.ws4c{word-spacing:23.252708px;}
.ws130{word-spacing:23.264663px;}
.wse6{word-spacing:23.276618px;}
.ws16d{word-spacing:23.288573px;}
.wsb0{word-spacing:23.294551px;}
.wsc7{word-spacing:23.300528px;}
.ws6b{word-spacing:23.306506px;}
.ws55{word-spacing:23.312483px;}
.ws132{word-spacing:23.324439px;}
.ws62{word-spacing:23.330416px;}
.wsc0{word-spacing:23.336394px;}
.wse5{word-spacing:23.354326px;}
.wsbf{word-spacing:23.384214px;}
.ws61{word-spacing:23.396169px;}
.ws91{word-spacing:23.432035px;}
.ws58{word-spacing:23.479855px;}
.ws60{word-spacing:23.491810px;}
.wsc6{word-spacing:23.497788px;}
.wsc1{word-spacing:23.539631px;}
.wsc4{word-spacing:23.599406px;}
.wsd{word-spacing:23.730925px;}
.ws59{word-spacing:23.910239px;}
.ws1cc{word-spacing:24.591657px;}
.ws2{word-spacing:25.185196px;}
.ws3b{word-spacing:28.811827px;}
.ws1d7{word-spacing:49.843824px;}
.ws1a8{word-spacing:85.511882px;}
.ws1a6{word-spacing:85.562690px;}
.ws1a5{word-spacing:86.121591px;}
.ws1ab{word-spacing:87.798295px;}
.ws107{word-spacing:179.752782px;}
.ws45{word-spacing:191.521018px;}
.ws41{word-spacing:194.838563px;}
.ws105{word-spacing:217.758060px;}
.ws1a7{word-spacing:267.800043px;}
.ws101{word-spacing:267.815275px;}
.ws1aa{word-spacing:287.173597px;}
.ws1a9{word-spacing:303.229296px;}
.ws100{word-spacing:322.181117px;}
.ws102{word-spacing:348.855974px;}
.wsfd{word-spacing:369.565765px;}
.wsfe{word-spacing:388.639538px;}
.wsff{word-spacing:413.688474px;}
.ws155{word-spacing:917.156839px;}
.wsd6{word-spacing:2260.602783px;}
.ws9a{word-spacing:2260.958447px;}
._43{margin-left:-16.880274px;}
._1f{margin-left:-15.653495px;}
._46{margin-left:-14.419271px;}
._3d{margin-left:-13.186121px;}
._c{margin-left:-12.140750px;}
._d{margin-left:-11.039576px;}
._25{margin-left:-9.403334px;}
._47{margin-left:-8.389500px;}
._1d{margin-left:-7.376283px;}
._1c{margin-left:-6.272110px;}
._9{margin-left:-5.041893px;}
._8{margin-left:-3.900329px;}
._1{margin-left:-2.069101px;}
._0{margin-left:-1.024315px;}
._3{width:1.066993px;}
._19{width:2.151922px;}
._e{width:3.825638px;}
._f{width:4.901599px;}
._5{width:6.097104px;}
._44{width:8.197760px;}
._17{width:9.522335px;}
._a{width:11.042698px;}
._4{width:12.397444px;}
._7{width:13.897183px;}
._3e{width:15.118196px;}
._2{width:16.176143px;}
._1b{width:17.236115px;}
._10{width:19.103919px;}
._1a{width:20.114430px;}
._6{width:21.257068px;}
._b{width:22.618221px;}
._18{width:23.987950px;}
._45{width:25.064772px;}
._20{width:26.121937px;}
._1e{width:31.560640px;}
._52{width:49.990737px;}
._53{width:51.799972px;}
._54{width:52.827490px;}
._3f{width:63.446617px;}
._13{width:66.088767px;}
._4c{width:85.469653px;}
._14{width:87.093047px;}
._51{width:90.093290px;}
._4a{width:102.837817px;}
._12{width:123.413566px;}
._4b{width:130.616356px;}
._3c{width:143.924769px;}
._24{width:145.217227px;}
._35{width:160.886766px;}
._3a{width:163.788835px;}
._2e{width:166.402762px;}
._16{width:169.762700px;}
._23{width:171.891952px;}
._11{width:177.720984px;}
._50{width:179.938029px;}
._15{width:192.776305px;}
._36{width:218.859067px;}
._3b{width:223.975511px;}
._30{width:228.904020px;}
._39{width:242.833872px;}
._48{width:265.209939px;}
._37{width:272.716806px;}
._4e{width:286.753090px;}
._4d{width:303.205208px;}
._38{width:314.481985px;}
._4f{width:346.812500px;}
._2f{width:388.639606px;}
._2d{width:401.226154px;}
._32{width:427.443720px;}
._21{width:430.311608px;}
._27{width:432.566283px;}
._26{width:437.856960px;}
._2a{width:442.395678px;}
._2b{width:445.582612px;}
._29{width:448.543606px;}
._31{width:466.275995px;}
._33{width:467.800277px;}
._28{width:474.581875px;}
._2c{width:484.262476px;}
._34{width:485.837568px;}
._42{width:600.699678px;}
._41{width:603.900657px;}
._40{width:605.069269px;}
._49{width:797.721577px;}
._22{width:1126.600894px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(19,20,19);}
.fs6{font-size:33.869399px;}
.fs3{font-size:39.845999px;}
.fs4{font-size:47.821200px;}
.fs5{font-size:50.809198px;}
.fs0{font-size:56.906399px;}
.fs2{font-size:59.775599px;}
.fs8{font-size:65.753998px;}
.fs7{font-size:71.730600px;}
.fs1{font-size:95.761202px;}
.y0{bottom:0.000000px;}
.y202{bottom:115.470861px;}
.y1dc{bottom:115.482331px;}
.y16a{bottom:115.482342px;}
.y141{bottom:115.487047px;}
.y12b{bottom:115.487366px;}
.y76{bottom:115.497594px;}
.y197{bottom:115.546156px;}
.y284{bottom:115.556477px;}
.yde{bottom:115.657631px;}
.ya2{bottom:116.252517px;}
.y24b{bottom:117.724046px;}
.y2c4{bottom:119.340580px;}
.y227{bottom:122.982649px;}
.y196{bottom:130.433252px;}
.y201{bottom:130.434169px;}
.y140{bottom:130.450356px;}
.y12a{bottom:130.450675px;}
.y283{bottom:130.519785px;}
.ydd{bottom:130.544727px;}
.ye4{bottom:130.544730px;}
.y24a{bottom:132.687354px;}
.y1db{bottom:134.192093px;}
.y169{bottom:134.192104px;}
.y75{bottom:134.207356px;}
.y2c3{bottom:134.392804px;}
.ya1{bottom:134.872616px;}
.y226{bottom:141.692410px;}
.ydc{bottom:145.508036px;}
.ye3{bottom:145.508039px;}
.y282{bottom:146.080102px;}
.y2c2{bottom:149.356113px;}
.y200{bottom:149.652749px;}
.y129{bottom:149.669254px;}
.y127{bottom:149.673437px;}
.y1da{bottom:152.812192px;}
.y74{bottom:152.827456px;}
.ya0{bottom:153.582378px;}
.y128{bottom:155.281803px;}
.y2f{bottom:158.848305px;}
.y225{bottom:160.312510px;}
.ydb{bottom:160.471344px;}
.ye2{bottom:160.471347px;}
.y195{bottom:160.880665px;}
.y281{bottom:161.132327px;}
.y2c1{bottom:165.856400px;}
.y249{bottom:166.272235px;}
.y1ff{bottom:168.782412px;}
.y126{bottom:168.803101px;}
.y1d9{bottom:171.521954px;}
.y168{bottom:171.524403px;}
.y73{bottom:171.537218px;}
.y9f{bottom:172.292140px;}
.y2e{bottom:173.735401px;}
.yda{bottom:175.434653px;}
.ye1{bottom:175.434656px;}
.y280{bottom:176.095635px;}
.y224{bottom:179.022272px;}
.y2d{bottom:179.433002px;}
.y194{bottom:179.934114px;}
.y2c0{bottom:180.819709px;}
.y248{bottom:181.235543px;}
.y1d8{bottom:190.231716px;}
.y72{bottom:190.246980px;}
.yd9{bottom:190.321749px;}
.ye0{bottom:190.321752px;}
.y9e{bottom:190.904519px;}
.y27f{bottom:191.655952px;}
.y2bf{bottom:195.783017px;}
.y44{bottom:196.184142px;}
.y247{bottom:196.198852px;}
.y223{bottom:197.642372px;}
.y2c{bottom:198.651901px;}
.y193{bottom:198.987564px;}
.y1fe{bottom:199.229825px;}
.y124{bottom:199.247246px;}
.y2b{bottom:204.264450px;}
.y125{bottom:204.944847px;}
.yd8{bottom:205.285057px;}
.ydf{bottom:205.285060px;}
.y27e{bottom:206.619261px;}
.y1d7{bottom:208.851816px;}
.y167{bottom:208.856552px;}
.y71{bottom:208.867079px;}
.y9d{bottom:209.614281px;}
.y2be{bottom:210.746326px;}
.y43{bottom:211.147450px;}
.y246{bottom:211.162161px;}
.y222{bottom:216.352134px;}
.y192{bottom:218.041013px;}
.y1fd{bottom:218.283275px;}
.y122{bottom:218.290934px;}
.y27d{bottom:221.582569px;}
.y2a{bottom:223.481894px;}
.y123{bottom:223.993652px;}
.y42{bottom:226.034546px;}
.y2bd{bottom:227.246613px;}
.y1d6{bottom:227.561578px;}
.y1cd{bottom:227.570285px;}
.y70{bottom:227.576841px;}
.y9c{bottom:228.353930px;}
.y41{bottom:231.732307px;}
.y221{bottom:235.061895px;}
.y191{bottom:237.170677px;}
.y27c{bottom:237.231803px;}
.y1fc{bottom:237.336724px;}
.y121{bottom:237.344383px;}
.y29{bottom:238.368990px;}
.y2bc{bottom:242.298837px;}
.y245{bottom:244.747041px;}
.y1d5{bottom:246.271340px;}
.y1cc{bottom:246.280046px;}
.y6f{bottom:246.286603px;}
.y9b{bottom:246.974030px;}
.y40{bottom:248.485039px;}
.y27b{bottom:252.195111px;}
.y28{bottom:253.332298px;}
.y220{bottom:253.681995px;}
.y3f{bottom:254.097610px;}
.y190{bottom:256.224126px;}
.y1fb{bottom:256.466388px;}
.y120{bottom:256.474047px;}
.y2bb{bottom:257.262146px;}
.y27{bottom:259.029900px;}
.y244{bottom:259.710350px;}
.y1d4{bottom:264.891439px;}
.y1cb{bottom:264.900146px;}
.y6e{bottom:264.906703px;}
.y166{bottom:264.907846px;}
.y9a{bottom:265.683792px;}
.y27a{bottom:267.158420px;}
.y3e{bottom:270.930104px;}
.y2ba{bottom:272.225454px;}
.y21f{bottom:272.391757px;}
.y243{bottom:274.597446px;}
.y18f{bottom:275.277576px;}
.y1fa{bottom:275.519837px;}
.y11f{bottom:275.527496px;}
.y26{bottom:278.170993px;}
.y279{bottom:282.718737px;}
.y1d3{bottom:283.601201px;}
.y1ca{bottom:283.609908px;}
.y6d{bottom:283.616465px;}
.y165{bottom:283.617608px;}
.y99{bottom:284.393554px;}
.y3d{bottom:285.817200px;}
.y2b9{bottom:288.725742px;}
.y21e{bottom:291.101519px;}
.y3c{bottom:291.514961px;}
.y25{bottom:293.134302px;}
.y18e{bottom:294.331025px;}
.y11c{bottom:294.540211px;}
.y1f9{bottom:294.573286px;}
.y11e{bottom:294.576302px;}
.y278{bottom:297.682045px;}
.y11d{bottom:300.189011px;}
.y6c{bottom:302.236564px;}
.y1d2{bottom:302.310963px;}
.y1c9{bottom:302.319670px;}
.y164{bottom:302.327370px;}
.y98{bottom:303.013653px;}
.y2b8{bottom:303.689050px;}
.y24{bottom:308.097610px;}
.y3b{bottom:308.271242px;}
.y21d{bottom:309.721619px;}
.y277{bottom:312.734270px;}
.y18d{bottom:313.384474px;}
.y11b{bottom:313.593660px;}
.y1f8{bottom:313.626736px;}
.y23{bottom:313.710159px;}
.y2b7{bottom:318.652359px;}
.y1d1{bottom:320.931063px;}
.y1c8{bottom:320.939770px;}
.y6b{bottom:320.946326px;}
.y163{bottom:320.947470px;}
.y97{bottom:321.723415px;}
.y3a{bottom:323.234550px;}
.y276{bottom:327.697578px;}
.y21c{bottom:328.431380px;}
.y11a{bottom:328.480756px;}
.y39{bottom:328.847099px;}
.y18c{bottom:332.437924px;}
.y22{bottom:332.930992px;}
.y2b6{bottom:333.704583px;}
.y1d0{bottom:339.640825px;}
.y1c7{bottom:339.649531px;}
.y6a{bottom:339.656088px;}
.y162{bottom:339.657232px;}
.y96{bottom:340.433177px;}
.y275{bottom:343.257895px;}
.y1f7{bottom:344.328194px;}
.y38{bottom:345.603540px;}
.y21b{bottom:347.141142px;}
.y119{bottom:347.534206px;}
.y21{bottom:347.894301px;}
.y2b5{bottom:348.667892px;}
.y18b{bottom:351.491373px;}
.y242{bottom:356.825111px;}
.y274{bottom:358.221204px;}
.y1cf{bottom:358.260924px;}
.y1c6{bottom:358.269631px;}
.y69{bottom:358.276188px;}
.y161{bottom:358.366994px;}
.y95{bottom:359.053277px;}
.y1f6{bottom:359.291503px;}
.y37{bottom:360.566849px;}
.y20{bottom:362.781397px;}
.y2b4{bottom:365.168179px;}
.y21a{bottom:365.761242px;}
.y36{bottom:366.179398px;}
.y118{bottom:366.663869px;}
.y18a{bottom:370.544822px;}
.y273{bottom:373.273428px;}
.y1ce{bottom:376.970686px;}
.y1c5{bottom:376.979393px;}
.y68{bottom:376.985950px;}
.y160{bottom:376.987093px;}
.y1f{bottom:377.744705px;}
.y94{bottom:377.763039px;}
.y2b3{bottom:380.131488px;}
.y117{bottom:381.550965px;}
.y35{bottom:383.012074px;}
.y1e{bottom:383.442444px;}
.y219{bottom:384.471004px;}
.y272{bottom:388.236737px;}
.y1f5{bottom:389.561082px;}
.y189{bottom:389.598272px;}
.y241{bottom:394.939596px;}
.y2b2{bottom:395.094796px;}
.y67{bottom:395.695711px;}
.y15f{bottom:395.696855px;}
.y93{bottom:396.472800px;}
.y34{bottom:397.899170px;}
.y116{bottom:400.604414px;}
.y218{bottom:403.180766px;}
.y33{bottom:403.596771px;}
.y271{bottom:403.797054px;}
.y188{bottom:408.651721px;}
.y240{bottom:409.902905px;}
.y2b1{bottom:411.595083px;}
.y66{bottom:414.315811px;}
.y15e{bottom:414.406617px;}
.y92{bottom:415.092900px;}
.y1f4{bottom:417.798294px;}
.y270{bottom:418.760362px;}
.y115{bottom:419.657864px;}
.y32{bottom:420.353052px;}
.y1d{bottom:420.355314px;}
.y217{bottom:421.800865px;}
.y23f{bottom:424.866213px;}
.y2b0{bottom:426.558392px;}
.y187{bottom:427.705171px;}
.y1de{bottom:429.953633px;}
.y65{bottom:433.025573px;}
.y15d{bottom:433.026717px;}
.y26f{bottom:433.723671px;}
.y91{bottom:433.802662px;}
.y31{bottom:435.316360px;}
.y1c{bottom:435.318623px;}
.y114{bottom:438.711313px;}
.y23e{bottom:439.753309px;}
.y216{bottom:440.510627px;}
.y30{bottom:440.929047px;}
.y2af{bottom:441.738849px;}
.y1dd{bottom:444.840729px;}
.y186{bottom:446.758620px;}
.y26e{bottom:448.775895px;}
.y64{bottom:451.735335px;}
.y15c{bottom:451.736479px;}
.y90{bottom:452.512424px;}
.y113{bottom:453.674622px;}
.y23d{bottom:454.716618px;}
.y2ae{bottom:458.150221px;}
.y215{bottom:459.220389px;}
.y26d{bottom:464.336212px;}
.y1ee{bottom:464.656562px;}
.y1e6{bottom:464.656563px;}
.y185{bottom:465.812069px;}
.y23c{bottom:469.679926px;}
.y63{bottom:470.355435px;}
.y15b{bottom:470.356578px;}
.y8f{bottom:471.132524px;}
.y1b{bottom:471.380451px;}
.y112{bottom:472.728071px;}
.y2ad{bottom:473.189744px;}
.y1c4{bottom:475.634768px;}
.y214{bottom:477.840489px;}
.y26c{bottom:479.299521px;}
.y1ed{bottom:483.366324px;}
.y1e5{bottom:483.366325px;}
.y23b{bottom:484.567022px;}
.y184{bottom:484.865519px;}
.y1a{bottom:486.343759px;}
.y62{bottom:489.065196px;}
.y15a{bottom:489.066340px;}
.y2ac{bottom:489.601116px;}
.y8e{bottom:489.842285px;}
.y1c3{bottom:490.598077px;}
.y111{bottom:491.781520px;}
.y26b{bottom:494.262829px;}
.y213{bottom:496.550251px;}
.y23a{bottom:499.530331px;}
.y19{bottom:501.307068px;}
.y1ec{bottom:502.076085px;}
.y1e4{bottom:502.076087px;}
.y183{bottom:503.918968px;}
.y2ab{bottom:504.653340px;}
.y1c2{bottom:505.485172px;}
.y110{bottom:506.744829px;}
.y61{bottom:507.774958px;}
.y159{bottom:507.776102px;}
.y8d{bottom:508.552047px;}
.y26a{bottom:509.315054px;}
.y239{bottom:514.493639px;}
.y212{bottom:515.260013px;}
.y2aa{bottom:519.616648px;}
.y1c1{bottom:520.448481px;}
.y1eb{bottom:520.696185px;}
.y1e3{bottom:520.696187px;}
.y182{bottom:522.972417px;}
.y269{bottom:524.875371px;}
.y10f{bottom:525.798278px;}
.y60{bottom:526.395058px;}
.y158{bottom:526.396202px;}
.y8c{bottom:527.172147px;}
.y238{bottom:529.456948px;}
.y211{bottom:533.880112px;}
.y1c0{bottom:535.411789px;}
.y2a9{bottom:536.116936px;}
.y1ea{bottom:539.405947px;}
.y1e2{bottom:539.405948px;}
.y268{bottom:539.838679px;}
.y181{bottom:542.025867px;}
.y237{bottom:544.344043px;}
.y10e{bottom:544.851728px;}
.y5f{bottom:545.104820px;}
.y157{bottom:545.105964px;}
.y8b{bottom:545.881909px;}
.y18{bottom:545.941532px;}
.y1bf{bottom:550.375098px;}
.y2a8{bottom:551.080244px;}
.y210{bottom:552.589874px;}
.y267{bottom:554.801988px;}
.yd7{bottom:555.054451px;}
.ybc{bottom:555.057174px;}
.y1e9{bottom:558.115709px;}
.y1e1{bottom:558.115710px;}
.y236{bottom:559.307352px;}
.y10d{bottom:559.815036px;}
.y180{bottom:561.079316px;}
.y5e{bottom:563.814582px;}
.y156{bottom:563.815725px;}
.y8a{bottom:564.591671px;}
.y17{bottom:564.651294px;}
.y1be{bottom:565.262194px;}
.y2a7{bottom:566.043553px;}
.y266{bottom:569.765297px;}
.y20f{bottom:571.299636px;}
.yd6{bottom:573.764212px;}
.ybb{bottom:573.766936px;}
.y235{bottom:574.270660px;}
.y1e8{bottom:576.735809px;}
.y1e0{bottom:576.735810px;}
.y10c{bottom:578.868485px;}
.y1bd{bottom:580.225502px;}
.y2a6{bottom:581.095777px;}
.y5d{bottom:582.434681px;}
.y155{bottom:582.435825px;}
.y16{bottom:582.598917px;}
.y89{bottom:583.211771px;}
.y265{bottom:585.414530px;}
.y20e{bottom:589.919736px;}
.y17f{bottom:591.869691px;}
.yd5{bottom:592.384312px;}
.yba{bottom:592.387035px;}
.y1bc{bottom:595.188811px;}
.y1e7{bottom:595.445570px;}
.y1df{bottom:595.445572px;}
.y2a5{bottom:597.507149px;}
.y264{bottom:600.377838px;}
.y5c{bottom:601.144443px;}
.y154{bottom:601.145587px;}
.y15{bottom:601.308678px;}
.y88{bottom:601.921532px;}
.y234{bottom:608.629188px;}
.y20d{bottom:608.629498px;}
.y10b{bottom:609.569944px;}
.y1bb{bottom:610.152119px;}
.yd4{bottom:611.094074px;}
.yb9{bottom:611.096797px;}
.y2a4{bottom:612.559373px;}
.y5b{bottom:619.854205px;}
.y153{bottom:619.855349px;}
.y14{bottom:619.928778px;}
.y17e{bottom:620.106903px;}
.y87{bottom:620.631294px;}
.y1ba{bottom:625.039215px;}
.y233{bottom:627.338950px;}
.y20c{bottom:627.339260px;}
.y2a3{bottom:627.522682px;}
.yd3{bottom:629.803836px;}
.yb8{bottom:629.806559px;}
.y263{bottom:634.053452px;}
.y5a{bottom:638.474305px;}
.y152{bottom:638.475449px;}
.y13{bottom:638.638540px;}
.y86{bottom:639.251394px;}
.y10a{bottom:639.839523px;}
.y2a2{bottom:642.485990px;}
.y232{bottom:645.959050px;}
.y20b{bottom:645.959359px;}
.yd2{bottom:648.423936px;}
.yb7{bottom:648.426659px;}
.y109{bottom:651.741577px;}
.y59{bottom:657.184067px;}
.y1b9{bottom:657.185337px;}
.y1a5{bottom:657.189285px;}
.y12{bottom:657.348302px;}
.y85{bottom:657.961156px;}
.y2a1{bottom:658.986277px;}
.y231{bottom:664.668812px;}
.y20a{bottom:664.669121px;}
.yd1{bottom:667.133697px;}
.yb6{bottom:667.136421px;}
.y2a0{bottom:673.949586px;}
.y11{bottom:675.206263px;}
.y151{bottom:675.892822px;}
.y1b8{bottom:675.895099px;}
.y17d{bottom:675.895362px;}
.y1a4{bottom:675.899046px;}
.y84{bottom:676.670918px;}
.y230{bottom:683.378573px;}
.y209{bottom:683.378883px;}
.yb5{bottom:685.846183px;}
.y29f{bottom:689.001810px;}
.y10{bottom:693.916025px;}
.y1b7{bottom:694.515198px;}
.y17c{bottom:694.515462px;}
.y58{bottom:694.516342px;}
.y1a3{bottom:694.519146px;}
.y83{bottom:695.291017px;}
.y108{bottom:698.004788px;}
.yf6{bottom:698.007019px;}
.y22f{bottom:701.998673px;}
.y208{bottom:701.998983px;}
.yd0{bottom:704.466019px;}
.yb4{bottom:704.466282px;}
.y262{bottom:704.975110px;}
.y29e{bottom:705.413182px;}
.yf{bottom:712.625786px;}
.y1b6{bottom:713.224960px;}
.y17b{bottom:713.225224px;}
.y150{bottom:713.227638px;}
.y1a2{bottom:713.228908px;}
.y82{bottom:714.000779px;}
.y107{bottom:716.714550px;}
.yf5{bottom:716.716781px;}
.y261{bottom:719.942107px;}
.y29d{bottom:720.465406px;}
.y22e{bottom:720.708435px;}
.y207{bottom:720.708745px;}
.y22c{bottom:720.723682px;}
.yb3{bottom:723.176044px;}
.y22d{bottom:727.341614px;}
.ye{bottom:731.245886px;}
.y17a{bottom:731.934986px;}
.y14f{bottom:731.937400px;}
.y1a1{bottom:731.938670px;}
.y81{bottom:732.710541px;}
.y106{bottom:735.424312px;}
.yf4{bottom:735.426543px;}
.y29c{bottom:735.428715px;}
.y206{bottom:739.418506px;}
.y22b{bottom:739.433444px;}
.yb2{bottom:741.885806px;}
.ycf{bottom:746.221607px;}
.yd{bottom:749.955648px;}
.y179{bottom:750.555086px;}
.y14e{bottom:750.557499px;}
.y1a0{bottom:750.558770px;}
.y1b5{bottom:750.558979px;}
.y57{bottom:751.330468px;}
.y80{bottom:751.330641px;}
.y29b{bottom:751.929002px;}
.y260{bottom:752.853766px;}
.y105{bottom:754.044412px;}
.yf3{bottom:754.046642px;}
.y205{bottom:758.038606px;}
.y22a{bottom:758.053544px;}
.yb1{bottom:760.505906px;}
.yce{bottom:764.931369px;}
.y29a{bottom:766.892311px;}
.y25f{bottom:767.817075px;}
.yc{bottom:767.903271px;}
.y13f{bottom:768.586841px;}
.y178{bottom:769.264847px;}
.y1b4{bottom:769.265991px;}
.y14d{bottom:769.267261px;}
.y19f{bottom:769.268531px;}
.y13a{bottom:769.272525px;}
.y56{bottom:770.040230px;}
.y7f{bottom:770.040403px;}
.y104{bottom:772.754174px;}
.yf2{bottom:772.756404px;}
.y204{bottom:776.748368px;}
.y229{bottom:776.763305px;}
.yb0{bottom:779.215668px;}
.y299{bottom:781.855619px;}
.y25e{bottom:782.704170px;}
.ycd{bottom:783.551469px;}
.yb{bottom:786.613033px;}
.y13e{bottom:787.296603px;}
.y177{bottom:787.974609px;}
.y14c{bottom:787.977023px;}
.y19e{bottom:787.978293px;}
.y139{bottom:787.982287px;}
.y55{bottom:788.749992px;}
.y7e{bottom:788.750165px;}
.y103{bottom:791.463935px;}
.yf1{bottom:791.466166px;}
.y203{bottom:795.458130px;}
.y228{bottom:795.473067px;}
.y25d{bottom:797.667479px;}
.y298{bottom:798.355907px;}
.ycc{bottom:802.261230px;}
.yca{bottom:802.261448px;}
.ya{bottom:805.233133px;}
.y13d{bottom:805.916703px;}
.y14b{bottom:806.597123px;}
.y1b3{bottom:806.597432px;}
.y19d{bottom:806.598393px;}
.y138{bottom:806.602386px;}
.y54{bottom:807.370091px;}
.y7d{bottom:807.370264px;}
.ycb{bottom:808.894226px;}
.y102{bottom:810.084035px;}
.yf0{bottom:810.086266px;}
.y25c{bottom:812.630788px;}
.y297{bottom:813.319215px;}
.yaf{bottom:816.547760px;}
.y2e8{bottom:820.785967px;}
.yc9{bottom:820.971210px;}
.y9{bottom:823.180756px;}
.y13c{bottom:824.626465px;}
.y14a{bottom:825.306885px;}
.y1b2{bottom:825.307194px;}
.y19c{bottom:825.308155px;}
.y137{bottom:825.312148px;}
.y53{bottom:826.079853px;}
.y7c{bottom:826.080026px;}
.y25b{bottom:827.517883px;}
.y296{bottom:828.371439px;}
.y101{bottom:828.793797px;}
.yef{bottom:828.796028px;}
.y2d5{bottom:829.753770px;}
.y2e7{bottom:835.749276px;}
.yc8{bottom:839.591310px;}
.y1b1{bottom:844.016956px;}
.y19b{bottom:844.017917px;}
.y136{bottom:844.021910px;}
.y2d4{bottom:844.717079px;}
.y295{bottom:844.782811px;}
.y52{bottom:844.789615px;}
.y7b{bottom:844.789788px;}
.y100{bottom:847.503559px;}
.yee{bottom:847.505790px;}
.y2e6{bottom:850.801500px;}
.yc7{bottom:858.301072px;}
.y2d3{bottom:859.769303px;}
.y294{bottom:859.835035px;}
.y47{bottom:861.110596px;}
.y13b{bottom:861.958832px;}
.y1b0{bottom:862.637056px;}
.y19a{bottom:862.638016px;}
.y149{bottom:862.639160px;}
.yae{bottom:862.639596px;}
.y135{bottom:862.642010px;}
.y51{bottom:863.409715px;}
.y7a{bottom:863.409888px;}
.y2e5{bottom:865.764809px;}
.yff{bottom:866.123659px;}
.yed{bottom:866.125889px;}
.y8{bottom:874.714783px;}
.y2d2{bottom:874.732611px;}
.y293{bottom:874.798344px;}
.yc6{bottom:877.010834px;}
.y2e4{bottom:880.728117px;}
.y1af{bottom:881.346818px;}
.y199{bottom:881.347778px;}
.yad{bottom:881.349358px;}
.y134{bottom:881.351772px;}
.y176{bottom:881.357215px;}
.y50{bottom:882.119477px;}
.y79{bottom:882.119650px;}
.yfe{bottom:884.833420px;}
.yec{bottom:884.835651px;}
.y25a{bottom:888.832159px;}
.y292{bottom:889.761652px;}
.y2d1{bottom:891.232899px;}
.y2e3{bottom:895.691426px;}
.y1ae{bottom:900.056580px;}
.yac{bottom:900.059120px;}
.y133{bottom:900.061534px;}
.y148{bottom:900.063947px;}
.y175{bottom:900.066977px;}
.y4f{bottom:900.829238px;}
.y78{bottom:900.829411px;}
.yfd{bottom:903.543182px;}
.yeb{bottom:903.545413px;}
.y259{bottom:903.795468px;}
.y2d0{bottom:906.196207px;}
.y291{bottom:906.261940px;}
.y2e2{bottom:910.743650px;}
.yc5{bottom:914.343018px;}
.y6{bottom:918.084778px;}
.yab{bottom:918.679219px;}
.y198{bottom:918.680145px;}
.y132{bottom:918.681633px;}
.y258{bottom:918.682564px;}
.y147{bottom:918.684047px;}
.y174{bottom:918.687076px;}
.y4e{bottom:919.449338px;}
.y77{bottom:919.449511px;}
.y2cf{bottom:921.159516px;}
.y290{bottom:921.225248px;}
.yea{bottom:922.165513px;}
.y7{bottom:924.717865px;}
.y2e1{bottom:925.706958px;}
.y257{bottom:933.645872px;}
.y2ce{bottom:936.122824px;}
.y28f{bottom:936.188557px;}
.y4{bottom:936.793488px;}
.y1ad{bottom:937.388672px;}
.yaa{bottom:937.388981px;}
.y131{bottom:937.391395px;}
.y146{bottom:937.393809px;}
.y173{bottom:937.396838px;}
.y2e0{bottom:940.670267px;}
.ye9{bottom:940.875275px;}
.y5{bottom:943.426483px;}
.y2cd{bottom:952.623112px;}
.y28e{bottom:952.688844px;}
.y2df{bottom:955.633575px;}
.ya9{bottom:956.098743px;}
.y130{bottom:956.101157px;}
.y145{bottom:956.103571px;}
.y172{bottom:956.106600px;}
.yc4{bottom:956.106610px;}
.y256{bottom:967.319668px;}
.y2cc{bottom:967.675336px;}
.y28d{bottom:967.741068px;}
.y2de{bottom:970.685800px;}
.ya8{bottom:974.718843px;}
.y12f{bottom:974.721257px;}
.y144{bottom:974.723671px;}
.y171{bottom:974.726700px;}
.yc3{bottom:974.726710px;}
.y1ac{bottom:974.732216px;}
.y4d{bottom:975.488962px;}
.ye8{bottom:978.207642px;}
.y3{bottom:981.280616px;}
.y255{bottom:982.206764px;}
.y2cb{bottom:982.638645px;}
.y28c{bottom:982.704377px;}
.y2dd{bottom:985.649108px;}
.y24e{bottom:987.484522px;}
.ya7{bottom:993.428605px;}
.y12e{bottom:993.431019px;}
.yfc{bottom:993.432974px;}
.y143{bottom:993.433432px;}
.y170{bottom:993.436462px;}
.yc2{bottom:993.436472px;}
.y1ab{bottom:993.441978px;}
.y254{bottom:997.170073px;}
.y2ca{bottom:997.601953px;}
.y28b{bottom:999.204664px;}
.y2dc{bottom:1000.612417px;}
.y24d{bottom:1002.371618px;}
.y2{bottom:1008.141632px;}
.y253{bottom:1012.133381px;}
.ya6{bottom:1012.138367px;}
.y12d{bottom:1012.140781px;}
.yfb{bottom:1012.142735px;}
.y142{bottom:1012.143194px;}
.y16f{bottom:1012.146224px;}
.yc1{bottom:1012.146234px;}
.y1aa{bottom:1012.151740px;}
.y4c{bottom:1012.818821px;}
.y2c9{bottom:1014.102241px;}
.y28a{bottom:1014.167973px;}
.y2db{bottom:1015.575725px;}
.y24c{bottom:1017.334927px;}
.y252{bottom:1027.020477px;}
.y2c8{bottom:1029.065549px;}
.y289{bottom:1029.131281px;}
.y2da{bottom:1030.627950px;}
.y12c{bottom:1030.760880px;}
.yfa{bottom:1030.762835px;}
.ye7{bottom:1030.763294px;}
.y16e{bottom:1030.766323px;}
.yc0{bottom:1030.766334px;}
.y1a9{bottom:1030.771839px;}
.y4b{bottom:1031.528583px;}
.y1f3{bottom:1032.298235px;}
.y2c7{bottom:1044.028858px;}
.y288{bottom:1044.094590px;}
.y2d9{bottom:1045.591258px;}
.y1f2{bottom:1047.261544px;}
.ya5{bottom:1049.470642px;}
.yf9{bottom:1049.472597px;}
.ye6{bottom:1049.473056px;}
.y16d{bottom:1049.476085px;}
.ybf{bottom:1049.476095px;}
.y1a8{bottom:1049.481601px;}
.y4a{bottom:1050.238345px;}
.y2c6{bottom:1060.529145px;}
.y2d8{bottom:1060.554567px;}
.y287{bottom:1060.594877px;}
.y251{bottom:1060.694273px;}
.y1f1{bottom:1062.148639px;}
.yf8{bottom:1068.182359px;}
.ye5{bottom:1068.182818px;}
.y16c{bottom:1068.185847px;}
.ybe{bottom:1068.185857px;}
.y1a7{bottom:1068.191363px;}
.y49{bottom:1068.858445px;}
.y2c5{bottom:1075.492453px;}
.y2d7{bottom:1075.517875px;}
.y286{bottom:1075.558186px;}
.y250{bottom:1075.657582px;}
.y1f0{bottom:1077.111948px;}
.y1{bottom:1077.278595px;}
.yf7{bottom:1086.802459px;}
.ya4{bottom:1086.802917px;}
.y16b{bottom:1086.805947px;}
.ybd{bottom:1086.805957px;}
.y1a6{bottom:1086.811463px;}
.y48{bottom:1087.568207px;}
.y24f{bottom:1090.544678px;}
.y2d6{bottom:1090.570099px;}
.y285{bottom:1090.610410px;}
.y1ef{bottom:1092.075256px;}
.y46{bottom:1109.589985px;}
.ya3{bottom:1126.516388px;}
.y45{bottom:1126.763495px;}
.h17{height:22.963453px;}
.h16{height:23.200538px;}
.hd{height:23.539232px;}
.h14{height:27.692969px;}
.h5{height:28.330505px;}
.h6{height:32.566237px;}
.h18{height:33.235734px;}
.he{height:34.245400px;}
.hb{height:35.312393px;}
.h7{height:35.820485px;}
.h15{height:36.328577px;}
.hc{height:36.684241px;}
.h2{height:40.460450px;}
.hf{height:41.484265px;}
.ha{height:41.544041px;}
.h12{height:41.574924px;}
.h4{height:42.500451px;}
.h9{height:42.739553px;}
.h8{height:43.098207px;}
.h13{height:47.014108px;}
.h11{height:51.717763px;}
.h10{height:53.439385px;}
.h3{height:68.469259px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:76.535402px;}
.x35{left:82.998447px;}
.x1{left:85.039352px;}
.x1a{left:87.160515px;}
.x1b{left:93.541555px;}
.x17{left:97.625256px;}
.x16{left:99.755222px;}
.x36{left:105.367197px;}
.x37{left:106.637425px;}
.x3{left:125.347950px;}
.xf{left:156.557396px;}
.x4{left:166.081799px;}
.x2e{left:179.855905px;}
.x5{left:248.995193px;}
.x27{left:264.812553px;}
.x6{left:266.768394px;}
.x1f{left:267.870143px;}
.x10{left:275.697601px;}
.x22{left:279.784892px;}
.x21{left:282.338056px;}
.x2f{left:294.405239px;}
.x7{left:357.675453px;}
.x8{left:383.697601px;}
.x11{left:387.184204px;}
.x30{left:398.233833px;}
.x12{left:404.957382px;}
.x20{left:416.423538px;}
.x23{left:429.788864px;}
.x24{left:434.380966px;}
.x25{left:441.779388px;}
.x18{left:459.212540px;}
.x2c{left:460.660602px;}
.x1c{left:476.224914px;}
.x19{left:480.302261px;}
.x9{left:483.533707px;}
.x38{left:487.541297px;}
.x3a{left:488.814600px;}
.x39{left:490.856609px;}
.xa{left:501.307068px;}
.x13{left:532.601395px;}
.x33{left:534.897446px;}
.x28{left:537.108582px;}
.x34{left:540.169968px;}
.x29{left:543.996735px;}
.x14{left:550.374619px;}
.x1d{left:581.924240px;}
.x1e{left:587.366867px;}
.xb{left:588.472183px;}
.x31{left:623.420202px;}
.xc{left:626.059662px;}
.x15{left:660.585617px;}
.x2a{left:685.417191px;}
.x2b{left:692.220291px;}
.x2d{left:714.757399px;}
.x32{left:727.337711px;}
.xd{left:763.058121px;}
.xe{left:786.614136px;}
.x26{left:811.190369px;}
@media print{
.v1{vertical-align:-4.516373pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.573639pt;}
.ls70{letter-spacing:-3.391796pt;}
.ls85{letter-spacing:-3.098232pt;}
.ls3d{letter-spacing:-2.077534pt;}
.ls74{letter-spacing:-2.023335pt;}
.lsc7{letter-spacing:-1.689657pt;}
.lsc2{letter-spacing:-1.519629pt;}
.ls13{letter-spacing:-1.503688pt;}
.ls10{letter-spacing:-1.498375pt;}
.lsc4{letter-spacing:-1.493062pt;}
.ls12{letter-spacing:-1.487748pt;}
.lsf{letter-spacing:-1.482435pt;}
.lsc5{letter-spacing:-1.477121pt;}
.ls39{letter-spacing:-1.471808pt;}
.ls11{letter-spacing:-1.466495pt;}
.ls6a{letter-spacing:-1.434614pt;}
.ls60{letter-spacing:-1.423988pt;}
.ls5e{letter-spacing:-1.397421pt;}
.lsc3{letter-spacing:-1.392107pt;}
.ls3a{letter-spacing:-1.386794pt;}
.ls28{letter-spacing:-1.381480pt;}
.lsb6{letter-spacing:-1.376167pt;}
.ls18{letter-spacing:-1.345744pt;}
.ls33{letter-spacing:-1.328347pt;}
.ls37{letter-spacing:-1.323033pt;}
.lsb4{letter-spacing:-1.259273pt;}
.ls2c{letter-spacing:-1.243332pt;}
.ls36{letter-spacing:-1.232706pt;}
.ls5f{letter-spacing:-1.227392pt;}
.ls2e{letter-spacing:-1.222079pt;}
.ls29{letter-spacing:-1.216766pt;}
.ls69{letter-spacing:-1.211452pt;}
.ls35{letter-spacing:-1.206139pt;}
.ls61{letter-spacing:-1.200825pt;}
.ls2b{letter-spacing:-1.195512pt;}
.lsb7{letter-spacing:-1.190199pt;}
.lsb5{letter-spacing:-1.184885pt;}
.ls2d{letter-spacing:-1.179572pt;}
.ls2a{letter-spacing:-1.174258pt;}
.ls32{letter-spacing:-1.168945pt;}
.ls34{letter-spacing:-1.163632pt;}
.lsb3{letter-spacing:-1.158318pt;}
.lsaf{letter-spacing:-1.147691pt;}
.lsab{letter-spacing:-1.137065pt;}
.ls45{letter-spacing:-1.131751pt;}
.lsac{letter-spacing:-1.126438pt;}
.ls3c{letter-spacing:-1.121125pt;}
.ls57{letter-spacing:-1.115811pt;}
.ls4c{letter-spacing:-1.110498pt;}
.ls5a{letter-spacing:-1.105184pt;}
.ls6b{letter-spacing:-1.099871pt;}
.ls40{letter-spacing:-1.094558pt;}
.ls4b{letter-spacing:-1.089244pt;}
.ls4e{letter-spacing:-1.083931pt;}
.ls2f{letter-spacing:-1.062677pt;}
.ls6d{letter-spacing:-1.052051pt;}
.lsad{letter-spacing:-1.046737pt;}
.ls6f{letter-spacing:-1.041424pt;}
.ls56{letter-spacing:-1.036110pt;}
.ls30{letter-spacing:-1.030797pt;}
.ls31{letter-spacing:-1.025484pt;}
.ls73{letter-spacing:-1.020700pt;}
.ls44{letter-spacing:-1.020170pt;}
.ls42{letter-spacing:-1.014857pt;}
.ls9d{letter-spacing:-1.011668pt;}
.ls3b{letter-spacing:-1.009543pt;}
.ls3f{letter-spacing:-1.004230pt;}
.ls62{letter-spacing:-0.998917pt;}
.lsd0{letter-spacing:-0.998118pt;}
.ls43{letter-spacing:-0.993603pt;}
.ls59{letter-spacing:-0.988290pt;}
.lse8{letter-spacing:-0.980053pt;}
.ls4a{letter-spacing:-0.972350pt;}
.ls9b{letter-spacing:-0.961987pt;}
.lsf0{letter-spacing:-0.957471pt;}
.ls46{letter-spacing:-0.956410pt;}
.lsb2{letter-spacing:-0.941013pt;}
.ls3e{letter-spacing:-0.940469pt;}
.ls41{letter-spacing:-0.935156pt;}
.ls23{letter-spacing:-0.929843pt;}
.ls58{letter-spacing:-0.924529pt;}
.ls72{letter-spacing:-0.916824pt;}
.ls47{letter-spacing:-0.913902pt;}
.lsd6{letter-spacing:-0.908589pt;}
.ls55{letter-spacing:-0.903276pt;}
.ls5d{letter-spacing:-0.892649pt;}
.ls4f{letter-spacing:-0.889726pt;}
.ls4d{letter-spacing:-0.887336pt;}
.ls49{letter-spacing:-0.876709pt;}
.ls48{letter-spacing:-0.866082pt;}
.ls5c{letter-spacing:-0.855455pt;}
.ls24{letter-spacing:-0.850142pt;}
.ls38{letter-spacing:-0.844828pt;}
.ls5b{letter-spacing:-0.834202pt;}
.ls95{letter-spacing:-0.818262pt;}
.ls94{letter-spacing:-0.812948pt;}
.lse9{letter-spacing:-0.812947pt;}
.lsa0{letter-spacing:-0.808431pt;}
.ls98{letter-spacing:-0.807635pt;}
.lse7{letter-spacing:-0.790631pt;}
.ls96{letter-spacing:-0.786381pt;}
.ls27{letter-spacing:-0.781068pt;}
.ls26{letter-spacing:-0.770441pt;}
.lsb8{letter-spacing:-0.765128pt;}
.ls9f{letter-spacing:-0.763267pt;}
.ls97{letter-spacing:-0.759814pt;}
.ls25{letter-spacing:-0.754501pt;}
.ls9c{letter-spacing:-0.754234pt;}
.lscf{letter-spacing:-0.749718pt;}
.ls9a{letter-spacing:-0.743874pt;}
.lsc0{letter-spacing:-0.711994pt;}
.ls22{letter-spacing:-0.701367pt;}
.ls99{letter-spacing:-0.701366pt;}
.ls76{letter-spacing:-0.700038pt;}
.lsa1{letter-spacing:-0.686489pt;}
.ls9e{letter-spacing:-0.641325pt;}
.ls16{letter-spacing:-0.632292pt;}
.lse5{letter-spacing:-0.627776pt;}
.lse{letter-spacing:-0.614227pt;}
.ls19{letter-spacing:-0.578096pt;}
.ls17{letter-spacing:-0.541910pt;}
.lsd{letter-spacing:-0.531280pt;}
.lsc{letter-spacing:0.000000pt;}
.lsbd{letter-spacing:0.053133pt;}
.lsa{letter-spacing:0.090326pt;}
.ls9{letter-spacing:0.090327pt;}
.lsbc{letter-spacing:0.106268pt;}
.ls8f{letter-spacing:0.159401pt;}
.lsb0{letter-spacing:0.409131pt;}
.ls3{letter-spacing:0.425071pt;}
.ls5{letter-spacing:0.446324pt;}
.lsd1{letter-spacing:0.451638pt;}
.lsdc{letter-spacing:0.469703pt;}
.lsdd{letter-spacing:0.496801pt;}
.ls52{letter-spacing:0.510085pt;}
.lsef{letter-spacing:0.519383pt;}
.lsa6{letter-spacing:0.536652pt;}
.ls50{letter-spacing:0.547279pt;}
.lsdf{letter-spacing:0.550998pt;}
.lsee{letter-spacing:0.564547pt;}
.ls86{letter-spacing:0.584473pt;}
.ls1f{letter-spacing:0.595099pt;}
.ls8d{letter-spacing:0.605726pt;}
.ls80{letter-spacing:0.621666pt;}
.ls81{letter-spacing:0.626980pt;}
.ls87{letter-spacing:0.632293pt;}
.ls7f{letter-spacing:0.637606pt;}
.ls8c{letter-spacing:0.642920pt;}
.ls8b{letter-spacing:0.648233pt;}
.ls21{letter-spacing:0.653547pt;}
.lsda{letter-spacing:0.668423pt;}
.ls65{letter-spacing:0.669487pt;}
.lseb{letter-spacing:0.677456pt;}
.lsed{letter-spacing:0.709071pt;}
.lse0{letter-spacing:0.727136pt;}
.lsc8{letter-spacing:0.743874pt;}
.lsec{letter-spacing:0.749718pt;}
.lse1{letter-spacing:0.758751pt;}
.lsd4{letter-spacing:0.808431pt;}
.lsbb{letter-spacing:0.812948pt;}
.lsa9{letter-spacing:0.839515pt;}
.ls77{letter-spacing:0.897962pt;}
.ls6e{letter-spacing:0.924529pt;}
.lsa5{letter-spacing:0.977663pt;}
.lsea{letter-spacing:0.993602pt;}
.ls89{letter-spacing:0.998917pt;}
.lsa3{letter-spacing:1.014857pt;}
.ls88{letter-spacing:1.025484pt;}
.lse2{letter-spacing:1.101995pt;}
.lsd7{letter-spacing:1.178773pt;}
.lscd{letter-spacing:1.227392pt;}
.ls7e{letter-spacing:1.232706pt;}
.lsa7{letter-spacing:1.238019pt;}
.lsb1{letter-spacing:1.243332pt;}
.lse4{letter-spacing:1.246519pt;}
.lse3{letter-spacing:1.282650pt;}
.ls8e{letter-spacing:1.572762pt;}
.ls63{letter-spacing:1.620583pt;}
.ls54{letter-spacing:1.662025pt;}
.lsdb{letter-spacing:1.869778pt;}
.ls64{letter-spacing:1.891566pt;}
.lscb{letter-spacing:1.912819pt;}
.lsd3{letter-spacing:1.951073pt;}
.ls92{letter-spacing:2.125355pt;}
.ls8a{letter-spacing:2.167862pt;}
.lsbe{letter-spacing:2.491978pt;}
.ls7a{letter-spacing:2.630126pt;}
.ls79{letter-spacing:2.715141pt;}
.ls78{letter-spacing:2.869228pt;}
.ls51{letter-spacing:3.076451pt;}
.lsde{letter-spacing:3.107265pt;}
.lsd5{letter-spacing:4.398947pt;}
.lsd9{letter-spacing:4.800905pt;}
.ls93{letter-spacing:5.324013pt;}
.lsca{letter-spacing:8.179152pt;}
.lsbf{letter-spacing:8.264964pt;}
.ls71{letter-spacing:8.481749pt;}
.ls68{letter-spacing:8.535946pt;}
.ls67{letter-spacing:8.581109pt;}
.lsce{letter-spacing:8.621756pt;}
.lsc6{letter-spacing:8.841475pt;}
.lsba{letter-spacing:9.085891pt;}
.ls1c{letter-spacing:9.404693pt;}
.lsa2{letter-spacing:9.436570pt;}
.lscc{letter-spacing:9.484382pt;}
.lse6{letter-spacing:9.669555pt;}
.ls1d{letter-spacing:9.723497pt;}
.lsb9{letter-spacing:9.723498pt;}
.ls7{letter-spacing:10.042301pt;}
.ls14{letter-spacing:10.047614pt;}
.ls15{letter-spacing:10.052927pt;}
.ls6{letter-spacing:10.307970pt;}
.ls4{letter-spacing:10.945575pt;}
.lsc1{letter-spacing:10.945576pt;}
.lsaa{letter-spacing:11.126257pt;}
.ls53{letter-spacing:11.211246pt;}
.lsa4{letter-spacing:11.530049pt;}
.ls66{letter-spacing:11.561914pt;}
.ls83{letter-spacing:11.652243pt;}
.ls84{letter-spacing:11.697405pt;}
.lsd8{letter-spacing:11.697407pt;}
.lsc9{letter-spacing:11.710956pt;}
.ls75{letter-spacing:11.810316pt;}
.lsa8{letter-spacing:11.848851pt;}
.ls82{letter-spacing:11.878062pt;}
.lsb{letter-spacing:12.284533pt;}
.ls1e{letter-spacing:12.433324pt;}
.ls20{letter-spacing:13.017797pt;}
.lsae{letter-spacing:13.325974pt;}
.ls6c{letter-spacing:13.426928pt;}
.lsd2{letter-spacing:13.602268pt;}
.ls1a{letter-spacing:13.814804pt;}
.ls2{letter-spacing:14.281201pt;}
.ls1{letter-spacing:14.281364pt;}
.ls0{letter-spacing:14.281852pt;}
.ls91{letter-spacing:14.558678pt;}
.ls90{letter-spacing:15.780758pt;}
.ls7d{letter-spacing:19.500130pt;}
.ls1b{letter-spacing:19.553264pt;}
.ls7c{letter-spacing:19.818932pt;}
.ls7b{letter-spacing:19.978332pt;}
.ls8{letter-spacing:31.750101pt;}
.wse0{word-spacing:-13.480062pt;}
.ws16f{word-spacing:-13.379108pt;}
.ws10a{word-spacing:-11.855480pt;}
.ws19d{word-spacing:-11.756119pt;}
.ws185{word-spacing:-10.998710pt;}
.ws23{word-spacing:-10.106061pt;}
.ws22{word-spacing:-10.100748pt;}
.ws192{word-spacing:-8.894609pt;}
.wsfc{word-spacing:-8.526913pt;}
.ws19e{word-spacing:-8.224316pt;}
.ws114{word-spacing:-2.768274pt;}
.ws226{word-spacing:-0.754234pt;}
.ws12c{word-spacing:-0.696054pt;}
.ws229{word-spacing:-0.564547pt;}
.ws46{word-spacing:-0.063761pt;}
.ws9c{word-spacing:-0.058448pt;}
.wsc{word-spacing:-0.053134pt;}
.ws0{word-spacing:-0.050583pt;}
.ws28{word-spacing:-0.045164pt;}
.ws4{word-spacing:-0.035419pt;}
.ws38{word-spacing:0.000000pt;}
.ws6{word-spacing:0.495861pt;}
.ws36{word-spacing:0.532932pt;}
.ws32{word-spacing:0.587129pt;}
.ws15a{word-spacing:0.596161pt;}
.ws14c{word-spacing:0.637605pt;}
.ws15d{word-spacing:0.641325pt;}
.ws40{word-spacing:0.648233pt;}
.ws144{word-spacing:0.701367pt;}
.ws157{word-spacing:0.709071pt;}
.ws15b{word-spacing:0.718103pt;}
.ws1ed{word-spacing:0.726870pt;}
.ws15c{word-spacing:0.763267pt;}
.ws1fe{word-spacing:0.767783pt;}
.ws86{word-spacing:0.812948pt;}
.ws156{word-spacing:0.916824pt;}
.ws20b{word-spacing:0.952955pt;}
.ws159{word-spacing:0.966504pt;}
.wsdf{word-spacing:0.972350pt;}
.ws83{word-spacing:1.115811pt;}
.ws17f{word-spacing:1.158318pt;}
.ws6d{word-spacing:1.418674pt;}
.ws217{word-spacing:1.978171pt;}
.ws77{word-spacing:2.024400pt;}
.ws1ea{word-spacing:6.614730pt;}
.ws19b{word-spacing:7.542343pt;}
.ws19c{word-spacing:7.722998pt;}
.ws104{word-spacing:7.813326pt;}
.ws1ce{word-spacing:7.903653pt;}
.ws10c{word-spacing:8.039142pt;}
.wsc8{word-spacing:8.174635pt;}
.ws1eb{word-spacing:8.246500pt;}
.wsfb{word-spacing:8.445618pt;}
.ws10e{word-spacing:8.445619pt;}
.ws10d{word-spacing:8.490778pt;}
.ws22c{word-spacing:8.490782pt;}
.ws10f{word-spacing:8.535945pt;}
.ws108{word-spacing:8.581109pt;}
.ws1a4{word-spacing:8.626273pt;}
.ws127{word-spacing:8.761764pt;}
.wsc9{word-spacing:8.806928pt;}
.ws30{word-spacing:8.852091pt;}
.ws14e{word-spacing:8.873356pt;}
.ws3f{word-spacing:8.926489pt;}
.ws128{word-spacing:9.032746pt;}
.ws1b2{word-spacing:9.077910pt;}
.ws20f{word-spacing:9.123074pt;}
.ws1a1{word-spacing:9.139025pt;}
.ws1ee{word-spacing:9.168238pt;}
.ws1ae{word-spacing:9.168238pt;}
.wsd3{word-spacing:9.213401pt;}
.ws177{word-spacing:9.224039pt;}
.ws3d{word-spacing:9.245293pt;}
.ws1f7{word-spacing:9.258565pt;}
.ws1b3{word-spacing:9.258573pt;}
.ws1af{word-spacing:9.348889pt;}
.ws148{word-spacing:9.404694pt;}
.ws1de{word-spacing:9.529547pt;}
.ws1e2{word-spacing:9.619875pt;}
.ws3e{word-spacing:9.670363pt;}
.ws1f5{word-spacing:9.710202pt;}
.ws4b{word-spacing:9.723497pt;}
.wsf8{word-spacing:9.776631pt;}
.ws13a{word-spacing:9.829765pt;}
.ws1cd{word-spacing:9.845694pt;}
.ws33{word-spacing:9.936021pt;}
.ws222{word-spacing:9.981185pt;}
.ws21{word-spacing:9.989167pt;}
.wscf{word-spacing:10.026348pt;}
.ws13b{word-spacing:10.042301pt;}
.ws208{word-spacing:10.071512pt;}
.ws20{word-spacing:10.095434pt;}
.ws175{word-spacing:10.148568pt;}
.wsd2{word-spacing:10.207003pt;}
.ws1f9{word-spacing:10.252167pt;}
.ws13f{word-spacing:10.254836pt;}
.ws1ff{word-spacing:10.297331pt;}
.ws1f{word-spacing:10.307970pt;}
.ws20d{word-spacing:10.342495pt;}
.ws1bb{word-spacing:10.414238pt;}
.ws1ec{word-spacing:10.414395pt;}
.ws204{word-spacing:10.432822pt;}
.ws1df{word-spacing:10.568313pt;}
.ws1bc{word-spacing:10.573639pt;}
.ws85{word-spacing:10.584266pt;}
.ws50{word-spacing:10.600206pt;}
.wsca{word-spacing:10.613477pt;}
.ws1fa{word-spacing:10.658641pt;}
.ws1e1{word-spacing:10.703804pt;}
.ws1b5{word-spacing:10.733041pt;}
.ws1e9{word-spacing:10.748968pt;}
.ws34{word-spacing:10.839296pt;}
.ws103{word-spacing:10.884459pt;}
.ws73{word-spacing:10.892442pt;}
.ws210{word-spacing:10.929623pt;}
.ws1cb{word-spacing:10.945576pt;}
.ws2c{word-spacing:10.974787pt;}
.ws35{word-spacing:11.019951pt;}
.ws161{word-spacing:11.019955pt;}
.ws7a{word-spacing:11.046531pt;}
.ws183{word-spacing:11.065114pt;}
.ws14f{word-spacing:11.104978pt;}
.ws182{word-spacing:11.110278pt;}
.ws7d{word-spacing:11.110291pt;}
.ws184{word-spacing:11.126231pt;}
.ws27{word-spacing:11.155442pt;}
.ws93{word-spacing:11.158112pt;}
.ws126{word-spacing:11.168738pt;}
.ws2f{word-spacing:11.200605pt;}
.ws11f{word-spacing:11.211246pt;}
.ws168{word-spacing:11.232499pt;}
.ws1b4{word-spacing:11.245768pt;}
.ws26{word-spacing:11.245769pt;}
.ws110{word-spacing:11.290933pt;}
.ws12a{word-spacing:11.336086pt;}
.ws31{word-spacing:11.336097pt;}
.ws80{word-spacing:11.354707pt;}
.wsd7{word-spacing:11.381260pt;}
.ws169{word-spacing:11.381274pt;}
.ws1b0{word-spacing:11.417393pt;}
.ws29{word-spacing:11.426424pt;}
.ws81{word-spacing:11.434408pt;}
.ws17d{word-spacing:11.439721pt;}
.wsda{word-spacing:11.450348pt;}
.wsd9{word-spacing:11.466288pt;}
.wsf9{word-spacing:11.471588pt;}
.ws13c{word-spacing:11.476915pt;}
.ws1c8{word-spacing:11.482228pt;}
.ws2b{word-spacing:11.516752pt;}
.ws47{word-spacing:11.530049pt;}
.ws2d{word-spacing:11.561915pt;}
.ws48{word-spacing:11.583183pt;}
.ws1c7{word-spacing:11.599123pt;}
.ws2e{word-spacing:11.607079pt;}
.ws1b6{word-spacing:11.636317pt;}
.ws2a{word-spacing:11.652243pt;}
.ws109{word-spacing:11.652244pt;}
.ws167{word-spacing:11.657570pt;}
.ws1ad{word-spacing:11.742570pt;}
.ws51{word-spacing:11.795718pt;}
.ws8c{word-spacing:11.822285pt;}
.ws18f{word-spacing:11.827598pt;}
.wsd5{word-spacing:11.832898pt;}
.ws1b1{word-spacing:11.837414pt;}
.ws153{word-spacing:11.848852pt;}
.ws13d{word-spacing:11.864792pt;}
.wsaf{word-spacing:11.886046pt;}
.ws166{word-spacing:11.896672pt;}
.wsae{word-spacing:11.907299pt;}
.ws214{word-spacing:11.923225pt;}
.ws196{word-spacing:11.955120pt;}
.ws158{word-spacing:11.968389pt;}
.ws8b{word-spacing:12.008254pt;}
.ws154{word-spacing:12.008257pt;}
.ws52{word-spacing:12.061387pt;}
.ws84{word-spacing:12.167655pt;}
.ws1f3{word-spacing:12.194208pt;}
.ws152{word-spacing:12.220789pt;}
.ws1da{word-spacing:12.239371pt;}
.wsa6{word-spacing:12.252669pt;}
.ws1c6{word-spacing:12.273923pt;}
.wsea{word-spacing:12.284550pt;}
.ws10b{word-spacing:12.307117pt;}
.ws15{word-spacing:12.321743pt;}
.ws212{word-spacing:12.329699pt;}
.ws1c0{word-spacing:12.332370pt;}
.ws17b{word-spacing:12.353624pt;}
.ws1b{word-spacing:12.380191pt;}
.wsa5{word-spacing:12.401444pt;}
.ws186{word-spacing:12.412071pt;}
.ws17c{word-spacing:12.454578pt;}
.ws1d2{word-spacing:12.465190pt;}
.ws147{word-spacing:12.486458pt;}
.ws16a{word-spacing:12.497085pt;}
.ws82{word-spacing:12.502399pt;}
.ws37{word-spacing:12.546485pt;}
.ws69{word-spacing:12.550219pt;}
.ws1db{word-spacing:12.555517pt;}
.ws181{word-spacing:12.560846pt;}
.ws17a{word-spacing:12.582099pt;}
.ws1f8{word-spacing:12.645845pt;}
.wsf7{word-spacing:12.645860pt;}
.ws14{word-spacing:12.656487pt;}
.ws6a{word-spacing:12.693680pt;}
.ws53{word-spacing:12.698994pt;}
.wse9{word-spacing:12.725561pt;}
.ws227{word-spacing:12.736172pt;}
.ws5c{word-spacing:12.773381pt;}
.ws1e0{word-spacing:12.776820pt;}
.wsa4{word-spacing:12.805262pt;}
.ws76{word-spacing:12.810575pt;}
.ws1d9{word-spacing:12.826500pt;}
.wsb{word-spacing:12.853598pt;}
.wsd1{word-spacing:12.871664pt;}
.ws75{word-spacing:12.911529pt;}
.ws5d{word-spacing:12.922156pt;}
.ws1e3{word-spacing:12.961991pt;}
.ws13e{word-spacing:12.964663pt;}
.ws120{word-spacing:13.017797pt;}
.ws1e5{word-spacing:13.049874pt;}
.wsce{word-spacing:13.052319pt;}
.wsac{word-spacing:13.060304pt;}
.ws171{word-spacing:13.070931pt;}
.ws1ac{word-spacing:13.111032pt;}
.ws4a{word-spacing:13.124065pt;}
.ws1fd{word-spacing:13.142646pt;}
.ws43{word-spacing:13.177199pt;}
.ws5e{word-spacing:13.256899pt;}
.ws7{word-spacing:13.283466pt;}
.ws3{word-spacing:13.336600pt;}
.ws99{word-spacing:13.354916pt;}
.ws5{word-spacing:13.389734pt;}
.ws98{word-spacing:13.442868pt;}
.wsbb{word-spacing:13.442870pt;}
.ws11b{word-spacing:13.442873pt;}
.ws180{word-spacing:13.448187pt;}
.ws205{word-spacing:13.458792pt;}
.ws44{word-spacing:13.496002pt;}
.ws1fc{word-spacing:13.526527pt;}
.ws9{word-spacing:13.549136pt;}
.ws220{word-spacing:13.558152pt;}
.ws106{word-spacing:13.576218pt;}
.ws160{word-spacing:13.594263pt;}
.ws42{word-spacing:13.602270pt;}
.ws15e{word-spacing:13.639445pt;}
.ws1d0{word-spacing:13.639447pt;}
.ws10{word-spacing:13.655403pt;}
.ws39{word-spacing:13.708537pt;}
.ws1e4{word-spacing:13.729774pt;}
.ws163{word-spacing:13.761671pt;}
.ws21d{word-spacing:13.774938pt;}
.ws1c2{word-spacing:13.814805pt;}
.ws1bf{word-spacing:13.820118pt;}
.ws1be{word-spacing:13.830745pt;}
.ws87{word-spacing:13.841372pt;}
.ws17{word-spacing:13.867939pt;}
.wsa{word-spacing:13.921073pt;}
.wsc3{word-spacing:13.926386pt;}
.ws21a{word-spacing:13.955593pt;}
.ws8{word-spacing:13.974207pt;}
.wsb8{word-spacing:13.979520pt;}
.ws223{word-spacing:14.000757pt;}
.ws72{word-spacing:14.027340pt;}
.wsc2{word-spacing:14.043281pt;}
.ws21b{word-spacing:14.045921pt;}
.ws64{word-spacing:14.133608pt;}
.wsd0{word-spacing:14.181412pt;}
.ws1ba{word-spacing:14.186742pt;}
.ws141{word-spacing:14.239861pt;}
.ws117{word-spacing:14.293010pt;}
.ws9f{word-spacing:14.346144pt;}
.ws1e6{word-spacing:14.362067pt;}
.ws88{word-spacing:14.404591pt;}
.ws65{word-spacing:14.452411pt;}
.wsb6{word-spacing:14.495104pt;}
.ws209{word-spacing:14.497558pt;}
.ws118{word-spacing:14.505545pt;}
.ws7c{word-spacing:14.537426pt;}
.ws1f2{word-spacing:14.542722pt;}
.ws11d{word-spacing:14.558679pt;}
.wsf2{word-spacing:14.612000pt;}
.ws151{word-spacing:14.664947pt;}
.ws123{word-spacing:14.670448pt;}
.ws1f6{word-spacing:14.678213pt;}
.ws143{word-spacing:14.686200pt;}
.wsbd{word-spacing:14.728896pt;}
.ws162{word-spacing:14.787344pt;}
.ws20c{word-spacing:14.813704pt;}
.ws116{word-spacing:14.824348pt;}
.ws67{word-spacing:14.861542pt;}
.ws1a0{word-spacing:14.877482pt;}
.wsa0{word-spacing:14.930616pt;}
.ws213{word-spacing:14.994359pt;}
.ws189{word-spacing:14.994377pt;}
.ws66{word-spacing:15.031571pt;}
.ws124{word-spacing:15.036884pt;}
.ws131{word-spacing:15.047511pt;}
.ws8f{word-spacing:15.074078pt;}
.ws21f{word-spacing:15.084686pt;}
.ws68{word-spacing:15.090018pt;}
.ws18a{word-spacing:15.121898pt;}
.ws119{word-spacing:15.143152pt;}
.wsb5{word-spacing:15.164405pt;}
.ws137{word-spacing:15.175032pt;}
.ws18d{word-spacing:15.185659pt;}
.ws16e{word-spacing:15.190969pt;}
.ws111{word-spacing:15.196479pt;}
.ws18e{word-spacing:15.217542pt;}
.ws11c{word-spacing:15.254927pt;}
.wsbc{word-spacing:15.270673pt;}
.wsf1{word-spacing:15.286613pt;}
.ws96{word-spacing:15.302553pt;}
.ws19{word-spacing:15.355687pt;}
.ws1c9{word-spacing:15.361000pt;}
.ws18{word-spacing:15.371627pt;}
.ws17e{word-spacing:15.376941pt;}
.wse1{word-spacing:15.398194pt;}
.ws6c{word-spacing:15.408821pt;}
.ws145{word-spacing:15.424761pt;}
.ws14b{word-spacing:15.435388pt;}
.wsdc{word-spacing:15.446015pt;}
.ws6e{word-spacing:15.461955pt;}
.wse2{word-spacing:15.509775pt;}
.ws15f{word-spacing:15.522775pt;}
.wsdb{word-spacing:15.568223pt;}
.ws211{word-spacing:15.581487pt;}
.ws170{word-spacing:15.600103pt;}
.ws1d6{word-spacing:15.671815pt;}
.ws190{word-spacing:15.690430pt;}
.ws12f{word-spacing:15.711684pt;}
.ws1d8{word-spacing:15.716979pt;}
.ws14a{word-spacing:15.727624pt;}
.wsad{word-spacing:15.759504pt;}
.ws21e{word-spacing:15.762142pt;}
.ws191{word-spacing:15.770130pt;}
.ws165{word-spacing:15.775445pt;}
.wscd{word-spacing:15.807306pt;}
.ws1b8{word-spacing:15.833892pt;}
.ws1b7{word-spacing:15.887026pt;}
.ws18b{word-spacing:15.918906pt;}
.ws12{word-spacing:15.934846pt;}
.wsb9{word-spacing:15.993293pt;}
.ws18c{word-spacing:15.998607pt;}
.ws13{word-spacing:16.003920pt;}
.ws1fb{word-spacing:16.033125pt;}
.ws198{word-spacing:16.046427pt;}
.wsd4{word-spacing:16.078289pt;}
.ws199{word-spacing:16.099561pt;}
.ws1c4{word-spacing:16.158008pt;}
.ws1e8{word-spacing:16.168616pt;}
.wsa8{word-spacing:16.184575pt;}
.wscb{word-spacing:16.213780pt;}
.ws16{word-spacing:16.237709pt;}
.ws216{word-spacing:16.304107pt;}
.wsf6{word-spacing:16.312097pt;}
.ws54{word-spacing:16.349290pt;}
.ws56{word-spacing:16.365231pt;}
.ws179{word-spacing:16.371284pt;}
.ws9b{word-spacing:16.386457pt;}
.wsa7{word-spacing:16.407738pt;}
.ws1{word-spacing:16.428366pt;}
.ws8a{word-spacing:16.434305pt;}
.ws22a{word-spacing:16.439598pt;}
.ws1ef{word-spacing:16.484762pt;}
.ws89{word-spacing:16.519319pt;}
.ws20a{word-spacing:16.575090pt;}
.ws12d{word-spacing:16.583079pt;}
.wsa1{word-spacing:16.630900pt;}
.ws7b{word-spacing:16.662780pt;}
.ws201{word-spacing:16.665417pt;}
.ws12b{word-spacing:16.684034pt;}
.ws203{word-spacing:16.710581pt;}
.wsde{word-spacing:16.721227pt;}
.ws6f{word-spacing:16.737168pt;}
.ws224{word-spacing:16.755745pt;}
.ws142{word-spacing:16.758421pt;}
.ws9e{word-spacing:16.790301pt;}
.ws1f4{word-spacing:16.800908pt;}
.wsed{word-spacing:16.822182pt;}
.ws215{word-spacing:16.841556pt;}
.ws174{word-spacing:16.843435pt;}
.wsa2{word-spacing:16.870002pt;}
.ws1f1{word-spacing:16.873170pt;}
.ws3c{word-spacing:16.896566pt;}
.wsf4{word-spacing:16.896569pt;}
.ws1f0{word-spacing:16.945432pt;}
.ws5f{word-spacing:16.949703pt;}
.ws200{word-spacing:16.963498pt;}
.ws1d1{word-spacing:16.981563pt;}
.ws71{word-spacing:17.002837pt;}
.ws1cf{word-spacing:17.017694pt;}
.ws21c{word-spacing:17.044792pt;}
.ws225{word-spacing:17.089956pt;}
.ws207{word-spacing:17.108022pt;}
.ws221{word-spacing:17.117054pt;}
.ws7e{word-spacing:17.156925pt;}
.ws1d5{word-spacing:17.157702pt;}
.ws1c1{word-spacing:17.162239pt;}
.ws1d3{word-spacing:17.166734pt;}
.wscc{word-spacing:17.171251pt;}
.ws7f{word-spacing:17.178179pt;}
.ws228{word-spacing:17.184800pt;}
.ws219{word-spacing:17.189316pt;}
.wsf5{word-spacing:17.215372pt;}
.ws206{word-spacing:17.216415pt;}
.ws1d4{word-spacing:17.234480pt;}
.ws218{word-spacing:17.261578pt;}
.ws1a2{word-spacing:17.268506pt;}
.ws202{word-spacing:17.297709pt;}
.ws94{word-spacing:17.321640pt;}
.ws1e7{word-spacing:17.374488pt;}
.ws1b9{word-spacing:17.374774pt;}
.ws20e{word-spacing:17.388037pt;}
.ws4f{word-spacing:17.544802pt;}
.ws1dd{word-spacing:17.568692pt;}
.ws79{word-spacing:17.571369pt;}
.ws112{word-spacing:17.587309pt;}
.ws70{word-spacing:17.640443pt;}
.wsb2{word-spacing:17.645757pt;}
.wse7{word-spacing:17.688264pt;}
.ws22b{word-spacing:17.704183pt;}
.ws129{word-spacing:17.731281pt;}
.ws1c3{word-spacing:17.789218pt;}
.ws95{word-spacing:17.799845pt;}
.ws25{word-spacing:17.852979pt;}
.ws8e{word-spacing:17.884859pt;}
.ws1dc{word-spacing:17.930002pt;}
.ws194{word-spacing:18.012380pt;}
.wsfa{word-spacing:18.024845pt;}
.ws133{word-spacing:18.054887pt;}
.ws135{word-spacing:18.113335pt;}
.ws121{word-spacing:18.118648pt;}
.ws57{word-spacing:18.166469pt;}
.ws11e{word-spacing:18.171782pt;}
.ws8d{word-spacing:18.219602pt;}
.ws146{word-spacing:18.235543pt;}
.ws149{word-spacing:18.278050pt;}
.wsba{word-spacing:18.331184pt;}
.wsbe{word-spacing:18.410884pt;}
.wsa3{word-spacing:18.474645pt;}
.ws134{word-spacing:18.655300pt;}
.ws125{word-spacing:18.719061pt;}
.ws49{word-spacing:18.756254pt;}
.ws197{word-spacing:18.809388pt;}
.wsf0{word-spacing:18.862522pt;}
.ws138{word-spacing:18.915656pt;}
.ws195{word-spacing:18.968790pt;}
.wsab{word-spacing:18.984730pt;}
.ws150{word-spacing:19.021924pt;}
.wsa9{word-spacing:19.075058pt;}
.wsaa{word-spacing:19.101625pt;}
.ws92{word-spacing:19.181325pt;}
.ws11a{word-spacing:19.234459pt;}
.ws136{word-spacing:19.282280pt;}
.ws3a{word-spacing:19.287593pt;}
.wsf{word-spacing:19.340727pt;}
.ws78{word-spacing:19.393861pt;}
.wsf3{word-spacing:19.446995pt;}
.wsef{word-spacing:19.478875pt;}
.ws1ca{word-spacing:19.553262pt;}
.wsee{word-spacing:19.585143pt;}
.ws19f{word-spacing:19.601083pt;}
.ws122{word-spacing:19.606399pt;}
.wsdd{word-spacing:19.659530pt;}
.ws63{word-spacing:19.712664pt;}
.ws9d{word-spacing:19.749858pt;}
.ws172{word-spacing:19.760485pt;}
.ws4d{word-spacing:19.818932pt;}
.wse{word-spacing:19.872066pt;}
.ws178{word-spacing:19.882692pt;}
.ws176{word-spacing:19.909259pt;}
.wsd8{word-spacing:19.925200pt;}
.ws1bd{word-spacing:19.951766pt;}
.ws74{word-spacing:19.962393pt;}
.ws1e{word-spacing:19.978333pt;}
.ws113{word-spacing:19.983647pt;}
.ws140{word-spacing:20.031467pt;}
.ws1d{word-spacing:20.063348pt;}
.ws1c{word-spacing:20.084601pt;}
.ws19a{word-spacing:20.089914pt;}
.ws115{word-spacing:20.111168pt;}
.wsc5{word-spacing:20.116481pt;}
.ws193{word-spacing:20.121795pt;}
.ws24{word-spacing:20.137723pt;}
.wsb7{word-spacing:20.143048pt;}
.ws139{word-spacing:20.158989pt;}
.ws14d{word-spacing:20.180242pt;}
.ws187{word-spacing:20.185555pt;}
.ws97{word-spacing:20.190869pt;}
.ws5a{word-spacing:20.196182pt;}
.ws5b{word-spacing:20.217436pt;}
.ws188{word-spacing:20.222749pt;}
.ws4e{word-spacing:20.244003pt;}
.wsb1{word-spacing:20.297137pt;}
.ws173{word-spacing:20.313077pt;}
.ws1c5{word-spacing:20.323703pt;}
.ws1a{word-spacing:20.350270pt;}
.wsec{word-spacing:20.398091pt;}
.ws164{word-spacing:20.403404pt;}
.ws90{word-spacing:20.456538pt;}
.wsb3{word-spacing:20.483105pt;}
.wse3{word-spacing:20.488418pt;}
.wsb4{word-spacing:20.493732pt;}
.wse8{word-spacing:20.499045pt;}
.wseb{word-spacing:20.504359pt;}
.ws11{word-spacing:20.562800pt;}
.ws1a3{word-spacing:20.562806pt;}
.ws12e{word-spacing:20.600000pt;}
.ws16b{word-spacing:20.626567pt;}
.ws16c{word-spacing:20.637196pt;}
.wse4{word-spacing:20.642507pt;}
.ws4c{word-spacing:20.669074pt;}
.ws130{word-spacing:20.679700pt;}
.wse6{word-spacing:20.690327pt;}
.ws16d{word-spacing:20.700954pt;}
.wsb0{word-spacing:20.706267pt;}
.wsc7{word-spacing:20.711581pt;}
.ws6b{word-spacing:20.716894pt;}
.ws55{word-spacing:20.722207pt;}
.ws132{word-spacing:20.732834pt;}
.ws62{word-spacing:20.738148pt;}
.wsc0{word-spacing:20.743461pt;}
.wse5{word-spacing:20.759401pt;}
.wsbf{word-spacing:20.785968pt;}
.ws61{word-spacing:20.796595pt;}
.ws91{word-spacing:20.828475pt;}
.ws58{word-spacing:20.870982pt;}
.ws60{word-spacing:20.881609pt;}
.wsc6{word-spacing:20.886922pt;}
.wsc1{word-spacing:20.924116pt;}
.wsc4{word-spacing:20.977250pt;}
.wsd{word-spacing:21.094155pt;}
.ws59{word-spacing:21.253546pt;}
.ws1cc{word-spacing:21.859251pt;}
.ws2{word-spacing:22.386841pt;}
.ws3b{word-spacing:25.610512pt;}
.ws1d7{word-spacing:44.305621pt;}
.ws1a8{word-spacing:76.010562pt;}
.ws1a6{word-spacing:76.055724pt;}
.ws1a5{word-spacing:76.552525pt;}
.ws1ab{word-spacing:78.042929pt;}
.ws107{word-spacing:159.780251pt;}
.ws45{word-spacing:170.240905pt;}
.ws41{word-spacing:173.189834pt;}
.ws105{word-spacing:193.562720pt;}
.ws1a7{word-spacing:238.044483pt;}
.ws101{word-spacing:238.058022pt;}
.ws1aa{word-spacing:255.265420pt;}
.ws1a9{word-spacing:269.537152pt;}
.ws100{word-spacing:286.383215pt;}
.ws102{word-spacing:310.094200pt;}
.wsfd{word-spacing:328.502902pt;}
.wsfe{word-spacing:345.457367pt;}
.wsff{word-spacing:367.723088pt;}
.ws155{word-spacing:815.250523pt;}
.wsd6{word-spacing:2009.424696pt;}
.ws9a{word-spacing:2009.740842pt;}
._43{margin-left:-15.004688pt;}
._1f{margin-left:-13.914218pt;}
._46{margin-left:-12.817130pt;}
._3d{margin-left:-11.720996pt;}
._c{margin-left:-10.791778pt;}
._d{margin-left:-9.812956pt;}
._25{margin-left:-8.358519pt;}
._47{margin-left:-7.457333pt;}
._1d{margin-left:-6.556696pt;}
._1c{margin-left:-5.575209pt;}
._9{margin-left:-4.481683pt;}
._8{margin-left:-3.466959pt;}
._1{margin-left:-1.839201pt;}
._0{margin-left:-0.910502pt;}
._3{width:0.948438pt;}
._19{width:1.912819pt;}
._e{width:3.400567pt;}
._f{width:4.356977pt;}
._5{width:5.419648pt;}
._44{width:7.286898pt;}
._17{width:8.464297pt;}
._a{width:9.815731pt;}
._4{width:11.019951pt;}
._7{width:12.353052pt;}
._3e{width:13.438397pt;}
._2{width:14.378793pt;}
._1b{width:15.320991pt;}
._10{width:16.981261pt;}
._1a{width:17.879494pt;}
._6{width:18.895172pt;}
._b{width:20.105085pt;}
._18{width:21.322622pt;}
._45{width:22.279797pt;}
._20{width:23.219499pt;}
._1e{width:28.053902pt;}
._52{width:44.436211pt;}
._53{width:46.044419pt;}
._54{width:46.957769pt;}
._3f{width:56.396993pt;}
._13{width:58.745571pt;}
._4c{width:75.973025pt;}
._14{width:77.416042pt;}
._51{width:80.082925pt;}
._4a{width:91.411393pt;}
._12{width:109.700948pt;}
._4b{width:116.103428pt;}
._3c{width:127.933128pt;}
._24{width:129.081980pt;}
._35{width:143.010459pt;}
._3a{width:145.590076pt;}
._2e{width:147.913566pt;}
._16{width:150.900178pt;}
._23{width:152.792846pt;}
._11{width:157.974208pt;}
._50{width:159.944915pt;}
._15{width:171.356716pt;}
._36{width:194.541393pt;}
._3b{width:199.089343pt;}
._30{width:203.470240pt;}
._39{width:215.852330pt;}
._48{width:235.742168pt;}
._37{width:242.414939pt;}
._4e{width:254.891636pt;}
._4d{width:269.515740pt;}
._38{width:279.539542pt;}
._4f{width:308.277778pt;}
._2f{width:345.457427pt;}
._2d{width:356.645470pt;}
._32{width:379.949973pt;}
._21{width:382.499207pt;}
._27{width:384.503362pt;}
._26{width:389.206187pt;}
._2a{width:393.240603pt;}
._2b{width:396.073433pt;}
._29{width:398.705427pt;}
._31{width:414.467551pt;}
._33{width:415.822469pt;}
._28{width:421.850556pt;}
._2c{width:430.455534pt;}
._34{width:431.855616pt;}
._42{width:533.955269pt;}
._41{width:536.800584pt;}
._40{width:537.839350pt;}
._49{width:709.085846pt;}
._22{width:1001.423017pt;}
.fs6{font-size:30.106132pt;}
.fs3{font-size:35.418666pt;}
.fs4{font-size:42.507734pt;}
.fs5{font-size:45.163732pt;}
.fs0{font-size:50.583466pt;}
.fs2{font-size:53.133865pt;}
.fs8{font-size:58.447998pt;}
.fs7{font-size:63.760534pt;}
.fs1{font-size:85.121068pt;}
.y0{bottom:0.000000pt;}
.y202{bottom:102.640765pt;}
.y1dc{bottom:102.650961pt;}
.y16a{bottom:102.650971pt;}
.y141{bottom:102.655153pt;}
.y12b{bottom:102.655437pt;}
.y76{bottom:102.664528pt;}
.y197{bottom:102.707695pt;}
.y284{bottom:102.716868pt;}
.yde{bottom:102.806784pt;}
.ya2{bottom:103.335570pt;}
.y24b{bottom:104.643596pt;}
.y2c4{bottom:106.080515pt;}
.y227{bottom:109.317910pt;}
.y196{bottom:115.940669pt;}
.y201{bottom:115.941484pt;}
.y140{bottom:115.955872pt;}
.y12a{bottom:115.956155pt;}
.y283{bottom:116.017587pt;}
.ydd{bottom:116.039758pt;}
.ye4{bottom:116.039760pt;}
.y24a{bottom:117.944315pt;}
.y1db{bottom:119.281860pt;}
.y169{bottom:119.281871pt;}
.y75{bottom:119.295428pt;}
.y2c3{bottom:119.460270pt;}
.ya1{bottom:119.886770pt;}
.y226{bottom:125.948809pt;}
.ydc{bottom:129.340476pt;}
.ye3{bottom:129.340479pt;}
.y282{bottom:129.848980pt;}
.y2c2{bottom:132.760989pt;}
.y200{bottom:133.024665pt;}
.y129{bottom:133.039337pt;}
.y127{bottom:133.043055pt;}
.y1da{bottom:135.833060pt;}
.y74{bottom:135.846627pt;}
.ya0{bottom:136.517670pt;}
.y128{bottom:138.028269pt;}
.y2f{bottom:141.198494pt;}
.y225{bottom:142.500009pt;}
.ydb{bottom:142.641195pt;}
.ye2{bottom:142.641198pt;}
.y195{bottom:143.005036pt;}
.y281{bottom:143.228735pt;}
.y2c1{bottom:147.427911pt;}
.y249{bottom:147.797542pt;}
.y1ff{bottom:150.028811pt;}
.y126{bottom:150.047201pt;}
.y1d9{bottom:152.463959pt;}
.y168{bottom:152.466136pt;}
.y73{bottom:152.477527pt;}
.y9f{bottom:153.148569pt;}
.y2e{bottom:154.431468pt;}
.yda{bottom:155.941914pt;}
.ye1{bottom:155.941916pt;}
.y280{bottom:156.529453pt;}
.y224{bottom:159.130908pt;}
.y2d{bottom:159.496002pt;}
.y194{bottom:159.941435pt;}
.y2c0{bottom:160.728630pt;}
.y248{bottom:161.098261pt;}
.y1d8{bottom:169.094859pt;}
.y72{bottom:169.108426pt;}
.yd9{bottom:169.174888pt;}
.ye0{bottom:169.174890pt;}
.y9e{bottom:169.692906pt;}
.y27f{bottom:170.360847pt;}
.y2bf{bottom:174.029349pt;}
.y44{bottom:174.385904pt;}
.y247{bottom:174.398980pt;}
.y223{bottom:175.682108pt;}
.y2c{bottom:176.579468pt;}
.y193{bottom:176.877835pt;}
.y1fe{bottom:177.093178pt;}
.y124{bottom:177.108663pt;}
.y2b{bottom:181.568400pt;}
.y125{bottom:182.173197pt;}
.yd8{bottom:182.475606pt;}
.ydf{bottom:182.475609pt;}
.y27e{bottom:183.661565pt;}
.y1d7{bottom:185.646059pt;}
.y167{bottom:185.650269pt;}
.y71{bottom:185.659626pt;}
.y9d{bottom:186.323805pt;}
.y2be{bottom:187.330067pt;}
.y43{bottom:187.686622pt;}
.y246{bottom:187.699698pt;}
.y222{bottom:192.313008pt;}
.y192{bottom:193.814234pt;}
.y1fd{bottom:194.029577pt;}
.y122{bottom:194.036386pt;}
.y27d{bottom:196.962284pt;}
.y2a{bottom:198.650572pt;}
.y123{bottom:199.105469pt;}
.y42{bottom:200.919596pt;}
.y2bd{bottom:201.996989pt;}
.y1d6{bottom:202.276958pt;}
.y1cd{bottom:202.284697pt;}
.y70{bottom:202.290525pt;}
.y9c{bottom:202.981271pt;}
.y41{bottom:205.984273pt;}
.y221{bottom:208.943907pt;}
.y191{bottom:210.818379pt;}
.y27c{bottom:210.872713pt;}
.y1fc{bottom:210.965977pt;}
.y121{bottom:210.972785pt;}
.y29{bottom:211.883546pt;}
.y2bc{bottom:215.376744pt;}
.y245{bottom:217.552926pt;}
.y1d5{bottom:218.907857pt;}
.y1cc{bottom:218.915597pt;}
.y6f{bottom:218.921425pt;}
.y9b{bottom:219.532471pt;}
.y40{bottom:220.875590pt;}
.y27b{bottom:224.173432pt;}
.y28{bottom:225.184265pt;}
.y220{bottom:225.495107pt;}
.y3f{bottom:225.864543pt;}
.y190{bottom:227.754779pt;}
.y1fb{bottom:227.970122pt;}
.y120{bottom:227.976931pt;}
.y2bb{bottom:228.677463pt;}
.y27{bottom:230.248800pt;}
.y244{bottom:230.853644pt;}
.y1d4{bottom:235.459057pt;}
.y1cb{bottom:235.466797pt;}
.y6e{bottom:235.472625pt;}
.y166{bottom:235.473641pt;}
.y9a{bottom:236.163370pt;}
.y27a{bottom:237.474151pt;}
.y3e{bottom:240.826759pt;}
.y2ba{bottom:241.978182pt;}
.y21f{bottom:242.126006pt;}
.y243{bottom:244.086618pt;}
.y18f{bottom:244.691178pt;}
.y1fa{bottom:244.906522pt;}
.y11f{bottom:244.913330pt;}
.y26{bottom:247.263105pt;}
.y279{bottom:251.305544pt;}
.y1d3{bottom:252.089957pt;}
.y1ca{bottom:252.097696pt;}
.y6d{bottom:252.103524pt;}
.y165{bottom:252.104541pt;}
.y99{bottom:252.794270pt;}
.y3d{bottom:254.059733pt;}
.y2b9{bottom:256.645104pt;}
.y21e{bottom:258.756906pt;}
.y3c{bottom:259.124410pt;}
.y25{bottom:260.563824pt;}
.y18e{bottom:261.627578pt;}
.y11c{bottom:261.813521pt;}
.y1f9{bottom:261.842921pt;}
.y11e{bottom:261.845601pt;}
.y278{bottom:264.606263pt;}
.y11d{bottom:266.834676pt;}
.y6c{bottom:268.654724pt;}
.y1d2{bottom:268.720856pt;}
.y1c9{bottom:268.728595pt;}
.y164{bottom:268.735440pt;}
.y98{bottom:269.345470pt;}
.y2b8{bottom:269.945822pt;}
.y24{bottom:273.864543pt;}
.y3b{bottom:274.018882pt;}
.y21d{bottom:275.308105pt;}
.y277{bottom:277.986017pt;}
.y18d{bottom:278.563977pt;}
.y11b{bottom:278.749920pt;}
.y1f8{bottom:278.779321pt;}
.y23{bottom:278.853475pt;}
.y2b7{bottom:283.246541pt;}
.y1d1{bottom:285.272056pt;}
.y1c8{bottom:285.279795pt;}
.y6b{bottom:285.285623pt;}
.y163{bottom:285.286640pt;}
.y97{bottom:285.976369pt;}
.y3a{bottom:287.319600pt;}
.y276{bottom:291.286736pt;}
.y21c{bottom:291.939005pt;}
.y11a{bottom:291.982894pt;}
.y39{bottom:292.308533pt;}
.y18c{bottom:295.500377pt;}
.y22{bottom:295.938660pt;}
.y2b6{bottom:296.626296pt;}
.y1d0{bottom:301.902955pt;}
.y1c7{bottom:301.910695pt;}
.y6a{bottom:301.916523pt;}
.y162{bottom:301.917539pt;}
.y96{bottom:302.607268pt;}
.y275{bottom:305.118129pt;}
.y1f7{bottom:306.069506pt;}
.y38{bottom:307.203147pt;}
.y21b{bottom:308.569904pt;}
.y119{bottom:308.919294pt;}
.y21{bottom:309.239379pt;}
.y2b5{bottom:309.927015pt;}
.y18b{bottom:312.436776pt;}
.y242{bottom:317.177877pt;}
.y274{bottom:318.418848pt;}
.y1cf{bottom:318.454155pt;}
.y1c6{bottom:318.461894pt;}
.y69{bottom:318.467722pt;}
.y161{bottom:318.548439pt;}
.y95{bottom:319.158468pt;}
.y1f6{bottom:319.370225pt;}
.y37{bottom:320.503866pt;}
.y20{bottom:322.472353pt;}
.y2b4{bottom:324.593937pt;}
.y21a{bottom:325.121104pt;}
.y36{bottom:325.492798pt;}
.y118{bottom:325.923439pt;}
.y18a{bottom:329.373176pt;}
.y273{bottom:331.798603pt;}
.y1ce{bottom:335.085054pt;}
.y1c5{bottom:335.092794pt;}
.y68{bottom:335.098622pt;}
.y160{bottom:335.099638pt;}
.y1f{bottom:335.773071pt;}
.y94{bottom:335.789368pt;}
.y2b3{bottom:337.894656pt;}
.y117{bottom:339.156413pt;}
.y35{bottom:340.455177pt;}
.y1e{bottom:340.837728pt;}
.y219{bottom:341.752003pt;}
.y272{bottom:345.099321pt;}
.y1f5{bottom:346.276517pt;}
.y189{bottom:346.309575pt;}
.y241{bottom:351.057419pt;}
.y2b2{bottom:351.195374pt;}
.y67{bottom:351.729521pt;}
.y15f{bottom:351.730538pt;}
.y93{bottom:352.420267pt;}
.y34{bottom:353.688151pt;}
.y116{bottom:356.092813pt;}
.y218{bottom:358.382903pt;}
.y33{bottom:358.752686pt;}
.y271{bottom:358.930715pt;}
.y188{bottom:363.245974pt;}
.y240{bottom:364.358138pt;}
.y2b1{bottom:365.862296pt;}
.y66{bottom:368.280721pt;}
.y15e{bottom:368.361437pt;}
.y92{bottom:368.971467pt;}
.y1f4{bottom:371.376261pt;}
.y270{bottom:372.231433pt;}
.y115{bottom:373.029212pt;}
.y32{bottom:373.647157pt;}
.y1d{bottom:373.649168pt;}
.y217{bottom:374.934103pt;}
.y23f{bottom:377.658856pt;}
.y2b0{bottom:379.163015pt;}
.y187{bottom:380.182374pt;}
.y1de{bottom:382.181007pt;}
.y65{bottom:384.911620pt;}
.y15d{bottom:384.912637pt;}
.y26f{bottom:385.532152pt;}
.y91{bottom:385.602366pt;}
.y31{bottom:386.947876pt;}
.y1c{bottom:386.949887pt;}
.y114{bottom:389.965612pt;}
.y23e{bottom:390.891830pt;}
.y216{bottom:391.565002pt;}
.y30{bottom:391.936930pt;}
.y2af{bottom:392.656755pt;}
.y1dd{bottom:395.413981pt;}
.y186{bottom:397.118773pt;}
.y26e{bottom:398.911907pt;}
.y64{bottom:401.542520pt;}
.y15c{bottom:401.543537pt;}
.y90{bottom:402.233266pt;}
.y113{bottom:403.266330pt;}
.y23d{bottom:404.192549pt;}
.y2ae{bottom:407.244641pt;}
.y215{bottom:408.195902pt;}
.y26d{bottom:412.743300pt;}
.y1ee{bottom:413.028055pt;}
.y1e6{bottom:413.028056pt;}
.y185{bottom:414.055173pt;}
.y23c{bottom:417.493268pt;}
.y63{bottom:418.093720pt;}
.y15b{bottom:418.094736pt;}
.y8f{bottom:418.784465pt;}
.y1b{bottom:419.004845pt;}
.y112{bottom:420.202730pt;}
.y2ad{bottom:420.613106pt;}
.y1c4{bottom:422.786461pt;}
.y214{bottom:424.747101pt;}
.y26c{bottom:426.044019pt;}
.y1ed{bottom:429.658954pt;}
.y1e5{bottom:429.658956pt;}
.y23b{bottom:430.726242pt;}
.y184{bottom:430.991572pt;}
.y1a{bottom:432.305564pt;}
.y62{bottom:434.724619pt;}
.y15a{bottom:434.725636pt;}
.y2ac{bottom:435.200992pt;}
.y8e{bottom:435.415365pt;}
.y1c3{bottom:436.087179pt;}
.y111{bottom:437.139129pt;}
.y26b{bottom:439.344737pt;}
.y213{bottom:441.378001pt;}
.y23a{bottom:444.026960pt;}
.y19{bottom:445.606283pt;}
.y1ec{bottom:446.289854pt;}
.y1e4{bottom:446.289855pt;}
.y183{bottom:447.927972pt;}
.y2ab{bottom:448.580747pt;}
.y1c2{bottom:449.320153pt;}
.y110{bottom:450.439848pt;}
.y61{bottom:451.355519pt;}
.y159{bottom:451.356535pt;}
.y8d{bottom:452.046264pt;}
.y26a{bottom:452.724492pt;}
.y239{bottom:457.327679pt;}
.y212{bottom:458.008900pt;}
.y2aa{bottom:461.881465pt;}
.y1c1{bottom:462.620872pt;}
.y1eb{bottom:462.841053pt;}
.y1e3{bottom:462.841055pt;}
.y182{bottom:464.864371pt;}
.y269{bottom:466.555885pt;}
.y10f{bottom:467.376247pt;}
.y60{bottom:467.906718pt;}
.y158{bottom:467.907735pt;}
.y8c{bottom:468.597464pt;}
.y238{bottom:470.628398pt;}
.y211{bottom:474.560100pt;}
.y1c0{bottom:475.921591pt;}
.y2a9{bottom:476.548387pt;}
.y1ea{bottom:479.471953pt;}
.y1e2{bottom:479.471954pt;}
.y268{bottom:479.856604pt;}
.y181{bottom:481.800770pt;}
.y237{bottom:483.861372pt;}
.y10e{bottom:484.312647pt;}
.y5f{bottom:484.537618pt;}
.y157{bottom:484.538634pt;}
.y8b{bottom:485.228364pt;}
.y18{bottom:485.281362pt;}
.y1bf{bottom:489.222309pt;}
.y2a8{bottom:489.849106pt;}
.y210{bottom:491.190999pt;}
.y267{bottom:493.157323pt;}
.yd7{bottom:493.381734pt;}
.ybc{bottom:493.384155pt;}
.y1e9{bottom:496.102852pt;}
.y1e1{bottom:496.102854pt;}
.y236{bottom:497.162091pt;}
.y10d{bottom:497.613365pt;}
.y180{bottom:498.737170pt;}
.y5e{bottom:501.168517pt;}
.y156{bottom:501.169534pt;}
.y8a{bottom:501.859263pt;}
.y17{bottom:501.912261pt;}
.y1be{bottom:502.455283pt;}
.y2a7{bottom:503.149825pt;}
.y266{bottom:506.458041pt;}
.y20f{bottom:507.821899pt;}
.yd6{bottom:510.012633pt;}
.ybb{bottom:510.015054pt;}
.y235{bottom:510.462809pt;}
.y1e8{bottom:512.654052pt;}
.y1e0{bottom:512.654053pt;}
.y10c{bottom:514.549765pt;}
.y1bd{bottom:515.756002pt;}
.y2a6{bottom:516.529580pt;}
.y5d{bottom:517.719717pt;}
.y155{bottom:517.720733pt;}
.y16{bottom:517.865704pt;}
.y89{bottom:518.410463pt;}
.y265{bottom:520.368471pt;}
.y20e{bottom:524.373098pt;}
.y17f{bottom:526.106392pt;}
.yd5{bottom:526.563833pt;}
.yba{bottom:526.566254pt;}
.y1bc{bottom:529.056721pt;}
.y1e7{bottom:529.284951pt;}
.y1df{bottom:529.284953pt;}
.y2a5{bottom:531.117466pt;}
.y264{bottom:533.669189pt;}
.y5c{bottom:534.350616pt;}
.y154{bottom:534.351633pt;}
.y15{bottom:534.496603pt;}
.y88{bottom:535.041362pt;}
.y234{bottom:541.003723pt;}
.y20d{bottom:541.003998pt;}
.y10b{bottom:541.839950pt;}
.y1bb{bottom:542.357439pt;}
.yd4{bottom:543.194732pt;}
.yb9{bottom:543.197153pt;}
.y2a4{bottom:544.497220pt;}
.y5b{bottom:550.981516pt;}
.y153{bottom:550.982532pt;}
.y14{bottom:551.047803pt;}
.y17e{bottom:551.206136pt;}
.y87{bottom:551.672262pt;}
.y1ba{bottom:555.590413pt;}
.y233{bottom:557.634622pt;}
.y20c{bottom:557.634897pt;}
.y2a3{bottom:557.797939pt;}
.yd3{bottom:559.825632pt;}
.yb8{bottom:559.828053pt;}
.y263{bottom:563.603068pt;}
.y5a{bottom:567.532715pt;}
.y152{bottom:567.533732pt;}
.y13{bottom:567.678702pt;}
.y86{bottom:568.223461pt;}
.y10a{bottom:568.746243pt;}
.y2a2{bottom:571.098658pt;}
.y232{bottom:574.185822pt;}
.y20b{bottom:574.186097pt;}
.yd2{bottom:576.376832pt;}
.yb7{bottom:576.379252pt;}
.y109{bottom:579.325846pt;}
.y59{bottom:584.163615pt;}
.y1b9{bottom:584.164744pt;}
.y1a5{bottom:584.168253pt;}
.y12{bottom:584.309602pt;}
.y85{bottom:584.854361pt;}
.y2a1{bottom:585.765580pt;}
.y231{bottom:590.816721pt;}
.y20a{bottom:590.816997pt;}
.yd1{bottom:593.007731pt;}
.yb6{bottom:593.010152pt;}
.y2a0{bottom:599.066299pt;}
.y11{bottom:600.183345pt;}
.y151{bottom:600.793620pt;}
.y1b8{bottom:600.795643pt;}
.y17d{bottom:600.795878pt;}
.y1a4{bottom:600.799152pt;}
.y84{bottom:601.485260pt;}
.y230{bottom:607.447621pt;}
.y209{bottom:607.447896pt;}
.yb5{bottom:609.641051pt;}
.y29f{bottom:612.446054pt;}
.y10{bottom:616.814244pt;}
.y1b7{bottom:617.346843pt;}
.y17c{bottom:617.347077pt;}
.y58{bottom:617.347860pt;}
.y1a3{bottom:617.350352pt;}
.y83{bottom:618.036460pt;}
.y108{bottom:620.448701pt;}
.yf6{bottom:620.450684pt;}
.y22f{bottom:623.998821pt;}
.y208{bottom:623.999096pt;}
.yd0{bottom:626.192017pt;}
.yb4{bottom:626.192251pt;}
.y262{bottom:626.644543pt;}
.y29e{bottom:627.033939pt;}
.yf{bottom:633.445144pt;}
.y1b6{bottom:633.977743pt;}
.y17b{bottom:633.977977pt;}
.y150{bottom:633.980123pt;}
.y1a2{bottom:633.981252pt;}
.y82{bottom:634.667359pt;}
.y107{bottom:637.079600pt;}
.yf5{bottom:637.081583pt;}
.y261{bottom:639.948540pt;}
.y29d{bottom:640.413694pt;}
.y22e{bottom:640.629720pt;}
.y207{bottom:640.629995pt;}
.y22c{bottom:640.643273pt;}
.yb3{bottom:642.823150pt;}
.y22d{bottom:646.525879pt;}
.ye{bottom:649.996343pt;}
.y17a{bottom:650.608876pt;}
.y14f{bottom:650.611022pt;}
.y1a1{bottom:650.612151pt;}
.y81{bottom:651.298259pt;}
.y106{bottom:653.710500pt;}
.yf4{bottom:653.712482pt;}
.y29c{bottom:653.714413pt;}
.y206{bottom:657.260895pt;}
.y22b{bottom:657.274172pt;}
.yb2{bottom:659.454050pt;}
.ycf{bottom:663.308095pt;}
.yd{bottom:666.627243pt;}
.y179{bottom:667.160076pt;}
.y14e{bottom:667.162222pt;}
.y1a0{bottom:667.163351pt;}
.y1b5{bottom:667.163537pt;}
.y57{bottom:667.849305pt;}
.y80{bottom:667.849459pt;}
.y29b{bottom:668.381335pt;}
.y260{bottom:669.203348pt;}
.y105{bottom:670.261699pt;}
.yf3{bottom:670.263682pt;}
.y205{bottom:673.812094pt;}
.y22a{bottom:673.825372pt;}
.yb1{bottom:676.005250pt;}
.yce{bottom:679.938995pt;}
.y29a{bottom:681.682054pt;}
.y25f{bottom:682.504066pt;}
.yc{bottom:682.580685pt;}
.y13f{bottom:683.188303pt;}
.y178{bottom:683.790976pt;}
.y1b4{bottom:683.791992pt;}
.y14d{bottom:683.793121pt;}
.y19f{bottom:683.794250pt;}
.y13a{bottom:683.797800pt;}
.y56{bottom:684.480204pt;}
.y7f{bottom:684.480358pt;}
.y104{bottom:686.892599pt;}
.yf2{bottom:686.894582pt;}
.y204{bottom:690.442994pt;}
.y229{bottom:690.456272pt;}
.yb0{bottom:692.636149pt;}
.y299{bottom:694.982773pt;}
.y25e{bottom:695.737040pt;}
.ycd{bottom:696.490194pt;}
.yb{bottom:699.211585pt;}
.y13e{bottom:699.819203pt;}
.y177{bottom:700.421875pt;}
.y14c{bottom:700.424021pt;}
.y19e{bottom:700.425150pt;}
.y139{bottom:700.428699pt;}
.y55{bottom:701.111104pt;}
.y7e{bottom:701.111257pt;}
.y103{bottom:703.523498pt;}
.yf1{bottom:703.525481pt;}
.y203{bottom:707.073893pt;}
.y228{bottom:707.087171pt;}
.y25d{bottom:709.037759pt;}
.y298{bottom:709.649695pt;}
.ycc{bottom:713.121094pt;}
.yca{bottom:713.121287pt;}
.ya{bottom:715.762785pt;}
.y13d{bottom:716.370403pt;}
.y14b{bottom:716.975220pt;}
.y1b3{bottom:716.975495pt;}
.y19d{bottom:716.976349pt;}
.y138{bottom:716.979899pt;}
.y54{bottom:717.662303pt;}
.y7d{bottom:717.662457pt;}
.ycb{bottom:719.017090pt;}
.y102{bottom:720.074698pt;}
.yf0{bottom:720.076681pt;}
.y25c{bottom:722.338478pt;}
.y297{bottom:722.950413pt;}
.yaf{bottom:725.820231pt;}
.y2e8{bottom:729.587527pt;}
.yc9{bottom:729.752187pt;}
.y9{bottom:731.716227pt;}
.y13c{bottom:733.001302pt;}
.y14a{bottom:733.606120pt;}
.y1b2{bottom:733.606395pt;}
.y19c{bottom:733.607249pt;}
.y137{bottom:733.610798pt;}
.y53{bottom:734.293203pt;}
.y7c{bottom:734.293357pt;}
.y25b{bottom:735.571452pt;}
.y296{bottom:736.330168pt;}
.y101{bottom:736.705597pt;}
.yef{bottom:736.707580pt;}
.y2d5{bottom:737.558907pt;}
.y2e7{bottom:742.888245pt;}
.yc8{bottom:746.303387pt;}
.y1b1{bottom:750.237294pt;}
.y19b{bottom:750.238148pt;}
.y136{bottom:750.241698pt;}
.y2d4{bottom:750.859625pt;}
.y295{bottom:750.918054pt;}
.y52{bottom:750.924102pt;}
.y7b{bottom:750.924256pt;}
.y100{bottom:753.336497pt;}
.yee{bottom:753.338480pt;}
.y2e6{bottom:756.268000pt;}
.yc7{bottom:762.934286pt;}
.y2d3{bottom:764.239380pt;}
.y294{bottom:764.297809pt;}
.y47{bottom:765.431641pt;}
.y13b{bottom:766.185628pt;}
.y1b0{bottom:766.788494pt;}
.y19a{bottom:766.789348pt;}
.y149{bottom:766.790365pt;}
.yae{bottom:766.790752pt;}
.y135{bottom:766.792898pt;}
.y51{bottom:767.475302pt;}
.y7a{bottom:767.475456pt;}
.y2e5{bottom:769.568719pt;}
.yff{bottom:769.887697pt;}
.yed{bottom:769.889679pt;}
.y8{bottom:777.524251pt;}
.y2d2{bottom:777.540099pt;}
.y293{bottom:777.598528pt;}
.yc6{bottom:779.565186pt;}
.y2e4{bottom:782.869437pt;}
.y1af{bottom:783.419394pt;}
.y199{bottom:783.420247pt;}
.yad{bottom:783.421651pt;}
.y134{bottom:783.423797pt;}
.y176{bottom:783.428635pt;}
.y50{bottom:784.106201pt;}
.y79{bottom:784.106355pt;}
.yfe{bottom:786.518596pt;}
.yec{bottom:786.520579pt;}
.y25a{bottom:790.073030pt;}
.y292{bottom:790.899246pt;}
.y2d1{bottom:792.207021pt;}
.y2e3{bottom:796.170156pt;}
.y1ae{bottom:800.050293pt;}
.yac{bottom:800.052551pt;}
.y133{bottom:800.054697pt;}
.y148{bottom:800.056842pt;}
.y175{bottom:800.059535pt;}
.y4f{bottom:800.737101pt;}
.y78{bottom:800.737255pt;}
.yfd{bottom:803.149495pt;}
.yeb{bottom:803.151478pt;}
.y259{bottom:803.373749pt;}
.y2d0{bottom:805.507740pt;}
.y291{bottom:805.566169pt;}
.y2e2{bottom:809.549911pt;}
.yc5{bottom:812.749349pt;}
.y6{bottom:816.075358pt;}
.yab{bottom:816.603751pt;}
.y198{bottom:816.604574pt;}
.y132{bottom:816.605896pt;}
.y258{bottom:816.606723pt;}
.y147{bottom:816.608042pt;}
.y174{bottom:816.610735pt;}
.y4e{bottom:817.288301pt;}
.y77{bottom:817.288454pt;}
.y2cf{bottom:818.808459pt;}
.y290{bottom:818.866887pt;}
.yea{bottom:819.702678pt;}
.y7{bottom:821.971436pt;}
.y2e1{bottom:822.850630pt;}
.y257{bottom:829.907442pt;}
.y2ce{bottom:832.109177pt;}
.y28f{bottom:832.167606pt;}
.y4{bottom:832.705322pt;}
.y1ad{bottom:833.234375pt;}
.yaa{bottom:833.234650pt;}
.y131{bottom:833.236796pt;}
.y146{bottom:833.238941pt;}
.y173{bottom:833.241634pt;}
.y2e0{bottom:836.151348pt;}
.ye9{bottom:836.333577pt;}
.y5{bottom:838.601318pt;}
.y2cd{bottom:846.776099pt;}
.y28e{bottom:846.834528pt;}
.y2df{bottom:849.452067pt;}
.ya9{bottom:849.865550pt;}
.y130{bottom:849.867695pt;}
.y145{bottom:849.869841pt;}
.y172{bottom:849.872533pt;}
.yc4{bottom:849.872543pt;}
.y256{bottom:859.839705pt;}
.y2cc{bottom:860.155854pt;}
.y28d{bottom:860.214283pt;}
.y2de{bottom:862.831822pt;}
.ya8{bottom:866.416749pt;}
.y12f{bottom:866.418895pt;}
.y144{bottom:866.421041pt;}
.y171{bottom:866.423733pt;}
.yc3{bottom:866.423742pt;}
.y1ac{bottom:866.428636pt;}
.y4d{bottom:867.101299pt;}
.ye8{bottom:869.517904pt;}
.y3{bottom:872.249436pt;}
.y255{bottom:873.072679pt;}
.y2cb{bottom:873.456573pt;}
.y28c{bottom:873.515002pt;}
.y2dd{bottom:876.132541pt;}
.y24e{bottom:877.764020pt;}
.ya7{bottom:883.047649pt;}
.y12e{bottom:883.049794pt;}
.yfc{bottom:883.051532pt;}
.y143{bottom:883.051940pt;}
.y170{bottom:883.054633pt;}
.yc2{bottom:883.054642pt;}
.y1ab{bottom:883.059536pt;}
.y254{bottom:886.373398pt;}
.y2ca{bottom:886.757292pt;}
.y28b{bottom:888.181924pt;}
.y2dc{bottom:889.433259pt;}
.y24d{bottom:890.996994pt;}
.y2{bottom:896.125895pt;}
.y253{bottom:899.674117pt;}
.ya6{bottom:899.678548pt;}
.y12d{bottom:899.680694pt;}
.yfb{bottom:899.682431pt;}
.y142{bottom:899.682839pt;}
.y16f{bottom:899.685532pt;}
.yc1{bottom:899.685541pt;}
.y1aa{bottom:899.690435pt;}
.y4c{bottom:900.283397pt;}
.y2c9{bottom:901.424214pt;}
.y28a{bottom:901.482643pt;}
.y2db{bottom:902.733978pt;}
.y24c{bottom:904.297712pt;}
.y252{bottom:912.907091pt;}
.y2c8{bottom:914.724932pt;}
.y289{bottom:914.783361pt;}
.y2da{bottom:916.113733pt;}
.y12c{bottom:916.231894pt;}
.yfa{bottom:916.233631pt;}
.ye7{bottom:916.234039pt;}
.y16e{bottom:916.236732pt;}
.yc0{bottom:916.236741pt;}
.y1a9{bottom:916.241635pt;}
.y4b{bottom:916.914296pt;}
.y1f3{bottom:917.598431pt;}
.y2c7{bottom:928.025651pt;}
.y288{bottom:928.084080pt;}
.y2d9{bottom:929.414452pt;}
.y1f2{bottom:930.899150pt;}
.ya5{bottom:932.862793pt;}
.yf9{bottom:932.864531pt;}
.ye6{bottom:932.864939pt;}
.y16d{bottom:932.867631pt;}
.ybf{bottom:932.867640pt;}
.y1a8{bottom:932.872535pt;}
.y4a{bottom:933.545196pt;}
.y2c6{bottom:942.692573pt;}
.y2d8{bottom:942.715170pt;}
.y287{bottom:942.751002pt;}
.y251{bottom:942.839354pt;}
.y1f1{bottom:944.132124pt;}
.yf8{bottom:949.495430pt;}
.ye5{bottom:949.495838pt;}
.y16c{bottom:949.498531pt;}
.ybe{bottom:949.498540pt;}
.y1a7{bottom:949.503434pt;}
.y49{bottom:950.096395pt;}
.y2c5{bottom:955.993292pt;}
.y2d7{bottom:956.015889pt;}
.y286{bottom:956.051721pt;}
.y250{bottom:956.140073pt;}
.y1f0{bottom:957.432843pt;}
.y1{bottom:957.580973pt;}
.yf7{bottom:966.046630pt;}
.ya4{bottom:966.047038pt;}
.y16b{bottom:966.049730pt;}
.ybd{bottom:966.049740pt;}
.y1a6{bottom:966.054634pt;}
.y48{bottom:966.727295pt;}
.y24f{bottom:969.373047pt;}
.y2d6{bottom:969.395644pt;}
.y285{bottom:969.431476pt;}
.y1ef{bottom:970.733561pt;}
.y46{bottom:986.302209pt;}
.ya3{bottom:1001.347900pt;}
.y45{bottom:1001.567551pt;}
.h17{height:20.411958pt;}
.h16{height:20.622701pt;}
.hd{height:20.923762pt;}
.h14{height:24.615973pt;}
.h5{height:25.182671pt;}
.h6{height:28.947767pt;}
.h18{height:29.542875pt;}
.he{height:30.440355pt;}
.hb{height:31.388794pt;}
.h7{height:31.840431pt;}
.h15{height:32.292068pt;}
.hc{height:32.608214pt;}
.h2{height:35.964844pt;}
.hf{height:36.874903pt;}
.ha{height:36.928036pt;}
.h12{height:36.955488pt;}
.h4{height:37.778178pt;}
.h9{height:37.990714pt;}
.h8{height:38.309517pt;}
.h13{height:41.790319pt;}
.h11{height:45.971345pt;}
.h10{height:47.501676pt;}
.h3{height:60.861564pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:68.031469pt;}
.x35{left:73.776398pt;}
.x1{left:75.590535pt;}
.x1a{left:77.476014pt;}
.x1b{left:83.148049pt;}
.x17{left:86.778005pt;}
.x16{left:88.671309pt;}
.x36{left:93.659731pt;}
.x37{left:94.788822pt;}
.x3{left:111.420400pt;}
.xf{left:139.162130pt;}
.x4{left:147.628265pt;}
.x2e{left:159.871915pt;}
.x5{left:221.329061pt;}
.x27{left:235.388936pt;}
.x6{left:237.127462pt;}
.x1f{left:238.106794pt;}
.x10{left:245.064534pt;}
.x22{left:248.697682pt;}
.x21{left:250.967161pt;}
.x2f{left:261.693545pt;}
.x7{left:317.933736pt;}
.x8{left:341.064534pt;}
.x11{left:344.163737pt;}
.x30{left:353.985629pt;}
.x12{left:359.962118pt;}
.x20{left:370.154256pt;}
.x23{left:382.034546pt;}
.x24{left:386.116414pt;}
.x25{left:392.692790pt;}
.x18{left:408.188924pt;}
.x2c{left:409.476091pt;}
.x1c{left:423.311035pt;}
.x19{left:426.935343pt;}
.x9{left:429.807739pt;}
.x38{left:433.370042pt;}
.x3a{left:434.501867pt;}
.x39{left:436.316986pt;}
.xa{left:445.606283pt;}
.x13{left:473.423462pt;}
.x33{left:475.464396pt;}
.x28{left:477.429850pt;}
.x34{left:480.151082pt;}
.x29{left:483.552653pt;}
.x14{left:489.221883pt;}
.x1d{left:517.265991pt;}
.x1e{left:522.103882pt;}
.xb{left:523.086385pt;}
.x31{left:554.151290pt;}
.xc{left:556.497477pt;}
.x15{left:587.187215pt;}
.x2a{left:609.259725pt;}
.x2b{left:615.306925pt;}
.x2d{left:635.339910pt;}
.x32{left:646.522410pt;}
.xd{left:678.273885pt;}
.xe{left:699.212565pt;}
.x26{left:721.058105pt;}
}




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