
    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_f8156db39b7a53bb08f35e38.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_78207d2ddbfcc10c250abd37.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_81560ff4ea3d3ed9e512deea.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_52f48e21bedac69129624556.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_798c89bfa5f0b4f2c3176b35.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.892000;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_95987df507d4f678901ad835.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c000c77370d18babaebb9a08.woff2')format("woff");}.ff7{font-family:ff7;line-height:2.399000;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_16e802e99f1b9ad36828028e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8e1e693a82a46c9dccb31545.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.898200;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_579edbe501da3e9d21fc1147.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_41fcccbebb6cba0a852b7007.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.927000;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_dd3e896dc164c4354a4bd58a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.056000;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_f2accf1eb375f89de8d941a6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.959000;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_07c578b93778df9c2beb3f3c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.716000;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_48e0371814dca051eae3102d.woff2')format("woff");}.fff{font-family:fff;line-height:0.900000;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_6d657c3c030262c38e30f85f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.959000;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_07c578b93778df9c2beb3f3c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.716000;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_d7e764846008f801ce87249c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.953000;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_8c6c9212e05390ee604a269c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.953000;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_f32f6d65bacd910257000aa7.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.959000;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_5232581b19920f1f46855ea9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.959000;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_efeaad9e9b2f5d346f991518.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.953000;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;}
