
    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_f76f0c4b5d510225b009f159.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.721000;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_91ae13b24f769a597c307942.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914000;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_f5b2aa95e2f0f3439adbf7eb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_dca98a9ce0a10caee42005da.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.721000;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_038a2263c5be8931694febe8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942000;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_cc210c32f1de56ffd1be7fa3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.475000;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_f550f92a879182d169322f0f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.721000;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_a6dba65852b9ad86606f933c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.679000;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_2e901997264d99d02097e8be.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916000;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_c6fc8bcc241f1cd6a74c1278.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.905000;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_91d09d1681520464f08303fe.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.174000;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_5269354da9dc83832c8a6861.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.730000;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_934fab0d719f932889ac644f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.270000;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_6abfb56cc06f31263db74ceb.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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_0d5c074812b9ad84d775bcdf.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;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_c755045de89251f7f0d7f43d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.850000;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_cbb25a5eb458c1090bf841ba.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.299000;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_d4ecab11183ebc81a8b9ab27.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.908000;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:ff13;src:url('chunks/assets/font_e643699ddf20750563699fca.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_bdd2984051c88dc0c22721fd.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.880000;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:ff15;src:url('chunks/assets/font_94af294f72a8fbd6f4435af2.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_0dae608f7e2a743cd368404d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.679000;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:ff17;src:url('chunks/assets/font_06e60e47da5c481c99b3898d.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.052000;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:ff18;src:url('chunks/assets/font_d33fb91d2c725b36ecbd9bbb.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.737000;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;}
.m8{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.174994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174994,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.217392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217392,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.217395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217395,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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.281276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.330909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330909,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v2{vertical-align:-17.007600px;}
.v8{vertical-align:-13.812000px;}
.v1{vertical-align:-9.187109px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:16.668089px;}
.v6{vertical-align:21.425145px;}
.v3{vertical-align:24.830746px;}
.v7{vertical-align:38.097869px;}
.v5{vertical-align:154.089542px;}
.ls85{letter-spacing:-2.268000px;}
.ls14{letter-spacing:-0.890656px;}
.ls17{letter-spacing:-0.878701px;}
.ls13{letter-spacing:-0.789038px;}
.ls15{letter-spacing:-0.747195px;}
.ls16{letter-spacing:-0.735240px;}
.ls2{letter-spacing:0.000000px;}
.ls86{letter-spacing:0.005400px;}
.ls63{letter-spacing:0.009862px;}
.ls7b{letter-spacing:0.011482px;}
.ls7a{letter-spacing:0.011540px;}
.ls37{letter-spacing:0.011955px;}
.ls61{letter-spacing:0.012008px;}
.ls60{letter-spacing:0.013115px;}
.ls84{letter-spacing:0.016200px;}
.ls3c{letter-spacing:0.023069px;}
.ls4{letter-spacing:0.023910px;}
.ls3f{letter-spacing:0.031324px;}
.ls89{letter-spacing:0.033474px;}
.ls5e{letter-spacing:0.033612px;}
.ls48{letter-spacing:0.035052px;}
.ls2d{letter-spacing:0.037939px;}
.ls40{letter-spacing:0.039843px;}
.ls4a{letter-spacing:0.042136px;}
.ls3d{letter-spacing:0.046200px;}
.ls7e{letter-spacing:0.046497px;}
.ls26{letter-spacing:0.047156px;}
.ls45{letter-spacing:0.047522px;}
.ls83{letter-spacing:0.047820px;}
.ls74{letter-spacing:0.047881px;}
.ls43{letter-spacing:0.047937px;}
.ls2f{letter-spacing:0.048074px;}
.ls22{letter-spacing:0.050408px;}
.ls3e{letter-spacing:0.059776px;}
.ls87{letter-spacing:0.064800px;}
.ls4f{letter-spacing:0.071731px;}
.ls8f{letter-spacing:0.083686px;}
.ls1{letter-spacing:0.106699px;}
.ls0{letter-spacing:0.111780px;}
.ls4c{letter-spacing:0.115064px;}
.ls28{letter-spacing:0.115664px;}
.ls2e{letter-spacing:0.116184px;}
.ls24{letter-spacing:0.116595px;}
.ls21{letter-spacing:0.119551px;}
.ls51{letter-spacing:0.143461px;}
.ls2a{letter-spacing:0.161394px;}
.ls52{letter-spacing:0.268990px;}
.ls3{letter-spacing:0.340721px;}
.ls1e{letter-spacing:0.352676px;}
.ls6{letter-spacing:0.364631px;}
.ls59{letter-spacing:0.372617px;}
.ls92{letter-spacing:0.422612px;}
.ls91{letter-spacing:0.435165px;}
.ls93{letter-spacing:0.510482px;}
.lsd{letter-spacing:0.526025px;}
.ls18{letter-spacing:0.532003px;}
.ls5{letter-spacing:0.585801px;}
.ls12{letter-spacing:0.597756px;}
.ls20{letter-spacing:0.609711px;}
.lse{letter-spacing:0.615689px;}
.lsf{letter-spacing:0.621666px;}
.ls9{letter-spacing:0.627644px;}
.ls1f{letter-spacing:0.633621px;}
.ls8{letter-spacing:0.639599px;}
.ls1d{letter-spacing:0.645576px;}
.lsb{letter-spacing:0.651554px;}
.ls11{letter-spacing:0.657532px;}
.lsa{letter-spacing:0.663509px;}
.ls1b{letter-spacing:0.669487px;}
.ls10{letter-spacing:0.675464px;}
.lsc{letter-spacing:0.681442px;}
.ls1a{letter-spacing:0.806971px;}
.ls19{letter-spacing:0.818926px;}
.ls1c{letter-spacing:0.842836px;}
.ls8a{letter-spacing:1.066991px;}
.ls8c{letter-spacing:1.075360px;}
.ls8b{letter-spacing:1.087913px;}
.ls8d{letter-spacing:1.100466px;}
.ls90{letter-spacing:1.188336px;}
.ls8e{letter-spacing:1.209257px;}
.ls7c{letter-spacing:2.389811px;}
.ls6f{letter-spacing:2.391888px;}
.ls6d{letter-spacing:2.394282px;}
.ls6a{letter-spacing:2.730191px;}
.ls71{letter-spacing:2.732095px;}
.ls77{letter-spacing:2.733082px;}
.ls76{letter-spacing:2.737416px;}
.ls4b{letter-spacing:2.938718px;}
.ls35{letter-spacing:2.940960px;}
.ls5b{letter-spacing:2.946937px;}
.ls5f{letter-spacing:3.086695px;}
.ls23{letter-spacing:3.087295px;}
.ls6e{letter-spacing:3.087354px;}
.ls44{letter-spacing:3.087899px;}
.ls62{letter-spacing:3.088499px;}
.ls53{letter-spacing:3.108331px;}
.ls27{letter-spacing:3.278918px;}
.ls39{letter-spacing:3.281680px;}
.ls33{letter-spacing:3.449052px;}
.ls36{letter-spacing:4.034853px;}
.ls41{letter-spacing:4.363195px;}
.ls6b{letter-spacing:4.363251px;}
.ls3a{letter-spacing:4.375574px;}
.ls3b{letter-spacing:6.001470px;}
.ls38{letter-spacing:6.180797px;}
.ls55{letter-spacing:6.521518px;}
.ls79{letter-spacing:6.680318px;}
.ls2b{letter-spacing:7.020518px;}
.ls34{letter-spacing:10.054256px;}
.ls31{letter-spacing:12.774046px;}
.ls82{letter-spacing:14.166817px;}
.ls78{letter-spacing:15.232392px;}
.ls5a{letter-spacing:17.564918px;}
.ls75{letter-spacing:18.053695px;}
.ls69{letter-spacing:20.395435px;}
.ls66{letter-spacing:20.407390px;}
.ls6c{letter-spacing:20.431300px;}
.ls58{letter-spacing:20.628560px;}
.ls7f{letter-spacing:21.462974px;}
.ls68{letter-spacing:22.122950px;}
.ls65{letter-spacing:22.804391px;}
.ls81{letter-spacing:24.173253px;}
.ls70{letter-spacing:24.227676px;}
.ls54{letter-spacing:24.513974px;}
.ls50{letter-spacing:24.609615px;}
.ls57{letter-spacing:24.854694px;}
.ls4e{letter-spacing:25.022066px;}
.ls73{letter-spacing:25.332899px;}
.ls7d{letter-spacing:26.119644px;}
.ls2c{letter-spacing:26.378972px;}
.ls67{letter-spacing:26.857177px;}
.ls80{letter-spacing:26.893042px;}
.ls42{letter-spacing:27.233763px;}
.ls72{letter-spacing:27.480444px;}
.ls4d{letter-spacing:27.770318px;}
.ls64{letter-spacing:28.308821px;}
.ls25{letter-spacing:29.279095px;}
.ls29{letter-spacing:29.470718px;}
.ls30{letter-spacing:29.959495px;}
.ls7{letter-spacing:30.156790px;}
.ls56{letter-spacing:30.838232px;}
.ls46{letter-spacing:31.031021px;}
.ls32{letter-spacing:32.583680px;}
.ls47{letter-spacing:35.423021px;}
.ls5c{letter-spacing:38.800342px;}
.ls5d{letter-spacing:38.836207px;}
.ls49{letter-spacing:40.503895px;}
.ls88{letter-spacing:466.388217px;}
.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;}
}
.wse6{word-spacing:-30.216566px;}
.ws132{word-spacing:-26.952818px;}
.ws13e{word-spacing:-24.233028px;}
.ws1e5{word-spacing:-10.972800px;}
.ws1bb{word-spacing:-8.640000px;}
.ws213{word-spacing:-1.230178px;}
.wsfa{word-spacing:-0.735240px;}
.ws5c{word-spacing:-0.059776px;}
.ws1f{word-spacing:-0.050809px;}
.ws1ba{word-spacing:-0.048000px;}
.ws1e3{word-spacing:-0.041843px;}
.ws1ef{word-spacing:-0.035866px;}
.ws1be{word-spacing:-0.016200px;}
.ws1f6{word-spacing:-0.005400px;}
.ws2f{word-spacing:0.000000px;}
.ws1e7{word-spacing:8.885179px;}
.ws22e{word-spacing:9.782847px;}
.ws226{word-spacing:9.849795px;}
.ws216{word-spacing:10.209643px;}
.ws22d{word-spacing:10.247302px;}
.ws2c{word-spacing:10.259855px;}
.ws1fb{word-spacing:10.264039px;}
.ws2a{word-spacing:10.397936px;}
.ws2b{word-spacing:10.598781px;}
.ws241{word-spacing:10.958629px;}
.ws1f9{word-spacing:11.025578px;}
.ws215{word-spacing:11.146922px;}
.ws1a4{word-spacing:11.424485px;}
.ws1f0{word-spacing:11.523810px;}
.ws1a5{word-spacing:11.529691px;}
.ws1ee{word-spacing:11.706728px;}
.ws1d{word-spacing:11.757249px;}
.wse{word-spacing:12.077347px;}
.wsf{word-spacing:12.112913px;}
.ws23f{word-spacing:12.142781px;}
.ws20b{word-spacing:12.264125px;}
.ws118{word-spacing:12.376127px;}
.ws1e0{word-spacing:12.385469px;}
.ws23e{word-spacing:12.398022px;}
.ws23d{word-spacing:12.423127px;}
.wsda{word-spacing:12.582764px;}
.ws232{word-spacing:12.661631px;}
.ws21f{word-spacing:12.753685px;}
.ws9{word-spacing:13.052883px;}
.ws1e4{word-spacing:13.310195px;}
.ws218{word-spacing:13.456644px;}
.ws1f8{word-spacing:13.477566px;}
.ws1ec{word-spacing:13.519409px;}
.ws21b{word-spacing:13.527777px;}
.ws228{word-spacing:13.557067px;}
.ws208{word-spacing:13.577989px;}
.ws1fd{word-spacing:13.582173px;}
.ws207{word-spacing:13.586357px;}
.ws1e1{word-spacing:13.590541px;}
.ws214{word-spacing:13.598910px;}
.ws205{word-spacing:13.624016px;}
.ws23a{word-spacing:13.640753px;}
.ws227{word-spacing:13.649121px;}
.ws1df{word-spacing:13.653306px;}
.ws229{word-spacing:13.657490px;}
.ws206{word-spacing:13.678411px;}
.ws29{word-spacing:13.682596px;}
.ws22f{word-spacing:13.695148px;}
.ws106{word-spacing:13.699333px;}
.ws20c{word-spacing:13.703517px;}
.ws1b3{word-spacing:13.706545px;}
.ws203{word-spacing:13.720254px;}
.ws185{word-spacing:13.730455px;}
.ws225{word-spacing:13.736991px;}
.ws23c{word-spacing:13.745360px;}
.ws230{word-spacing:13.753728px;}
.ws21c{word-spacing:13.757913px;}
.ws217{word-spacing:13.770465px;}
.ws2e{word-spacing:13.774650px;}
.ws1fc{word-spacing:13.787203px;}
.ws200{word-spacing:13.791387px;}
.ws236{word-spacing:13.795571px;}
.ws204{word-spacing:13.799755px;}
.ws233{word-spacing:13.803940px;}
.ws1bc{word-spacing:13.805980px;}
.ws235{word-spacing:13.808124px;}
.ws231{word-spacing:13.812308px;}
.ws209{word-spacing:13.824861px;}
.ws1b2{word-spacing:13.826096px;}
.ws1ff{word-spacing:13.837414px;}
.ws202{word-spacing:13.841598px;}
.ws1ed{word-spacing:13.849967px;}
.ws1f5{word-spacing:13.854151px;}
.ws1e2{word-spacing:13.866704px;}
.ws1bd{word-spacing:13.868148px;}
.ws21e{word-spacing:13.887625px;}
.ws234{word-spacing:13.891810px;}
.ws240{word-spacing:13.916915px;}
.ws237{word-spacing:13.921100px;}
.ws20a{word-spacing:13.933652px;}
.ws222{word-spacing:13.971311px;}
.ws21d{word-spacing:13.979679px;}
.ws1ea{word-spacing:13.983864px;}
.ws220{word-spacing:13.996417px;}
.ws1fa{word-spacing:14.025707px;}
.ws1b1{word-spacing:14.047266px;}
.ws224{word-spacing:14.054997px;}
.ws223{word-spacing:14.080102px;}
.ws201{word-spacing:14.088471px;}
.ws17a{word-spacing:14.089109px;}
.ws1eb{word-spacing:14.096839px;}
.ws238{word-spacing:14.117761px;}
.ws23b{word-spacing:14.126129px;}
.ws12d{word-spacing:14.145511px;}
.ws1de{word-spacing:14.209815px;}
.ws239{word-spacing:14.293500px;}
.ws12e{word-spacing:14.293757px;}
.ws1f4{word-spacing:14.347896px;}
.ws122{word-spacing:14.387987px;}
.ws120{word-spacing:14.399942px;}
.ws65{word-spacing:14.435807px;}
.ws55{word-spacing:14.507538px;}
.ws121{word-spacing:14.531448px;}
.ws139{word-spacing:14.591224px;}
.ws173{word-spacing:14.627089px;}
.ws20f{word-spacing:14.661717px;}
.ws1a2{word-spacing:14.671544px;}
.ws172{word-spacing:14.704798px;}
.ws13a{word-spacing:14.728708px;}
.ws7{word-spacing:14.754992px;}
.ws81{word-spacing:14.788483px;}
.ws171{word-spacing:14.812394px;}
.ws8{word-spacing:14.871853px;}
.ws1a3{word-spacing:14.929779px;}
.ws9f{word-spacing:14.931945px;}
.wsd7{word-spacing:15.009653px;}
.ws183{word-spacing:15.033563px;}
.wsc9{word-spacing:15.069429px;}
.ws19c{word-spacing:15.093339px;}
.ws187{word-spacing:15.129204px;}
.ws11a{word-spacing:15.154538px;}
.wsc{word-spacing:15.176708px;}
.ws153{word-spacing:15.188980px;}
.ws154{word-spacing:15.206913px;}
.ws1e9{word-spacing:15.226270px;}
.ws12f{word-spacing:15.240616px;}
.ws16f{word-spacing:15.248756px;}
.ws1e8{word-spacing:15.264527px;}
.ws18f{word-spacing:15.269309px;}
.ws105{word-spacing:15.298002px;}
.ws1f2{word-spacing:15.302784px;}
.ws9e{word-spacing:15.312348px;}
.ws117{word-spacing:15.317130px;}
.wsde{word-spacing:15.338419px;}
.ws103{word-spacing:15.350605px;}
.wsb{word-spacing:15.354540px;}
.ws184{word-spacing:15.374284px;}
.ws56{word-spacing:15.410150px;}
.ws7e{word-spacing:15.434060px;}
.ws104{word-spacing:15.436683px;}
.ws186{word-spacing:15.457970px;}
.ws9d{word-spacing:15.474940px;}
.ws102{word-spacing:15.489287px;}
.ws101{word-spacing:15.503633px;}
.ws166{word-spacing:15.523723px;}
.wsdc{word-spacing:15.553611px;}
.ws1a9{word-spacing:15.607409px;}
.ws1a6{word-spacing:15.608840px;}
.ws119{word-spacing:15.656661px;}
.ws165{word-spacing:15.720983px;}
.wsc5{word-spacing:15.744893px;}
.ws7b{word-spacing:15.774781px;}
.ws21a{word-spacing:15.816578px;}
.ws160{word-spacing:15.816624px;}
.ws161{word-spacing:15.888354px;}
.ws1c{word-spacing:15.893118px;}
.ws114{word-spacing:15.924220px;}
.ws1f1{word-spacing:15.948370px;}
.ws1b{word-spacing:16.004898px;}
.ws219{word-spacing:16.155505px;}
.ws11b{word-spacing:16.211143px;}
.ws147{word-spacing:16.229075px;}
.wsa1{word-spacing:16.252986px;}
.ws21{word-spacing:16.294510px;}
.ws146{word-spacing:16.348627px;}
.ws20{word-spacing:16.533314px;}
.ws28{word-spacing:16.538395px;}
.ws1cc{word-spacing:16.557841px;}
.ws1a{word-spacing:16.563799px;}
.ws148{word-spacing:16.569796px;}
.ws1d9{word-spacing:16.629572px;}
.ws1e{word-spacing:16.645094px;}
.ws23{word-spacing:16.680660px;}
.ws210{word-spacing:16.732936px;}
.ws82{word-spacing:16.737168px;}
.ws24{word-spacing:16.751793px;}
.wsd{word-spacing:16.772117px;}
.wsa{word-spacing:16.807683px;}
.ws22{word-spacing:17.071891px;}
.ws16a{word-spacing:17.083866px;}
.ws16b{word-spacing:17.089844px;}
.wsab{word-spacing:17.107777px;}
.ws169{word-spacing:17.131687px;}
.ws179{word-spacing:17.155597px;}
.ws16e{word-spacing:17.167552px;}
.wsc7{word-spacing:17.197440px;}
.ws11f{word-spacing:17.227328px;}
.ws1b8{word-spacing:17.287104px;}
.wsef{word-spacing:17.430565px;}
.ws212{word-spacing:17.481922px;}
.ws88{word-spacing:17.568049px;}
.ws20d{word-spacing:17.636740px;}
.wse7{word-spacing:17.651735px;}
.ws1d2{word-spacing:17.687600px;}
.ws20e{word-spacing:17.741347px;}
.ws89{word-spacing:17.741398px;}
.ws7c{word-spacing:17.795196px;}
.ws1d3{word-spacing:17.813129px;}
.ws74{word-spacing:17.848994px;}
.ws211{word-spacing:17.854323px;}
.ws113{word-spacing:17.908770px;}
.ws189{word-spacing:17.932680px;}
.wsdd{word-spacing:18.070164px;}
.wsc6{word-spacing:18.094074px;}
.ws16{word-spacing:18.159208px;}
.ws1cb{word-spacing:18.189715px;}
.ws108{word-spacing:18.201670px;}
.wse3{word-spacing:18.273401px;}
.ws41{word-spacing:18.470660px;}
.wsff{word-spacing:18.602167px;}
.ws48{word-spacing:18.661942px;}
.wsce{word-spacing:18.739651px;}
.ws22a{word-spacing:18.749759px;}
.ws22b{word-spacing:18.804154px;}
.ws128{word-spacing:18.811381px;}
.ws127{word-spacing:18.948865px;}
.ws100{word-spacing:18.990708px;}
.wsf9{word-spacing:19.008641px;}
.wse4{word-spacing:19.014618px;}
.ws99{word-spacing:19.032551px;}
.wsf8{word-spacing:19.098304px;}
.ws22c{word-spacing:19.109607px;}
.ws14{word-spacing:19.114421px;}
.ws157{word-spacing:19.181990px;}
.ws47{word-spacing:19.271653px;}
.wsf7{word-spacing:19.289586px;}
.ws1bf{word-spacing:19.325451px;}
.ws60{word-spacing:19.456958px;}
.ws5a{word-spacing:19.492823px;}
.ws91{word-spacing:19.516733px;}
.ws190{word-spacing:19.540644px;}
.ws77{word-spacing:19.552599px;}
.ws180{word-spacing:19.570531px;}
.ws9c{word-spacing:19.582487px;}
.ws9a{word-spacing:19.588464px;}
.ws9b{word-spacing:19.600419px;}
.ws5b{word-spacing:19.612374px;}
.ws98{word-spacing:19.624329px;}
.ws3a{word-spacing:19.630307px;}
.ws158{word-spacing:19.654217px;}
.ws8b{word-spacing:19.666172px;}
.ws1dc{word-spacing:19.690083px;}
.wsd6{word-spacing:19.761813px;}
.ws6a{word-spacing:19.797679px;}
.wsbc{word-spacing:19.821589px;}
.wsad{word-spacing:19.827567px;}
.ws14c{word-spacing:19.833544px;}
.ws5d{word-spacing:19.845499px;}
.wsac{word-spacing:19.851477px;}
.ws6d{word-spacing:19.857454px;}
.ws1d4{word-spacing:19.863432px;}
.ws176{word-spacing:19.875387px;}
.ws7d{word-spacing:19.893320px;}
.ws10a{word-spacing:19.929185px;}
.ws1b0{word-spacing:19.959073px;}
.wsae{word-spacing:19.971028px;}
.ws1c2{word-spacing:19.982983px;}
.wsee{word-spacing:20.006893px;}
.ws19a{word-spacing:20.012871px;}
.wsd5{word-spacing:20.054714px;}
.ws10b{word-spacing:20.114489px;}
.ws181{word-spacing:20.144377px;}
.ws110{word-spacing:20.174265px;}
.ws13f{word-spacing:20.198175px;}
.ws14e{word-spacing:20.245996px;}
.ws3c{word-spacing:20.287839px;}
.ws27{word-spacing:20.313518px;}
.ws59{word-spacing:20.359569px;}
.ws14f{word-spacing:20.371524px;}
.ws1db{word-spacing:20.383480px;}
.wse2{word-spacing:20.401412px;}
.ws4a{word-spacing:20.509008px;}
.ws14d{word-spacing:20.514986px;}
.ws1ae{word-spacing:20.568784px;}
.ws68{word-spacing:20.574762px;}
.ws4b{word-spacing:20.616604px;}
.ws11c{word-spacing:20.628560px;}
.ws1d7{word-spacing:20.664425px;}
.ws38{word-spacing:20.712245px;}
.ws199{word-spacing:20.819841px;}
.ws51{word-spacing:20.855707px;}
.ws52{word-spacing:20.933415px;}
.wsd3{word-spacing:20.969280px;}
.ws19b{word-spacing:21.029056px;}
.ws49{word-spacing:21.041011px;}
.ws107{word-spacing:21.064921px;}
.wsc3{word-spacing:21.100787px;}
.wsd9{word-spacing:21.130675px;}
.ws15c{word-spacing:21.190450px;}
.ws1d0{word-spacing:21.214360px;}
.ws19{word-spacing:21.299217px;}
.ws58{word-spacing:21.310001px;}
.ws4{word-spacing:21.356899px;}
.ws1b7{word-spacing:21.369777px;}
.ws84{word-spacing:21.387710px;}
.ws67{word-spacing:21.393687px;}
.ws1b6{word-spacing:21.417597px;}
.ws6c{word-spacing:21.423575px;}
.ws5{word-spacing:21.475256px;}
.ws6{word-spacing:21.501558px;}
.ws1ad{word-spacing:21.531171px;}
.ws11{word-spacing:21.532939px;}
.wsd8{word-spacing:21.555081px;}
.ws18{word-spacing:21.639638px;}
.ws1b5{word-spacing:21.650722px;}
.ws17{word-spacing:21.781904px;}
.wsf3{word-spacing:21.800161px;}
.wsd2{word-spacing:21.931668px;}
.wsa8{word-spacing:21.991443px;}
.ws18c{word-spacing:22.015353px;}
.ws1d5{word-spacing:22.075129px;}
.wsdf{word-spacing:22.116972px;}
.ws18e{word-spacing:22.188703px;}
.ws15e{word-spacing:22.212613px;}
.wscf{word-spacing:22.224568px;}
.wsb0{word-spacing:22.236523px;}
.ws26{word-spacing:22.315401px;}
.ws159{word-spacing:22.332164px;}
.wsf1{word-spacing:22.433783px;}
.ws7a{word-spacing:22.451715px;}
.ws12{word-spacing:22.518637px;}
.wsc8{word-spacing:22.565289px;}
.ws25{word-spacing:22.605013px;}
.ws39{word-spacing:22.714728px;}
.wsf2{word-spacing:22.720706px;}
.ws31{word-spacing:22.750593px;}
.wsb5{word-spacing:22.798414px;}
.wsb6{word-spacing:22.834279px;}
.ws12a{word-spacing:22.836010px;}
.ws155{word-spacing:22.894055px;}
.ws178{word-spacing:23.043494px;}
.ws10f{word-spacing:23.091314px;}
.ws5f{word-spacing:23.103269px;}
.ws32{word-spacing:23.198910px;}
.ws12b{word-spacing:23.288574px;}
.ws8e{word-spacing:23.372260px;}
.wsd1{word-spacing:23.408125px;}
.ws1c8{word-spacing:23.491811px;}
.wsf5{word-spacing:23.521699px;}
.ws0{word-spacing:23.685444px;}
.wse8{word-spacing:23.772756px;}
.ws4c{word-spacing:23.874375px;}
.wsf6{word-spacing:23.892307px;}
.ws3d{word-spacing:23.940128px;}
.wsc2{word-spacing:23.975993px;}
.ws194{word-spacing:24.029791px;}
.wsf4{word-spacing:24.041746px;}
.ws8f{word-spacing:24.089567px;}
.ws13d{word-spacing:24.113477px;}
.ws78{word-spacing:24.280849px;}
.ws11e{word-spacing:24.370512px;}
.ws75{word-spacing:24.442243px;}
.ws8a{word-spacing:24.454198px;}
.ws164{word-spacing:24.496041px;}
.ws15{word-spacing:24.515439px;}
.ws137{word-spacing:24.531906px;}
.ws1ca{word-spacing:24.555816px;}
.ws175{word-spacing:24.567772px;}
.ws66{word-spacing:24.591682px;}
.ws150{word-spacing:24.615592px;}
.ws1c3{word-spacing:24.651457px;}
.ws3b{word-spacing:24.711233px;}
.ws87{word-spacing:24.771009px;}
.ws1d6{word-spacing:24.842739px;}
.ws138{word-spacing:24.872627px;}
.wsbb{word-spacing:24.914470px;}
.ws17d{word-spacing:24.932403px;}
.ws111{word-spacing:24.938380px;}
.ws71{word-spacing:24.992178px;}
.ws17b{word-spacing:25.016089px;}
.ws72{word-spacing:25.051954px;}
.ws152{word-spacing:25.063909px;}
.ws17c{word-spacing:25.075864px;}
.ws17e{word-spacing:25.111730px;}
.ws1c7{word-spacing:25.177483px;}
.ws1c6{word-spacing:25.243236px;}
.wsd4{word-spacing:25.255191px;}
.ws151{word-spacing:25.273124px;}
.wsa7{word-spacing:25.368765px;}
.ws19e{word-spacing:25.482338px;}
.ws191{word-spacing:25.512226px;}
.ws1b4{word-spacing:25.589934px;}
.ws92{word-spacing:25.613845px;}
.ws14b{word-spacing:25.637755px;}
.wseb{word-spacing:25.715463px;}
.ws93{word-spacing:25.733396px;}
.ws97{word-spacing:26.024744px;}
.ws123{word-spacing:26.074117px;}
.ws7f{word-spacing:26.378972px;}
.ws95{word-spacing:26.414838px;}
.ws125{word-spacing:26.474613px;}
.ws79{word-spacing:26.636007px;}
.ws96{word-spacing:26.695783px;}
.ws13{word-spacing:26.725639px;}
.ws10{word-spacing:26.730720px;}
.ws140{word-spacing:26.755559px;}
.ws1c1{word-spacing:26.767514px;}
.ws141{word-spacing:26.785446px;}
.ws126{word-spacing:26.869132px;}
.ws133{word-spacing:26.916953px;}
.ws1c0{word-spacing:26.940863px;}
.ws12c{word-spacing:26.976728px;}
.ws16d{word-spacing:27.000639px;}
.ws4d{word-spacing:27.006616px;}
.ws124{word-spacing:27.102257px;}
.ws4e{word-spacing:27.150078px;}
.ws131{word-spacing:27.173988px;}
.ws18d{word-spacing:27.281584px;}
.ws17f{word-spacing:27.359292px;}
.ws8c{word-spacing:27.431023px;}
.wsbd{word-spacing:27.538619px;}
.ws168{word-spacing:27.717946px;}
.ws15d{word-spacing:27.723923px;}
.ws142{word-spacing:27.771744px;}
.wsca{word-spacing:27.807609px;}
.ws3f{word-spacing:27.831519px;}
.ws14a{word-spacing:27.957048px;}
.ws1d1{word-spacing:28.004869px;}
.ws1ab{word-spacing:28.196151px;}
.ws1cf{word-spacing:28.285814px;}
.ws40{word-spacing:28.321679px;}
.wse9{word-spacing:28.351567px;}
.ws109{word-spacing:28.477096px;}
.ws197{word-spacing:28.512961px;}
.wse5{word-spacing:28.524916px;}
.wscd{word-spacing:28.554804px;}
.wsd0{word-spacing:28.674355px;}
.ws1c5{word-spacing:28.758041px;}
.ws112{word-spacing:29.015076px;}
.ws115{word-spacing:29.074852px;}
.wsaa{word-spacing:29.134627px;}
.ws8d{word-spacing:29.182448px;}
.wsb9{word-spacing:29.254179px;}
.ws18a{word-spacing:29.284066px;}
.ws36{word-spacing:29.439483px;}
.ws143{word-spacing:29.475348px;}
.ws144{word-spacing:29.493281px;}
.ws62{word-spacing:29.594900px;}
.ws1d8{word-spacing:29.660653px;}
.ws145{word-spacing:29.672608px;}
.ws10c{word-spacing:29.780204px;}
.ws1f7{word-spacing:29.804626px;}
.ws1c4{word-spacing:29.893778px;}
.ws1fe{word-spacing:29.971998px;}
.ws221{word-spacing:29.992550px;}
.ws129{word-spacing:30.037239px;}
.ws1dd{word-spacing:30.143553px;}
.ws188{word-spacing:30.150813px;}
.ws4f{word-spacing:30.156790px;}
.ws10d{word-spacing:30.204611px;}
.ws50{word-spacing:30.377960px;}
.wsa0{word-spacing:30.551309px;}
.wsf0{word-spacing:30.557287px;}
.ws45{word-spacing:30.575219px;}
.ws19d{word-spacing:30.778456px;}
.wsdb{word-spacing:30.832254px;}
.ws156{word-spacing:30.892030px;}
.ws69{word-spacing:30.915940px;}
.ws177{word-spacing:30.939851px;}
.wsa2{word-spacing:31.232751px;}
.ws170{word-spacing:31.256661px;}
.ws83{word-spacing:31.346325px;}
.ws1ce{word-spacing:31.370235px;}
.ws1cd{word-spacing:31.459898px;}
.ws54{word-spacing:31.525651px;}
.ws162{word-spacing:31.597382px;}
.wscc{word-spacing:31.722911px;}
.ws192{word-spacing:31.818552px;}
.ws30{word-spacing:31.854417px;}
.ws193{word-spacing:31.938103px;}
.wsc1{word-spacing:32.135363px;}
.wsc0{word-spacing:32.219048px;}
.ws130{word-spacing:32.280972px;}
.ws163{word-spacing:32.326644px;}
.wsbf{word-spacing:32.482061px;}
.ws44{word-spacing:32.535859px;}
.wsbe{word-spacing:32.643455px;}
.ws1a0{word-spacing:32.655410px;}
.ws19f{word-spacing:32.780939px;}
.wsfb{word-spacing:32.804849px;}
.ws43{word-spacing:33.061884px;}
.ws70{word-spacing:33.097750px;}
.ws5e{word-spacing:33.283054px;}
.wsba{word-spacing:33.498246px;}
.ws1a7{word-spacing:33.552044px;}
.ws42{word-spacing:33.635730px;}
.ws15b{word-spacing:33.641708px;}
.ws6f{word-spacing:33.731371px;}
.ws1ac{word-spacing:33.916675px;}
.ws198{word-spacing:34.137845px;}
.wsc4{word-spacing:34.239464px;}
.ws34{word-spacing:34.424768px;}
.ws37{word-spacing:34.460633px;}
.wsaf{word-spacing:34.825265px;}
.ws135{word-spacing:35.160008px;}
.ws167{word-spacing:35.201851px;}
.wsed{word-spacing:35.375200px;}
.ws174{word-spacing:35.440953px;}
.ws6b{word-spacing:35.458886px;}
.ws35{word-spacing:35.596370px;}
.ws11d{word-spacing:35.608325px;}
.ws134{word-spacing:35.703966px;}
.ws73{word-spacing:35.853405px;}
.wsa5{word-spacing:35.889270px;}
.wsa4{word-spacing:35.961001px;}
.wsa3{word-spacing:35.984911px;}
.ws1da{word-spacing:36.020777px;}
.ws86{word-spacing:36.265857px;}
.ws16c{word-spacing:36.863613px;}
.ws136{word-spacing:37.521144px;}
.ws94{word-spacing:37.533099px;}
.wse0{word-spacing:37.640695px;}
.ws46{word-spacing:37.718404px;}
.ws63{word-spacing:37.826000px;}
.ws182{word-spacing:38.035214px;}
.ws1af{word-spacing:38.280294px;}
.ws3e{word-spacing:38.316160px;}
.wsb8{word-spacing:38.435711px;}
.ws13c{word-spacing:38.483531px;}
.ws13b{word-spacing:38.543307px;}
.wsa6{word-spacing:38.656881px;}
.wsa9{word-spacing:38.716656px;}
.wsb4{word-spacing:38.937826px;}
.wsb3{word-spacing:39.218771px;}
.ws2{word-spacing:39.284721px;}
.ws18b{word-spacing:39.398098px;}
.ws1{word-spacing:39.487960px;}
.ws3{word-spacing:39.571646px;}
.ws1a1{word-spacing:39.840437px;}
.wsfc{word-spacing:39.971944px;}
.ws15f{word-spacing:40.312665px;}
.ws85{word-spacing:40.384395px;}
.wsfd{word-spacing:40.408306px;}
.wsfe{word-spacing:40.414283px;}
.ws195{word-spacing:41.364715px;}
.wsec{word-spacing:41.478289px;}
.ws10e{word-spacing:41.579907px;}
.ws196{word-spacing:41.603818px;}
.wscb{word-spacing:42.022247px;}
.ws61{word-spacing:42.458609px;}
.ws33{word-spacing:42.482519px;}
.ws6e{word-spacing:43.845403px;}
.ws76{word-spacing:45.118623px;}
.ws1a8{word-spacing:45.752244px;}
.ws15a{word-spacing:45.871795px;}
.wse1{word-spacing:46.242404px;}
.ws57{word-spacing:47.408028px;}
.wsb1{word-spacing:47.617243px;}
.ws90{word-spacing:47.677019px;}
.wsb2{word-spacing:47.784615px;}
.ws1c9{word-spacing:48.041650px;}
.ws149{word-spacing:48.860575px;}
.wsb7{word-spacing:49.344758px;}
.ws53{word-spacing:51.149981px;}
.ws64{word-spacing:52.793810px;}
.ws1b9{word-spacing:53.451342px;}
.ws1aa{word-spacing:53.708377px;}
.wsea{word-spacing:72.836569px;}
.ws80{word-spacing:76.363329px;}
.ws116{word-spacing:94.529134px;}
.ws1e6{word-spacing:347.270400px;}
.ws1f3{word-spacing:625.302987px;}
.ws2d{word-spacing:2097.038407px;}
._20{margin-left:-2521.883778px;}
._1f{margin-left:-29.254179px;}
._24{margin-left:-26.893042px;}
._25{margin-left:-23.438019px;}
._1e{margin-left:-2.438844px;}
._1d{margin-left:-1.362884px;}
._0{width:1.291159px;}
._2c{width:2.326841px;}
._2b{width:4.378841px;}
._23{width:6.225695px;}
._37{width:8.640538px;}
._26{width:9.913809px;}
._b{width:11.485230px;}
._3{width:13.291687px;}
._a{width:14.820720px;}
._2{width:16.431695px;}
._8{width:17.554579px;}
._19{width:18.823336px;}
._6{width:20.272871px;}
._9{width:21.492292px;}
._5{width:22.828574px;}
._d{width:23.999903px;}
._7{width:25.826316px;}
._29{width:26.901740px;}
._4{width:27.919655px;}
._11{width:29.182448px;}
._10{width:30.605107px;}
._13{width:31.693023px;}
._c{width:32.966237px;}
._12{width:34.167733px;}
._f{width:35.626258px;}
._16{width:37.042933px;}
._14{width:38.782409px;}
._1{width:40.456329px;}
._18{width:41.532087px;}
._e{width:43.827470px;}
._17{width:46.326090px;}
._15{width:48.770912px;}
._1c{width:50.779372px;}
._28{width:54.790315px;}
._22{width:95.778437px;}
._2f{width:98.838661px;}
._2e{width:109.167865px;}
._33{width:227.143640px;}
._32{width:256.764158px;}
._30{width:283.756948px;}
._31{width:305.423150px;}
._2d{width:380.270400px;}
._36{width:429.851084px;}
._35{width:461.806431px;}
._34{width:486.464393px;}
._2a{width:876.314244px;}
._1b{width:1882.206422px;}
._21{width:2510.144352px;}
._27{width:2511.148597px;}
._1a{width:2572.359733px;}
._38{width:2584.946273px;}
.fc3{color:rgb(50,126,177);}
.fc4{color:rgb(35,31,32);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(242,144,60);}
.fc0{color:rgb(233,55,50);}
.fs8{font-size:27.891000px;}
.fs5{font-size:33.869400px;}
.fs11{font-size:35.866200px;}
.fsb{font-size:39.846000px;}
.fs7{font-size:41.842800px;}
.fs3{font-size:43.831200px;}
.fs9{font-size:47.821200px;}
.fs10{font-size:48.000000px;}
.fs4{font-size:50.809200px;}
.fse{font-size:54.000000px;}
.fs6{font-size:58.430400px;}
.fsa{font-size:59.775600px;}
.fsf{font-size:59.999400px;}
.fs2{font-size:65.754000px;}
.fsd{font-size:68.740800px;}
.fs0{font-size:71.730600px;}
.fsc{font-size:77.709000px;}
.fs1{font-size:119.551800px;}
.y0{bottom:0.000000px;}
.ybb{bottom:47.702875px;}
.y30{bottom:47.707050px;}
.y107{bottom:96.604800px;}
.y231{bottom:96.604969px;}
.y1f1{bottom:96.605128px;}
.y192{bottom:96.605567px;}
.y118{bottom:96.605577px;}
.y110{bottom:96.605895px;}
.ye1{bottom:96.611344px;}
.y1c8{bottom:96.694153px;}
.y24d{bottom:97.542342px;}
.y2f{bottom:105.108081px;}
.y67{bottom:105.961141px;}
.yb2{bottom:105.965126px;}
.y12c{bottom:109.360500px;}
.y24c{bottom:109.532396px;}
.y124{bottom:110.381867px;}
.y68{bottom:111.231450px;}
.y230{bottom:114.548109px;}
.y1f0{bottom:114.548269px;}
.y191{bottom:114.548708px;}
.y117{bottom:114.548717px;}
.y10f{bottom:114.549036px;}
.ye0{bottom:114.554485px;}
.y106{bottom:114.558968px;}
.y1c7{bottom:114.637293px;}
.y2e{bottom:118.544850px;}
.y24b{bottom:121.437719px;}
.y2d{bottom:123.222000px;}
.y66{bottom:123.904282px;}
.yb1{bottom:123.908266px;}
.y12b{bottom:127.813608px;}
.y123{bottom:128.325008px;}
.y1e2{bottom:130.620609px;}
.y1e4{bottom:131.046182px;}
.y2c{bottom:131.981627px;}
.y22f{bottom:132.491250px;}
.y1ef{bottom:132.491409px;}
.y190{bottom:132.491849px;}
.y116{bottom:132.491858px;}
.y10e{bottom:132.492177px;}
.y22d{bottom:132.492645px;}
.ydf{bottom:132.497626px;}
.y105{bottom:132.502109px;}
.y1c6{bottom:132.580434px;}
.y24a{bottom:133.427773px;}
.y22e{bottom:137.678700px;}
.y65{bottom:141.847423px;}
.yb0{bottom:141.851407px;}
.y12a{bottom:142.015628px;}
.y249{bottom:145.333096px;}
.y2b{bottom:145.417350px;}
.y129{bottom:146.182863px;}
.y122{bottom:146.182969px;}
.y1e3{bottom:147.543300px;}
.y1e1{bottom:148.563750px;}
.y1df{bottom:148.564517px;}
.y2a{bottom:150.094500px;}
.y1ee{bottom:150.434550px;}
.y18f{bottom:150.434989px;}
.y115{bottom:150.434999px;}
.y10d{bottom:150.435317px;}
.y22c{bottom:150.435786px;}
.y1f8{bottom:150.436044px;}
.yde{bottom:150.440766px;}
.y104{bottom:150.445249px;}
.y1c5{bottom:150.523575px;}
.y1e0{bottom:153.751200px;}
.y1f9{bottom:155.622000px;}
.y248{bottom:157.323150px;}
.y29{bottom:158.939027px;}
.y64{bottom:159.790564px;}
.yaf{bottom:159.794548px;}
.y121{bottom:164.126109px;}
.y128{bottom:166.422882px;}
.y1de{bottom:166.507658px;}
.y114{bottom:168.292959px;}
.y18e{bottom:168.293119px;}
.y10c{bottom:168.293278px;}
.y1ec{bottom:168.293746px;}
.y1f7{bottom:168.294005px;}
.ydd{bottom:168.298727px;}
.y103{bottom:168.303210px;}
.y1c4{bottom:168.466716px;}
.y247{bottom:169.314250px;}
.y28{bottom:172.374750px;}
.y1ed{bottom:173.565300px;}
.y27{bottom:176.966850px;}
.y63{bottom:177.733704px;}
.yae{bottom:177.737689px;}
.y246{bottom:181.219573px;}
.y120{bottom:182.069250px;}
.y113{bottom:183.769950px;}
.y1dd{bottom:184.365619px;}
.y127{bottom:184.366022px;}
.y26{bottom:185.811000px;}
.y112{bottom:186.236100px;}
.y18d{bottom:186.236259px;}
.y10b{bottom:186.236419px;}
.y1eb{bottom:186.236887px;}
.y1f6{bottom:186.237146px;}
.ydc{bottom:186.241868px;}
.y102{bottom:186.246351px;}
.y1c3{bottom:186.409856px;}
.y111{bottom:192.869250px;}
.y245{bottom:193.209627px;}
.y62{bottom:195.676845px;}
.yad{bottom:195.680829px;}
.y11e{bottom:200.012709px;}
.y1dc{bottom:202.308759px;}
.y126{bottom:202.818128px;}
.y10a{bottom:204.179559px;}
.y1ea{bottom:204.180028px;}
.y1f5{bottom:204.180286px;}
.y18c{bottom:204.182001px;}
.ydb{bottom:204.185008px;}
.y101{bottom:204.189491px;}
.y1c2{bottom:204.352997px;}
.y244{bottom:205.114950px;}
.y11f{bottom:205.285050px;}
.y61{bottom:213.619986px;}
.yac{bottom:213.623970px;}
.y11d{bottom:217.955850px;}
.y1db{bottom:220.251900px;}
.y1d8{bottom:220.254161px;}
.y125{bottom:221.273077px;}
.y109{bottom:222.122700px;}
.y1e9{bottom:222.123169px;}
.y1f4{bottom:222.123427px;}
.yda{bottom:222.128149px;}
.y100{bottom:222.132632px;}
.y1c1{bottom:222.296138px;}
.y17d{bottom:224.333850px;}
.y1d9{bottom:225.524400px;}
.y1da{bottom:226.885050px;}
.y16a{bottom:229.521150px;}
.y60{bottom:231.477946px;}
.yab{bottom:231.481930px;}
.y243{bottom:232.074411px;}
.y18a{bottom:233.265819px;}
.y177{bottom:233.266091px;}
.y163{bottom:233.266107px;}
.y189{bottom:237.687719px;}
.y176{bottom:237.687991px;}
.y162{bottom:237.688007px;}
.y1d7{bottom:238.197302px;}
.y1e8{bottom:240.066309px;}
.y1f3{bottom:240.066568px;}
.yd9{bottom:240.071290px;}
.yff{bottom:240.075773px;}
.y1c0{bottom:240.154098px;}
.y188{bottom:242.024439px;}
.y175{bottom:242.024711px;}
.y161{bottom:242.024727px;}
.y187{bottom:246.361159px;}
.y174{bottom:246.361431px;}
.y160{bottom:246.361447px;}
.y169{bottom:247.719578px;}
.y5f{bottom:249.421087px;}
.yaa{bottom:249.425071px;}
.y186{bottom:250.697878px;}
.y173{bottom:250.698151px;}
.y15f{bottom:250.698167px;}
.y17c{bottom:251.291250px;}
.y168{bottom:251.886600px;}
.y185{bottom:255.119778px;}
.y172{bottom:255.120051px;}
.y15e{bottom:255.120067px;}
.y1d6{bottom:256.140443px;}
.y1e7{bottom:258.009450px;}
.y1f2{bottom:258.009709px;}
.y22a{bottom:258.012259px;}
.yd8{bottom:258.014430px;}
.yfe{bottom:258.018914px;}
.y1bf{bottom:258.097239px;}
.y179{bottom:260.560478px;}
.y22b{bottom:263.196750px;}
.y156{bottom:264.727410px;}
.y18b{bottom:264.730200px;}
.y178{bottom:264.730473px;}
.y11c{bottom:266.598364px;}
.y5e{bottom:267.364228px;}
.ya9{bottom:267.368212px;}
.y242{bottom:272.382592px;}
.y167{bottom:272.636078px;}
.y1d5{bottom:274.083583px;}
.y229{bottom:275.955400px;}
.yd7{bottom:275.957571px;}
.yfd{bottom:275.962054px;}
.y1be{bottom:276.040380px;}
.y166{bottom:276.803100px;}
.y17b{bottom:278.163600px;}
.y184{bottom:281.821539px;}
.y171{bottom:281.821811px;}
.y15d{bottom:281.821827px;}
.y11b{bottom:283.096678px;}
.y5d{bottom:285.307369px;}
.ya8{bottom:285.311353px;}
.y183{bottom:286.243439px;}
.y170{bottom:286.243711px;}
.y15c{bottom:286.243727px;}
.y12f{bottom:287.008696px;}
.y241{bottom:290.325733px;}
.y182{bottom:290.580159px;}
.y16f{bottom:290.580431px;}
.y15b{bottom:290.580447px;}
.y1d4{bottom:292.026724px;}
.y228{bottom:293.898540px;}
.yd6{bottom:293.900712px;}
.yfc{bottom:293.905195px;}
.y1bd{bottom:293.983520px;}
.y25{bottom:294.070086px;}
.y181{bottom:294.916878px;}
.y16e{bottom:294.917151px;}
.y15a{bottom:294.917167px;}
.y165{bottom:295.086109px;}
.y180{bottom:299.253598px;}
.y16d{bottom:299.253871px;}
.y159{bottom:299.253887px;}
.y164{bottom:299.256875px;}
.y11a{bottom:299.508914px;}
.y5c{bottom:303.250509px;}
.ya7{bottom:303.254493px;}
.y12e{bottom:303.505814px;}
.y17f{bottom:303.590318px;}
.y16c{bottom:303.590590px;}
.y158{bottom:303.590606px;}
.y17a{bottom:305.038670px;}
.y240{bottom:308.268874px;}
.y24{bottom:309.801885px;}
.y1d3{bottom:309.969865px;}
.y227{bottom:311.756501px;}
.yd5{bottom:311.758672px;}
.yfb{bottom:311.763156px;}
.y1bc{bottom:311.926661px;}
.y219{bottom:313.795200px;}
.y119{bottom:315.921150px;}
.y17e{bottom:317.026379px;}
.y16b{bottom:317.026651px;}
.y157{bottom:317.026667px;}
.y12d{bottom:319.918050px;}
.y5b{bottom:321.193650px;}
.y59{bottom:321.194417px;}
.ya6{bottom:321.197634px;}
.y155{bottom:325.275609px;}
.y23{bottom:325.448578px;}
.y23f{bottom:326.212014px;}
.y5a{bottom:326.380950px;}
.y1d2{bottom:327.827825px;}
.y226{bottom:329.699641px;}
.yd4{bottom:329.701813px;}
.yfa{bottom:329.706296px;}
.y1bb{bottom:329.869802px;}
.y211{bottom:336.738750px;}
.y1fc{bottom:336.741106px;}
.y58{bottom:339.137558px;}
.ya5{bottom:339.140775px;}
.y154{bottom:343.219638px;}
.y23e{bottom:344.155155px;}
.y1d1{bottom:345.770966px;}
.y225{bottom:347.642782px;}
.yd3{bottom:347.644954px;}
.yf9{bottom:347.649437px;}
.y1ba{bottom:347.812943px;}
.y22{bottom:349.344144px;}
.y214{bottom:352.286100px;}
.y57{bottom:357.080699px;}
.ya4{bottom:357.083916px;}
.y153{bottom:360.226583px;}
.y23d{bottom:362.013116px;}
.y1d0{bottom:363.714107px;}
.y152{bottom:364.394764px;}
.y21{bottom:365.075943px;}
.y224{bottom:365.585923px;}
.yd2{bottom:365.588095px;}
.yf8{bottom:365.592578px;}
.y1b9{bottom:365.756083px;}
.y56{bottom:374.938659px;}
.ya3{bottom:374.941876px;}
.y23c{bottom:379.956256px;}
.y20{bottom:380.722636px;}
.y1cf{bottom:381.657248px;}
.y151{bottom:382.337905px;}
.y223{bottom:383.529064px;}
.yd1{bottom:383.531235px;}
.yf7{bottom:383.535719px;}
.y1b8{bottom:383.614044px;}
.y55{bottom:392.881800px;}
.ya2{bottom:392.885017px;}
.y1f{bottom:396.454435px;}
.y23b{bottom:397.899397px;}
.y1ce{bottom:399.600388px;}
.y150{bottom:400.195865px;}
.y222{bottom:401.472204px;}
.yd0{bottom:401.474376px;}
.yf6{bottom:401.478859px;}
.y1b7{bottom:401.557185px;}
.y2d0{bottom:409.464091px;}
.y53{bottom:410.825259px;}
.ya1{bottom:410.828158px;}
.y29b{bottom:410.995873px;}
.y1e{bottom:412.101128px;}
.y23a{bottom:415.842538px;}
.y54{bottom:416.097600px;}
.y1cd{bottom:417.543529px;}
.y14f{bottom:418.139006px;}
.y215{bottom:418.887300px;}
.y221{bottom:419.415345px;}
.ycf{bottom:419.417517px;}
.yf5{bottom:419.422000px;}
.y1b6{bottom:419.500325px;}
.y29a{bottom:422.901196px;}
.y2cf{bottom:422.985592px;}
.y52{bottom:428.768400px;}
.y50{bottom:428.769645px;}
.ya0{bottom:428.771298px;}
.y239{bottom:433.785679px;}
.y51{bottom:434.040900px;}
.y299{bottom:434.891250px;}
.y298{bottom:434.901252px;}
.y1d{bottom:436.081800px;}
.y14e{bottom:436.082147px;}
.y1c{bottom:436.082858px;}
.y2ce{bottom:436.421315px;}
.y220{bottom:437.358486px;}
.yce{bottom:437.360658px;}
.yf4{bottom:437.365141px;}
.y1b5{bottom:437.443466px;}
.y212{bottom:443.812650px;}
.y1cc{bottom:444.415650px;}
.y4f{bottom:446.712786px;}
.y9f{bottom:446.714439px;}
.y297{bottom:446.891306px;}
.y2cd{bottom:449.858084px;}
.y213{bottom:450.589650px;}
.y1b{bottom:451.729551px;}
.y14d{bottom:454.025287px;}
.y21f{bottom:455.216446px;}
.ycd{bottom:455.218618px;}
.yf3{bottom:455.223101px;}
.y1b4{bottom:455.386607px;}
.y296{bottom:458.796629px;}
.y238{bottom:460.657800px;}
.y2cc{bottom:463.294853px;}
.y216{bottom:464.505300px;}
.y4e{bottom:464.655927px;}
.y9e{bottom:464.657580px;}
.y1a{bottom:465.335250px;}
.y19{bottom:467.461350px;}
.y17{bottom:467.467959px;}
.y295{bottom:470.786683px;}
.y14c{bottom:471.968428px;}
.y18{bottom:473.073900px;}
.y21e{bottom:473.159587px;}
.ycc{bottom:473.161759px;}
.yf2{bottom:473.166242px;}
.y1b3{bottom:473.329748px;}
.y237{bottom:478.600940px;}
.y1ca{bottom:480.302409px;}
.y4d{bottom:482.599067px;}
.y9d{bottom:482.600720px;}
.y294{bottom:482.692006px;}
.y16{bottom:483.114653px;}
.y1cb{bottom:485.489700px;}
.y14b{bottom:489.911569px;}
.y2cb{bottom:490.167346px;}
.y21d{bottom:491.102728px;}
.ycb{bottom:491.104900px;}
.yf1{bottom:491.109383px;}
.y1b2{bottom:491.272888px;}
.y293{bottom:494.683107px;}
.y1c9{bottom:498.245550px;}
.y15{bottom:498.846451px;}
.y4c{bottom:500.542208px;}
.y9c{bottom:500.543861px;}
.y2c9{bottom:502.157027px;}
.y2ca{bottom:502.157400px;}
.y236{bottom:505.473061px;}
.y292{bottom:506.674207px;}
.y14a{bottom:507.854709px;}
.y21c{bottom:509.045869px;}
.yca{bottom:509.048040px;}
.yf0{bottom:509.052523px;}
.y1b1{bottom:509.216029px;}
.y217{bottom:510.122100px;}
.y2c8{bottom:514.062350px;}
.y14{bottom:514.493144px;}
.y4b{bottom:518.400169px;}
.y9b{bottom:518.401822px;}
.y291{bottom:518.579530px;}
.y149{bottom:525.797850px;}
.y2c7{bottom:526.053450px;}
.y2c6{bottom:526.061481px;}
.y21b{bottom:526.989009px;}
.yc9{bottom:526.991181px;}
.yef{bottom:526.995664px;}
.y13{bottom:530.224943px;}
.y290{bottom:530.570630px;}
.y1b0{bottom:536.088150px;}
.y4a{bottom:536.343309px;}
.y235{bottom:536.852263px;}
.y2c5{bottom:538.051535px;}
.y28f{bottom:542.475953px;}
.y21a{bottom:544.932150px;}
.yc8{bottom:544.934322px;}
.yee{bottom:544.938805px;}
.y148{bottom:545.018082px;}
.y9a{bottom:545.359123px;}
.y12{bottom:545.871636px;}
.y2c4{bottom:549.956858px;}
.y1e6{bottom:551.225582px;}
.y49{bottom:554.286450px;}
.y47{bottom:554.287695px;}
.y28e{bottom:554.466007px;}
.y234{bottom:554.795403px;}
.y218{bottom:555.740100px;}
.y48{bottom:559.558950px;}
.y11{bottom:561.603435px;}
.yc7{bottom:562.877462px;}
.yed{bottom:562.881946px;}
.y147{bottom:562.961222px;}
.y28d{bottom:566.456061px;}
.y1e5{bottom:567.722700px;}
.y46{bottom:572.230836px;}
.y2c3{bottom:572.407612px;}
.y233{bottom:572.738544px;}
.y10{bottom:577.250128px;}
.y28c{bottom:578.361384px;}
.yc6{bottom:580.820603px;}
.yec{bottom:580.825086px;}
.y1ae{bottom:581.244767px;}
.y99{bottom:581.245404px;}
.y146{bottom:581.414982px;}
.y2c2{bottom:584.312935px;}
.y1af{bottom:586.431300px;}
.y45{bottom:590.173977px;}
.y28b{bottom:590.352484px;}
.y1fd{bottom:590.589900px;}
.y1fb{bottom:590.591067px;}
.y232{bottom:590.681685px;}
.yf{bottom:592.981926px;}
.y25e{bottom:593.234550px;}
.y2c1{bottom:596.302989px;}
.yc5{bottom:598.678564px;}
.yeb{bottom:598.683047px;}
.y1ad{bottom:599.102728px;}
.y98{bottom:599.103365px;}
.y145{bottom:599.358122px;}
.y28a{bottom:602.257807px;}
.y20a{bottom:606.138750px;}
.y44{bottom:608.117117px;}
.y2c0{bottom:608.293044px;}
.y25d{bottom:614.239654px;}
.y289{bottom:614.248908px;}
.yc4{bottom:616.621704px;}
.yea{bottom:616.626188px;}
.ye{bottom:616.877493px;}
.y1ac{bottom:617.045869px;}
.y97{bottom:617.046506px;}
.y144{bottom:617.811722px;}
.y43{bottom:626.060258px;}
.y288{bottom:626.154230px;}
.y2bf{bottom:630.658020px;}
.y25c{bottom:631.077196px;}
.y262{bottom:631.502704px;}
.yd{bottom:632.524186px;}
.yc3{bottom:634.564845px;}
.ye9{bottom:634.569328px;}
.y1ab{bottom:634.989009px;}
.y96{bottom:634.989646px;}
.y143{bottom:636.264009px;}
.y287{bottom:638.144285px;}
.y2be{bottom:642.649121px;}
.y42{bottom:644.003399px;}
.y25b{bottom:647.830007px;}
.y261{bottom:648.340246px;}
.y286{bottom:650.134339px;}
.yc2{bottom:652.507986px;}
.ye8{bottom:652.512469px;}
.y1aa{bottom:652.932150px;}
.y95{bottom:652.932787px;}
.y1a8{bottom:652.933077px;}
.y142{bottom:654.207150px;}
.y2bd{bottom:654.554443px;}
.yc{bottom:656.504858px;}
.y1a9{bottom:658.204500px;}
.y41{bottom:661.861359px;}
.y285{bottom:662.039662px;}
.y259{bottom:664.667550px;}
.y260{bottom:665.093057px;}
.y2bc{bottom:666.545544px;}
.yc1{bottom:670.451127px;}
.ye7{bottom:670.455610px;}
.y94{bottom:670.875928px;}
.y1a7{bottom:670.876217px;}
.yb{bottom:672.151551px;}
.y20b{bottom:672.738450px;}
.y141{bottom:673.426809px;}
.y284{bottom:674.029716px;}
.y2bb{bottom:678.450866px;}
.y40{bottom:679.804500px;}
.y25f{bottom:681.930600px;}
.y25a{bottom:681.930843px;}
.y283{bottom:685.935039px;}
.ya{bottom:687.883350px;}
.yc0{bottom:688.394267px;}
.ye6{bottom:688.398750px;}
.y93{bottom:688.819069px;}
.y1a6{bottom:688.819358px;}
.y2ba{bottom:690.440921px;}
.y13b{bottom:691.369950px;}
.y13a{bottom:691.370049px;}
.y206{bottom:697.663800px;}
.y3f{bottom:697.747800px;}
.y3d{bottom:697.749195px;}
.y282{bottom:697.925093px;}
.y258{bottom:699.619232px;}
.y20c{bottom:700.109250px;}
.y2b9{bottom:702.430975px;}
.y3e{bottom:703.020300px;}
.y207{bottom:704.440800px;}
.ybf{bottom:706.337408px;}
.ye5{bottom:706.341891px;}
.y92{bottom:706.762209px;}
.y1a5{bottom:706.762499px;}
.y281{bottom:709.915147px;}
.y9{bottom:711.099000px;}
.y2b8{bottom:714.336298px;}
.y3c{bottom:715.692336px;}
.y257{bottom:716.116350px;}
.y139{bottom:718.327350px;}
.y280{bottom:721.820470px;}
.ybe{bottom:724.280549px;}
.ye4{bottom:724.285032px;}
.y91{bottom:724.705350px;}
.y1a4{bottom:724.705640px;}
.y8e{bottom:724.705958px;}
.y13f{bottom:726.320743px;}
.y134{bottom:726.321162px;}
.y20d{bottom:727.480050px;}
.y131{bottom:727.511528px;}
.y2b7{bottom:727.772021px;}
.y8f{bottom:729.892800px;}
.y90{bottom:731.338350px;}
.y140{bottom:731.678131px;}
.y130{bottom:731.678550px;}
.y3b{bottom:733.635477px;}
.y27f{bottom:733.810524px;}
.y13e{bottom:735.164543px;}
.y133{bottom:735.164962px;}
.ybd{bottom:742.138509px;}
.ye3{bottom:742.142992px;}
.y1a3{bottom:742.563600px;}
.y8d{bottom:742.563919px;}
.y13d{bottom:744.008343px;}
.y132{bottom:744.008762px;}
.y136{bottom:744.349483px;}
.y138{bottom:745.029750px;}
.y27e{bottom:745.715847px;}
.y3a{bottom:751.578617px;}
.y20e{bottom:754.852050px;}
.y27d{bottom:757.705901px;}
.y2b6{bottom:757.706360px;}
.y256{bottom:758.551050px;}
.y7{bottom:759.911059px;}
.ybc{bottom:760.081650px;}
.ye2{bottom:760.086133px;}
.y8c{bottom:760.507059px;}
.y8{bottom:767.224950px;}
.y39{bottom:769.521758px;}
.y27c{bottom:769.611224px;}
.y2b5{bottom:769.611683px;}
.y13c{bottom:770.200517px;}
.y135{bottom:771.306784px;}
.y137{bottom:771.901551px;}
.y8b{bottom:778.450200px;}
.y89{bottom:778.450519px;}
.y1a2{bottom:778.451286px;}
.y5{bottom:779.385750px;}
.y24f{bottom:781.256400px;}
.y27b{bottom:781.602324px;}
.y2b4{bottom:781.602783px;}
.y20f{bottom:782.222850px;}
.y8a{bottom:783.722700px;}
.y6{bottom:786.699000px;}
.y38{bottom:787.464899px;}
.y27a{bottom:793.592379px;}
.y2b3{bottom:793.592837px;}
.y88{bottom:796.393659px;}
.y1a1{bottom:796.394427px;}
.y255{bottom:799.808700px;}
.y37{bottom:805.322859px;}
.y279{bottom:805.497701px;}
.y2b2{bottom:805.498160px;}
.y210{bottom:809.593650px;}
.y254{bottom:810.957900px;}
.y4{bottom:813.742372px;}
.y87{bottom:814.336800px;}
.y84{bottom:814.337278px;}
.y1a0{bottom:814.337567px;}
.y108{bottom:815.442300px;}
.y278{bottom:817.487756px;}
.y2b1{bottom:817.488214px;}
.y85{bottom:819.524250px;}
.y86{bottom:820.969800px;}
.y36{bottom:823.266000px;}
.y34{bottom:823.266478px;}
.y24e{bottom:826.592250px;}
.y35{bottom:828.538350px;}
.y277{bottom:829.393078px;}
.y2b0{bottom:829.393537px;}
.y83{bottom:832.280419px;}
.y19f{bottom:832.280708px;}
.y33{bottom:841.209619px;}
.y276{bottom:841.383133px;}
.y2af{bottom:841.383591px;}
.y3{bottom:843.675154px;}
.y1fa{bottom:845.791050px;}
.y82{bottom:850.223559px;}
.y19e{bottom:850.223849px;}
.y275{bottom:853.373187px;}
.y2ae{bottom:853.373646px;}
.y32{bottom:859.152759px;}
.y1fe{bottom:861.342900px;}
.y274{bottom:865.278510px;}
.y2ad{bottom:865.278968px;}
.y81{bottom:868.166700px;}
.y7f{bottom:868.166990px;}
.y250{bottom:873.293100px;}
.y80{bottom:873.354150px;}
.y2{bottom:873.524250px;}
.y31{bottom:877.095900px;}
.y273{bottom:877.268564px;}
.y2ac{bottom:877.269023px;}
.y19d{bottom:886.023062px;}
.y7e{bottom:886.024950px;}
.y7b{bottom:886.025109px;}
.y272{bottom:889.173887px;}
.y2ab{bottom:889.174345px;}
.y7c{bottom:891.297300px;}
.y7d{bottom:892.743000px;}
.y271{bottom:901.163941px;}
.y2aa{bottom:901.164400px;}
.y19c{bottom:903.966203px;}
.y7a{bottom:903.968250px;}
.y78{bottom:903.968728px;}
.y79{bottom:909.240750px;}
.y1{bottom:912.387150px;}
.y270{bottom:913.069264px;}
.y2a9{bottom:913.069722px;}
.y19b{bottom:921.909344px;}
.y77{bottom:921.911869px;}
.y26f{bottom:925.059318px;}
.y2a8{bottom:925.059777px;}
.y1ff{bottom:927.942600px;}
.yb9{bottom:932.372296px;}
.y251{bottom:935.631900px;}
.y26e{bottom:937.050418px;}
.y2a7{bottom:937.050877px;}
.y19a{bottom:939.852485px;}
.y76{bottom:939.855009px;}
.y26d{bottom:948.955741px;}
.y2a6{bottom:948.956200px;}
.yb8{bottom:950.315437px;}
.y200{bottom:950.752200px;}
.y208{bottom:952.869150px;}
.y199{bottom:957.795625px;}
.y75{bottom:957.798150px;}
.y72{bottom:957.798469px;}
.y209{bottom:959.646150px;}
.y26c{bottom:960.945795px;}
.y2a5{bottom:960.946254px;}
.y73{bottom:962.985600px;}
.y74{bottom:964.431300px;}
.yb7{bottom:968.258578px;}
.y26b{bottom:972.851118px;}
.y2a4{bottom:972.851577px;}
.y201{bottom:973.561800px;}
.y198{bottom:975.738766px;}
.y71{bottom:975.741609px;}
.y26a{bottom:984.841172px;}
.y2a3{bottom:984.842677px;}
.yb6{bottom:986.201719px;}
.y197{bottom:993.681907px;}
.y70{bottom:993.684750px;}
.y6d{bottom:993.685667px;}
.y202{bottom:996.371400px;}
.y269{bottom:996.832273px;}
.y2a2{bottom:996.833778px;}
.y252{bottom:997.970700px;}
.y6e{bottom:998.872200px;}
.y6f{bottom:1000.317750px;}
.yb5{bottom:1004.144859px;}
.y268{bottom:1008.737596px;}
.y2a1{bottom:1008.739100px;}
.y196{bottom:1011.625047px;}
.y6c{bottom:1011.628808px;}
.y203{bottom:1019.178600px;}
.y267{bottom:1020.727650px;}
.y2a0{bottom:1020.729155px;}
.yb4{bottom:1022.088000px;}
.y195{bottom:1029.483008px;}
.y6b{bottom:1029.486769px;}
.y266{bottom:1032.632973px;}
.y29f{bottom:1032.634477px;}
.y204{bottom:1041.988200px;}
.yb3{bottom:1044.283200px;}
.y265{bottom:1044.623027px;}
.y29e{bottom:1044.624532px;}
.y194{bottom:1047.426149px;}
.y6a{bottom:1047.429909px;}
.y264{bottom:1056.528350px;}
.y29d{bottom:1056.529854px;}
.y253{bottom:1060.309500px;}
.y205{bottom:1064.797800px;}
.y193{bottom:1065.369289px;}
.y69{bottom:1065.373050px;}
.y263{bottom:1068.519450px;}
.y29c{bottom:1068.520955px;}
.yba{bottom:1119.032850px;}
.h19{height:2.391024px;}
.h2d{height:13.640753px;}
.hb{height:20.416212px;}
.h8{height:24.419837px;}
.h2c{height:26.254058px;}
.h9{height:27.053275px;}
.h2b{height:30.168659px;}
.h22{height:30.419716px;}
.he{height:30.516329px;}
.ha{height:30.628930px;}
.h5{height:31.602295px;}
.h26{height:31.826990px;}
.h29{height:33.600000px;}
.hc{height:34.048694px;}
.h12{height:34.479085px;}
.hf{height:35.901246px;}
.h7{height:36.633433px;}
.h2a{height:37.700363px;}
.h27{height:38.340000px;}
.h28{height:42.599574px;}
.h10{height:43.098208px;}
.h1b{height:43.456861px;}
.h1a{height:44.831700px;}
.h4{height:47.408634px;}
.h2{height:50.713534px;}
.h6{height:50.856995px;}
.h1e{height:53.854289px;}
.h1d{height:53.854326px;}
.h13{height:53.854907px;}
.hd{height:53.857816px;}
.h20{height:53.858177px;}
.h1c{height:53.859578px;}
.h14{height:53.860304px;}
.h24{height:55.239424px;}
.h15{height:55.250462px;}
.h17{height:55.251316px;}
.h21{height:55.859799px;}
.h11{height:56.028189px;}
.h23{height:56.213700px;}
.h25{height:60.124950px;}
.h16{height:70.525905px;}
.h1f{height:70.526085px;}
.h3{height:83.686260px;}
.h18{height:173.148655px;}
.h0{height:1174.479000px;}
.h1{height:1174.500000px;}
.w0{width:877.435500px;}
.w1{width:877.500000px;}
.x0{left:0.000000px;}
.xe{left:64.289700px;}
.x13{left:68.201550px;}
.x84{left:69.562200px;}
.x81{left:73.218900px;}
.x38{left:82.233000px;}
.x18{left:85.209450px;}
.x5{left:90.651900px;}
.x16{left:99.666150px;}
.x14{left:111.061350px;}
.x15{left:127.303950px;}
.x3f{left:131.640900px;}
.x76{left:139.719600px;}
.x74{left:142.515450px;}
.x1d{left:148.223550px;}
.x3{left:154.942131px;}
.x75{left:157.515300px;}
.x11{left:161.659800px;}
.x2{left:165.486600px;}
.x12{left:168.973200px;}
.x77{left:171.354300px;}
.x20{left:184.960500px;}
.x5c{left:196.696050px;}
.x78{left:200.267700px;}
.x61{left:208.813950px;}
.x5d{left:216.084900px;}
.x79{left:219.316500px;}
.x1b{left:221.357400px;}
.x7d{left:224.748450px;}
.x62{left:228.036750px;}
.x7f{left:232.375950px;}
.x1c{left:247.974750px;}
.x43{left:250.271903px;}
.x40{left:251.294417px;}
.x63{left:266.482350px;}
.x47{left:270.425236px;}
.x82{left:274.763115px;}
.x6{left:279.439350px;}
.x58{left:285.392100px;}
.x85{left:286.752750px;}
.x1e{left:289.218750px;}
.x7{left:290.749500px;}
.x86{left:292.280250px;}
.x59{left:296.617200px;}
.x5a{left:299.423550px;}
.x49{left:303.588678px;}
.x1f{left:305.631450px;}
.x1{left:310.733850px;}
.xc{left:312.180120px;}
.x5b{left:314.475450px;}
.x48{left:319.662886px;}
.x41{left:321.113812px;}
.x80{left:323.425950px;}
.x4a{left:324.850336px;}
.x57{left:329.697600px;}
.x4b{left:333.099481px;}
.x64{left:343.373550px;}
.x4c{left:348.832419px;}
.x4{left:354.614559px;}
.x4d{left:361.502250px;}
.x65{left:362.596350px;}
.x4e{left:378.679597px;}
.x17{left:379.955850px;}
.x66{left:381.819150px;}
.x19{left:384.803100px;}
.x44{left:389.824019px;}
.x42{left:390.846533px;}
.x4f{left:394.412535px;}
.x67{left:401.041950px;}
.x1a{left:408.954150px;}
.x45{left:411.590574px;}
.x60{left:412.608150px;}
.x3d{left:413.971500px;}
.x68{left:420.264750px;}
.x46{left:421.369862px;}
.x7e{left:438.188100px;}
.x69{left:439.487550px;}
.x22{left:452.068884px;}
.x7c{left:457.341600px;}
.x6a{left:458.710350px;}
.x83{left:460.998300px;}
.x7a{left:466.439291px;}
.x21{left:472.988850px;}
.x23{left:478.601400px;}
.x2a{left:481.833000px;}
.x7b{left:483.872845px;}
.x27{left:486.340050px;}
.x24{left:489.826650px;}
.x25{left:492.633000px;}
.x31{left:495.439200px;}
.x28{left:497.565150px;}
.x29{left:500.371500px;}
.x8{left:504.198300px;}
.x26{left:507.429750px;}
.xf{left:509.725800px;}
.x2c{left:510.831300px;}
.x2b{left:513.892800px;}
.x9{left:516.529050px;}
.x10{left:521.886450px;}
.x2d{left:524.862900px;}
.x32{left:529.114800px;}
.x35{left:532.856550px;}
.x36{left:535.662900px;}
.x53{left:538.894350px;}
.x2e{left:545.017200px;}
.x54{left:547.483350px;}
.x37{left:553.010850px;}
.x6b{left:554.824350px;}
.xd{left:559.473750px;}
.x6c{left:574.047150px;}
.x55{left:576.821850px;}
.x33{left:580.563600px;}
.x56{left:591.703800px;}
.x5e{left:593.234550px;}
.x34{left:598.081800px;}
.x5f{left:609.817200px;}
.x6d{left:612.493950px;}
.x51{left:617.980950px;}
.x52{left:626.569950px;}
.x6e{left:631.716750px;}
.x89{left:636.094350px;}
.x8a{left:644.683200px;}
.x6f{left:650.940750px;}
.x70{left:670.163550px;}
.x71{left:689.387550px;}
.x2f{left:690.434400px;}
.x72{left:708.611550px;}
.x30{left:722.919450px;}
.x73{left:727.834500px;}
.x87{left:735.930450px;}
.x3e{left:737.376150px;}
.x88{left:744.944700px;}
.xa{left:748.091100px;}
.x39{left:759.146250px;}
.xb{left:760.421850px;}
.x3a{left:764.758800px;}
.x50{left:771.902100px;}
.x3b{left:774.878550px;}
.x3c{left:780.491100px;}
@media print{
.v2{vertical-align:-15.117867pt;}
.v8{vertical-align:-12.277333pt;}
.v1{vertical-align:-8.166319pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:14.816079pt;}
.v6{vertical-align:19.044573pt;}
.v3{vertical-align:22.071775pt;}
.v7{vertical-align:33.864773pt;}
.v5{vertical-align:136.968481pt;}
.ls85{letter-spacing:-2.016000pt;}
.ls14{letter-spacing:-0.791695pt;}
.ls17{letter-spacing:-0.781068pt;}
.ls13{letter-spacing:-0.701367pt;}
.ls15{letter-spacing:-0.664173pt;}
.ls16{letter-spacing:-0.653547pt;}
.ls2{letter-spacing:0.000000pt;}
.ls86{letter-spacing:0.004800pt;}
.ls63{letter-spacing:0.008766pt;}
.ls7b{letter-spacing:0.010206pt;}
.ls7a{letter-spacing:0.010258pt;}
.ls37{letter-spacing:0.010627pt;}
.ls61{letter-spacing:0.010674pt;}
.ls60{letter-spacing:0.011658pt;}
.ls84{letter-spacing:0.014400pt;}
.ls3c{letter-spacing:0.020505pt;}
.ls4{letter-spacing:0.021254pt;}
.ls3f{letter-spacing:0.027843pt;}
.ls89{letter-spacing:0.029755pt;}
.ls5e{letter-spacing:0.029878pt;}
.ls48{letter-spacing:0.031158pt;}
.ls2d{letter-spacing:0.033723pt;}
.ls40{letter-spacing:0.035416pt;}
.ls4a{letter-spacing:0.037455pt;}
.ls3d{letter-spacing:0.041067pt;}
.ls7e{letter-spacing:0.041330pt;}
.ls26{letter-spacing:0.041916pt;}
.ls45{letter-spacing:0.042241pt;}
.ls83{letter-spacing:0.042507pt;}
.ls74{letter-spacing:0.042561pt;}
.ls43{letter-spacing:0.042610pt;}
.ls2f{letter-spacing:0.042732pt;}
.ls22{letter-spacing:0.044807pt;}
.ls3e{letter-spacing:0.053134pt;}
.ls87{letter-spacing:0.057600pt;}
.ls4f{letter-spacing:0.063761pt;}
.ls8f{letter-spacing:0.074387pt;}
.ls1{letter-spacing:0.094844pt;}
.ls0{letter-spacing:0.099360pt;}
.ls4c{letter-spacing:0.102279pt;}
.ls28{letter-spacing:0.102812pt;}
.ls2e{letter-spacing:0.103275pt;}
.ls24{letter-spacing:0.103640pt;}
.ls21{letter-spacing:0.106268pt;}
.ls51{letter-spacing:0.127521pt;}
.ls2a{letter-spacing:0.143461pt;}
.ls52{letter-spacing:0.239102pt;}
.ls3{letter-spacing:0.302863pt;}
.ls1e{letter-spacing:0.313490pt;}
.ls6{letter-spacing:0.324117pt;}
.ls59{letter-spacing:0.331215pt;}
.ls92{letter-spacing:0.375655pt;}
.ls91{letter-spacing:0.386813pt;}
.ls93{letter-spacing:0.453762pt;}
.lsd{letter-spacing:0.467578pt;}
.ls18{letter-spacing:0.472891pt;}
.ls5{letter-spacing:0.520712pt;}
.ls12{letter-spacing:0.531339pt;}
.ls20{letter-spacing:0.541965pt;}
.lse{letter-spacing:0.547279pt;}
.lsf{letter-spacing:0.552592pt;}
.ls9{letter-spacing:0.557906pt;}
.ls1f{letter-spacing:0.563219pt;}
.ls8{letter-spacing:0.568532pt;}
.ls1d{letter-spacing:0.573846pt;}
.lsb{letter-spacing:0.579159pt;}
.ls11{letter-spacing:0.584473pt;}
.lsa{letter-spacing:0.589786pt;}
.ls1b{letter-spacing:0.595099pt;}
.ls10{letter-spacing:0.600413pt;}
.lsc{letter-spacing:0.605726pt;}
.ls1a{letter-spacing:0.717307pt;}
.ls19{letter-spacing:0.727934pt;}
.ls1c{letter-spacing:0.749188pt;}
.ls8a{letter-spacing:0.948437pt;}
.ls8c{letter-spacing:0.955876pt;}
.ls8b{letter-spacing:0.967034pt;}
.ls8d{letter-spacing:0.978192pt;}
.ls90{letter-spacing:1.056298pt;}
.ls8e{letter-spacing:1.074895pt;}
.ls7c{letter-spacing:2.124276pt;}
.ls6f{letter-spacing:2.126123pt;}
.ls6d{letter-spacing:2.128250pt;}
.ls6a{letter-spacing:2.426836pt;}
.ls71{letter-spacing:2.428529pt;}
.ls77{letter-spacing:2.429406pt;}
.ls76{letter-spacing:2.433259pt;}
.ls4b{letter-spacing:2.612194pt;}
.ls35{letter-spacing:2.614186pt;}
.ls5b{letter-spacing:2.619500pt;}
.ls5f{letter-spacing:2.743729pt;}
.ls23{letter-spacing:2.744262pt;}
.ls6e{letter-spacing:2.744315pt;}
.ls44{letter-spacing:2.744799pt;}
.ls62{letter-spacing:2.745332pt;}
.ls53{letter-spacing:2.762961pt;}
.ls27{letter-spacing:2.914594pt;}
.ls39{letter-spacing:2.917049pt;}
.ls33{letter-spacing:3.065824pt;}
.ls36{letter-spacing:3.586536pt;}
.ls41{letter-spacing:3.878396pt;}
.ls6b{letter-spacing:3.878445pt;}
.ls3a{letter-spacing:3.889399pt;}
.ls3b{letter-spacing:5.334640pt;}
.ls38{letter-spacing:5.494042pt;}
.ls55{letter-spacing:5.796905pt;}
.ls79{letter-spacing:5.938061pt;}
.ls2b{letter-spacing:6.240461pt;}
.ls34{letter-spacing:8.937116pt;}
.ls31{letter-spacing:11.354707pt;}
.ls82{letter-spacing:12.592726pt;}
.ls78{letter-spacing:13.539904pt;}
.ls5a{letter-spacing:15.613261pt;}
.ls75{letter-spacing:16.047729pt;}
.ls69{letter-spacing:18.129275pt;}
.ls66{letter-spacing:18.139902pt;}
.ls6c{letter-spacing:18.161156pt;}
.ls58{letter-spacing:18.336497pt;}
.ls7f{letter-spacing:19.078199pt;}
.ls68{letter-spacing:19.664844pt;}
.ls65{letter-spacing:20.270570pt;}
.ls81{letter-spacing:21.487336pt;}
.ls70{letter-spacing:21.535712pt;}
.ls54{letter-spacing:21.790199pt;}
.ls50{letter-spacing:21.875213pt;}
.ls57{letter-spacing:22.093062pt;}
.ls4e{letter-spacing:22.241837pt;}
.ls73{letter-spacing:22.518133pt;}
.ls7d{letter-spacing:23.217461pt;}
.ls2c{letter-spacing:23.447975pt;}
.ls67{letter-spacing:23.873046pt;}
.ls80{letter-spacing:23.904927pt;}
.ls42{letter-spacing:24.207790pt;}
.ls72{letter-spacing:24.427061pt;}
.ls4d{letter-spacing:24.684727pt;}
.ls64{letter-spacing:25.163396pt;}
.ls25{letter-spacing:26.025862pt;}
.ls29{letter-spacing:26.196194pt;}
.ls30{letter-spacing:26.630662pt;}
.ls7{letter-spacing:26.806036pt;}
.ls56{letter-spacing:27.411762pt;}
.ls46{letter-spacing:27.583130pt;}
.ls32{letter-spacing:28.963271pt;}
.ls47{letter-spacing:31.487129pt;}
.ls5c{letter-spacing:34.489193pt;}
.ls5d{letter-spacing:34.521073pt;}
.ls49{letter-spacing:36.003462pt;}
.ls88{letter-spacing:414.567304pt;}
.wse6{word-spacing:-26.859170pt;}
.ws132{word-spacing:-23.958060pt;}
.ws13e{word-spacing:-21.540470pt;}
.ws1e5{word-spacing:-9.753600pt;}
.ws1bb{word-spacing:-7.680000pt;}
.ws213{word-spacing:-1.093492pt;}
.wsfa{word-spacing:-0.653547pt;}
.ws5c{word-spacing:-0.053134pt;}
.ws1f{word-spacing:-0.045164pt;}
.ws1ba{word-spacing:-0.042667pt;}
.ws1e3{word-spacing:-0.037194pt;}
.ws1ef{word-spacing:-0.031881pt;}
.ws1be{word-spacing:-0.014400pt;}
.ws1f6{word-spacing:-0.004800pt;}
.ws2f{word-spacing:0.000000pt;}
.ws1e7{word-spacing:7.897937pt;}
.ws22e{word-spacing:8.695864pt;}
.ws226{word-spacing:8.755373pt;}
.ws216{word-spacing:9.075238pt;}
.ws22d{word-spacing:9.108713pt;}
.ws2c{word-spacing:9.119871pt;}
.ws1fb{word-spacing:9.123590pt;}
.ws2a{word-spacing:9.242610pt;}
.ws2b{word-spacing:9.421139pt;}
.ws241{word-spacing:9.741004pt;}
.ws1f9{word-spacing:9.800514pt;}
.ws215{word-spacing:9.908375pt;}
.ws1a4{word-spacing:10.155097pt;}
.ws1f0{word-spacing:10.243387pt;}
.ws1a5{word-spacing:10.248615pt;}
.ws1ee{word-spacing:10.405980pt;}
.ws1d{word-spacing:10.450888pt;}
.wse{word-spacing:10.735419pt;}
.wsf{word-spacing:10.767034pt;}
.ws23f{word-spacing:10.793583pt;}
.ws20b{word-spacing:10.901444pt;}
.ws118{word-spacing:11.001001pt;}
.ws1e0{word-spacing:11.009306pt;}
.ws23e{word-spacing:11.020464pt;}
.ws23d{word-spacing:11.042780pt;}
.wsda{word-spacing:11.184679pt;}
.ws232{word-spacing:11.254783pt;}
.ws21f{word-spacing:11.336609pt;}
.ws9{word-spacing:11.602563pt;}
.ws1e4{word-spacing:11.831284pt;}
.ws218{word-spacing:11.961462pt;}
.ws1f8{word-spacing:11.980059pt;}
.ws1ec{word-spacing:12.017252pt;}
.ws21b{word-spacing:12.024691pt;}
.ws228{word-spacing:12.050726pt;}
.ws208{word-spacing:12.069323pt;}
.ws1fd{word-spacing:12.073043pt;}
.ws207{word-spacing:12.076762pt;}
.ws1e1{word-spacing:12.080481pt;}
.ws214{word-spacing:12.087920pt;}
.ws205{word-spacing:12.110236pt;}
.ws23a{word-spacing:12.125114pt;}
.ws227{word-spacing:12.132552pt;}
.ws1df{word-spacing:12.136272pt;}
.ws229{word-spacing:12.139991pt;}
.ws206{word-spacing:12.158588pt;}
.ws29{word-spacing:12.162307pt;}
.ws22f{word-spacing:12.173465pt;}
.ws106{word-spacing:12.177185pt;}
.ws20c{word-spacing:12.180904pt;}
.ws1b3{word-spacing:12.183596pt;}
.ws203{word-spacing:12.195781pt;}
.ws185{word-spacing:12.204849pt;}
.ws225{word-spacing:12.210659pt;}
.ws23c{word-spacing:12.218098pt;}
.ws230{word-spacing:12.225536pt;}
.ws21c{word-spacing:12.229256pt;}
.ws217{word-spacing:12.240414pt;}
.ws2e{word-spacing:12.244133pt;}
.ws1fc{word-spacing:12.255291pt;}
.ws200{word-spacing:12.259011pt;}
.ws236{word-spacing:12.262730pt;}
.ws204{word-spacing:12.266449pt;}
.ws233{word-spacing:12.270169pt;}
.ws1bc{word-spacing:12.271983pt;}
.ws235{word-spacing:12.273888pt;}
.ws231{word-spacing:12.277607pt;}
.ws209{word-spacing:12.288765pt;}
.ws1b2{word-spacing:12.289863pt;}
.ws1ff{word-spacing:12.299924pt;}
.ws202{word-spacing:12.303643pt;}
.ws1ed{word-spacing:12.311082pt;}
.ws1f5{word-spacing:12.314801pt;}
.ws1e2{word-spacing:12.325959pt;}
.ws1bd{word-spacing:12.327243pt;}
.ws21e{word-spacing:12.344556pt;}
.ws234{word-spacing:12.348275pt;}
.ws240{word-spacing:12.370591pt;}
.ws237{word-spacing:12.374311pt;}
.ws20a{word-spacing:12.385469pt;}
.ws222{word-spacing:12.418943pt;}
.ws21d{word-spacing:12.426382pt;}
.ws1ea{word-spacing:12.430101pt;}
.ws220{word-spacing:12.441259pt;}
.ws1fa{word-spacing:12.467295pt;}
.ws1b1{word-spacing:12.486459pt;}
.ws224{word-spacing:12.493330pt;}
.ws223{word-spacing:12.515646pt;}
.ws201{word-spacing:12.523085pt;}
.ws17a{word-spacing:12.523652pt;}
.ws1eb{word-spacing:12.530524pt;}
.ws238{word-spacing:12.549121pt;}
.ws23b{word-spacing:12.556559pt;}
.ws12d{word-spacing:12.573788pt;}
.ws1de{word-spacing:12.630947pt;}
.ws239{word-spacing:12.705334pt;}
.ws12e{word-spacing:12.705561pt;}
.ws1f4{word-spacing:12.753685pt;}
.ws122{word-spacing:12.789322pt;}
.ws120{word-spacing:12.799948pt;}
.ws65{word-spacing:12.831829pt;}
.ws55{word-spacing:12.895589pt;}
.ws121{word-spacing:12.916843pt;}
.ws139{word-spacing:12.969977pt;}
.ws173{word-spacing:13.001857pt;}
.ws20f{word-spacing:13.032637pt;}
.ws1a2{word-spacing:13.041373pt;}
.ws172{word-spacing:13.070931pt;}
.ws13a{word-spacing:13.092185pt;}
.ws7{word-spacing:13.115548pt;}
.ws81{word-spacing:13.145319pt;}
.ws171{word-spacing:13.166572pt;}
.ws8{word-spacing:13.219425pt;}
.ws1a3{word-spacing:13.270914pt;}
.ws9f{word-spacing:13.272840pt;}
.wsd7{word-spacing:13.341914pt;}
.ws183{word-spacing:13.363167pt;}
.wsc9{word-spacing:13.395048pt;}
.ws19c{word-spacing:13.416301pt;}
.ws187{word-spacing:13.448182pt;}
.ws11a{word-spacing:13.470701pt;}
.wsc{word-spacing:13.490407pt;}
.ws153{word-spacing:13.501316pt;}
.ws154{word-spacing:13.517256pt;}
.ws1e9{word-spacing:13.534462pt;}
.ws12f{word-spacing:13.547215pt;}
.ws16f{word-spacing:13.554449pt;}
.ws1e8{word-spacing:13.568468pt;}
.ws18f{word-spacing:13.572719pt;}
.ws105{word-spacing:13.598224pt;}
.ws1f2{word-spacing:13.602475pt;}
.ws9e{word-spacing:13.610976pt;}
.ws117{word-spacing:13.615227pt;}
.wsde{word-spacing:13.634150pt;}
.ws103{word-spacing:13.644982pt;}
.wsb{word-spacing:13.648480pt;}
.ws184{word-spacing:13.666031pt;}
.ws56{word-spacing:13.697911pt;}
.ws7e{word-spacing:13.719164pt;}
.ws104{word-spacing:13.721496pt;}
.ws186{word-spacing:13.740418pt;}
.ws9d{word-spacing:13.755503pt;}
.ws102{word-spacing:13.768255pt;}
.ws101{word-spacing:13.781007pt;}
.ws166{word-spacing:13.798865pt;}
.wsdc{word-spacing:13.825432pt;}
.ws1a9{word-spacing:13.873253pt;}
.ws1a6{word-spacing:13.874524pt;}
.ws119{word-spacing:13.917032pt;}
.ws165{word-spacing:13.974207pt;}
.wsc5{word-spacing:13.995460pt;}
.ws7b{word-spacing:14.022027pt;}
.ws21a{word-spacing:14.059181pt;}
.ws160{word-spacing:14.059221pt;}
.ws161{word-spacing:14.122982pt;}
.ws1c{word-spacing:14.127216pt;}
.ws114{word-spacing:14.154862pt;}
.ws1f1{word-spacing:14.176329pt;}
.ws1b{word-spacing:14.226576pt;}
.ws219{word-spacing:14.360449pt;}
.ws11b{word-spacing:14.409905pt;}
.ws147{word-spacing:14.425845pt;}
.wsa1{word-spacing:14.447098pt;}
.ws21{word-spacing:14.484009pt;}
.ws146{word-spacing:14.532113pt;}
.ws20{word-spacing:14.696279pt;}
.ws28{word-spacing:14.700795pt;}
.ws1cc{word-spacing:14.718081pt;}
.ws1a{word-spacing:14.723377pt;}
.ws148{word-spacing:14.728708pt;}
.ws1d9{word-spacing:14.781842pt;}
.ws1e{word-spacing:14.795639pt;}
.ws23{word-spacing:14.827254pt;}
.ws210{word-spacing:14.873721pt;}
.ws82{word-spacing:14.877483pt;}
.ws24{word-spacing:14.890483pt;}
.wsd{word-spacing:14.908548pt;}
.wsa{word-spacing:14.940163pt;}
.ws22{word-spacing:15.175014pt;}
.ws16a{word-spacing:15.185659pt;}
.ws16b{word-spacing:15.190972pt;}
.wsab{word-spacing:15.206913pt;}
.ws169{word-spacing:15.228166pt;}
.ws179{word-spacing:15.249420pt;}
.ws16e{word-spacing:15.260047pt;}
.wsc7{word-spacing:15.286613pt;}
.ws11f{word-spacing:15.313180pt;}
.ws1b8{word-spacing:15.366314pt;}
.wsef{word-spacing:15.493836pt;}
.ws212{word-spacing:15.539486pt;}
.ws88{word-spacing:15.616043pt;}
.ws20d{word-spacing:15.677102pt;}
.wse7{word-spacing:15.690431pt;}
.ws1d2{word-spacing:15.722311pt;}
.ws20e{word-spacing:15.770086pt;}
.ws89{word-spacing:15.770132pt;}
.ws7c{word-spacing:15.817952pt;}
.ws1d3{word-spacing:15.833892pt;}
.ws74{word-spacing:15.865773pt;}
.ws211{word-spacing:15.870509pt;}
.ws113{word-spacing:15.918906pt;}
.ws189{word-spacing:15.940160pt;}
.wsdd{word-spacing:16.062368pt;}
.wsc6{word-spacing:16.083621pt;}
.ws16{word-spacing:16.141518pt;}
.ws1cb{word-spacing:16.168636pt;}
.ws108{word-spacing:16.179262pt;}
.wse3{word-spacing:16.243023pt;}
.ws41{word-spacing:16.418365pt;}
.wsff{word-spacing:16.535259pt;}
.ws48{word-spacing:16.588393pt;}
.wsce{word-spacing:16.657467pt;}
.ws22a{word-spacing:16.666452pt;}
.ws22b{word-spacing:16.714804pt;}
.ws128{word-spacing:16.721228pt;}
.ws127{word-spacing:16.843436pt;}
.ws100{word-spacing:16.880629pt;}
.wsf9{word-spacing:16.896570pt;}
.wse4{word-spacing:16.901883pt;}
.ws99{word-spacing:16.917823pt;}
.wsf8{word-spacing:16.976270pt;}
.ws22c{word-spacing:16.986317pt;}
.ws14{word-spacing:16.990596pt;}
.ws157{word-spacing:17.050658pt;}
.ws47{word-spacing:17.130359pt;}
.wsf7{word-spacing:17.146299pt;}
.ws1bf{word-spacing:17.178179pt;}
.ws60{word-spacing:17.295074pt;}
.ws5a{word-spacing:17.326954pt;}
.ws91{word-spacing:17.348207pt;}
.ws190{word-spacing:17.369461pt;}
.ws77{word-spacing:17.380088pt;}
.ws180{word-spacing:17.396028pt;}
.ws9c{word-spacing:17.406655pt;}
.ws9a{word-spacing:17.411968pt;}
.ws9b{word-spacing:17.422595pt;}
.ws5b{word-spacing:17.433222pt;}
.ws98{word-spacing:17.443848pt;}
.ws3a{word-spacing:17.449162pt;}
.ws158{word-spacing:17.470415pt;}
.ws8b{word-spacing:17.481042pt;}
.ws1dc{word-spacing:17.502296pt;}
.wsd6{word-spacing:17.566056pt;}
.ws6a{word-spacing:17.597937pt;}
.wsbc{word-spacing:17.619190pt;}
.wsad{word-spacing:17.624504pt;}
.ws14c{word-spacing:17.629817pt;}
.ws5d{word-spacing:17.640444pt;}
.wsac{word-spacing:17.645757pt;}
.ws6d{word-spacing:17.651071pt;}
.ws1d4{word-spacing:17.656384pt;}
.ws176{word-spacing:17.667011pt;}
.ws7d{word-spacing:17.682951pt;}
.ws10a{word-spacing:17.714831pt;}
.ws1b0{word-spacing:17.741398pt;}
.wsae{word-spacing:17.752025pt;}
.ws1c2{word-spacing:17.762652pt;}
.wsee{word-spacing:17.783905pt;}
.ws19a{word-spacing:17.789219pt;}
.wsd5{word-spacing:17.826412pt;}
.ws10b{word-spacing:17.879546pt;}
.ws181{word-spacing:17.906113pt;}
.ws110{word-spacing:17.932680pt;}
.ws13f{word-spacing:17.953934pt;}
.ws14e{word-spacing:17.996441pt;}
.ws3c{word-spacing:18.033634pt;}
.ws27{word-spacing:18.056461pt;}
.ws59{word-spacing:18.097395pt;}
.ws14f{word-spacing:18.108022pt;}
.ws1db{word-spacing:18.118649pt;}
.wse2{word-spacing:18.134589pt;}
.ws4a{word-spacing:18.230230pt;}
.ws14d{word-spacing:18.235543pt;}
.ws1ae{word-spacing:18.283364pt;}
.ws68{word-spacing:18.288677pt;}
.ws4b{word-spacing:18.325871pt;}
.ws11c{word-spacing:18.336497pt;}
.ws1d7{word-spacing:18.368378pt;}
.ws38{word-spacing:18.410885pt;}
.ws199{word-spacing:18.506526pt;}
.ws51{word-spacing:18.538406pt;}
.ws52{word-spacing:18.607480pt;}
.wsd3{word-spacing:18.639360pt;}
.ws19b{word-spacing:18.692494pt;}
.ws49{word-spacing:18.703121pt;}
.ws107{word-spacing:18.724375pt;}
.wsc3{word-spacing:18.756255pt;}
.wsd9{word-spacing:18.782822pt;}
.ws15c{word-spacing:18.835956pt;}
.ws1d0{word-spacing:18.857209pt;}
.ws19{word-spacing:18.932637pt;}
.ws58{word-spacing:18.942223pt;}
.ws4{word-spacing:18.983910pt;}
.ws1b7{word-spacing:18.995357pt;}
.ws84{word-spacing:19.011297pt;}
.ws67{word-spacing:19.016611pt;}
.ws1b6{word-spacing:19.037864pt;}
.ws6c{word-spacing:19.043178pt;}
.ws5{word-spacing:19.089117pt;}
.ws6{word-spacing:19.112496pt;}
.ws1ad{word-spacing:19.138819pt;}
.ws11{word-spacing:19.140390pt;}
.wsd8{word-spacing:19.160072pt;}
.ws18{word-spacing:19.235234pt;}
.ws1b5{word-spacing:19.245087pt;}
.ws17{word-spacing:19.361692pt;}
.wsf3{word-spacing:19.377921pt;}
.wsd2{word-spacing:19.494816pt;}
.wsa8{word-spacing:19.547950pt;}
.ws18c{word-spacing:19.569203pt;}
.ws1d5{word-spacing:19.622337pt;}
.wsdf{word-spacing:19.659531pt;}
.ws18e{word-spacing:19.723291pt;}
.ws15e{word-spacing:19.744545pt;}
.wscf{word-spacing:19.755172pt;}
.wsb0{word-spacing:19.765798pt;}
.ws26{word-spacing:19.835912pt;}
.ws159{word-spacing:19.850813pt;}
.wsf1{word-spacing:19.941140pt;}
.ws7a{word-spacing:19.957080pt;}
.ws12{word-spacing:20.016567pt;}
.wsc8{word-spacing:20.058035pt;}
.ws25{word-spacing:20.093345pt;}
.ws39{word-spacing:20.190869pt;}
.wsf2{word-spacing:20.196183pt;}
.ws31{word-spacing:20.222750pt;}
.wsb5{word-spacing:20.265257pt;}
.wsb6{word-spacing:20.297137pt;}
.ws12a{word-spacing:20.298675pt;}
.ws155{word-spacing:20.350271pt;}
.ws178{word-spacing:20.483106pt;}
.ws10f{word-spacing:20.525613pt;}
.ws5f{word-spacing:20.536239pt;}
.ws32{word-spacing:20.621254pt;}
.ws12b{word-spacing:20.700954pt;}
.ws8e{word-spacing:20.775342pt;}
.wsd1{word-spacing:20.807222pt;}
.ws1c8{word-spacing:20.881610pt;}
.wsf5{word-spacing:20.908177pt;}
.ws0{word-spacing:21.053728pt;}
.wse8{word-spacing:21.131339pt;}
.ws4c{word-spacing:21.221666pt;}
.wsf6{word-spacing:21.237607pt;}
.ws3d{word-spacing:21.280114pt;}
.wsc2{word-spacing:21.311994pt;}
.ws194{word-spacing:21.359814pt;}
.wsf4{word-spacing:21.370441pt;}
.ws8f{word-spacing:21.412948pt;}
.ws13d{word-spacing:21.434202pt;}
.ws78{word-spacing:21.582977pt;}
.ws11e{word-spacing:21.662677pt;}
.ws75{word-spacing:21.726438pt;}
.ws8a{word-spacing:21.737065pt;}
.ws164{word-spacing:21.774259pt;}
.ws15{word-spacing:21.791501pt;}
.ws137{word-spacing:21.806139pt;}
.ws1ca{word-spacing:21.827392pt;}
.ws175{word-spacing:21.838019pt;}
.ws66{word-spacing:21.859273pt;}
.ws150{word-spacing:21.880526pt;}
.ws1c3{word-spacing:21.912407pt;}
.ws3b{word-spacing:21.965540pt;}
.ws87{word-spacing:22.018674pt;}
.ws1d6{word-spacing:22.082435pt;}
.ws138{word-spacing:22.109002pt;}
.wsbb{word-spacing:22.146196pt;}
.ws17d{word-spacing:22.162136pt;}
.ws111{word-spacing:22.167449pt;}
.ws71{word-spacing:22.215270pt;}
.ws17b{word-spacing:22.236523pt;}
.ws72{word-spacing:22.268404pt;}
.ws152{word-spacing:22.279030pt;}
.ws17c{word-spacing:22.289657pt;}
.ws17e{word-spacing:22.321537pt;}
.ws1c7{word-spacing:22.379985pt;}
.ws1c6{word-spacing:22.438432pt;}
.wsd4{word-spacing:22.449059pt;}
.ws151{word-spacing:22.464999pt;}
.wsa7{word-spacing:22.550013pt;}
.ws19e{word-spacing:22.650967pt;}
.ws191{word-spacing:22.677534pt;}
.ws1b4{word-spacing:22.746608pt;}
.ws92{word-spacing:22.767862pt;}
.ws14b{word-spacing:22.789115pt;}
.wseb{word-spacing:22.858189pt;}
.ws93{word-spacing:22.874130pt;}
.ws97{word-spacing:23.133106pt;}
.ws123{word-spacing:23.176993pt;}
.ws7f{word-spacing:23.447975pt;}
.ws95{word-spacing:23.479856pt;}
.ws125{word-spacing:23.532990pt;}
.ws79{word-spacing:23.676451pt;}
.ws96{word-spacing:23.729585pt;}
.ws13{word-spacing:23.756124pt;}
.ws10{word-spacing:23.760640pt;}
.ws140{word-spacing:23.782719pt;}
.ws1c1{word-spacing:23.793345pt;}
.ws141{word-spacing:23.809286pt;}
.ws126{word-spacing:23.883673pt;}
.ws133{word-spacing:23.926180pt;}
.ws1c0{word-spacing:23.947434pt;}
.ws12c{word-spacing:23.979314pt;}
.ws16d{word-spacing:24.000568pt;}
.ws4d{word-spacing:24.005881pt;}
.ws124{word-spacing:24.090895pt;}
.ws4e{word-spacing:24.133402pt;}
.ws131{word-spacing:24.154656pt;}
.ws18d{word-spacing:24.250297pt;}
.ws17f{word-spacing:24.319371pt;}
.ws8c{word-spacing:24.383131pt;}
.wsbd{word-spacing:24.478772pt;}
.ws168{word-spacing:24.638174pt;}
.ws15d{word-spacing:24.643487pt;}
.ws142{word-spacing:24.685994pt;}
.wsca{word-spacing:24.717875pt;}
.ws3f{word-spacing:24.739128pt;}
.ws14a{word-spacing:24.850709pt;}
.ws1d1{word-spacing:24.893217pt;}
.ws1ab{word-spacing:25.063245pt;}
.ws1cf{word-spacing:25.142946pt;}
.ws40{word-spacing:25.174826pt;}
.wse9{word-spacing:25.201393pt;}
.ws109{word-spacing:25.312974pt;}
.ws197{word-spacing:25.344854pt;}
.wse5{word-spacing:25.355481pt;}
.wscd{word-spacing:25.382048pt;}
.wsd0{word-spacing:25.488316pt;}
.ws1c5{word-spacing:25.562703pt;}
.ws112{word-spacing:25.791179pt;}
.ws115{word-spacing:25.844313pt;}
.wsaa{word-spacing:25.897447pt;}
.ws8d{word-spacing:25.939954pt;}
.wsb9{word-spacing:26.003714pt;}
.ws18a{word-spacing:26.030281pt;}
.ws36{word-spacing:26.168429pt;}
.ws143{word-spacing:26.200310pt;}
.ws144{word-spacing:26.216250pt;}
.ws62{word-spacing:26.306577pt;}
.ws1d8{word-spacing:26.365025pt;}
.ws145{word-spacing:26.375651pt;}
.ws10c{word-spacing:26.471292pt;}
.ws1f7{word-spacing:26.493001pt;}
.ws1c4{word-spacing:26.572247pt;}
.ws1fe{word-spacing:26.641776pt;}
.ws221{word-spacing:26.660044pt;}
.ws129{word-spacing:26.699768pt;}
.ws1dd{word-spacing:26.794269pt;}
.ws188{word-spacing:26.800722pt;}
.ws4f{word-spacing:26.806036pt;}
.ws10d{word-spacing:26.848543pt;}
.ws50{word-spacing:27.002631pt;}
.wsa0{word-spacing:27.156719pt;}
.wsf0{word-spacing:27.162033pt;}
.ws45{word-spacing:27.177973pt;}
.ws19d{word-spacing:27.358628pt;}
.wsdb{word-spacing:27.406448pt;}
.ws156{word-spacing:27.459582pt;}
.ws69{word-spacing:27.480836pt;}
.ws177{word-spacing:27.502089pt;}
.wsa2{word-spacing:27.762445pt;}
.ws170{word-spacing:27.783699pt;}
.ws83{word-spacing:27.863400pt;}
.ws1ce{word-spacing:27.884653pt;}
.ws1cd{word-spacing:27.964354pt;}
.ws54{word-spacing:28.022801pt;}
.ws162{word-spacing:28.086562pt;}
.wscc{word-spacing:28.198143pt;}
.ws192{word-spacing:28.283157pt;}
.ws30{word-spacing:28.315038pt;}
.ws193{word-spacing:28.389425pt;}
.wsc1{word-spacing:28.564767pt;}
.wsc0{word-spacing:28.639154pt;}
.ws130{word-spacing:28.694198pt;}
.ws163{word-spacing:28.734795pt;}
.wsbf{word-spacing:28.872943pt;}
.ws44{word-spacing:28.920764pt;}
.wsbe{word-spacing:29.016405pt;}
.ws1a0{word-spacing:29.027031pt;}
.ws19f{word-spacing:29.138612pt;}
.wsfb{word-spacing:29.159866pt;}
.ws43{word-spacing:29.388342pt;}
.ws70{word-spacing:29.420222pt;}
.ws5e{word-spacing:29.584937pt;}
.wsba{word-spacing:29.776219pt;}
.ws1a7{word-spacing:29.824039pt;}
.ws42{word-spacing:29.898427pt;}
.ws15b{word-spacing:29.903740pt;}
.ws6f{word-spacing:29.983441pt;}
.ws1ac{word-spacing:30.148156pt;}
.ws198{word-spacing:30.344751pt;}
.wsc4{word-spacing:30.435079pt;}
.ws34{word-spacing:30.599794pt;}
.ws37{word-spacing:30.631674pt;}
.wsaf{word-spacing:30.955791pt;}
.ws135{word-spacing:31.253340pt;}
.ws167{word-spacing:31.290534pt;}
.wsed{word-spacing:31.444622pt;}
.ws174{word-spacing:31.503070pt;}
.ws6b{word-spacing:31.519010pt;}
.ws35{word-spacing:31.641218pt;}
.ws11d{word-spacing:31.651844pt;}
.ws134{word-spacing:31.736859pt;}
.ws73{word-spacing:31.869693pt;}
.wsa5{word-spacing:31.901574pt;}
.wsa4{word-spacing:31.965334pt;}
.wsa3{word-spacing:31.986588pt;}
.ws1da{word-spacing:32.018468pt;}
.ws86{word-spacing:32.236317pt;}
.ws16c{word-spacing:32.767656pt;}
.ws136{word-spacing:33.352128pt;}
.ws94{word-spacing:33.362755pt;}
.wse0{word-spacing:33.458396pt;}
.ws46{word-spacing:33.527470pt;}
.ws63{word-spacing:33.623111pt;}
.ws182{word-spacing:33.809079pt;}
.ws1af{word-spacing:34.026928pt;}
.ws3e{word-spacing:34.058809pt;}
.wsb8{word-spacing:34.165076pt;}
.ws13c{word-spacing:34.207583pt;}
.ws13b{word-spacing:34.260717pt;}
.wsa6{word-spacing:34.361672pt;}
.wsa9{word-spacing:34.414805pt;}
.wsb4{word-spacing:34.611401pt;}
.wsb3{word-spacing:34.861130pt;}
.ws2{word-spacing:34.919752pt;}
.ws18b{word-spacing:35.020532pt;}
.ws1{word-spacing:35.100408pt;}
.ws3{word-spacing:35.174796pt;}
.ws1a1{word-spacing:35.413722pt;}
.wsfc{word-spacing:35.530617pt;}
.ws15f{word-spacing:35.833480pt;}
.ws85{word-spacing:35.897240pt;}
.wsfd{word-spacing:35.918494pt;}
.wsfe{word-spacing:35.923807pt;}
.ws195{word-spacing:36.768636pt;}
.wsec{word-spacing:36.869590pt;}
.ws10e{word-spacing:36.959918pt;}
.ws196{word-spacing:36.981171pt;}
.wscb{word-spacing:37.353108pt;}
.ws61{word-spacing:37.740985pt;}
.ws33{word-spacing:37.762239pt;}
.ws6e{word-spacing:38.973691pt;}
.ws76{word-spacing:40.105443pt;}
.ws1a8{word-spacing:40.668662pt;}
.ws15a{word-spacing:40.774929pt;}
.wse1{word-spacing:41.104359pt;}
.ws57{word-spacing:42.140470pt;}
.wsb1{word-spacing:42.326438pt;}
.ws90{word-spacing:42.379572pt;}
.wsb2{word-spacing:42.475213pt;}
.ws1c9{word-spacing:42.703689pt;}
.ws149{word-spacing:43.431623pt;}
.wsb7{word-spacing:43.862007pt;}
.ws53{word-spacing:45.466650pt;}
.ws64{word-spacing:46.927831pt;}
.ws1b9{word-spacing:47.512304pt;}
.ws1aa{word-spacing:47.740779pt;}
.wsea{word-spacing:64.743617pt;}
.ws80{word-spacing:67.878515pt;}
.ws116{word-spacing:84.025897pt;}
.ws1e6{word-spacing:308.684800pt;}
.ws1f3{word-spacing:555.824878pt;}
.ws2d{word-spacing:1864.034140pt;}
._20{margin-left:-2241.674469pt;}
._1f{margin-left:-26.003714pt;}
._24{margin-left:-23.904927pt;}
._25{margin-left:-20.833795pt;}
._1e{margin-left:-2.167862pt;}
._1d{margin-left:-1.211452pt;}
._0{width:1.147697pt;}
._2c{width:2.068303pt;}
._2b{width:3.892303pt;}
._23{width:5.533951pt;}
._37{width:7.680478pt;}
._26{width:8.812274pt;}
._b{width:10.209094pt;}
._3{width:11.814833pt;}
._a{width:13.173973pt;}
._2{width:14.605951pt;}
._8{width:15.604070pt;}
._19{width:16.731855pt;}
._6{width:18.020330pt;}
._9{width:19.104259pt;}
._5{width:20.292065pt;}
._d{width:21.333247pt;}
._7{width:22.956726pt;}
._29{width:23.912658pt;}
._4{width:24.817471pt;}
._11{width:25.939954pt;}
._10{width:27.204540pt;}
._13{width:28.171576pt;}
._c{width:29.303322pt;}
._12{width:30.371318pt;}
._f{width:31.667785pt;}
._16{width:32.927051pt;}
._14{width:34.473253pt;}
._1{width:35.961181pt;}
._18{width:36.917411pt;}
._e{width:38.957751pt;}
._17{width:41.178747pt;}
._15{width:43.351922pt;}
._1c{width:45.137220pt;}
._28{width:48.702502pt;}
._22{width:85.136389pt;}
._2f{width:87.856588pt;}
._2e{width:97.038102pt;}
._33{width:201.905458pt;}
._32{width:228.234807pt;}
._30{width:252.228398pt;}
._31{width:271.487244pt;}
._2d{width:338.018133pt;}
._36{width:382.089853pt;}
._35{width:410.494605pt;}
._34{width:432.412794pt;}
._2a{width:778.945995pt;}
._1b{width:1673.072375pt;}
._21{width:2231.239424pt;}
._27{width:2232.132087pt;}
._1a{width:2286.541985pt;}
._38{width:2297.730021pt;}
.fs8{font-size:24.792000pt;}
.fs5{font-size:30.106133pt;}
.fs11{font-size:31.881067pt;}
.fsb{font-size:35.418667pt;}
.fs7{font-size:37.193600pt;}
.fs3{font-size:38.961067pt;}
.fs9{font-size:42.507733pt;}
.fs10{font-size:42.666667pt;}
.fs4{font-size:45.163733pt;}
.fse{font-size:48.000000pt;}
.fs6{font-size:51.938133pt;}
.fsa{font-size:53.133867pt;}
.fsf{font-size:53.332800pt;}
.fs2{font-size:58.448000pt;}
.fsd{font-size:61.102933pt;}
.fs0{font-size:63.760533pt;}
.fsc{font-size:69.074667pt;}
.fs1{font-size:106.268267pt;}
.y0{bottom:0.000000pt;}
.ybb{bottom:42.402556pt;}
.y30{bottom:42.406267pt;}
.y107{bottom:85.870933pt;}
.y231{bottom:85.871083pt;}
.y1f1{bottom:85.871225pt;}
.y192{bottom:85.871615pt;}
.y118{bottom:85.871624pt;}
.y110{bottom:85.871907pt;}
.ye1{bottom:85.876750pt;}
.y1c8{bottom:85.950358pt;}
.y24d{bottom:86.704304pt;}
.y2f{bottom:93.429405pt;}
.y67{bottom:94.187681pt;}
.yb2{bottom:94.191223pt;}
.y12c{bottom:97.209333pt;}
.y24c{bottom:97.362130pt;}
.y124{bottom:98.117215pt;}
.y68{bottom:98.872400pt;}
.y230{bottom:101.820542pt;}
.y1f0{bottom:101.820683pt;}
.y191{bottom:101.821074pt;}
.y117{bottom:101.821082pt;}
.y10f{bottom:101.821365pt;}
.ye0{bottom:101.826209pt;}
.y106{bottom:101.830194pt;}
.y1c7{bottom:101.899816pt;}
.y2e{bottom:105.373200pt;}
.y24b{bottom:107.944639pt;}
.y2d{bottom:109.530667pt;}
.y66{bottom:110.137140pt;}
.yb1{bottom:110.140681pt;}
.y12b{bottom:113.612096pt;}
.y123{bottom:114.066674pt;}
.y1e2{bottom:116.107208pt;}
.y1e4{bottom:116.485495pt;}
.y2c{bottom:117.317002pt;}
.y22f{bottom:117.770000pt;}
.y1ef{bottom:117.770142pt;}
.y190{bottom:117.770532pt;}
.y116{bottom:117.770540pt;}
.y10e{bottom:117.770824pt;}
.y22d{bottom:117.771240pt;}
.ydf{bottom:117.775667pt;}
.y105{bottom:117.779652pt;}
.y1c6{bottom:117.849275pt;}
.y24a{bottom:118.602465pt;}
.y22e{bottom:122.381067pt;}
.y65{bottom:126.086598pt;}
.yb0{bottom:126.090140pt;}
.y12a{bottom:126.236114pt;}
.y249{bottom:129.184974pt;}
.y2b{bottom:129.259867pt;}
.y129{bottom:129.940323pt;}
.y122{bottom:129.940416pt;}
.y1e3{bottom:131.149600pt;}
.y1e1{bottom:132.056667pt;}
.y1df{bottom:132.057349pt;}
.y2a{bottom:133.417333pt;}
.y1ee{bottom:133.719600pt;}
.y18f{bottom:133.719991pt;}
.y115{bottom:133.719999pt;}
.y10d{bottom:133.720282pt;}
.y22c{bottom:133.720699pt;}
.y1f8{bottom:133.720928pt;}
.yde{bottom:133.725126pt;}
.y104{bottom:133.729111pt;}
.y1c5{bottom:133.798733pt;}
.y1e0{bottom:136.667733pt;}
.y1f9{bottom:138.330667pt;}
.y248{bottom:139.842800pt;}
.y29{bottom:141.279135pt;}
.y64{bottom:142.036057pt;}
.yaf{bottom:142.039598pt;}
.y121{bottom:145.889875pt;}
.y128{bottom:147.931450pt;}
.y1de{bottom:148.006807pt;}
.y114{bottom:149.593742pt;}
.y18e{bottom:149.593883pt;}
.y10c{bottom:149.594025pt;}
.y1ec{bottom:149.594441pt;}
.y1f7{bottom:149.594671pt;}
.ydd{bottom:149.598868pt;}
.y103{bottom:149.602853pt;}
.y1c4{bottom:149.748192pt;}
.y247{bottom:150.501556pt;}
.y28{bottom:153.222000pt;}
.y1ed{bottom:154.280267pt;}
.y27{bottom:157.303867pt;}
.y63{bottom:157.985515pt;}
.yae{bottom:157.989056pt;}
.y246{bottom:161.084065pt;}
.y120{bottom:161.839333pt;}
.y113{bottom:163.351067pt;}
.y1dd{bottom:163.880550pt;}
.y127{bottom:163.880909pt;}
.y26{bottom:165.165333pt;}
.y112{bottom:165.543200pt;}
.y18d{bottom:165.543342pt;}
.y10b{bottom:165.543483pt;}
.y1eb{bottom:165.543900pt;}
.y1f6{bottom:165.544129pt;}
.ydc{bottom:165.548327pt;}
.y102{bottom:165.552312pt;}
.y1c3{bottom:165.697650pt;}
.y111{bottom:171.439333pt;}
.y245{bottom:171.741891pt;}
.y62{bottom:173.934973pt;}
.yad{bottom:173.938515pt;}
.y11e{bottom:177.789075pt;}
.y1dc{bottom:179.830008pt;}
.y126{bottom:180.282780pt;}
.y10a{bottom:181.492942pt;}
.y1ea{bottom:181.493358pt;}
.y1f5{bottom:181.493588pt;}
.y18c{bottom:181.495112pt;}
.ydb{bottom:181.497785pt;}
.y101{bottom:181.501770pt;}
.y1c2{bottom:181.647109pt;}
.y244{bottom:182.324400pt;}
.y11f{bottom:182.475600pt;}
.y61{bottom:189.884432pt;}
.yac{bottom:189.887973pt;}
.y11d{bottom:193.738533pt;}
.y1db{bottom:195.779467pt;}
.y1d8{bottom:195.781477pt;}
.y125{bottom:196.687180pt;}
.y109{bottom:197.442400pt;}
.y1e9{bottom:197.442816pt;}
.y1f4{bottom:197.443046pt;}
.yda{bottom:197.447244pt;}
.y100{bottom:197.451229pt;}
.y1c1{bottom:197.596567pt;}
.y17d{bottom:199.407867pt;}
.y1d9{bottom:200.466133pt;}
.y1da{bottom:201.675600pt;}
.y16a{bottom:204.018800pt;}
.y60{bottom:205.758175pt;}
.yab{bottom:205.761716pt;}
.y243{bottom:206.288365pt;}
.y18a{bottom:207.347395pt;}
.y177{bottom:207.347637pt;}
.y163{bottom:207.347651pt;}
.y189{bottom:211.277972pt;}
.y176{bottom:211.278215pt;}
.y162{bottom:211.278229pt;}
.y1d7{bottom:211.730935pt;}
.y1e8{bottom:213.392275pt;}
.y1f3{bottom:213.392505pt;}
.yd9{bottom:213.396702pt;}
.yff{bottom:213.400687pt;}
.y1c0{bottom:213.470310pt;}
.y188{bottom:215.132835pt;}
.y175{bottom:215.133077pt;}
.y161{bottom:215.133091pt;}
.y187{bottom:218.987697pt;}
.y174{bottom:218.987939pt;}
.y160{bottom:218.987953pt;}
.y169{bottom:220.195180pt;}
.y5f{bottom:221.707633pt;}
.yaa{bottom:221.711174pt;}
.y186{bottom:222.842559pt;}
.y173{bottom:222.842801pt;}
.y15f{bottom:222.842815pt;}
.y17c{bottom:223.370000pt;}
.y168{bottom:223.899200pt;}
.y185{bottom:226.773136pt;}
.y172{bottom:226.773378pt;}
.y15e{bottom:226.773393pt;}
.y1d6{bottom:227.680393pt;}
.y1e7{bottom:229.341733pt;}
.y1f2{bottom:229.341963pt;}
.y22a{bottom:229.344230pt;}
.yd8{bottom:229.346160pt;}
.yfe{bottom:229.350145pt;}
.y1bf{bottom:229.419768pt;}
.y179{bottom:231.609314pt;}
.y22b{bottom:233.952667pt;}
.y156{bottom:235.313253pt;}
.y18b{bottom:235.315734pt;}
.y178{bottom:235.315976pt;}
.y11c{bottom:236.976324pt;}
.y5e{bottom:237.657091pt;}
.ya9{bottom:237.660633pt;}
.y242{bottom:242.117860pt;}
.y167{bottom:242.343180pt;}
.y1d5{bottom:243.629852pt;}
.y229{bottom:245.293688pt;}
.yd7{bottom:245.295619pt;}
.yfd{bottom:245.299604pt;}
.y1be{bottom:245.369226pt;}
.y166{bottom:246.047200pt;}
.y17b{bottom:247.256533pt;}
.y184{bottom:250.508035pt;}
.y171{bottom:250.508277pt;}
.y15d{bottom:250.508291pt;}
.y11b{bottom:251.641492pt;}
.y5d{bottom:253.606550pt;}
.ya8{bottom:253.610091pt;}
.y183{bottom:254.438612pt;}
.y170{bottom:254.438854pt;}
.y15c{bottom:254.438869pt;}
.y12f{bottom:255.118841pt;}
.y241{bottom:258.067318pt;}
.y182{bottom:258.293474pt;}
.y16f{bottom:258.293716pt;}
.y15b{bottom:258.293731pt;}
.y1d4{bottom:259.579310pt;}
.y228{bottom:261.243147pt;}
.yd6{bottom:261.245077pt;}
.yfc{bottom:261.249062pt;}
.y1bd{bottom:261.318685pt;}
.y25{bottom:261.395632pt;}
.y181{bottom:262.148336pt;}
.y16e{bottom:262.148578pt;}
.y15a{bottom:262.148593pt;}
.y165{bottom:262.298764pt;}
.y180{bottom:266.003198pt;}
.y16d{bottom:266.003441pt;}
.y159{bottom:266.003455pt;}
.y164{bottom:266.006111pt;}
.y11a{bottom:266.230146pt;}
.y5c{bottom:269.556008pt;}
.ya7{bottom:269.559550pt;}
.y12e{bottom:269.782946pt;}
.y17f{bottom:269.858060pt;}
.y16c{bottom:269.858303pt;}
.y158{bottom:269.858317pt;}
.y17a{bottom:271.145485pt;}
.y240{bottom:274.016777pt;}
.y24{bottom:275.379453pt;}
.y1d3{bottom:275.528769pt;}
.y227{bottom:277.116890pt;}
.yd5{bottom:277.118820pt;}
.yfb{bottom:277.122805pt;}
.y1bc{bottom:277.268143pt;}
.y219{bottom:278.929067pt;}
.y119{bottom:280.818800pt;}
.y17e{bottom:281.801225pt;}
.y16b{bottom:281.801467pt;}
.y157{bottom:281.801482pt;}
.y12d{bottom:284.371600pt;}
.y5b{bottom:285.505467pt;}
.y59{bottom:285.506149pt;}
.ya6{bottom:285.509008pt;}
.y155{bottom:289.133875pt;}
.y23{bottom:289.287625pt;}
.y23f{bottom:289.966235pt;}
.y5a{bottom:290.116400pt;}
.y1d2{bottom:291.402511pt;}
.y226{bottom:293.066348pt;}
.yd4{bottom:293.068278pt;}
.yfa{bottom:293.072263pt;}
.y1bb{bottom:293.217602pt;}
.y211{bottom:299.323333pt;}
.y1fc{bottom:299.325428pt;}
.y58{bottom:301.455607pt;}
.ya5{bottom:301.458467pt;}
.y154{bottom:305.084123pt;}
.y23e{bottom:305.915694pt;}
.y1d1{bottom:307.351970pt;}
.y225{bottom:309.015806pt;}
.yd3{bottom:309.017737pt;}
.yf9{bottom:309.021722pt;}
.y1ba{bottom:309.167060pt;}
.y22{bottom:310.528128pt;}
.y214{bottom:313.143200pt;}
.y57{bottom:317.405066pt;}
.ya4{bottom:317.407925pt;}
.y153{bottom:320.201407pt;}
.y23d{bottom:321.789436pt;}
.y1d0{bottom:323.301428pt;}
.y152{bottom:323.906457pt;}
.y21{bottom:324.511949pt;}
.y224{bottom:324.965265pt;}
.yd2{bottom:324.967195pt;}
.yf8{bottom:324.971180pt;}
.y1b9{bottom:325.116519pt;}
.y56{bottom:333.278808pt;}
.ya3{bottom:333.281668pt;}
.y23c{bottom:337.738895pt;}
.y20{bottom:338.420121pt;}
.y1cf{bottom:339.250887pt;}
.y151{bottom:339.855915pt;}
.y223{bottom:340.914723pt;}
.yd1{bottom:340.916654pt;}
.yf7{bottom:340.920639pt;}
.y1b8{bottom:340.990261pt;}
.y55{bottom:349.228267pt;}
.ya2{bottom:349.231126pt;}
.y1f{bottom:352.403942pt;}
.y23b{bottom:353.688353pt;}
.y1ce{bottom:355.200345pt;}
.y150{bottom:355.729658pt;}
.y222{bottom:356.864182pt;}
.yd0{bottom:356.866112pt;}
.yf6{bottom:356.870097pt;}
.y1b7{bottom:356.939720pt;}
.y2d0{bottom:363.968081pt;}
.y53{bottom:365.178008pt;}
.ya1{bottom:365.180585pt;}
.y29b{bottom:365.329665pt;}
.y1e{bottom:366.312114pt;}
.y23a{bottom:369.637811pt;}
.y54{bottom:369.864533pt;}
.y1cd{bottom:371.149804pt;}
.y14f{bottom:371.679116pt;}
.y215{bottom:372.344267pt;}
.y221{bottom:372.813640pt;}
.ycf{bottom:372.815571pt;}
.yf5{bottom:372.819556pt;}
.y1b6{bottom:372.889178pt;}
.y29a{bottom:375.912174pt;}
.y2cf{bottom:375.987193pt;}
.y52{bottom:381.127467pt;}
.y50{bottom:381.128573pt;}
.ya0{bottom:381.130043pt;}
.y239{bottom:385.587270pt;}
.y51{bottom:385.814133pt;}
.y299{bottom:386.570000pt;}
.y298{bottom:386.578891pt;}
.y1d{bottom:387.628267pt;}
.y14e{bottom:387.628575pt;}
.y1c{bottom:387.629207pt;}
.y2ce{bottom:387.930058pt;}
.y220{bottom:388.763099pt;}
.yce{bottom:388.765029pt;}
.yf4{bottom:388.769014pt;}
.y1b5{bottom:388.838637pt;}
.y212{bottom:394.500133pt;}
.y1cc{bottom:395.036133pt;}
.y4f{bottom:397.078032pt;}
.y9f{bottom:397.079501pt;}
.y297{bottom:397.236717pt;}
.y2cd{bottom:399.873853pt;}
.y213{bottom:400.524133pt;}
.y1b{bottom:401.537379pt;}
.y14d{bottom:403.578033pt;}
.y21f{bottom:404.636841pt;}
.ycd{bottom:404.638772pt;}
.yf3{bottom:404.642757pt;}
.y1b4{bottom:404.788095pt;}
.y296{bottom:407.819226pt;}
.y238{bottom:409.473600pt;}
.y2cc{bottom:411.817647pt;}
.y216{bottom:412.893600pt;}
.y4e{bottom:413.027490pt;}
.y9e{bottom:413.028960pt;}
.y1a{bottom:413.631333pt;}
.y19{bottom:415.521200pt;}
.y17{bottom:415.527075pt;}
.y295{bottom:418.477052pt;}
.y14c{bottom:419.527492pt;}
.y18{bottom:420.510133pt;}
.y21e{bottom:420.586300pt;}
.ycc{bottom:420.588230pt;}
.yf2{bottom:420.592215pt;}
.y1b3{bottom:420.737553pt;}
.y237{bottom:425.423058pt;}
.y1ca{bottom:426.935475pt;}
.y4d{bottom:428.976949pt;}
.y9d{bottom:428.978418pt;}
.y294{bottom:429.059561pt;}
.y16{bottom:429.435247pt;}
.y1cb{bottom:431.546400pt;}
.y14b{bottom:435.476950pt;}
.y2cb{bottom:435.704307pt;}
.y21d{bottom:436.535758pt;}
.ycb{bottom:436.537688pt;}
.yf1{bottom:436.541673pt;}
.y1b2{bottom:436.687012pt;}
.y293{bottom:439.718317pt;}
.y1c9{bottom:442.884933pt;}
.y15{bottom:443.419068pt;}
.y4c{bottom:444.926407pt;}
.y9c{bottom:444.927877pt;}
.y2c9{bottom:446.361802pt;}
.y2ca{bottom:446.362133pt;}
.y236{bottom:449.309388pt;}
.y292{bottom:450.377073pt;}
.y14a{bottom:451.426408pt;}
.y21c{bottom:452.485216pt;}
.yca{bottom:452.487147pt;}
.yf0{bottom:452.491132pt;}
.y1b1{bottom:452.636470pt;}
.y217{bottom:453.441867pt;}
.y2c8{bottom:456.944311pt;}
.y14{bottom:457.327239pt;}
.y4b{bottom:460.800150pt;}
.y9b{bottom:460.801619pt;}
.y291{bottom:460.959582pt;}
.y149{bottom:467.375867pt;}
.y2c7{bottom:467.603067pt;}
.y2c6{bottom:467.610205pt;}
.y21b{bottom:468.434675pt;}
.yc9{bottom:468.436605pt;}
.yef{bottom:468.440590pt;}
.y13{bottom:471.311060pt;}
.y290{bottom:471.618338pt;}
.y1b0{bottom:476.522800pt;}
.y4a{bottom:476.749608pt;}
.y235{bottom:477.202011pt;}
.y2c5{bottom:478.268031pt;}
.y28f{bottom:482.200847pt;}
.y21a{bottom:484.384133pt;}
.yc8{bottom:484.386064pt;}
.yee{bottom:484.390049pt;}
.y148{bottom:484.460517pt;}
.y9a{bottom:484.763665pt;}
.y12{bottom:485.219232pt;}
.y2c4{bottom:488.850540pt;}
.y1e6{bottom:489.978295pt;}
.y49{bottom:492.699067pt;}
.y47{bottom:492.700173pt;}
.y28e{bottom:492.858673pt;}
.y234{bottom:493.151470pt;}
.y218{bottom:493.991200pt;}
.y48{bottom:497.385733pt;}
.y11{bottom:499.203053pt;}
.yc7{bottom:500.335522pt;}
.yed{bottom:500.339507pt;}
.y147{bottom:500.409975pt;}
.y28d{bottom:503.516499pt;}
.y1e5{bottom:504.642400pt;}
.y46{bottom:508.649632pt;}
.y2c3{bottom:508.806766pt;}
.y233{bottom:509.100928pt;}
.y10{bottom:513.111225pt;}
.y28c{bottom:514.099008pt;}
.yc6{bottom:516.284981pt;}
.yec{bottom:516.288966pt;}
.y1ae{bottom:516.662015pt;}
.y99{bottom:516.662582pt;}
.y146{bottom:516.813317pt;}
.y2c2{bottom:519.389275pt;}
.y1af{bottom:521.272267pt;}
.y45{bottom:524.599090pt;}
.y28b{bottom:524.757764pt;}
.y1fd{bottom:524.968800pt;}
.y1fb{bottom:524.969838pt;}
.y232{bottom:525.050386pt;}
.yf{bottom:527.095046pt;}
.y25e{bottom:527.319600pt;}
.y2c1{bottom:530.047102pt;}
.yc5{bottom:532.158723pt;}
.yeb{bottom:532.162708pt;}
.y1ad{bottom:532.535758pt;}
.y98{bottom:532.536324pt;}
.y145{bottom:532.762775pt;}
.y28a{bottom:535.340273pt;}
.y20a{bottom:538.790000pt;}
.y44{bottom:540.548549pt;}
.y2c0{bottom:540.704928pt;}
.y25d{bottom:545.990803pt;}
.y289{bottom:545.999029pt;}
.yc4{bottom:548.108182pt;}
.yea{bottom:548.112167pt;}
.ye{bottom:548.335549pt;}
.y1ac{bottom:548.485216pt;}
.y97{bottom:548.485783pt;}
.y144{bottom:549.165975pt;}
.y43{bottom:556.498007pt;}
.y288{bottom:556.581538pt;}
.y2bf{bottom:560.584907pt;}
.y25c{bottom:560.957508pt;}
.y262{bottom:561.335736pt;}
.yd{bottom:562.243721pt;}
.yc3{bottom:564.057640pt;}
.ye9{bottom:564.061625pt;}
.y1ab{bottom:564.434675pt;}
.y96{bottom:564.435241pt;}
.y143{bottom:565.568008pt;}
.y287{bottom:567.239364pt;}
.y2be{bottom:571.243663pt;}
.y42{bottom:572.447466pt;}
.y25b{bottom:575.848895pt;}
.y261{bottom:576.302441pt;}
.y286{bottom:577.897190pt;}
.yc2{bottom:580.007099pt;}
.ye8{bottom:580.011084pt;}
.y1aa{bottom:580.384133pt;}
.y95{bottom:580.384700pt;}
.y1a8{bottom:580.384957pt;}
.y142{bottom:581.517467pt;}
.y2bd{bottom:581.826172pt;}
.yc{bottom:583.559874pt;}
.y1a9{bottom:585.070667pt;}
.y41{bottom:588.321208pt;}
.y285{bottom:588.479699pt;}
.y259{bottom:590.815600pt;}
.y260{bottom:591.193829pt;}
.y2bc{bottom:592.484928pt;}
.yc1{bottom:595.956557pt;}
.ye7{bottom:595.960542pt;}
.y94{bottom:596.334158pt;}
.y1a7{bottom:596.334415pt;}
.yb{bottom:597.468046pt;}
.y20b{bottom:597.989733pt;}
.y141{bottom:598.601608pt;}
.y284{bottom:599.137525pt;}
.y2bb{bottom:603.067437pt;}
.y40{bottom:604.270667pt;}
.y25f{bottom:606.160533pt;}
.y25a{bottom:606.160750pt;}
.y283{bottom:609.720034pt;}
.ya{bottom:611.451867pt;}
.yc0{bottom:611.906015pt;}
.ye6{bottom:611.910000pt;}
.y93{bottom:612.283616pt;}
.y1a6{bottom:612.283874pt;}
.y2ba{bottom:613.725263pt;}
.y13b{bottom:614.551067pt;}
.y13a{bottom:614.551154pt;}
.y206{bottom:620.145600pt;}
.y3f{bottom:620.220267pt;}
.y3d{bottom:620.221507pt;}
.y282{bottom:620.377860pt;}
.y258{bottom:621.883761pt;}
.y20c{bottom:622.319333pt;}
.y2b9{bottom:624.383089pt;}
.y3e{bottom:624.906933pt;}
.y207{bottom:626.169600pt;}
.ybf{bottom:627.855474pt;}
.ye5{bottom:627.859459pt;}
.y92{bottom:628.233075pt;}
.y1a5{bottom:628.233332pt;}
.y281{bottom:631.035686pt;}
.y9{bottom:632.088000pt;}
.y2b8{bottom:634.965598pt;}
.y3c{bottom:636.170965pt;}
.y257{bottom:636.547867pt;}
.y139{bottom:638.513200pt;}
.y280{bottom:641.618195pt;}
.ybe{bottom:643.804932pt;}
.ye4{bottom:643.808917pt;}
.y91{bottom:644.182533pt;}
.y1a4{bottom:644.182791pt;}
.y8e{bottom:644.183074pt;}
.y13f{bottom:645.618439pt;}
.y134{bottom:645.618811pt;}
.y20d{bottom:646.648933pt;}
.y131{bottom:646.676914pt;}
.y2b7{bottom:646.908463pt;}
.y8f{bottom:648.793600pt;}
.y90{bottom:650.078533pt;}
.y140{bottom:650.380561pt;}
.y130{bottom:650.380933pt;}
.y3b{bottom:652.120424pt;}
.y27f{bottom:652.276022pt;}
.y13e{bottom:653.479594pt;}
.y133{bottom:653.479966pt;}
.ybd{bottom:659.678675pt;}
.ye3{bottom:659.682660pt;}
.y1a3{bottom:660.056533pt;}
.y8d{bottom:660.056816pt;}
.y13d{bottom:661.340750pt;}
.y132{bottom:661.341122pt;}
.y136{bottom:661.643985pt;}
.y138{bottom:662.248667pt;}
.y27e{bottom:662.858531pt;}
.y3a{bottom:668.069882pt;}
.y20e{bottom:670.979600pt;}
.y27d{bottom:673.516357pt;}
.y2b6{bottom:673.516764pt;}
.y256{bottom:674.267600pt;}
.y7{bottom:675.476497pt;}
.ybc{bottom:675.628133pt;}
.ye2{bottom:675.632118pt;}
.y8c{bottom:676.006275pt;}
.y8{bottom:681.977733pt;}
.y39{bottom:684.019340pt;}
.y27c{bottom:684.098866pt;}
.y2b5{bottom:684.099273pt;}
.y13c{bottom:684.622682pt;}
.y135{bottom:685.606030pt;}
.y137{bottom:686.134712pt;}
.y8b{bottom:691.955733pt;}
.y89{bottom:691.956016pt;}
.y1a2{bottom:691.956699pt;}
.y5{bottom:692.787333pt;}
.y24f{bottom:694.450133pt;}
.y27b{bottom:694.757622pt;}
.y2b4{bottom:694.758029pt;}
.y20f{bottom:695.309200pt;}
.y8a{bottom:696.642400pt;}
.y6{bottom:699.288000pt;}
.y38{bottom:699.968799pt;}
.y27a{bottom:705.415448pt;}
.y2b3{bottom:705.415855pt;}
.y88{bottom:707.905475pt;}
.y1a1{bottom:707.906157pt;}
.y255{bottom:710.941067pt;}
.y37{bottom:715.842542pt;}
.y279{bottom:715.997957pt;}
.y2b2{bottom:715.998364pt;}
.y210{bottom:719.638800pt;}
.y254{bottom:720.851467pt;}
.y4{bottom:723.326553pt;}
.y87{bottom:723.854933pt;}
.y84{bottom:723.855358pt;}
.y1a0{bottom:723.855615pt;}
.y108{bottom:724.837600pt;}
.y278{bottom:726.655783pt;}
.y2b1{bottom:726.656190pt;}
.y85{bottom:728.466000pt;}
.y86{bottom:729.750933pt;}
.y36{bottom:731.792000pt;}
.y34{bottom:731.792425pt;}
.y24e{bottom:734.748667pt;}
.y35{bottom:736.478533pt;}
.y277{bottom:737.238292pt;}
.y2b0{bottom:737.238700pt;}
.y83{bottom:739.804816pt;}
.y19f{bottom:739.805074pt;}
.y33{bottom:747.741883pt;}
.y276{bottom:747.896118pt;}
.y2af{bottom:747.896526pt;}
.y3{bottom:749.933471pt;}
.y1fa{bottom:751.814267pt;}
.y82{bottom:755.754275pt;}
.y19e{bottom:755.754532pt;}
.y275{bottom:758.553944pt;}
.y2ae{bottom:758.554352pt;}
.y32{bottom:763.691342pt;}
.y1fe{bottom:765.638133pt;}
.y274{bottom:769.136453pt;}
.y2ad{bottom:769.136861pt;}
.y81{bottom:771.703733pt;}
.y7f{bottom:771.703991pt;}
.y250{bottom:776.260533pt;}
.y80{bottom:776.314800pt;}
.y2{bottom:776.466000pt;}
.y31{bottom:779.640800pt;}
.y273{bottom:779.794279pt;}
.y2ac{bottom:779.794687pt;}
.y19d{bottom:787.576055pt;}
.y7e{bottom:787.577733pt;}
.y7b{bottom:787.577875pt;}
.y272{bottom:790.376788pt;}
.y2ab{bottom:790.377196pt;}
.y7c{bottom:792.264267pt;}
.y7d{bottom:793.549333pt;}
.y271{bottom:801.034614pt;}
.y2aa{bottom:801.035022pt;}
.y19c{bottom:803.525514pt;}
.y7a{bottom:803.527333pt;}
.y78{bottom:803.527758pt;}
.y79{bottom:808.214000pt;}
.y1{bottom:811.010800pt;}
.y270{bottom:811.617123pt;}
.y2a9{bottom:811.617531pt;}
.y19b{bottom:819.474972pt;}
.y77{bottom:819.477216pt;}
.y26f{bottom:822.274949pt;}
.y2a8{bottom:822.275357pt;}
.y1ff{bottom:824.837867pt;}
.yb9{bottom:828.775375pt;}
.y251{bottom:831.672800pt;}
.y26e{bottom:832.933705pt;}
.y2a7{bottom:832.934113pt;}
.y19a{bottom:835.424431pt;}
.y76{bottom:835.426675pt;}
.y26d{bottom:843.516214pt;}
.y2a6{bottom:843.516622pt;}
.yb8{bottom:844.724833pt;}
.y200{bottom:845.113067pt;}
.y208{bottom:846.994800pt;}
.y199{bottom:851.373889pt;}
.y75{bottom:851.376133pt;}
.y72{bottom:851.376416pt;}
.y209{bottom:853.018800pt;}
.y26c{bottom:854.174040pt;}
.y2a5{bottom:854.174448pt;}
.y73{bottom:855.987200pt;}
.y74{bottom:857.272267pt;}
.yb7{bottom:860.674291pt;}
.y26b{bottom:864.756549pt;}
.y2a4{bottom:864.756957pt;}
.y201{bottom:865.388267pt;}
.y198{bottom:867.323348pt;}
.y71{bottom:867.325875pt;}
.y26a{bottom:875.414376pt;}
.y2a3{bottom:875.415713pt;}
.yb6{bottom:876.623750pt;}
.y197{bottom:883.272806pt;}
.y70{bottom:883.275333pt;}
.y6d{bottom:883.276149pt;}
.y202{bottom:885.663467pt;}
.y269{bottom:886.073131pt;}
.y2a2{bottom:886.074469pt;}
.y252{bottom:887.085067pt;}
.y6e{bottom:887.886400pt;}
.y6f{bottom:889.171333pt;}
.yb5{bottom:892.573208pt;}
.y268{bottom:896.655641pt;}
.y2a1{bottom:896.656978pt;}
.y196{bottom:899.222264pt;}
.y6c{bottom:899.225607pt;}
.y203{bottom:905.936533pt;}
.y267{bottom:907.313467pt;}
.y2a0{bottom:907.314804pt;}
.yb4{bottom:908.522667pt;}
.y195{bottom:915.096007pt;}
.y6b{bottom:915.099350pt;}
.y266{bottom:917.895976pt;}
.y29f{bottom:917.897313pt;}
.y204{bottom:926.211733pt;}
.yb3{bottom:928.251733pt;}
.y265{bottom:928.553802pt;}
.y29e{bottom:928.555139pt;}
.y194{bottom:931.045466pt;}
.y6a{bottom:931.048808pt;}
.y264{bottom:939.136311pt;}
.y29d{bottom:939.137648pt;}
.y253{bottom:942.497333pt;}
.y205{bottom:946.486933pt;}
.y193{bottom:946.994924pt;}
.y69{bottom:946.998267pt;}
.y263{bottom:949.795067pt;}
.y29c{bottom:949.796404pt;}
.yba{bottom:994.695867pt;}
.h19{height:2.125355pt;}
.h2d{height:12.125114pt;}
.hb{height:18.147744pt;}
.h8{height:21.706522pt;}
.h2c{height:23.336941pt;}
.h9{height:24.047356pt;}
.h2b{height:26.816586pt;}
.h22{height:27.039747pt;}
.he{height:27.125626pt;}
.ha{height:27.225715pt;}
.h5{height:28.090929pt;}
.h26{height:28.290658pt;}
.h29{height:29.866667pt;}
.hc{height:30.265506pt;}
.h12{height:30.648076pt;}
.hf{height:31.912219pt;}
.h7{height:32.563052pt;}
.h2a{height:33.511434pt;}
.h27{height:34.080000pt;}
.h28{height:37.866288pt;}
.h10{height:38.309518pt;}
.h1b{height:38.628321pt;}
.h1a{height:39.850400pt;}
.h4{height:42.141008pt;}
.h2{height:45.078697pt;}
.h6{height:45.206218pt;}
.h1e{height:47.870479pt;}
.h1d{height:47.870512pt;}
.h13{height:47.871028pt;}
.hd{height:47.873614pt;}
.h20{height:47.873935pt;}
.h1c{height:47.875180pt;}
.h14{height:47.875826pt;}
.h24{height:49.101711pt;}
.h15{height:49.111522pt;}
.h17{height:49.112281pt;}
.h21{height:49.653154pt;}
.h11{height:49.802835pt;}
.h23{height:49.967733pt;}
.h25{height:53.444400pt;}
.h16{height:62.689693pt;}
.h1f{height:62.689853pt;}
.h3{height:74.387787pt;}
.h18{height:153.909915pt;}
.h0{height:1043.981333pt;}
.h1{height:1044.000000pt;}
.w0{width:779.942667pt;}
.w1{width:780.000000pt;}
.x0{left:0.000000pt;}
.xe{left:57.146400pt;}
.x13{left:60.623600pt;}
.x84{left:61.833067pt;}
.x81{left:65.083467pt;}
.x38{left:73.096000pt;}
.x18{left:75.741733pt;}
.x5{left:80.579467pt;}
.x16{left:88.592133pt;}
.x14{left:98.721200pt;}
.x15{left:113.159067pt;}
.x3f{left:117.014133pt;}
.x76{left:124.195200pt;}
.x74{left:126.680400pt;}
.x1d{left:131.754267pt;}
.x3{left:137.726339pt;}
.x75{left:140.013600pt;}
.x11{left:143.697600pt;}
.x2{left:147.099200pt;}
.x12{left:150.198400pt;}
.x77{left:152.314933pt;}
.x20{left:164.409333pt;}
.x5c{left:174.840933pt;}
.x78{left:178.015733pt;}
.x61{left:185.612400pt;}
.x5d{left:192.075467pt;}
.x79{left:194.948000pt;}
.x1b{left:196.762133pt;}
.x7d{left:199.776400pt;}
.x62{left:202.699333pt;}
.x7f{left:206.556400pt;}
.x1c{left:220.422000pt;}
.x43{left:222.463914pt;}
.x40{left:223.372815pt;}
.x63{left:236.873200pt;}
.x47{left:240.377988pt;}
.x82{left:244.233880pt;}
.x6{left:248.390533pt;}
.x58{left:253.681867pt;}
.x85{left:254.891333pt;}
.x1e{left:257.083333pt;}
.x7{left:258.444000pt;}
.x86{left:259.804667pt;}
.x59{left:263.659733pt;}
.x5a{left:266.154267pt;}
.x49{left:269.856603pt;}
.x1f{left:271.672400pt;}
.x1{left:276.207867pt;}
.xc{left:277.493440pt;}
.x5b{left:279.533733pt;}
.x48{left:284.144788pt;}
.x41{left:285.434500pt;}
.x80{left:287.489733pt;}
.x4a{left:288.755854pt;}
.x57{left:293.064533pt;}
.x4b{left:296.088428pt;}
.x64{left:305.220933pt;}
.x4c{left:310.073262pt;}
.x4{left:315.212941pt;}
.x4d{left:321.335333pt;}
.x65{left:322.307867pt;}
.x4e{left:336.604087pt;}
.x17{left:337.738533pt;}
.x66{left:339.394800pt;}
.x19{left:342.047200pt;}
.x44{left:346.510239pt;}
.x42{left:347.419140pt;}
.x4f{left:350.588920pt;}
.x67{left:356.481733pt;}
.x1a{left:363.514800pt;}
.x45{left:365.858288pt;}
.x60{left:366.762800pt;}
.x3d{left:367.974667pt;}
.x68{left:373.568667pt;}
.x46{left:374.550988pt;}
.x7e{left:389.500533pt;}
.x69{left:390.655600pt;}
.x22{left:401.839008pt;}
.x7c{left:406.525867pt;}
.x6a{left:407.742533pt;}
.x83{left:409.776267pt;}
.x7a{left:414.612703pt;}
.x21{left:420.434533pt;}
.x23{left:425.423467pt;}
.x2a{left:428.296000pt;}
.x7b{left:430.109195pt;}
.x27{left:432.302267pt;}
.x24{left:435.401467pt;}
.x25{left:437.896000pt;}
.x31{left:440.390400pt;}
.x28{left:442.280133pt;}
.x29{left:444.774667pt;}
.x8{left:448.176267pt;}
.x26{left:451.048667pt;}
.xf{left:453.089600pt;}
.x2c{left:454.072267pt;}
.x2b{left:456.793600pt;}
.x9{left:459.136933pt;}
.x10{left:463.899067pt;}
.x2d{left:466.544800pt;}
.x32{left:470.324267pt;}
.x35{left:473.650267pt;}
.x36{left:476.144800pt;}
.x53{left:479.017200pt;}
.x2e{left:484.459733pt;}
.x54{left:486.651867pt;}
.x37{left:491.565200pt;}
.x6b{left:493.177200pt;}
.xd{left:497.310000pt;}
.x6c{left:510.264133pt;}
.x55{left:512.730533pt;}
.x33{left:516.056533pt;}
.x56{left:525.958933pt;}
.x5e{left:527.319600pt;}
.x34{left:531.628267pt;}
.x5f{left:542.059733pt;}
.x6d{left:544.439067pt;}
.x51{left:549.316400pt;}
.x52{left:556.951067pt;}
.x6e{left:561.526000pt;}
.x89{left:565.417200pt;}
.x8a{left:573.051733pt;}
.x6f{left:578.614000pt;}
.x70{left:595.700933pt;}
.x71{left:612.788933pt;}
.x2f{left:613.719467pt;}
.x72{left:629.876933pt;}
.x30{left:642.595067pt;}
.x73{left:646.964000pt;}
.x87{left:654.160400pt;}
.x3e{left:655.445467pt;}
.x88{left:662.173067pt;}
.xa{left:664.969867pt;}
.x39{left:674.796667pt;}
.xb{left:675.930533pt;}
.x3a{left:679.785600pt;}
.x50{left:686.135200pt;}
.x3b{left:688.780933pt;}
.x3c{left:693.769867pt;}
}




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