.m1{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);}
.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);}
.v1b{vertical-align:-35.868000px;}
.v11{vertical-align:-21.378000px;}
.v2a{vertical-align:-16.878000px;}
.v23{vertical-align:-15.489360px;}
.v14{vertical-align:-10.278000px;}
.v1{vertical-align:-8.964000px;}
.v20{vertical-align:-7.470000px;}
.v18{vertical-align:-5.982000px;}
.vf{vertical-align:-4.482000px;}
.v0{vertical-align:0.000000px;}
.v24{vertical-align:2.404079px;}
.v17{vertical-align:4.974000px;}
.v25{vertical-align:6.765849px;}
.ve{vertical-align:8.424000px;}
.vd{vertical-align:9.918000px;}
.v15{vertical-align:11.646000px;}
.v5{vertical-align:14.778000px;}
.v1f{vertical-align:15.900000px;}
.v3{vertical-align:16.926000px;}
.v16{vertical-align:18.036000px;}
.v1e{vertical-align:19.452000px;}
.v9{vertical-align:20.616000px;}
.v2{vertical-align:21.690000px;}
.v8{vertical-align:23.532000px;}
.v4{vertical-align:24.678000px;}
.vb{vertical-align:25.860000px;}
.v1d{vertical-align:26.922000px;}
.v12{vertical-align:30.468000px;}
.v10{vertical-align:32.892000px;}
.v1c{vertical-align:38.310000px;}
.v6{vertical-align:39.456000px;}
.v13{vertical-align:40.740000px;}
.vc{vertical-align:41.922000px;}
.va{vertical-align:44.232000px;}
.v1a{vertical-align:46.980000px;}
.v7{vertical-align:48.420000px;}
.v19{vertical-align:54.264000px;}
.v21{vertical-align:62.904000px;}
.v27{vertical-align:81.444000px;}
.v26{vertical-align:84.282000px;}
.v29{vertical-align:130.260000px;}
.v22{vertical-align:134.040000px;}
.v28{vertical-align:142.644000px;}
.ls52{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.000062px;}
.ls15{letter-spacing:0.000532px;}
.ls9{letter-spacing:0.000538px;}
.ls1c{letter-spacing:0.000564px;}
.ls16{letter-spacing:0.000615px;}
.ls1b{letter-spacing:0.000775px;}
.ls1{letter-spacing:0.000993px;}
.ls66{letter-spacing:0.001202px;}
.ls40{letter-spacing:0.001698px;}
.ls6a{letter-spacing:0.001994px;}
.ls7c{letter-spacing:0.002245px;}
.ls13{letter-spacing:0.002338px;}
.ls10{letter-spacing:0.002481px;}
.ls3{letter-spacing:0.002685px;}
.ls2d{letter-spacing:0.002800px;}
.ls68{letter-spacing:0.002826px;}
.ls77{letter-spacing:0.003181px;}
.ls3e{letter-spacing:0.003269px;}
.ls6f{letter-spacing:0.003779px;}
.ls2b{letter-spacing:0.004087px;}
.ls6d{letter-spacing:0.004363px;}
.ls2f{letter-spacing:0.005023px;}
.ls26{letter-spacing:0.005374px;}
.ls55{letter-spacing:0.006062px;}
.ls51{letter-spacing:0.006993px;}
.ls30{letter-spacing:0.007698px;}
.ls53{letter-spacing:0.010326px;}
.ls42{letter-spacing:0.010709px;}
.ls6b{letter-spacing:0.484059px;}
.ls80{letter-spacing:0.834017px;}
.ls71{letter-spacing:0.867404px;}
.ls14{letter-spacing:1.006868px;}
.ls27{letter-spacing:1.012868px;}
.ls69{letter-spacing:1.074249px;}
.ls20{letter-spacing:1.503010px;}
.ls67{letter-spacing:1.763996px;}
.ls6{letter-spacing:1.880823px;}
.ls3b{letter-spacing:1.886823px;}
.ls22{letter-spacing:2.414908px;}
.ls1f{letter-spacing:2.420908px;}
.ls70{letter-spacing:2.964877px;}
.ls81{letter-spacing:2.987675px;}
.ls7e{letter-spacing:2.988600px;}
.ls0{letter-spacing:2.988780px;}
.ls7a{letter-spacing:2.989140px;}
.ls7f{letter-spacing:2.989200px;}
.ls5b{letter-spacing:2.990845px;}
.ls36{letter-spacing:2.991954px;}
.ls5c{letter-spacing:2.992362px;}
.ls17{letter-spacing:2.993782px;}
.ls19{letter-spacing:3.261694px;}
.ls3c{letter-spacing:4.484450px;}
.ls64{letter-spacing:4.685915px;}
.ls59{letter-spacing:4.691376px;}
.ls4{letter-spacing:4.691915px;}
.ls2c{letter-spacing:5.975782px;}
.ls5f{letter-spacing:6.433866px;}
.ls6c{letter-spacing:7.166338px;}
.ls6e{letter-spacing:7.171319px;}
.ls23{letter-spacing:7.172338px;}
.ls18{letter-spacing:7.173269px;}
.ls24{letter-spacing:7.175864px;}
.lse{letter-spacing:7.176843px;}
.ls2a{letter-spacing:9.590908px;}
.ls11{letter-spacing:9.596908px;}
.ls74{letter-spacing:9.960538px;}
.ls28{letter-spacing:10.160338px;}
.ls60{letter-spacing:10.456362px;}
.lsd{letter-spacing:11.660450px;}
.ls58{letter-spacing:12.992845px;}
.ls7{letter-spacing:13.276287px;}
.ls1e{letter-spacing:13.278538px;}
.lsf{letter-spacing:13.280338px;}
.ls1d{letter-spacing:13.282200px;}
.ls21{letter-spacing:13.284538px;}
.ls29{letter-spacing:13.286338px;}
.lsc{letter-spacing:13.626843px;}
.ls35{letter-spacing:15.272338px;}
.ls34{letter-spacing:15.278685px;}
.ls43{letter-spacing:15.818823px;}
.ls25{letter-spacing:15.849694px;}
.ls12{letter-spacing:15.855694px;}
.ls47{letter-spacing:16.268525px;}
.ls4b{letter-spacing:16.607023px;}
.ls3a{letter-spacing:17.120450px;}
.ls33{letter-spacing:17.126450px;}
.ls46{letter-spacing:19.464305px;}
.ls4e{letter-spacing:19.470305px;}
.ls72{letter-spacing:19.591140px;}
.ls4d{letter-spacing:19.592525px;}
.ls48{letter-spacing:19.800305px;}
.ls38{letter-spacing:20.602868px;}
.ls5e{letter-spacing:21.810538px;}
.ls57{letter-spacing:21.818094px;}
.ls4a{letter-spacing:22.352525px;}
.ls2e{letter-spacing:22.653954px;}
.ls45{letter-spacing:23.772538px;}
.ls39{letter-spacing:23.778538px;}
.ls78{letter-spacing:24.035602px;}
.ls54{letter-spacing:24.156062px;}
.ls63{letter-spacing:24.682868px;}
.ls5d{letter-spacing:24.802362px;}
.ls79{letter-spacing:27.102305px;}
.ls2{letter-spacing:27.308685px;}
.ls3f{letter-spacing:27.934868px;}
.ls32{letter-spacing:28.752538px;}
.ls61{letter-spacing:30.928362px;}
.ls7d{letter-spacing:31.053269px;}
.lsb{letter-spacing:32.786338px;}
.ls4c{letter-spacing:33.280868px;}
.ls41{letter-spacing:36.328868px;}
.ls44{letter-spacing:36.604868px;}
.ls5a{letter-spacing:37.644185px;}
.lsa{letter-spacing:37.966868px;}
.ls62{letter-spacing:38.392362px;}
.ls56{letter-spacing:40.568845px;}
.ls1a{letter-spacing:41.068363px;}
.ls31{letter-spacing:41.572868px;}
.ls65{letter-spacing:41.886775px;}
.ls3d{letter-spacing:47.024525px;}
.ls5{letter-spacing:48.082868px;}
.ls8{letter-spacing:49.882868px;}
.ls75{letter-spacing:62.481181px;}
.ls50{letter-spacing:97.780868px;}
.ls76{letter-spacing:121.458538px;}
.ls4f{letter-spacing:138.932338px;}
.ls73{letter-spacing:152.268538px;}
.ls49{letter-spacing:246.974338px;}
.ls7b{letter-spacing:262.700338px;}
.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;}
}
.ws84{word-spacing:-59.775600px;}
.ws1d{word-spacing:-47.654765px;}
.ws85{word-spacing:-47.324343px;}
.ws6{word-spacing:-38.937826px;}
.ws7a{word-spacing:-38.423756px;}
.ws1e{word-spacing:-31.633157px;}
.wse5{word-spacing:-30.629017px;}
.ws86{word-spacing:-27.813587px;}
.wsa{word-spacing:-25.189366px;}
.ws3d{word-spacing:-22.293810px;}
.wsdf{word-spacing:-21.469448px;}
.wsde{word-spacing:-18.042057px;}
.ws2{word-spacing:-17.932680px;}
.ws9{word-spacing:-16.605662px;}
.ws5f{word-spacing:-14.943900px;}
.wsfd{word-spacing:-14.920027px;}
.ws1f{word-spacing:-13.531962px;}
.ws1c{word-spacing:-12.038806px;}
.ws108{word-spacing:-11.955150px;}
.wse2{word-spacing:-8.098952px;}
.ws1b{word-spacing:-6.646143px;}
.ws1a{word-spacing:-6.623136px;}
.wsd{word-spacing:-5.732050px;}
.ws3b{word-spacing:-3.335478px;}
.wsda{word-spacing:-2.809023px;}
.wsaa{word-spacing:-2.762269px;}
.wsab{word-spacing:-2.597049px;}
.ws7c{word-spacing:-1.243332px;}
.wsb1{word-spacing:-1.135736px;}
.ws45{word-spacing:-1.075961px;}
.ws3a{word-spacing:-1.016185px;}
.wsb8{word-spacing:-0.956410px;}
.ws31{word-spacing:-0.896634px;}
.ws9e{word-spacing:-0.836858px;}
.ws92{word-spacing:-0.657532px;}
.ws91{word-spacing:-0.601208px;}
.wsb0{word-spacing:-0.597756px;}
.ws64{word-spacing:-0.418429px;}
.ws7{word-spacing:-0.212050px;}
.ws51{word-spacing:-0.179327px;}
.wsfb{word-spacing:-0.119551px;}
.ws20{word-spacing:-0.029888px;}
.wse6{word-spacing:-0.021471px;}
.ws5b{word-spacing:0.000000px;}
.ws43{word-spacing:0.011955px;}
.ws4f{word-spacing:0.179327px;}
.ws54{word-spacing:0.298878px;}
.wsea{word-spacing:0.358654px;}
.ws110{word-spacing:0.382565px;}
.ws74{word-spacing:0.478205px;}
.wse9{word-spacing:0.537980px;}
.ws65{word-spacing:0.597756px;}
.ws68{word-spacing:0.657532px;}
.ws69{word-spacing:0.777083px;}
.ws67{word-spacing:0.896634px;}
.ws119{word-spacing:0.908591px;}
.ws6b{word-spacing:0.956410px;}
.ws61{word-spacing:1.135736px;}
.ws33{word-spacing:1.195512px;}
.ws36{word-spacing:1.372022px;}
.ws37{word-spacing:1.374839px;}
.ws8{word-spacing:1.386794px;}
.ws4b{word-spacing:1.494390px;}
.ws73{word-spacing:1.554166px;}
.wseb{word-spacing:1.613941px;}
.ws3e{word-spacing:1.673717px;}
.ws3c{word-spacing:1.702309px;}
.wsb2{word-spacing:1.733492px;}
.ws53{word-spacing:1.793268px;}
.wsc3{word-spacing:2.032370px;}
.ws89{word-spacing:2.151922px;}
.ws14{word-spacing:2.211697px;}
.ws15{word-spacing:2.271473px;}
.ws16{word-spacing:2.311825px;}
.wsbb{word-spacing:2.331248px;}
.ws95{word-spacing:2.450800px;}
.wsec{word-spacing:2.749678px;}
.ws81{word-spacing:2.869229px;}
.ws4{word-spacing:2.929004px;}
.ws18{word-spacing:2.988780px;}
.wse3{word-spacing:3.048556px;}
.ws63{word-spacing:3.108331px;}
.wsdb{word-spacing:3.111846px;}
.wsb4{word-spacing:3.168107px;}
.wsfa{word-spacing:3.407209px;}
.ws94{word-spacing:3.466985px;}
.wsa6{word-spacing:3.646312px;}
.wsa8{word-spacing:3.765863px;}
.wsef{word-spacing:3.777827px;}
.ws2a{word-spacing:3.885414px;}
.ws59{word-spacing:3.945190px;}
.wsd2{word-spacing:4.004965px;}
.ws75{word-spacing:4.124516px;}
.ws104{word-spacing:4.184292px;}
.wsdc{word-spacing:4.244068px;}
.wsbc{word-spacing:4.303843px;}
.ws10a{word-spacing:4.399495px;}
.ws3f{word-spacing:4.418134px;}
.ws40{word-spacing:4.423394px;}
.ws10b{word-spacing:4.447316px;}
.ws30{word-spacing:4.483170px;}
.ws9f{word-spacing:4.542946px;}
.wsf0{word-spacing:4.590778px;}
.ws21{word-spacing:4.720309px;}
.ws22{word-spacing:4.722272px;}
.wsc7{word-spacing:4.782060px;}
.ws62{word-spacing:4.841824px;}
.ws29{word-spacing:4.901599px;}
.wsa1{word-spacing:4.961375px;}
.wsf4{word-spacing:4.962859px;}
.ws66{word-spacing:5.021150px;}
.ws2f{word-spacing:5.140702px;}
.ws6a{word-spacing:5.200477px;}
.ws7b{word-spacing:5.212432px;}
.ws11b{word-spacing:5.260266px;}
.ws11a{word-spacing:5.308087px;}
.wsd0{word-spacing:5.379804px;}
.ws80{word-spacing:5.439580px;}
.wsd6{word-spacing:5.559131px;}
.ws3{word-spacing:5.618906px;}
.wse0{word-spacing:5.638309px;}
.wse1{word-spacing:5.642134px;}
.wsc1{word-spacing:5.678682px;}
.ws57{word-spacing:5.738458px;}
.wsc2{word-spacing:5.798233px;}
.ws55{word-spacing:5.858009px;}
.ws28{word-spacing:5.917784px;}
.ws1{word-spacing:5.929754px;}
.ws42{word-spacing:5.972958px;}
.ws39{word-spacing:5.974861px;}
.ws19{word-spacing:5.977560px;}
.ws6e{word-spacing:6.037336px;}
.ws8a{word-spacing:6.156887px;}
.ws88{word-spacing:6.276438px;}
.ws27{word-spacing:6.455765px;}
.ws11{word-spacing:6.515540px;}
.ws8c{word-spacing:6.575316px;}
.wsa2{word-spacing:6.814418px;}
.wse8{word-spacing:6.874194px;}
.ws4e{word-spacing:6.993745px;}
.ws17{word-spacing:7.053521px;}
.ws10c{word-spacing:7.125269px;}
.ws46{word-spacing:7.173072px;}
.ws105{word-spacing:7.232848px;}
.ws11f{word-spacing:7.268731px;}
.ws6d{word-spacing:7.412174px;}
.wse4{word-spacing:7.471950px;}
.ws47{word-spacing:7.531726px;}
.ws93{word-spacing:7.591501px;}
.ws2e{word-spacing:7.770828px;}
.ws76{word-spacing:7.890379px;}
.wsc{word-spacing:7.950155px;}
.wse{word-spacing:7.958134px;}
.ws12{word-spacing:8.069706px;}
.wsf8{word-spacing:8.249033px;}
.ws13{word-spacing:8.428360px;}
.wsd3{word-spacing:8.547911px;}
.wsaf{word-spacing:8.607686px;}
.wsae{word-spacing:8.620530px;}
.ws26{word-spacing:8.667462px;}
.wsbf{word-spacing:8.727238px;}
.ws7d{word-spacing:8.787013px;}
.ws4a{word-spacing:8.846789px;}
.ws52{word-spacing:8.906564px;}
.ws35{word-spacing:8.966340px;}
.wsa7{word-spacing:9.085891px;}
.ws5a{word-spacing:9.205442px;}
.ws10d{word-spacing:9.325017px;}
.ws48{word-spacing:9.384769px;}
.ws103{word-spacing:9.444545px;}
.ws24{word-spacing:9.504320px;}
.ws111{word-spacing:9.516299px;}
.ws87{word-spacing:9.623872px;}
.ws2d{word-spacing:9.683647px;}
.wsba{word-spacing:9.743423px;}
.ws4d{word-spacing:9.803198px;}
.ws10e{word-spacing:9.898864px;}
.ws10f{word-spacing:9.903979px;}
.ws44{word-spacing:9.922750px;}
.ws72{word-spacing:9.982525px;}
.ws71{word-spacing:9.988589px;}
.ws115{word-spacing:10.090147px;}
.wsa5{word-spacing:10.102076px;}
.wsf7{word-spacing:10.161852px;}
.wsff{word-spacing:10.221628px;}
.ws6c{word-spacing:10.281403px;}
.ws9c{word-spacing:10.400954px;}
.wsd5{word-spacing:10.520506px;}
.wsd1{word-spacing:10.640057px;}
.ws8f{word-spacing:10.819384px;}
.ws83{word-spacing:10.879159px;}
.wsf{word-spacing:11.237813px;}
.ws32{word-spacing:11.417140px;}
.wsa4{word-spacing:11.596466px;}
.wsbe{word-spacing:11.656242px;}
.ws100{word-spacing:11.716018px;}
.wsb3{word-spacing:11.775793px;}
.ws10{word-spacing:11.835569px;}
.ws0{word-spacing:11.955120px;}
.ws60{word-spacing:12.014896px;}
.ws5{word-spacing:12.340210px;}
.wsb{word-spacing:12.373549px;}
.ws11d{word-spacing:12.385535px;}
.ws50{word-spacing:12.552876px;}
.ws25{word-spacing:12.612652px;}
.ws41{word-spacing:12.672427px;}
.wsed{word-spacing:12.911530px;}
.ws116{word-spacing:12.959383px;}
.ws7f{word-spacing:12.971305px;}
.ws7e{word-spacing:12.992134px;}
.ws23{word-spacing:13.031081px;}
.wsa0{word-spacing:13.150632px;}
.wscd{word-spacing:13.329959px;}
.ws98{word-spacing:13.449510px;}
.wsd8{word-spacing:13.569061px;}
.wsd4{word-spacing:13.688612px;}
.ws2b{word-spacing:13.867939px;}
.ws34{word-spacing:14.047266px;}
.ws8b{word-spacing:14.107042px;}
.ws102{word-spacing:14.166817px;}
.ws96{word-spacing:14.226593px;}
.wsf9{word-spacing:14.346144px;}
.ws6f{word-spacing:14.405920px;}
.wsb6{word-spacing:14.585246px;}
.ws9a{word-spacing:14.645022px;}
.wsb5{word-spacing:14.943900px;}
.wsdd{word-spacing:15.183002px;}
.ws117{word-spacing:15.206951px;}
.ws118{word-spacing:15.254771px;}
.wsce{word-spacing:15.302554px;}
.wscc{word-spacing:15.362329px;}
.wscb{word-spacing:15.397345px;}
.ws8d{word-spacing:15.422105px;}
.wsc0{word-spacing:15.481880px;}
.wsfe{word-spacing:15.720983px;}
.ws8e{word-spacing:15.780758px;}
.wse7{word-spacing:16.079636px;}
.wsee{word-spacing:16.115542px;}
.wsb9{word-spacing:16.139412px;}
.ws2c{word-spacing:16.199188px;}
.ws4c{word-spacing:16.498066px;}
.wsa3{word-spacing:16.557841px;}
.ws56{word-spacing:16.737168px;}
.ws11e{word-spacing:17.119775px;}
.ws82{word-spacing:17.155597px;}
.ws9d{word-spacing:17.275148px;}
.ws5d{word-spacing:17.310454px;}
.ws5e{word-spacing:17.334924px;}
.ws77{word-spacing:17.753353px;}
.ws99{word-spacing:17.932680px;}
.ws9b{word-spacing:17.992456px;}
.ws97{word-spacing:18.052231px;}
.wsf6{word-spacing:18.291334px;}
.wscf{word-spacing:18.351109px;}
.ws112{word-spacing:18.697855px;}
.wsb7{word-spacing:18.709763px;}
.wsd7{word-spacing:19.486846px;}
.wsfc{word-spacing:19.546621px;}
.ws58{word-spacing:19.606397px;}
.ws101{word-spacing:20.503031px;}
.wsc5{word-spacing:20.540815px;}
.wsc6{word-spacing:20.562806px;}
.wsbd{word-spacing:20.981236px;}
.wsf5{word-spacing:21.459440px;}
.ws11c{word-spacing:21.949655px;}
.ws113{word-spacing:22.284400px;}
.ws114{word-spacing:22.332220px;}
.ws78{word-spacing:22.634134px;}
.ws79{word-spacing:22.654952px;}
.ws106{word-spacing:33.904805px;}
.ws107{word-spacing:33.952626px;}
.ws109{word-spacing:36.917503px;}
.wsac{word-spacing:67.768704px;}
.wsa9{word-spacing:96.499900px;}
.ws90{word-spacing:103.822082px;}
.wsc4{word-spacing:112.060460px;}
.wsad{word-spacing:129.249071px;}
.ws38{word-spacing:151.359900px;}
.ws5c{word-spacing:153.946710px;}
.ws70{word-spacing:157.258156px;}
.wsf2{word-spacing:168.350923px;}
.wsf1{word-spacing:169.667056px;}
.wsf3{word-spacing:173.663096px;}
.ws49{word-spacing:183.806516px;}
.wsd9{word-spacing:232.151378px;}
.wsc9{word-spacing:241.826923px;}
.wsca{word-spacing:247.133096px;}
.wsc8{word-spacing:261.077056px;}
._12{margin-left:-21.827620px;}
._13{margin-left:-19.923207px;}
._e{margin-left:-6.814418px;}
._17{margin-left:-5.559131px;}
._6{margin-left:-4.221043px;}
._2{margin-left:-2.299073px;}
._8{margin-left:-1.016185px;}
._7{width:1.138073px;}
._0{width:2.872920px;}
._1{width:3.924902px;}
._28{width:5.041438px;}
._27{width:7.109605px;}
._1b{width:15.389929px;}
._29{width:16.677392px;}
._24{width:17.932680px;}
._9{width:18.976465px;}
._f{width:20.889284px;}
._b{width:22.356074px;}
._5{width:26.114073px;}
._3{width:28.635103px;}
._4{width:30.346547px;}
._23{width:33.414560px;}
._d{width:35.566482px;}
._1f{width:39.392120px;}
._1c{width:46.314718px;}
._2a{width:71.726903px;}
._1a{width:87.170142px;}
._16{width:94.492660px;}
._19{width:95.500475px;}
._18{width:99.816998px;}
._15{width:102.825677px;}
._14{width:107.139516px;}
._20{width:108.841346px;}
._1e{width:111.064055px;}
._1d{width:115.377558px;}
._2b{width:124.953496px;}
._11{width:154.931970px;}
._21{width:174.513496px;}
._a{width:178.318861px;}
._c{width:179.944516px;}
._10{width:183.694290px;}
._22{width:185.161363px;}
._2d{width:203.351258px;}
._2c{width:214.688250px;}
._26{width:250.113452px;}
._25{width:260.614393px;}
.fc2{color:transparent;}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:23.234040px;}
.fsf{font-size:28.397160px;}
.fs12{font-size:28.877805px;}
.fs3{font-size:29.887800px;}
.fs9{font-size:30.978720px;}
.fs13{font-size:31.503060px;}
.fs5{font-size:32.125680px;}
.fs8{font-size:33.560280px;}
.fsb{font-size:34.128315px;}
.fs4{font-size:34.802820px;}
.fs14{font-size:35.865600px;}
.fs7{font-size:38.723400px;}
.fs11{font-size:39.378825px;}
.fs6{font-size:40.157100px;}
.fse{font-size:41.304960px;}
.fs2{font-size:41.842800px;}
.fsc{font-size:42.004080px;}
.fs1{font-size:47.820600px;}
.fsd{font-size:49.049640px;}
.fsa{font-size:49.879845px;}
.fs0{font-size:59.775600px;}
.y0{bottom:0.000000px;}
.y59{bottom:1.561665px;}
.yf3{bottom:3.442080px;}
.yba{bottom:3.500340px;}
.y121{bottom:4.732860px;}
.y89{bottom:5.378250px;}
.y47{bottom:14.501175px;}
.y169{bottom:16.189072px;}
.y8a{bottom:17.855790px;}
.yf4{bottom:18.501180px;}
.ybb{bottom:18.814327px;}
.y16b{bottom:23.627295px;}
.y48{bottom:23.759617px;}
.y123{bottom:25.170210px;}
.y8c{bottom:26.783685px;}
.yf6{bottom:27.429075px;}
.ybd{bottom:27.893334px;}
.y8b{bottom:52.276590px;}
.y49{bottom:56.443035px;}
.y8d{bottom:63.678480px;}
.yf7{bottom:64.216305px;}
.ybe{bottom:69.109838px;}
.y5a{bottom:69.940282px;}
.y13b{bottom:87.773040px;}
.y4a{bottom:89.126453px;}
.y12d{bottom:90.173891px;}
.y124{bottom:91.645380px;}
.y16c{bottom:93.196553px;}
.yf5{bottom:99.067365px;}
.y8e{bottom:100.573275px;}
.yf8{bottom:101.003535px;}
.y12c{bottom:102.436301px;}
.ybc{bottom:105.666514px;}
.y58{bottom:109.093455px;}
.y45{bottom:109.101000px;}
.ybf{bottom:110.326341px;}
.y44{bottom:113.332500px;}
.y13a{bottom:114.234030px;}
.y103{bottom:116.441264px;}
.y122{bottom:119.074455px;}
.y57{bottom:119.802015px;}
.y4b{bottom:121.809870px;}
.y16a{bottom:123.386985px;}
.y199{bottom:126.783000px;}
.y102{bottom:130.286170px;}
.y56{bottom:130.510575px;}
.y43{bottom:131.265000px;}
.y87{bottom:131.266500px;}
.y8f{bottom:137.468070px;}
.yf9{bottom:137.790765px;}
.y55{bottom:140.549850px;}
.y9c{bottom:141.340410px;}
.y101{bottom:144.130216px;}
.y198{bottom:144.451500px;}
.y86{bottom:149.199000px;}
.y13c{bottom:150.375870px;}
.y54{bottom:151.258410px;}
.yc0{bottom:151.542845px;}
.y9b{bottom:151.666650px;}
.y168{bottom:153.676500px;}
.y4c{bottom:154.493288px;}
.y130{bottom:156.515852px;}
.y125{bottom:157.475160px;}
.y100{bottom:157.975122px;}
.y1cb{bottom:158.001000px;}
.y42{bottom:158.620500px;}
.y53{bottom:161.966970px;}
.y9a{bottom:161.992890px;}
.y16d{bottom:163.422124px;}
.y85{bottom:167.131500px;}
.y99{bottom:171.673740px;}
.yff{bottom:171.819168px;}
.y52{bottom:172.675530px;}
.y197{bottom:173.275500px;}
.y90{bottom:174.362865px;}
.yfa{bottom:174.577995px;}
.y175{bottom:178.298569px;}
.y167{bottom:180.319500px;}
.y98{bottom:181.999980px;}
.y12f{bottom:182.531781px;}
.y51{bottom:182.714805px;}
.y84{bottom:185.064000px;}
.yb8{bottom:185.532000px;}
.yfe{bottom:185.664074px;}
.y4d{bottom:187.176705px;}
.y5d{bottom:187.889717px;}
.y174{bottom:188.580817px;}
.y196{bottom:191.208000px;}
.y1ca{bottom:191.823000px;}
.y97{bottom:192.326220px;}
.yc1{bottom:192.759348px;}
.y50{bottom:193.423365px;}
.y12e{bottom:194.794191px;}
.y41{bottom:198.088500px;}
.y166{bottom:198.252000px;}
.y5c{bottom:198.443003px;}
.yfd{bottom:199.508120px;}
.y96{bottom:202.652460px;}
.y83{bottom:202.996500px;}
.y173{bottom:203.238491px;}
.yb7{bottom:203.466000px;}
.yc4{bottom:203.894805px;}
.y4f{bottom:204.131925px;}
.y5b{bottom:208.996288px;}
.y195{bottom:209.140500px;}
.y1c9{bottom:209.757000px;}
.y91{bottom:211.257660px;}
.yfb{bottom:211.365225px;}
.y95{bottom:212.333310px;}
.y13d{bottom:212.978700px;}
.yfc{bottom:213.353026px;}
.y172{bottom:213.520740px;}
.y146{bottom:215.990520px;}
.y40{bottom:216.021000px;}
.y165{bottom:216.184500px;}
.yc3{bottom:216.802309px;}
.y9f{bottom:218.614245px;}
.y4e{bottom:219.860123px;}
.y82{bottom:220.929000px;}
.yb6{bottom:221.398500px;}
.y141{bottom:221.766330px;}
.y94{bottom:222.659550px;}
.y171{bottom:223.802989px;}
.y126{bottom:223.950330px;}
.y145{bottom:226.101630px;}
.y194{bottom:227.073000px;}
.y1c8{bottom:227.689500px;}
.y9e{bottom:228.790755px;}
.y140{bottom:231.827530px;}
.y93{bottom:232.985790px;}
.y16e{bottom:232.991381px;}
.y129{bottom:233.331719px;}
.y3f{bottom:233.955000px;}
.yc2{bottom:233.975852px;}
.y170{bottom:234.085237px;}
.y164{bottom:234.117000px;}
.y144{bottom:236.212740px;}
.y12b{bottom:236.858130px;}
.y120{bottom:238.861500px;}
.y81{bottom:238.863000px;}
.y9d{bottom:238.967265px;}
.yb5{bottom:239.331000px;}
.y13f{bottom:241.888730px;}
.y128{bottom:243.312030px;}
.y16f{bottom:244.367486px;}
.y193{bottom:245.007000px;}
.y1c7{bottom:245.622000px;}
.y143{bottom:246.323850px;}
.y92{bottom:248.152455px;}
.y12a{bottom:251.056710px;}
.y3e{bottom:251.887500px;}
.y13e{bottom:251.949930px;}
.y163{bottom:252.051000px;}
.y127{bottom:253.292341px;}
.y142{bottom:256.434960px;}
.y80{bottom:256.780500px;}
.yf2{bottom:256.795500px;}
.yb4{bottom:257.263500px;}
.y192{bottom:262.939500px;}
.y1c6{bottom:263.554500px;}
.y162{bottom:269.754000px;}
.y3d{bottom:269.820000px;}
.y7f{bottom:274.713000px;}
.yf1{bottom:274.728000px;}
.yb3{bottom:275.196000px;}
.y191{bottom:280.872000px;}
.y1c5{bottom:281.487000px;}
.y161{bottom:287.686500px;}
.y3c{bottom:287.752500px;}
.ye8{bottom:288.448500px;}
.y7e{bottom:292.645500px;}
.y11f{bottom:292.660500px;}
.yb2{bottom:293.128500px;}
.y190{bottom:298.804500px;}
.y1c4{bottom:299.419500px;}
.ye7{bottom:299.851500px;}
.yed{bottom:300.693000px;}
.ye4{bottom:301.221000px;}
.yee{bottom:303.448500px;}
.y160{bottom:305.619000px;}
.y3b{bottom:305.685000px;}
.yeb{bottom:308.770500px;}
.yea{bottom:310.230000px;}
.y7d{bottom:310.578000px;}
.y11e{bottom:310.593000px;}
.yb1{bottom:311.062500px;}
.ye9{bottom:313.924500px;}
.yef{bottom:315.532500px;}
.y18f{bottom:316.737000px;}
.y1c3{bottom:317.353500px;}
.yec{bottom:319.807500px;}
.y15f{bottom:323.551500px;}
.y3a{bottom:323.617500px;}
.ye3{bottom:325.132500px;}
.y7c{bottom:328.510500px;}
.y11d{bottom:328.525500px;}
.yb0{bottom:328.995000px;}
.ye6{bottom:329.407500px;}
.y1c2{bottom:335.286000px;}
.y18e{bottom:335.427000px;}
.y15e{bottom:341.484000px;}
.y39{bottom:341.551500px;}
.yf0{bottom:345.348000px;}
.y7b{bottom:346.443000px;}
.y11c{bottom:346.458000px;}
.yaf{bottom:346.927500px;}
.ye5{bottom:349.042500px;}
.y18d{bottom:353.359500px;}
.y1c1{bottom:353.901000px;}
.ye0{bottom:357.768000px;}
.y15d{bottom:359.418000px;}
.y38{bottom:360.831000px;}
.y7a{bottom:364.377000px;}
.y139{bottom:364.390500px;}
.y11b{bottom:364.392000px;}
.yae{bottom:364.860000px;}
.ye2{bottom:366.238500px;}
.ye1{bottom:370.470000px;}
.y18c{bottom:371.292000px;}
.y1c0{bottom:371.833500px;}
.y15c{bottom:377.350500px;}
.y37{bottom:378.763500px;}
.ydf{bottom:381.678000px;}
.y79{bottom:382.309500px;}
.y11a{bottom:382.324500px;}
.yad{bottom:382.792500px;}
.y18b{bottom:389.226000px;}
.y1bf{bottom:389.766000px;}
.yde{bottom:394.588500px;}
.y15b{bottom:395.283000px;}
.y36{bottom:396.696000px;}
.y78{bottom:400.242000px;}
.y119{bottom:400.257000px;}
.yac{bottom:400.726500px;}
.y1be{bottom:407.700000px;}
.y18a{bottom:407.914500px;}
.y15a{bottom:413.215500px;}
.y35{bottom:414.628500px;}
.y77{bottom:418.174500px;}
.y118{bottom:418.189500px;}
.yab{bottom:418.659000px;}
.ydd{bottom:422.049000px;}
.y1bd{bottom:425.632500px;}
.y189{bottom:425.848500px;}
.y159{bottom:430.689000px;}
.y34{bottom:432.561000px;}
.y76{bottom:436.107000px;}
.y117{bottom:436.122000px;}
.yaa{bottom:436.591500px;}
.ydc{bottom:439.981500px;}
.y1bc{bottom:443.565000px;}
.y158{bottom:448.621500px;}
.y33{bottom:450.495000px;}
.y116{bottom:454.054500px;}
.y75{bottom:456.303000px;}
.y188{bottom:457.231500px;}
.ydb{bottom:457.914000px;}
.ya9{bottom:460.872000px;}
.y1bb{bottom:461.497500px;}
.y74{bottom:462.045000px;}
.y73{bottom:462.859500px;}
.y32{bottom:463.273500px;}
.y72{bottom:466.554000px;}
.y157{bottom:466.555500px;}
.y31{bottom:468.427500px;}
.y138{bottom:471.987000px;}
.y115{bottom:471.988500px;}
.yda{bottom:475.846500px;}
.y1ba{bottom:479.430000px;}
.y156{bottom:484.488000px;}
.y30{bottom:486.360000px;}
.y187{bottom:488.616000px;}
.y137{bottom:489.921000px;}
.ya8{bottom:492.876000px;}
.yd9{bottom:493.779000px;}
.y114{bottom:494.628000px;}
.y1b9{bottom:497.362500px;}
.y71{bottom:499.548000px;}
.y155{bottom:502.420500px;}
.y2f{bottom:504.292500px;}
.y186{bottom:506.548500px;}
.y136{bottom:507.853500px;}
.ya7{bottom:510.808500px;}
.yd8{bottom:511.713000px;}
.y1b8{bottom:515.296500px;}
.y2e{bottom:517.072500px;}
.y70{bottom:517.480500px;}
.y2d{bottom:517.993500px;}
.y154{bottom:520.353000px;}
.y2c{bottom:522.225000px;}
.y113{bottom:522.646500px;}
.y185{bottom:524.482500px;}
.y135{bottom:525.786000px;}
.yd7{bottom:525.951000px;}
.ya6{bottom:528.741000px;}
.yd6{bottom:529.645500px;}
.y1b7{bottom:533.229000px;}
.y6f{bottom:535.413000px;}
.y153{bottom:538.285500px;}
.yd4{bottom:540.022500px;}
.y2b{bottom:540.157500px;}
.y112{bottom:540.579000px;}
.y184{bottom:542.415000px;}
.yd3{bottom:543.012000px;}
.y134{bottom:543.718500px;}
.yd5{bottom:544.470000px;}
.ya5{bottom:546.673500px;}
.yd2{bottom:548.164500px;}
.y6e{bottom:553.347000px;}
.y152{bottom:556.218000px;}
.y183{bottom:556.653000px;}
.y2a{bottom:558.091500px;}
.y111{bottom:558.511500px;}
.y1b6{bottom:559.965000px;}
.y182{bottom:560.347500px;}
.ya4{bottom:564.606000px;}
.yd1{bottom:566.097000px;}
.y133{bottom:566.358000px;}
.y6d{bottom:573.541500px;}
.y151{bottom:574.152000px;}
.y29{bottom:576.024000px;}
.y110{bottom:576.444000px;}
.y181{bottom:578.280000px;}
.y6c{bottom:580.098000px;}
.ya3{bottom:582.538500px;}
.y6b{bottom:583.792500px;}
.yd0{bottom:584.031000px;}
.y150{bottom:592.084500px;}
.y1b5{bottom:593.787000px;}
.y132{bottom:594.376500px;}
.y10f{bottom:594.378000px;}
.y28{bottom:595.303500px;}
.y17f{bottom:601.944000px;}
.ycf{bottom:601.963500px;}
.y17e{bottom:606.109500px;}
.y17d{bottom:606.283500px;}
.y14f{bottom:610.017000px;}
.y1b4{bottom:611.719500px;}
.y10e{bottom:612.310500px;}
.y27{bottom:613.236000px;}
.y17c{bottom:616.534500px;}
.y6a{bottom:616.786500px;}
.yce{bottom:626.310000px;}
.y1b3{bottom:629.652000px;}
.ya2{bottom:629.727000px;}
.y10d{bottom:630.243000px;}
.y69{bottom:634.720500px;}
.y180{bottom:637.236000px;}
.y17b{bottom:645.733500px;}
.y24{bottom:646.414500px;}
.y1b2{bottom:647.584500px;}
.ya1{bottom:647.659500px;}
.y10c{bottom:648.175500px;}
.y25{bottom:648.984000px;}
.y17a{bottom:649.428000px;}
.y68{bottom:652.653000px;}
.y14e{bottom:656.533500px;}
.ycd{bottom:658.476000px;}
.y179{bottom:659.679000px;}
.y1b1{bottom:665.517000px;}
.y10b{bottom:666.108000px;}
.y1e{bottom:669.427500px;}
.y67{bottom:670.570500px;}
.y1eb{bottom:673.956000px;}
.y14d{bottom:674.466000px;}
.ycc{bottom:676.408500px;}
.y1d{bottom:680.830500px;}
.y1b0{bottom:683.451000px;}
.y10a{bottom:684.040500px;}
.y22{bottom:684.478500px;}
.y23{bottom:687.342000px;}
.y1ea{bottom:687.405000px;}
.y66{bottom:688.503000px;}
.y21{bottom:689.136000px;}
.ycb{bottom:694.341000px;}
.y1f{bottom:695.692500px;}
.y178{bottom:696.687000px;}
.y1a{bottom:699.387000px;}
.y1e9{bottom:700.855500px;}
.y1af{bottom:701.383500px;}
.y131{bottom:701.973000px;}
.y109{bottom:701.974500px;}
.y65{bottom:706.435500px;}
.y20{bottom:709.495500px;}
.y14c{bottom:709.584000px;}
.yca{bottom:712.273500px;}
.y1c{bottom:713.583000px;}
.y1e8{bottom:714.304500px;}
.y177{bottom:714.619500px;}
.y26{bottom:715.380000px;}
.y1ae{bottom:719.316000px;}
.y1b{bottom:719.353500px;}
.y108{bottom:719.907000px;}
.y14b{bottom:723.033000px;}
.y64{bottom:724.368000px;}
.y1e7{bottom:727.753500px;}
.yc9{bottom:730.206000px;}
.y176{bottom:732.552000px;}
.y14a{bottom:736.483500px;}
.y1ad{bottom:737.248500px;}
.y107{bottom:737.839500px;}
.y18{bottom:738.556500px;}
.y1e6{bottom:741.204000px;}
.y19{bottom:741.421500px;}
.y63{bottom:744.579000px;}
.y149{bottom:749.932500px;}
.y62{bottom:751.135500px;}
.y1e5{bottom:754.653000px;}
.y61{bottom:754.830000px;}
.y106{bottom:755.772000px;}
.y1ac{bottom:755.863500px;}
.y17{bottom:759.669000px;}
.y148{bottom:763.381500px;}
.y16{bottom:764.823000px;}
.y14{bottom:765.630000px;}
.y1e4{bottom:768.102000px;}
.y13{bottom:772.186500px;}
.y1ab{bottom:773.796000px;}
.y12{bottom:775.881000px;}
.y147{bottom:777.429000px;}
.y60{bottom:777.805500px;}
.yc8{bottom:780.471000px;}
.y1e3{bottom:781.552500px;}
.y15{bottom:785.991000px;}
.y1aa{bottom:791.730000px;}
.y1e2{bottom:795.001500px;}
.y5f{bottom:795.738000px;}
.yc7{bottom:798.403500px;}
.y105{bottom:801.670500px;}
.y1e1{bottom:808.452000px;}
.y1a9{bottom:809.662500px;}
.ya0{bottom:814.222500px;}
.yc6{bottom:816.336000px;}
.y11{bottom:816.507000px;}
.y104{bottom:819.603000px;}
.y1e0{bottom:821.901000px;}
.y1a8{bottom:827.595000px;}
.yc5{bottom:834.268500px;}
.y10{bottom:834.439500px;}
.y1df{bottom:835.350000px;}
.y88{bottom:841.122000px;}
.y5e{bottom:844.344000px;}
.y1a7{bottom:845.527500px;}
.y1de{bottom:848.800500px;}
.yf{bottom:852.373500px;}
.yb9{bottom:855.789000px;}
.y1dd{bottom:862.249500px;}
.y1a6{bottom:863.460000px;}
.ye{bottom:870.306000px;}
.y46{bottom:871.243500px;}
.y1dc{bottom:875.698500px;}
.y1a5{bottom:881.392500px;}
.yd{bottom:888.238500px;}
.y1db{bottom:889.149000px;}
.y1a4{bottom:900.009000px;}
.yc{bottom:901.939500px;}
.y1da{bottom:902.598000px;}
.yb{bottom:906.171000px;}
.y1d9{bottom:916.048500px;}
.y1a3{bottom:917.941500px;}
.ya{bottom:924.103500px;}
.y1d8{bottom:929.497500px;}
.y1d7{bottom:942.946500px;}
.y9{bottom:943.383000px;}
.y1d6{bottom:956.397000px;}
.y8{bottom:961.317000px;}
.y1a2{bottom:968.725500px;}
.y1d5{bottom:969.846000px;}
.y7{bottom:979.249500px;}
.y1d4{bottom:983.295000px;}
.y1a1{bottom:986.658000px;}
.y1d3{bottom:996.745500px;}
.y6{bottom:997.182000px;}
.y1a0{bottom:1004.590500px;}
.y1d2{bottom:1010.194500px;}
.y5{bottom:1015.114500px;}
.y1d1{bottom:1023.643500px;}
.y4{bottom:1033.047000px;}
.y1d0{bottom:1037.094000px;}
.y19f{bottom:1039.710000px;}
.y1cf{bottom:1050.543000px;}
.y3{bottom:1050.979500px;}
.y19e{bottom:1053.159000px;}
.y1ce{bottom:1063.993500px;}
.y19d{bottom:1066.608000px;}
.y2{bottom:1068.913500px;}
.y1cd{bottom:1077.442500px;}
.y19c{bottom:1080.058500px;}
.y19b{bottom:1093.507500px;}
.y1cc{bottom:1099.633500px;}
.y1{bottom:1099.635000px;}
.y19a{bottom:1107.555000px;}
.hf{height:2.391024px;}
.h27{height:22.955232px;}
.h40{height:23.343767px;}
.h1d{height:23.805129px;}
.h47{height:24.675533px;}
.h26{height:24.868167px;}
.h2a{height:25.289081px;}
.h1c{height:25.788890px;}
.h25{height:28.694039px;}
.h3e{height:29.179709px;}
.h1e{height:29.756411px;}
.h3a{height:30.606975px;}
.h2b{height:31.125023px;}
.he{height:31.382100px;}
.h49{height:32.661470px;}
.h2d{height:32.670223px;}
.h3d{height:32.900573px;}
.h48{height:33.140573px;}
.h34{height:34.391850px;}
.h39{height:36.345783px;}
.h3b{height:36.531656px;}
.h29{height:36.960965px;}
.h3f{height:37.149984px;}
.h3c{height:37.372824px;}
.h1a{height:40.826735px;}
.h1{height:41.125613px;}
.h1f{height:41.484266px;}
.h3{height:42.141798px;}
.h2{height:44.831700px;}
.h15{height:45.782100px;}
.h32{height:48.650100px;}
.h36{height:49.895850px;}
.h46{height:50.477846px;}
.h44{height:51.968100px;}
.h12{height:52.883850px;}
.h4{height:53.072100px;}
.h10{height:53.078100px;}
.hd{height:54.749700px;}
.h9{height:54.914100px;}
.hc{height:55.307850px;}
.h30{height:55.903613px;}
.h6{height:56.060100px;}
.h21{height:56.066100px;}
.h5{height:58.051613px;}
.h2c{height:58.052100px;}
.h2f{height:59.609700px;}
.h14{height:63.155850px;}
.h35{height:64.283700px;}
.hb{height:64.337850px;}
.h17{height:65.441700px;}
.h19{height:65.447700px;}
.h11{height:66.209700px;}
.h33{height:69.692100px;}
.h7{height:70.838100px;}
.h22{height:71.726100px;}
.h16{height:71.846100px;}
.h18{height:75.530100px;}
.h31{height:78.362100px;}
.h41{height:82.575798px;}
.h2e{height:85.646100px;}
.h20{height:85.835700px;}
.h42{height:86.673024px;}
.h13{height:93.011700px;}
.h8{height:100.049700px;}
.h37{height:101.219850px;}
.h23{height:103.301700px;}
.ha{height:109.679700px;}
.h43{height:126.275700px;}
.h38{height:136.431024px;}
.h45{height:161.642100px;}
.h1b{height:240.942600px;}
.h28{height:256.399905px;}
.h24{height:271.063800px;}
.h0{height:1188.000000px;}
.w3{width:361.410105px;}
.w1{width:361.413900px;}
.w2{width:361.418400px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x54{left:20.437350px;}
.x4f{left:24.309690px;}
.x27{left:26.548305px;}
.x55{left:28.397160px;}
.x50{left:30.118200px;}
.x24{left:31.902585px;}
.x23{left:37.256865px;}
.x22{left:43.838167px;}
.x57{left:53.094084px;}
.x53{left:58.479390px;}
.x3{left:73.446000px;}
.x56{left:77.336912px;}
.x28{left:81.652770px;}
.x58{left:83.342395px;}
.x5e{left:86.239627px;}
.x2{left:88.390500px;}
.x5{left:91.312500px;}
.x6{left:99.987000px;}
.x1{left:122.545500px;}
.x37{left:124.017000px;}
.xf{left:133.755000px;}
.x51{left:135.589555px;}
.x38{left:136.841417px;}
.x52{left:138.177000px;}
.x7{left:142.815000px;}
.x26{left:144.565560px;}
.x35{left:146.180835px;}
.x11{left:150.492000px;}
.x6a{left:153.952500px;}
.x4{left:155.643000px;}
.x20{left:159.345000px;}
.x59{left:162.082642px;}
.xc{left:163.642500px;}
.x5a{left:165.219840px;}
.x8{left:167.925000px;}
.x6b{left:170.869500px;}
.x10{left:175.147500px;}
.x5c{left:180.523500px;}
.xa{left:185.148000px;}
.xd{left:186.771000px;}
.x9{left:188.745000px;}
.x1a{left:193.530000px;}
.x5d{left:197.439000px;}
.x6c{left:208.122000px;}
.xb{left:214.629000px;}
.x1b{left:216.660000px;}
.x1d{left:221.239500px;}
.x12{left:225.789000px;}
.x13{left:238.170000px;}
.x15{left:252.487500px;}
.x14{left:255.570000px;}
.x25{left:261.021150px;}
.x36{left:263.319120px;}
.x17{left:269.710500px;}
.x16{left:272.308500px;}
.x5b{left:291.070890px;}
.xe{left:295.489500px;}
.x5f{left:297.966443px;}
.x60{left:309.123776px;}
.x18{left:315.255000px;}
.x1e{left:361.783500px;}
.x19{left:362.944500px;}
.x1f{left:422.772000px;}
.x1c{left:432.609000px;}
.x21{left:467.967000px;}
.x4e{left:474.102000px;}
.x69{left:479.922000px;}
.x2d{left:482.910000px;}
.x3f{left:484.110000px;}
.x40{left:486.694500px;}
.x6e{left:489.378000px;}
.x29{left:491.512500px;}
.x41{left:502.374000px;}
.x44{left:509.149500px;}
.x2e{left:520.123500px;}
.x3b{left:524.533500px;}
.x39{left:526.348500px;}
.x42{left:533.805000px;}
.x43{left:536.769000px;}
.x61{left:540.318000px;}
.x2f{left:541.480500px;}
.x2a{left:547.134000px;}
.x68{left:551.065500px;}
.x32{left:562.441500px;}
.x2b{left:568.491000px;}
.x6f{left:572.074500px;}
.x45{left:584.446500px;}
.x30{left:592.455000px;}
.x46{left:596.827500px;}
.x2c{left:603.007500px;}
.x47{left:611.145000px;}
.x33{left:613.416000px;}
.x6d{left:614.418000px;}
.x63{left:624.264000px;}
.x48{left:625.318500px;}
.x3c{left:628.417500px;}
.x3d{left:631.002000px;}
.x31{left:638.268000px;}
.x3e{left:646.683000px;}
.x49{left:658.420500px;}
.x67{left:660.333000px;}
.x34{left:663.226500px;}
.x62{left:668.734500px;}
.x64{left:681.238500px;}
.x4a{left:701.557500px;}
.x65{left:716.245500px;}
.x3a{left:725.563500px;}
.x4b{left:763.410000px;}
.x66{left:770.541000px;}
.x4c{left:824.197500px;}
.x4d{left:827.130000px;}
@media print{
.v1b{vertical-align:-31.882667pt;}
.v11{vertical-align:-19.002667pt;}
.v2a{vertical-align:-15.002667pt;}
.v23{vertical-align:-13.768320pt;}
.v14{vertical-align:-9.136000pt;}
.v1{vertical-align:-7.968000pt;}
.v20{vertical-align:-6.640000pt;}
.v18{vertical-align:-5.317333pt;}
.vf{vertical-align:-3.984000pt;}
.v0{vertical-align:0.000000pt;}
.v24{vertical-align:2.136960pt;}
.v17{vertical-align:4.421333pt;}
.v25{vertical-align:6.014088pt;}
.ve{vertical-align:7.488000pt;}
.vd{vertical-align:8.816000pt;}
.v15{vertical-align:10.352000pt;}
.v5{vertical-align:13.136000pt;}
.v1f{vertical-align:14.133333pt;}
.v3{vertical-align:15.045333pt;}
.v16{vertical-align:16.032000pt;}
.v1e{vertical-align:17.290667pt;}
.v9{vertical-align:18.325333pt;}
.v2{vertical-align:19.280000pt;}
.v8{vertical-align:20.917333pt;}
.v4{vertical-align:21.936000pt;}
.vb{vertical-align:22.986667pt;}
.v1d{vertical-align:23.930667pt;}
.v12{vertical-align:27.082667pt;}
.v10{vertical-align:29.237333pt;}
.v1c{vertical-align:34.053333pt;}
.v6{vertical-align:35.072000pt;}
.v13{vertical-align:36.213333pt;}
.vc{vertical-align:37.264000pt;}
.va{vertical-align:39.317333pt;}
.v1a{vertical-align:41.760000pt;}
.v7{vertical-align:43.040000pt;}
.v19{vertical-align:48.234667pt;}
.v21{vertical-align:55.914667pt;}
.v27{vertical-align:72.394667pt;}
.v26{vertical-align:74.917333pt;}
.v29{vertical-align:115.786667pt;}
.v22{vertical-align:119.146667pt;}
.v28{vertical-align:126.794667pt;}
.ls52{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.000055pt;}
.ls15{letter-spacing:0.000473pt;}
.ls9{letter-spacing:0.000479pt;}
.ls1c{letter-spacing:0.000501pt;}
.ls16{letter-spacing:0.000546pt;}
.ls1b{letter-spacing:0.000689pt;}
.ls1{letter-spacing:0.000882pt;}
.ls66{letter-spacing:0.001069pt;}
.ls40{letter-spacing:0.001509pt;}
.ls6a{letter-spacing:0.001773pt;}
.ls7c{letter-spacing:0.001995pt;}
.ls13{letter-spacing:0.002079pt;}
.ls10{letter-spacing:0.002205pt;}
.ls3{letter-spacing:0.002387pt;}
.ls2d{letter-spacing:0.002489pt;}
.ls68{letter-spacing:0.002512pt;}
.ls77{letter-spacing:0.002827pt;}
.ls3e{letter-spacing:0.002906pt;}
.ls6f{letter-spacing:0.003359pt;}
.ls2b{letter-spacing:0.003633pt;}
.ls6d{letter-spacing:0.003879pt;}
.ls2f{letter-spacing:0.004465pt;}
.ls26{letter-spacing:0.004777pt;}
.ls55{letter-spacing:0.005388pt;}
.ls51{letter-spacing:0.006216pt;}
.ls30{letter-spacing:0.006842pt;}
.ls53{letter-spacing:0.009179pt;}
.ls42{letter-spacing:0.009519pt;}
.ls6b{letter-spacing:0.430275pt;}
.ls80{letter-spacing:0.741348pt;}
.ls71{letter-spacing:0.771026pt;}
.ls14{letter-spacing:0.894993pt;}
.ls27{letter-spacing:0.900327pt;}
.ls69{letter-spacing:0.954888pt;}
.ls20{letter-spacing:1.336009pt;}
.ls67{letter-spacing:1.567996pt;}
.ls6{letter-spacing:1.671842pt;}
.ls3b{letter-spacing:1.677176pt;}
.ls22{letter-spacing:2.146585pt;}
.ls1f{letter-spacing:2.151919pt;}
.ls70{letter-spacing:2.635446pt;}
.ls81{letter-spacing:2.655711pt;}
.ls7e{letter-spacing:2.656533pt;}
.ls0{letter-spacing:2.656693pt;}
.ls7a{letter-spacing:2.657014pt;}
.ls7f{letter-spacing:2.657067pt;}
.ls5b{letter-spacing:2.658529pt;}
.ls36{letter-spacing:2.659514pt;}
.ls5c{letter-spacing:2.659878pt;}
.ls17{letter-spacing:2.661139pt;}
.ls19{letter-spacing:2.899283pt;}
.ls3c{letter-spacing:3.986178pt;}
.ls64{letter-spacing:4.165258pt;}
.ls59{letter-spacing:4.170112pt;}
.ls4{letter-spacing:4.170591pt;}
.ls2c{letter-spacing:5.311806pt;}
.ls5f{letter-spacing:5.718992pt;}
.ls6c{letter-spacing:6.370079pt;}
.ls6e{letter-spacing:6.374506pt;}
.ls23{letter-spacing:6.375412pt;}
.ls18{letter-spacing:6.376239pt;}
.ls24{letter-spacing:6.378546pt;}
.lse{letter-spacing:6.379416pt;}
.ls2a{letter-spacing:8.525252pt;}
.ls11{letter-spacing:8.530585pt;}
.ls74{letter-spacing:8.853812pt;}
.ls28{letter-spacing:9.031412pt;}
.ls60{letter-spacing:9.294544pt;}
.lsd{letter-spacing:10.364845pt;}
.ls58{letter-spacing:11.549196pt;}
.ls7{letter-spacing:11.801144pt;}
.ls1e{letter-spacing:11.803145pt;}
.lsf{letter-spacing:11.804745pt;}
.ls1d{letter-spacing:11.806400pt;}
.ls21{letter-spacing:11.808479pt;}
.ls29{letter-spacing:11.810079pt;}
.lsc{letter-spacing:12.112749pt;}
.ls35{letter-spacing:13.575412pt;}
.ls34{letter-spacing:13.581053pt;}
.ls43{letter-spacing:14.061176pt;}
.ls25{letter-spacing:14.088616pt;}
.ls12{letter-spacing:14.093950pt;}
.ls47{letter-spacing:14.460911pt;}
.ls4b{letter-spacing:14.761798pt;}
.ls3a{letter-spacing:15.218178pt;}
.ls33{letter-spacing:15.223511pt;}
.ls46{letter-spacing:17.301605pt;}
.ls4e{letter-spacing:17.306938pt;}
.ls72{letter-spacing:17.414347pt;}
.ls4d{letter-spacing:17.415578pt;}
.ls48{letter-spacing:17.600271pt;}
.ls38{letter-spacing:18.313660pt;}
.ls5e{letter-spacing:19.387145pt;}
.ls57{letter-spacing:19.393861pt;}
.ls4a{letter-spacing:19.868911pt;}
.ls2e{letter-spacing:20.136848pt;}
.ls45{letter-spacing:21.131145pt;}
.ls39{letter-spacing:21.136479pt;}
.ls78{letter-spacing:21.364980pt;}
.ls54{letter-spacing:21.472055pt;}
.ls63{letter-spacing:21.940327pt;}
.ls5d{letter-spacing:22.046544pt;}
.ls79{letter-spacing:24.090938pt;}
.ls2{letter-spacing:24.274387pt;}
.ls3f{letter-spacing:24.830993pt;}
.ls32{letter-spacing:25.557812pt;}
.ls61{letter-spacing:27.491878pt;}
.ls7d{letter-spacing:27.602906pt;}
.lsb{letter-spacing:29.143412pt;}
.ls4c{letter-spacing:29.582993pt;}
.ls41{letter-spacing:32.292327pt;}
.ls44{letter-spacing:32.537660pt;}
.ls5a{letter-spacing:33.461498pt;}
.lsa{letter-spacing:33.748327pt;}
.ls62{letter-spacing:34.126544pt;}
.ls56{letter-spacing:36.061196pt;}
.ls1a{letter-spacing:36.505212pt;}
.ls31{letter-spacing:36.953660pt;}
.ls65{letter-spacing:37.232689pt;}
.ls3d{letter-spacing:41.799578pt;}
.ls5{letter-spacing:42.740327pt;}
.ls8{letter-spacing:44.340327pt;}
.ls75{letter-spacing:55.538827pt;}
.ls50{letter-spacing:86.916327pt;}
.ls76{letter-spacing:107.963145pt;}
.ls4f{letter-spacing:123.495412pt;}
.ls73{letter-spacing:135.349812pt;}
.ls49{letter-spacing:219.532745pt;}
.ls7b{letter-spacing:233.511412pt;}
.ws84{word-spacing:-53.133867pt;}
.ws1d{word-spacing:-42.359791pt;}
.ws85{word-spacing:-42.066082pt;}
.ws6{word-spacing:-34.611401pt;}
.ws7a{word-spacing:-34.154449pt;}
.ws1e{word-spacing:-28.118362pt;}
.wse5{word-spacing:-27.225793pt;}
.ws86{word-spacing:-24.723188pt;}
.wsa{word-spacing:-22.390547pt;}
.ws3d{word-spacing:-19.816720pt;}
.wsdf{word-spacing:-19.083954pt;}
.wsde{word-spacing:-16.037384pt;}
.ws2{word-spacing:-15.940160pt;}
.ws9{word-spacing:-14.760588pt;}
.ws5f{word-spacing:-13.283467pt;}
.wsfd{word-spacing:-13.262246pt;}
.ws1f{word-spacing:-12.028410pt;}
.ws1c{word-spacing:-10.701161pt;}
.ws108{word-spacing:-10.626800pt;}
.wse2{word-spacing:-7.199069pt;}
.ws1b{word-spacing:-5.907683pt;}
.ws1a{word-spacing:-5.887232pt;}
.wsd{word-spacing:-5.095156pt;}
.ws3b{word-spacing:-2.964870pt;}
.wsda{word-spacing:-2.496909pt;}
.wsaa{word-spacing:-2.455350pt;}
.wsab{word-spacing:-2.308488pt;}
.ws7c{word-spacing:-1.105184pt;}
.wsb1{word-spacing:-1.009543pt;}
.ws45{word-spacing:-0.956410pt;}
.ws3a{word-spacing:-0.903276pt;}
.wsb8{word-spacing:-0.850142pt;}
.ws31{word-spacing:-0.797008pt;}
.ws9e{word-spacing:-0.743874pt;}
.ws92{word-spacing:-0.584473pt;}
.ws91{word-spacing:-0.534407pt;}
.wsb0{word-spacing:-0.531339pt;}
.ws64{word-spacing:-0.371937pt;}
.ws7{word-spacing:-0.188489pt;}
.ws51{word-spacing:-0.159402pt;}
.wsfb{word-spacing:-0.106268pt;}
.ws20{word-spacing:-0.026567pt;}
.wse6{word-spacing:-0.019085pt;}
.ws5b{word-spacing:0.000000pt;}
.ws43{word-spacing:0.010627pt;}
.ws4f{word-spacing:0.159402pt;}
.ws54{word-spacing:0.265669pt;}
.wsea{word-spacing:0.318803pt;}
.ws110{word-spacing:0.340058pt;}
.ws74{word-spacing:0.425071pt;}
.wse9{word-spacing:0.478205pt;}
.ws65{word-spacing:0.531339pt;}
.ws68{word-spacing:0.584473pt;}
.ws69{word-spacing:0.690740pt;}
.ws67{word-spacing:0.797008pt;}
.ws119{word-spacing:0.807637pt;}
.ws6b{word-spacing:0.850142pt;}
.ws61{word-spacing:1.009543pt;}
.ws33{word-spacing:1.062677pt;}
.ws36{word-spacing:1.219575pt;}
.ws37{word-spacing:1.222079pt;}
.ws8{word-spacing:1.232706pt;}
.ws4b{word-spacing:1.328347pt;}
.ws73{word-spacing:1.381481pt;}
.wseb{word-spacing:1.434614pt;}
.ws3e{word-spacing:1.487748pt;}
.ws3c{word-spacing:1.513164pt;}
.wsb2{word-spacing:1.540882pt;}
.ws53{word-spacing:1.594016pt;}
.wsc3{word-spacing:1.806551pt;}
.ws89{word-spacing:1.912819pt;}
.ws14{word-spacing:1.965953pt;}
.ws15{word-spacing:2.019087pt;}
.ws16{word-spacing:2.054956pt;}
.wsbb{word-spacing:2.072221pt;}
.ws95{word-spacing:2.178489pt;}
.wsec{word-spacing:2.444158pt;}
.ws81{word-spacing:2.550426pt;}
.ws4{word-spacing:2.603559pt;}
.ws18{word-spacing:2.656693pt;}
.wse3{word-spacing:2.709827pt;}
.ws63{word-spacing:2.762961pt;}
.wsdb{word-spacing:2.766085pt;}
.wsb4{word-spacing:2.816095pt;}
.wsfa{word-spacing:3.028630pt;}
.ws94{word-spacing:3.081764pt;}
.wsa6{word-spacing:3.241166pt;}
.wsa8{word-spacing:3.347434pt;}
.wsef{word-spacing:3.358069pt;}
.ws2a{word-spacing:3.453701pt;}
.ws59{word-spacing:3.506835pt;}
.wsd2{word-spacing:3.559969pt;}
.ws75{word-spacing:3.666237pt;}
.ws104{word-spacing:3.719371pt;}
.wsdc{word-spacing:3.772505pt;}
.wsbc{word-spacing:3.825638pt;}
.ws10a{word-spacing:3.910662pt;}
.ws3f{word-spacing:3.927230pt;}
.ws40{word-spacing:3.931906pt;}
.ws10b{word-spacing:3.953170pt;}
.ws30{word-spacing:3.985040pt;}
.ws9f{word-spacing:4.038174pt;}
.wsf0{word-spacing:4.080691pt;}
.ws21{word-spacing:4.195830pt;}
.ws22{word-spacing:4.197575pt;}
.wsc7{word-spacing:4.250720pt;}
.ws62{word-spacing:4.303843pt;}
.ws29{word-spacing:4.356977pt;}
.wsa1{word-spacing:4.410111pt;}
.wsf4{word-spacing:4.411430pt;}
.ws66{word-spacing:4.463245pt;}
.ws2f{word-spacing:4.569513pt;}
.ws6a{word-spacing:4.622646pt;}
.ws7b{word-spacing:4.633273pt;}
.ws11b{word-spacing:4.675792pt;}
.ws11a{word-spacing:4.718299pt;}
.wsd0{word-spacing:4.782048pt;}
.ws80{word-spacing:4.835182pt;}
.wsd6{word-spacing:4.941450pt;}
.ws3{word-spacing:4.994583pt;}
.wse0{word-spacing:5.011830pt;}
.wse1{word-spacing:5.015230pt;}
.wsc1{word-spacing:5.047717pt;}
.ws57{word-spacing:5.100851pt;}
.wsc2{word-spacing:5.153985pt;}
.ws55{word-spacing:5.207119pt;}
.ws28{word-spacing:5.260253pt;}
.ws1{word-spacing:5.270893pt;}
.ws42{word-spacing:5.309296pt;}
.ws39{word-spacing:5.310988pt;}
.ws19{word-spacing:5.313387pt;}
.ws6e{word-spacing:5.366521pt;}
.ws8a{word-spacing:5.472788pt;}
.ws88{word-spacing:5.579056pt;}
.ws27{word-spacing:5.738458pt;}
.ws11{word-spacing:5.791591pt;}
.ws8c{word-spacing:5.844725pt;}
.wsa2{word-spacing:6.057261pt;}
.wse8{word-spacing:6.110395pt;}
.ws4e{word-spacing:6.216662pt;}
.ws17{word-spacing:6.269796pt;}
.ws10c{word-spacing:6.333573pt;}
.ws46{word-spacing:6.376064pt;}
.ws105{word-spacing:6.429198pt;}
.ws11f{word-spacing:6.461094pt;}
.ws6d{word-spacing:6.588599pt;}
.wse4{word-spacing:6.641733pt;}
.ws47{word-spacing:6.694867pt;}
.ws93{word-spacing:6.748001pt;}
.ws2e{word-spacing:6.907403pt;}
.ws76{word-spacing:7.013670pt;}
.wsc{word-spacing:7.066804pt;}
.wse{word-spacing:7.073897pt;}
.ws12{word-spacing:7.173072pt;}
.wsf8{word-spacing:7.332474pt;}
.ws13{word-spacing:7.491875pt;}
.wsd3{word-spacing:7.598143pt;}
.wsaf{word-spacing:7.651277pt;}
.wsae{word-spacing:7.662693pt;}
.ws26{word-spacing:7.704411pt;}
.wsbf{word-spacing:7.757545pt;}
.ws7d{word-spacing:7.810678pt;}
.ws4a{word-spacing:7.863812pt;}
.ws52{word-spacing:7.916946pt;}
.ws35{word-spacing:7.970080pt;}
.wsa7{word-spacing:8.076348pt;}
.ws5a{word-spacing:8.182615pt;}
.ws10d{word-spacing:8.288904pt;}
.ws48{word-spacing:8.342017pt;}
.ws103{word-spacing:8.395151pt;}
.ws24{word-spacing:8.448285pt;}
.ws111{word-spacing:8.458933pt;}
.ws87{word-spacing:8.554553pt;}
.ws2d{word-spacing:8.607686pt;}
.wsba{word-spacing:8.660820pt;}
.ws4d{word-spacing:8.713954pt;}
.ws10e{word-spacing:8.798990pt;}
.ws10f{word-spacing:8.803537pt;}
.ws44{word-spacing:8.820222pt;}
.ws72{word-spacing:8.873356pt;}
.ws71{word-spacing:8.878746pt;}
.ws115{word-spacing:8.969019pt;}
.wsa5{word-spacing:8.979623pt;}
.wsf7{word-spacing:9.032757pt;}
.wsff{word-spacing:9.085891pt;}
.ws6c{word-spacing:9.139025pt;}
.ws9c{word-spacing:9.245293pt;}
.wsd5{word-spacing:9.351561pt;}
.wsd1{word-spacing:9.457828pt;}
.ws8f{word-spacing:9.617230pt;}
.ws83{word-spacing:9.670364pt;}
.wsf{word-spacing:9.989167pt;}
.ws32{word-spacing:10.148569pt;}
.wsa4{word-spacing:10.307970pt;}
.wsbe{word-spacing:10.361104pt;}
.ws100{word-spacing:10.414238pt;}
.wsb3{word-spacing:10.467372pt;}
.ws10{word-spacing:10.520506pt;}
.ws0{word-spacing:10.626773pt;}
.ws60{word-spacing:10.679907pt;}
.ws5{word-spacing:10.969075pt;}
.wsb{word-spacing:10.998710pt;}
.ws11d{word-spacing:11.009365pt;}
.ws50{word-spacing:11.158112pt;}
.ws25{word-spacing:11.211246pt;}
.ws41{word-spacing:11.264380pt;}
.wsed{word-spacing:11.476915pt;}
.ws116{word-spacing:11.519451pt;}
.ws7f{word-spacing:11.530049pt;}
.ws7e{word-spacing:11.548563pt;}
.ws23{word-spacing:11.583183pt;}
.wsa0{word-spacing:11.689451pt;}
.wscd{word-spacing:11.848852pt;}
.ws98{word-spacing:11.955120pt;}
.wsd8{word-spacing:12.061388pt;}
.wsd4{word-spacing:12.167655pt;}
.ws2b{word-spacing:12.327057pt;}
.ws34{word-spacing:12.486459pt;}
.ws8b{word-spacing:12.539593pt;}
.ws102{word-spacing:12.592726pt;}
.ws96{word-spacing:12.645860pt;}
.wsf9{word-spacing:12.752128pt;}
.ws6f{word-spacing:12.805262pt;}
.wsb6{word-spacing:12.964663pt;}
.ws9a{word-spacing:13.017797pt;}
.wsb5{word-spacing:13.283467pt;}
.wsdd{word-spacing:13.496002pt;}
.ws117{word-spacing:13.517290pt;}
.ws118{word-spacing:13.559797pt;}
.wsce{word-spacing:13.602270pt;}
.wscc{word-spacing:13.655404pt;}
.wscb{word-spacing:13.686529pt;}
.ws8d{word-spacing:13.708538pt;}
.wsc0{word-spacing:13.761671pt;}
.wsfe{word-spacing:13.974207pt;}
.ws8e{word-spacing:14.027341pt;}
.wse7{word-spacing:14.293010pt;}
.wsee{word-spacing:14.324926pt;}
.wsb9{word-spacing:14.346144pt;}
.ws2c{word-spacing:14.399278pt;}
.ws4c{word-spacing:14.664947pt;}
.wsa3{word-spacing:14.718081pt;}
.ws56{word-spacing:14.877483pt;}
.ws11e{word-spacing:15.217578pt;}
.ws82{word-spacing:15.249420pt;}
.ws9d{word-spacing:15.355687pt;}
.ws5d{word-spacing:15.387070pt;}
.ws5e{word-spacing:15.408821pt;}
.ws77{word-spacing:15.780758pt;}
.ws99{word-spacing:15.940160pt;}
.ws9b{word-spacing:15.993294pt;}
.ws97{word-spacing:16.046428pt;}
.wsf6{word-spacing:16.258963pt;}
.wscf{word-spacing:16.312097pt;}
.ws112{word-spacing:16.620315pt;}
.wsb7{word-spacing:16.630900pt;}
.wsd7{word-spacing:17.321641pt;}
.wsfc{word-spacing:17.374774pt;}
.ws58{word-spacing:17.427908pt;}
.ws101{word-spacing:18.224916pt;}
.wsc5{word-spacing:18.258502pt;}
.wsc6{word-spacing:18.278050pt;}
.wsbd{word-spacing:18.649987pt;}
.wsf5{word-spacing:19.075058pt;}
.ws11c{word-spacing:19.510805pt;}
.ws113{word-spacing:19.808355pt;}
.ws114{word-spacing:19.850862pt;}
.ws78{word-spacing:20.119230pt;}
.ws79{word-spacing:20.137735pt;}
.ws106{word-spacing:30.137605pt;}
.ws107{word-spacing:30.180112pt;}
.ws109{word-spacing:32.815558pt;}
.wsac{word-spacing:60.238848pt;}
.wsa9{word-spacing:85.777689pt;}
.ws90{word-spacing:92.286295pt;}
.wsc4{word-spacing:99.609298pt;}
.wsad{word-spacing:114.888063pt;}
.ws38{word-spacing:134.542134pt;}
.ws5c{word-spacing:136.841520pt;}
.ws70{word-spacing:139.785028pt;}
.wsf2{word-spacing:149.645265pt;}
.wsf1{word-spacing:150.815161pt;}
.wsf3{word-spacing:154.367197pt;}
.ws49{word-spacing:163.383570pt;}
.wsd9{word-spacing:206.356781pt;}
.wsc9{word-spacing:214.957265pt;}
.wsca{word-spacing:219.673863pt;}
.wsc8{word-spacing:232.068494pt;}
._12{margin-left:-19.402329pt;}
._13{margin-left:-17.709518pt;}
._e{margin-left:-6.057261pt;}
._17{margin-left:-4.941450pt;}
._6{margin-left:-3.752038pt;}
._2{margin-left:-2.043620pt;}
._8{margin-left:-0.903276pt;}
._7{width:1.011620pt;}
._0{width:2.553707pt;}
._1{width:3.488802pt;}
._28{width:4.481278pt;}
._27{width:6.319649pt;}
._1b{width:13.679937pt;}
._29{width:14.824349pt;}
._24{width:15.940160pt;}
._9{width:16.867969pt;}
._f{width:18.568253pt;}
._b{width:19.872066pt;}
._5{width:23.212509pt;}
._3{width:25.453425pt;}
._4{width:26.974709pt;}
._23{width:29.701831pt;}
._d{width:31.614651pt;}
._1f{width:35.015218pt;}
._1c{width:41.168638pt;}
._2a{width:63.757247pt;}
._1a{width:77.484571pt;}
._16{width:83.993476pt;}
._19{width:84.889311pt;}
._18{width:88.726221pt;}
._15{width:91.400602pt;}
._14{width:95.235125pt;}
._20{width:96.747863pt;}
._1e{width:98.723604pt;}
._1d{width:102.557829pt;}
._2b{width:111.069774pt;}
._11{width:137.717307pt;}
._21{width:155.123108pt;}
._a{width:158.505654pt;}
._c{width:159.950681pt;}
._10{width:163.283814pt;}
._22{width:164.587878pt;}
._2d{width:180.756674pt;}
._2c{width:190.834000pt;}
._26{width:222.323068pt;}
._25{width:231.657238pt;}
.fs10{font-size:20.652480pt;}
.fsf{font-size:25.241920pt;}
.fs12{font-size:25.669160pt;}
.fs3{font-size:26.566933pt;}
.fs9{font-size:27.536640pt;}
.fs13{font-size:28.002720pt;}
.fs5{font-size:28.556160pt;}
.fs8{font-size:29.831360pt;}
.fsb{font-size:30.336280pt;}
.fs4{font-size:30.935840pt;}
.fs14{font-size:31.880533pt;}
.fs7{font-size:34.420800pt;}
.fs11{font-size:35.003400pt;}
.fs6{font-size:35.695200pt;}
.fse{font-size:36.715520pt;}
.fs2{font-size:37.193600pt;}
.fsc{font-size:37.336960pt;}
.fs1{font-size:42.507200pt;}
.fsd{font-size:43.599680pt;}
.fsa{font-size:44.337640pt;}
.fs0{font-size:53.133867pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:1.388147pt;}
.yf3{bottom:3.059627pt;}
.yba{bottom:3.111413pt;}
.y121{bottom:4.206987pt;}
.y89{bottom:4.780667pt;}
.y47{bottom:12.889933pt;}
.y169{bottom:14.390287pt;}
.y8a{bottom:15.871813pt;}
.yf4{bottom:16.445493pt;}
.ybb{bottom:16.723847pt;}
.y16b{bottom:21.002040pt;}
.y48{bottom:21.119660pt;}
.y123{bottom:22.373520pt;}
.y8c{bottom:23.807720pt;}
.yf6{bottom:24.381400pt;}
.ybd{bottom:24.794075pt;}
.y8b{bottom:46.468080pt;}
.y49{bottom:50.171587pt;}
.y8d{bottom:56.603093pt;}
.yf7{bottom:57.081160pt;}
.ybe{bottom:61.430967pt;}
.y5a{bottom:62.169140pt;}
.y13b{bottom:78.020480pt;}
.y4a{bottom:79.223513pt;}
.y12d{bottom:80.154570pt;}
.y124{bottom:81.462560pt;}
.y16c{bottom:82.841380pt;}
.yf5{bottom:88.059880pt;}
.y8e{bottom:89.398467pt;}
.yf8{bottom:89.780920pt;}
.y12c{bottom:91.054490pt;}
.ybc{bottom:93.925790pt;}
.y58{bottom:96.971960pt;}
.y45{bottom:96.978667pt;}
.ybf{bottom:98.067859pt;}
.y44{bottom:100.740000pt;}
.y13a{bottom:101.541360pt;}
.y103{bottom:103.503346pt;}
.y122{bottom:105.843960pt;}
.y57{bottom:106.490680pt;}
.y4b{bottom:108.275440pt;}
.y16a{bottom:109.677320pt;}
.y199{bottom:112.696000pt;}
.y102{bottom:115.809929pt;}
.y56{bottom:116.009400pt;}
.y43{bottom:116.680000pt;}
.y87{bottom:116.681333pt;}
.y8f{bottom:122.193840pt;}
.yf9{bottom:122.480680pt;}
.y55{bottom:124.933200pt;}
.y9c{bottom:125.635920pt;}
.y101{bottom:128.115747pt;}
.y198{bottom:128.401333pt;}
.y86{bottom:132.621333pt;}
.y13c{bottom:133.667440pt;}
.y54{bottom:134.451920pt;}
.yc0{bottom:134.704751pt;}
.y9b{bottom:134.814800pt;}
.y168{bottom:136.601333pt;}
.y4c{bottom:137.327367pt;}
.y130{bottom:139.125202pt;}
.y125{bottom:139.977920pt;}
.y100{bottom:140.422331pt;}
.y1cb{bottom:140.445333pt;}
.y42{bottom:140.996000pt;}
.y53{bottom:143.970640pt;}
.y9a{bottom:143.993680pt;}
.y16d{bottom:145.264110pt;}
.y85{bottom:148.561333pt;}
.y99{bottom:152.598880pt;}
.yff{bottom:152.728149pt;}
.y52{bottom:153.489360pt;}
.y197{bottom:154.022667pt;}
.y90{bottom:154.989213pt;}
.yfa{bottom:155.180440pt;}
.y175{bottom:158.487617pt;}
.y167{bottom:160.284000pt;}
.y98{bottom:161.777760pt;}
.y12f{bottom:162.250472pt;}
.y51{bottom:162.413160pt;}
.y84{bottom:164.501333pt;}
.yb8{bottom:164.917333pt;}
.yfe{bottom:165.034733pt;}
.y4d{bottom:166.379293pt;}
.y5d{bottom:167.013081pt;}
.y174{bottom:167.627393pt;}
.y196{bottom:169.962667pt;}
.y1ca{bottom:170.509333pt;}
.y97{bottom:170.956640pt;}
.yc1{bottom:171.341643pt;}
.y50{bottom:171.931880pt;}
.y12e{bottom:173.150392pt;}
.y41{bottom:176.078667pt;}
.y166{bottom:176.224000pt;}
.y5c{bottom:176.393780pt;}
.yfd{bottom:177.340551pt;}
.y96{bottom:180.135520pt;}
.y83{bottom:180.441333pt;}
.y173{bottom:180.656437pt;}
.yb7{bottom:180.858667pt;}
.yc4{bottom:181.239827pt;}
.y4f{bottom:181.450600pt;}
.y5b{bottom:185.774479pt;}
.y195{bottom:185.902667pt;}
.y1c9{bottom:186.450667pt;}
.y91{bottom:187.784587pt;}
.yfb{bottom:187.880200pt;}
.y95{bottom:188.740720pt;}
.y13d{bottom:189.314400pt;}
.yfc{bottom:189.647134pt;}
.y172{bottom:189.796213pt;}
.y146{bottom:191.991573pt;}
.y40{bottom:192.018667pt;}
.y165{bottom:192.164000pt;}
.yc3{bottom:192.713163pt;}
.y9f{bottom:194.323774pt;}
.y4e{bottom:195.431220pt;}
.y82{bottom:196.381333pt;}
.yb6{bottom:196.798667pt;}
.y141{bottom:197.125627pt;}
.y94{bottom:197.919600pt;}
.y171{bottom:198.935990pt;}
.y126{bottom:199.066960pt;}
.y145{bottom:200.979227pt;}
.y194{bottom:201.842667pt;}
.y1c8{bottom:202.390667pt;}
.y9e{bottom:203.369560pt;}
.y140{bottom:206.068916pt;}
.y93{bottom:207.098480pt;}
.y16e{bottom:207.103450pt;}
.y129{bottom:207.405972pt;}
.y3f{bottom:207.960000pt;}
.yc2{bottom:207.978535pt;}
.y170{bottom:208.075767pt;}
.y164{bottom:208.104000pt;}
.y144{bottom:209.966880pt;}
.y12b{bottom:210.540560pt;}
.y120{bottom:212.321333pt;}
.y81{bottom:212.322667pt;}
.y9d{bottom:212.415346pt;}
.yb5{bottom:212.738667pt;}
.y13f{bottom:215.012204pt;}
.y128{bottom:216.277360pt;}
.y16f{bottom:217.215543pt;}
.y193{bottom:217.784000pt;}
.y1c7{bottom:218.330667pt;}
.y143{bottom:218.954533pt;}
.y92{bottom:220.579960pt;}
.y12a{bottom:223.161520pt;}
.y3e{bottom:223.900000pt;}
.y13e{bottom:223.955493pt;}
.y163{bottom:224.045333pt;}
.y127{bottom:225.148748pt;}
.y142{bottom:227.942187pt;}
.y80{bottom:228.249333pt;}
.yf2{bottom:228.262667pt;}
.yb4{bottom:228.678667pt;}
.y192{bottom:233.724000pt;}
.y1c6{bottom:234.270667pt;}
.y162{bottom:239.781333pt;}
.y3d{bottom:239.840000pt;}
.y7f{bottom:244.189333pt;}
.yf1{bottom:244.202667pt;}
.yb3{bottom:244.618667pt;}
.y191{bottom:249.664000pt;}
.y1c5{bottom:250.210667pt;}
.y161{bottom:255.721333pt;}
.y3c{bottom:255.780000pt;}
.ye8{bottom:256.398667pt;}
.y7e{bottom:260.129333pt;}
.y11f{bottom:260.142667pt;}
.yb2{bottom:260.558667pt;}
.y190{bottom:265.604000pt;}
.y1c4{bottom:266.150667pt;}
.ye7{bottom:266.534667pt;}
.yed{bottom:267.282667pt;}
.ye4{bottom:267.752000pt;}
.yee{bottom:269.732000pt;}
.y160{bottom:271.661333pt;}
.y3b{bottom:271.720000pt;}
.yeb{bottom:274.462667pt;}
.yea{bottom:275.760000pt;}
.y7d{bottom:276.069333pt;}
.y11e{bottom:276.082667pt;}
.yb1{bottom:276.500000pt;}
.ye9{bottom:279.044000pt;}
.yef{bottom:280.473333pt;}
.y18f{bottom:281.544000pt;}
.y1c3{bottom:282.092000pt;}
.yec{bottom:284.273333pt;}
.y15f{bottom:287.601333pt;}
.y3a{bottom:287.660000pt;}
.ye3{bottom:289.006667pt;}
.y7c{bottom:292.009333pt;}
.y11d{bottom:292.022667pt;}
.yb0{bottom:292.440000pt;}
.ye6{bottom:292.806667pt;}
.y1c2{bottom:298.032000pt;}
.y18e{bottom:298.157333pt;}
.y15e{bottom:303.541333pt;}
.y39{bottom:303.601333pt;}
.yf0{bottom:306.976000pt;}
.y7b{bottom:307.949333pt;}
.y11c{bottom:307.962667pt;}
.yaf{bottom:308.380000pt;}
.ye5{bottom:310.260000pt;}
.y18d{bottom:314.097333pt;}
.y1c1{bottom:314.578667pt;}
.ye0{bottom:318.016000pt;}
.y15d{bottom:319.482667pt;}
.y38{bottom:320.738667pt;}
.y7a{bottom:323.890667pt;}
.y139{bottom:323.902667pt;}
.y11b{bottom:323.904000pt;}
.yae{bottom:324.320000pt;}
.ye2{bottom:325.545333pt;}
.ye1{bottom:329.306667pt;}
.y18c{bottom:330.037333pt;}
.y1c0{bottom:330.518667pt;}
.y15c{bottom:335.422667pt;}
.y37{bottom:336.678667pt;}
.ydf{bottom:339.269333pt;}
.y79{bottom:339.830667pt;}
.y11a{bottom:339.844000pt;}
.yad{bottom:340.260000pt;}
.y18b{bottom:345.978667pt;}
.y1bf{bottom:346.458667pt;}
.yde{bottom:350.745333pt;}
.y15b{bottom:351.362667pt;}
.y36{bottom:352.618667pt;}
.y78{bottom:355.770667pt;}
.y119{bottom:355.784000pt;}
.yac{bottom:356.201333pt;}
.y1be{bottom:362.400000pt;}
.y18a{bottom:362.590667pt;}
.y15a{bottom:367.302667pt;}
.y35{bottom:368.558667pt;}
.y77{bottom:371.710667pt;}
.y118{bottom:371.724000pt;}
.yab{bottom:372.141333pt;}
.ydd{bottom:375.154667pt;}
.y1bd{bottom:378.340000pt;}
.y189{bottom:378.532000pt;}
.y159{bottom:382.834667pt;}
.y34{bottom:384.498667pt;}
.y76{bottom:387.650667pt;}
.y117{bottom:387.664000pt;}
.yaa{bottom:388.081333pt;}
.ydc{bottom:391.094667pt;}
.y1bc{bottom:394.280000pt;}
.y158{bottom:398.774667pt;}
.y33{bottom:400.440000pt;}
.y116{bottom:403.604000pt;}
.y75{bottom:405.602667pt;}
.y188{bottom:406.428000pt;}
.ydb{bottom:407.034667pt;}
.ya9{bottom:409.664000pt;}
.y1bb{bottom:410.220000pt;}
.y74{bottom:410.706667pt;}
.y73{bottom:411.430667pt;}
.y32{bottom:411.798667pt;}
.y72{bottom:414.714667pt;}
.y157{bottom:414.716000pt;}
.y31{bottom:416.380000pt;}
.y138{bottom:419.544000pt;}
.y115{bottom:419.545333pt;}
.yda{bottom:422.974667pt;}
.y1ba{bottom:426.160000pt;}
.y156{bottom:430.656000pt;}
.y30{bottom:432.320000pt;}
.y187{bottom:434.325333pt;}
.y137{bottom:435.485333pt;}
.ya8{bottom:438.112000pt;}
.yd9{bottom:438.914667pt;}
.y114{bottom:439.669333pt;}
.y1b9{bottom:442.100000pt;}
.y71{bottom:444.042667pt;}
.y155{bottom:446.596000pt;}
.y2f{bottom:448.260000pt;}
.y186{bottom:450.265333pt;}
.y136{bottom:451.425333pt;}
.ya7{bottom:454.052000pt;}
.yd8{bottom:454.856000pt;}
.y1b8{bottom:458.041333pt;}
.y2e{bottom:459.620000pt;}
.y70{bottom:459.982667pt;}
.y2d{bottom:460.438667pt;}
.y154{bottom:462.536000pt;}
.y2c{bottom:464.200000pt;}
.y113{bottom:464.574667pt;}
.y185{bottom:466.206667pt;}
.y135{bottom:467.365333pt;}
.yd7{bottom:467.512000pt;}
.ya6{bottom:469.992000pt;}
.yd6{bottom:470.796000pt;}
.y1b7{bottom:473.981333pt;}
.y6f{bottom:475.922667pt;}
.y153{bottom:478.476000pt;}
.yd4{bottom:480.020000pt;}
.y2b{bottom:480.140000pt;}
.y112{bottom:480.514667pt;}
.y184{bottom:482.146667pt;}
.yd3{bottom:482.677333pt;}
.y134{bottom:483.305333pt;}
.yd5{bottom:483.973333pt;}
.ya5{bottom:485.932000pt;}
.yd2{bottom:487.257333pt;}
.y6e{bottom:491.864000pt;}
.y152{bottom:494.416000pt;}
.y183{bottom:494.802667pt;}
.y2a{bottom:496.081333pt;}
.y111{bottom:496.454667pt;}
.y1b6{bottom:497.746667pt;}
.y182{bottom:498.086667pt;}
.ya4{bottom:501.872000pt;}
.yd1{bottom:503.197333pt;}
.y133{bottom:503.429333pt;}
.y6d{bottom:509.814667pt;}
.y151{bottom:510.357333pt;}
.y29{bottom:512.021333pt;}
.y110{bottom:512.394667pt;}
.y181{bottom:514.026667pt;}
.y6c{bottom:515.642667pt;}
.ya3{bottom:517.812000pt;}
.y6b{bottom:518.926667pt;}
.yd0{bottom:519.138667pt;}
.y150{bottom:526.297333pt;}
.y1b5{bottom:527.810667pt;}
.y132{bottom:528.334667pt;}
.y10f{bottom:528.336000pt;}
.y28{bottom:529.158667pt;}
.y17f{bottom:535.061333pt;}
.ycf{bottom:535.078667pt;}
.y17e{bottom:538.764000pt;}
.y17d{bottom:538.918667pt;}
.y14f{bottom:542.237333pt;}
.y1b4{bottom:543.750667pt;}
.y10e{bottom:544.276000pt;}
.y27{bottom:545.098667pt;}
.y17c{bottom:548.030667pt;}
.y6a{bottom:548.254667pt;}
.yce{bottom:556.720000pt;}
.y1b3{bottom:559.690667pt;}
.ya2{bottom:559.757333pt;}
.y10d{bottom:560.216000pt;}
.y69{bottom:564.196000pt;}
.y180{bottom:566.432000pt;}
.y17b{bottom:573.985333pt;}
.y24{bottom:574.590667pt;}
.y1b2{bottom:575.630667pt;}
.ya1{bottom:575.697333pt;}
.y10c{bottom:576.156000pt;}
.y25{bottom:576.874667pt;}
.y17a{bottom:577.269333pt;}
.y68{bottom:580.136000pt;}
.y14e{bottom:583.585333pt;}
.ycd{bottom:585.312000pt;}
.y179{bottom:586.381333pt;}
.y1b1{bottom:591.570667pt;}
.y10b{bottom:592.096000pt;}
.y1e{bottom:595.046667pt;}
.y67{bottom:596.062667pt;}
.y1eb{bottom:599.072000pt;}
.y14d{bottom:599.525333pt;}
.ycc{bottom:601.252000pt;}
.y1d{bottom:605.182667pt;}
.y1b0{bottom:607.512000pt;}
.y10a{bottom:608.036000pt;}
.y22{bottom:608.425333pt;}
.y23{bottom:610.970667pt;}
.y1ea{bottom:611.026667pt;}
.y66{bottom:612.002667pt;}
.y21{bottom:612.565333pt;}
.ycb{bottom:617.192000pt;}
.y1f{bottom:618.393333pt;}
.y178{bottom:619.277333pt;}
.y1a{bottom:621.677333pt;}
.y1e9{bottom:622.982667pt;}
.y1af{bottom:623.452000pt;}
.y131{bottom:623.976000pt;}
.y109{bottom:623.977333pt;}
.y65{bottom:627.942667pt;}
.y20{bottom:630.662667pt;}
.y14c{bottom:630.741333pt;}
.yca{bottom:633.132000pt;}
.y1c{bottom:634.296000pt;}
.y1e8{bottom:634.937333pt;}
.y177{bottom:635.217333pt;}
.y26{bottom:635.893333pt;}
.y1ae{bottom:639.392000pt;}
.y1b{bottom:639.425333pt;}
.y108{bottom:639.917333pt;}
.y14b{bottom:642.696000pt;}
.y64{bottom:643.882667pt;}
.y1e7{bottom:646.892000pt;}
.yc9{bottom:649.072000pt;}
.y176{bottom:651.157333pt;}
.y14a{bottom:654.652000pt;}
.y1ad{bottom:655.332000pt;}
.y107{bottom:655.857333pt;}
.y18{bottom:656.494667pt;}
.y1e6{bottom:658.848000pt;}
.y19{bottom:659.041333pt;}
.y63{bottom:661.848000pt;}
.y149{bottom:666.606667pt;}
.y62{bottom:667.676000pt;}
.y1e5{bottom:670.802667pt;}
.y61{bottom:670.960000pt;}
.y106{bottom:671.797333pt;}
.y1ac{bottom:671.878667pt;}
.y17{bottom:675.261333pt;}
.y148{bottom:678.561333pt;}
.y16{bottom:679.842667pt;}
.y14{bottom:680.560000pt;}
.y1e4{bottom:682.757333pt;}
.y13{bottom:686.388000pt;}
.y1ab{bottom:687.818667pt;}
.y12{bottom:689.672000pt;}
.y147{bottom:691.048000pt;}
.y60{bottom:691.382667pt;}
.yc8{bottom:693.752000pt;}
.y1e3{bottom:694.713333pt;}
.y15{bottom:698.658667pt;}
.y1aa{bottom:703.760000pt;}
.y1e2{bottom:706.668000pt;}
.y5f{bottom:707.322667pt;}
.yc7{bottom:709.692000pt;}
.y105{bottom:712.596000pt;}
.y1e1{bottom:718.624000pt;}
.y1a9{bottom:719.700000pt;}
.ya0{bottom:723.753333pt;}
.yc6{bottom:725.632000pt;}
.y11{bottom:725.784000pt;}
.y104{bottom:728.536000pt;}
.y1e0{bottom:730.578667pt;}
.y1a8{bottom:735.640000pt;}
.yc5{bottom:741.572000pt;}
.y10{bottom:741.724000pt;}
.y1df{bottom:742.533333pt;}
.y88{bottom:747.664000pt;}
.y5e{bottom:750.528000pt;}
.y1a7{bottom:751.580000pt;}
.y1de{bottom:754.489333pt;}
.yf{bottom:757.665333pt;}
.yb9{bottom:760.701333pt;}
.y1dd{bottom:766.444000pt;}
.y1a6{bottom:767.520000pt;}
.ye{bottom:773.605333pt;}
.y46{bottom:774.438667pt;}
.y1dc{bottom:778.398667pt;}
.y1a5{bottom:783.460000pt;}
.yd{bottom:789.545333pt;}
.y1db{bottom:790.354667pt;}
.y1a4{bottom:800.008000pt;}
.yc{bottom:801.724000pt;}
.y1da{bottom:802.309333pt;}
.yb{bottom:805.485333pt;}
.y1d9{bottom:814.265333pt;}
.y1a3{bottom:815.948000pt;}
.ya{bottom:821.425333pt;}
.y1d8{bottom:826.220000pt;}
.y1d7{bottom:838.174667pt;}
.y9{bottom:838.562667pt;}
.y1d6{bottom:850.130667pt;}
.y8{bottom:854.504000pt;}
.y1a2{bottom:861.089333pt;}
.y1d5{bottom:862.085333pt;}
.y7{bottom:870.444000pt;}
.y1d4{bottom:874.040000pt;}
.y1a1{bottom:877.029333pt;}
.y1d3{bottom:885.996000pt;}
.y6{bottom:886.384000pt;}
.y1a0{bottom:892.969333pt;}
.y1d2{bottom:897.950667pt;}
.y5{bottom:902.324000pt;}
.y1d1{bottom:909.905333pt;}
.y4{bottom:918.264000pt;}
.y1d0{bottom:921.861333pt;}
.y19f{bottom:924.186667pt;}
.y1cf{bottom:933.816000pt;}
.y3{bottom:934.204000pt;}
.y19e{bottom:936.141333pt;}
.y1ce{bottom:945.772000pt;}
.y19d{bottom:948.096000pt;}
.y2{bottom:950.145333pt;}
.y1cd{bottom:957.726667pt;}
.y19c{bottom:960.052000pt;}
.y19b{bottom:972.006667pt;}
.y1cc{bottom:977.452000pt;}
.y1{bottom:977.453333pt;}
.y19a{bottom:984.493333pt;}
.hf{height:2.125355pt;}
.h27{height:20.404650pt;}
.h40{height:20.750016pt;}
.h1d{height:21.160115pt;}
.h47{height:21.933807pt;}
.h26{height:22.105038pt;}
.h2a{height:22.479183pt;}
.h1c{height:22.923457pt;}
.h25{height:25.505813pt;}
.h3e{height:25.937519pt;}
.h1e{height:26.450143pt;}
.h3a{height:27.206200pt;}
.h2b{height:27.666687pt;}
.he{height:27.895200pt;}
.h49{height:29.032418pt;}
.h2d{height:29.040198pt;}
.h3d{height:29.244954pt;}
.h48{height:29.458287pt;}
.h34{height:30.570533pt;}
.h39{height:32.307363pt;}
.h3b{height:32.472583pt;}
.h29{height:32.854191pt;}
.h3f{height:33.022208pt;}
.h3c{height:33.220288pt;}
.h1a{height:36.290431pt;}
.h1{height:36.556100pt;}
.h1f{height:36.874903pt;}
.h3{height:37.459376pt;}
.h2{height:39.850400pt;}
.h15{height:40.695200pt;}
.h32{height:43.244533pt;}
.h36{height:44.351867pt;}
.h46{height:44.869197pt;}
.h44{height:46.193867pt;}
.h12{height:47.007867pt;}
.h4{height:47.175200pt;}
.h10{height:47.180533pt;}
.hd{height:48.666400pt;}
.h9{height:48.812533pt;}
.hc{height:49.162533pt;}
.h30{height:49.692100pt;}
.h6{height:49.831200pt;}
.h21{height:49.836533pt;}
.h5{height:51.601434pt;}
.h2c{height:51.601867pt;}
.h2f{height:52.986400pt;}
.h14{height:56.138533pt;}
.h35{height:57.141067pt;}
.hb{height:57.189200pt;}
.h17{height:58.170400pt;}
.h19{height:58.175733pt;}
.h11{height:58.853067pt;}
.h33{height:61.948533pt;}
.h7{height:62.967200pt;}
.h22{height:63.756533pt;}
.h16{height:63.863200pt;}
.h18{height:67.137867pt;}
.h31{height:69.655200pt;}
.h41{height:73.400709pt;}
.h2e{height:76.129867pt;}
.h20{height:76.298400pt;}
.h42{height:77.042688pt;}
.h13{height:82.677067pt;}
.h8{height:88.933067pt;}
.h37{height:89.973200pt;}
.h23{height:91.823733pt;}
.ha{height:97.493067pt;}
.h43{height:112.245067pt;}
.h38{height:121.272021pt;}
.h45{height:143.681867pt;}
.h1b{height:214.171200pt;}
.h28{height:227.911027pt;}
.h24{height:240.945600pt;}
.h0{height:1056.000000pt;}
.w3{width:321.253427pt;}
.w1{width:321.256800pt;}
.w2{width:321.260800pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x54{left:18.166533pt;}
.x4f{left:21.608613pt;}
.x27{left:23.598493pt;}
.x55{left:25.241920pt;}
.x50{left:26.771733pt;}
.x24{left:28.357853pt;}
.x23{left:33.117213pt;}
.x22{left:38.967260pt;}
.x57{left:47.194741pt;}
.x53{left:51.981680pt;}
.x3{left:65.285333pt;}
.x56{left:68.743921pt;}
.x28{left:72.580240pt;}
.x58{left:74.082129pt;}
.x5e{left:76.657446pt;}
.x2{left:78.569333pt;}
.x5{left:81.166667pt;}
.x6{left:88.877333pt;}
.x1{left:108.929333pt;}
.x37{left:110.237333pt;}
.xf{left:118.893333pt;}
.x51{left:120.524049pt;}
.x38{left:121.636815pt;}
.x52{left:122.824000pt;}
.x7{left:126.946667pt;}
.x26{left:128.502720pt;}
.x35{left:129.938520pt;}
.x11{left:133.770667pt;}
.x6a{left:136.846667pt;}
.x4{left:138.349333pt;}
.x20{left:141.640000pt;}
.x59{left:144.073460pt;}
.xc{left:145.460000pt;}
.x5a{left:146.862080pt;}
.x8{left:149.266667pt;}
.x6b{left:151.884000pt;}
.x10{left:155.686667pt;}
.x5c{left:160.465333pt;}
.xa{left:164.576000pt;}
.xd{left:166.018667pt;}
.x9{left:167.773333pt;}
.x1a{left:172.026667pt;}
.x5d{left:175.501333pt;}
.x6c{left:184.997333pt;}
.xb{left:190.781333pt;}
.x1b{left:192.586667pt;}
.x1d{left:196.657333pt;}
.x12{left:200.701333pt;}
.x13{left:211.706667pt;}
.x15{left:224.433333pt;}
.x14{left:227.173333pt;}
.x25{left:232.018800pt;}
.x36{left:234.061440pt;}
.x17{left:239.742667pt;}
.x16{left:242.052000pt;}
.x5b{left:258.729680pt;}
.xe{left:262.657333pt;}
.x5f{left:264.859060pt;}
.x60{left:274.776690pt;}
.x18{left:280.226667pt;}
.x1e{left:321.585333pt;}
.x19{left:322.617333pt;}
.x1f{left:375.797333pt;}
.x1c{left:384.541333pt;}
.x21{left:415.970667pt;}
.x4e{left:421.424000pt;}
.x69{left:426.597333pt;}
.x2d{left:429.253333pt;}
.x3f{left:430.320000pt;}
.x40{left:432.617333pt;}
.x6e{left:435.002667pt;}
.x29{left:436.900000pt;}
.x41{left:446.554667pt;}
.x44{left:452.577333pt;}
.x2e{left:462.332000pt;}
.x3b{left:466.252000pt;}
.x39{left:467.865333pt;}
.x42{left:474.493333pt;}
.x43{left:477.128000pt;}
.x61{left:480.282667pt;}
.x2f{left:481.316000pt;}
.x2a{left:486.341333pt;}
.x68{left:489.836000pt;}
.x32{left:499.948000pt;}
.x2b{left:505.325333pt;}
.x6f{left:508.510667pt;}
.x45{left:519.508000pt;}
.x30{left:526.626667pt;}
.x46{left:530.513333pt;}
.x2c{left:536.006667pt;}
.x47{left:543.240000pt;}
.x33{left:545.258667pt;}
.x6d{left:546.149333pt;}
.x63{left:554.901333pt;}
.x48{left:555.838667pt;}
.x3c{left:558.593333pt;}
.x3d{left:560.890667pt;}
.x31{left:567.349333pt;}
.x3e{left:574.829333pt;}
.x49{left:585.262667pt;}
.x67{left:586.962667pt;}
.x34{left:589.534667pt;}
.x62{left:594.430667pt;}
.x64{left:605.545333pt;}
.x4a{left:623.606667pt;}
.x65{left:636.662667pt;}
.x3a{left:644.945333pt;}
.x4b{left:678.586667pt;}
.x66{left:684.925333pt;}
.x4c{left:732.620000pt;}
.x4d{left:735.226667pt;}
}




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