
    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_b4ec4da77722b07a028f234d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2d91db6dcafc4c62c7a57158.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_9a8f85128e97f4d1ee8dd4fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a06fc876bb7088ba4272d6cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940918;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_f336dc0344ba470ead2ed6f6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_275e12b1578dfbdce8123654.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_f0870951609f2ac1411b7806.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.273000;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_09b56b11abbbea8969dffbe9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.273000;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_09b56b11abbbea8969dffbe9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.273000;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_076cef30a3e7bdb836424949.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d639ff71a3ff2a7dbb5aa3c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_09b56b11abbbea8969dffbe9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.273000;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_f0870951609f2ac1411b7806.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.273000;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_f0870951609f2ac1411b7806.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.273000;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_09b56b11abbbea8969dffbe9.woff2')format("woff");}.fff{font-family:fff;line-height:1.273000;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_09b56b11abbbea8969dffbe9.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.273000;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_f0870951609f2ac1411b7806.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.273000;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_f0870951609f2ac1411b7806.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.273000;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_09b56b11abbbea8969dffbe9.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.273000;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_09b56b11abbbea8969dffbe9.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.273000;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_f0870951609f2ac1411b7806.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.273000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.065816px;}
.v1{vertical-align:21.600000px;}
.v4{vertical-align:48.000000px;}
.lsbe{letter-spacing:-1.532160px;}
.ls7d{letter-spacing:-1.062936px;}
.ls2a{letter-spacing:-0.268416px;}
.ls34{letter-spacing:-0.267840px;}
.lsab{letter-spacing:-0.196308px;}
.ls31{letter-spacing:-0.194400px;}
.ls4c{letter-spacing:-0.183744px;}
.ls46{letter-spacing:-0.181944px;}
.ls37{letter-spacing:-0.151200px;}
.lsbf{letter-spacing:-0.143640px;}
.lsc0{letter-spacing:-0.138852px;}
.lsc3{letter-spacing:-0.129276px;}
.ls33{letter-spacing:-0.124200px;}
.ls47{letter-spacing:-0.119700px;}
.ls3f{letter-spacing:-0.110124px;}
.ls39{letter-spacing:-0.108000px;}
.ls42{letter-spacing:-0.105336px;}
.ls48{letter-spacing:-0.100548px;}
.ls32{letter-spacing:-0.097200px;}
.ls7c{letter-spacing:-0.095760px;}
.ls27{letter-spacing:-0.091800px;}
.ls49{letter-spacing:-0.086184px;}
.ls28{letter-spacing:-0.081000px;}
.lsbd{letter-spacing:-0.071820px;}
.lsc1{letter-spacing:-0.067032px;}
.ls45{letter-spacing:-0.057456px;}
.lsaa{letter-spacing:-0.047880px;}
.ls66{letter-spacing:-0.043092px;}
.ls67{letter-spacing:-0.038304px;}
.ls97{letter-spacing:-0.033516px;}
.ls41{letter-spacing:-0.028728px;}
.ls44{letter-spacing:-0.023940px;}
.ls3d{letter-spacing:-0.019152px;}
.ls3c{letter-spacing:-0.014364px;}
.ls4b{letter-spacing:-0.009576px;}
.ls3b{letter-spacing:-0.004788px;}
.ls29{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.004788px;}
.ls11{letter-spacing:0.009576px;}
.ls1b{letter-spacing:0.014364px;}
.ls13{letter-spacing:0.019152px;}
.lsb{letter-spacing:0.021600px;}
.ls15{letter-spacing:0.023940px;}
.ls10{letter-spacing:0.028728px;}
.ls12{letter-spacing:0.033516px;}
.ls16{letter-spacing:0.038304px;}
.ls18{letter-spacing:0.043092px;}
.lsa{letter-spacing:0.043200px;}
.ls1d{letter-spacing:0.047880px;}
.ls58{letter-spacing:0.052668px;}
.lsf{letter-spacing:0.053280px;}
.ls1a{letter-spacing:0.057456px;}
.ls38{letter-spacing:0.059400px;}
.lsaf{letter-spacing:0.062244px;}
.ls40{letter-spacing:0.067032px;}
.lse{letter-spacing:0.072000px;}
.ls83{letter-spacing:0.079200px;}
.ls0{letter-spacing:0.081360px;}
.ls4a{letter-spacing:0.081396px;}
.ls53{letter-spacing:0.086184px;}
.ls3{letter-spacing:0.087048px;}
.ls55{letter-spacing:0.090972px;}
.ls30{letter-spacing:0.092268px;}
.ls35{letter-spacing:0.095040px;}
.ls19{letter-spacing:0.095760px;}
.ls84{letter-spacing:0.099252px;}
.ls1c{letter-spacing:0.100548px;}
.lsc{letter-spacing:0.100800px;}
.ls74{letter-spacing:0.102132px;}
.ls3a{letter-spacing:0.102600px;}
.ls85{letter-spacing:0.104076px;}
.ls43{letter-spacing:0.105336px;}
.ls98{letter-spacing:0.110124px;}
.ls2d{letter-spacing:0.113832px;}
.ls75{letter-spacing:0.114912px;}
.ls17{letter-spacing:0.119700px;}
.ls76{letter-spacing:0.124488px;}
.ls8{letter-spacing:0.127224px;}
.ls7{letter-spacing:0.133920px;}
.lsb9{letter-spacing:0.134064px;}
.ls1f{letter-spacing:0.137448px;}
.lsb1{letter-spacing:0.138852px;}
.lsb2{letter-spacing:0.143640px;}
.ls9{letter-spacing:0.147312px;}
.ls73{letter-spacing:0.148428px;}
.ls2e{letter-spacing:0.150984px;}
.lsb6{letter-spacing:0.153216px;}
.ls6{letter-spacing:0.154008px;}
.lsb7{letter-spacing:0.158004px;}
.ls21{letter-spacing:0.158688px;}
.lsae{letter-spacing:0.161280px;}
.ls3e{letter-spacing:0.162792px;}
.ls20{letter-spacing:0.167040px;}
.lsba{letter-spacing:0.167580px;}
.lsb0{letter-spacing:0.172368px;}
.ls4{letter-spacing:0.180792px;}
.lsb4{letter-spacing:0.181944px;}
.ls1{letter-spacing:0.194184px;}
.ls6a{letter-spacing:0.196308px;}
.lsb5{letter-spacing:0.201096px;}
.ls36{letter-spacing:0.205200px;}
.lsb8{letter-spacing:0.205884px;}
.ls5{letter-spacing:0.210384px;}
.ls2{letter-spacing:0.227664px;}
.lsc2{letter-spacing:0.229824px;}
.ls99{letter-spacing:0.230400px;}
.ls2f{letter-spacing:0.241056px;}
.ls2c{letter-spacing:0.267840px;}
.ls71{letter-spacing:0.279360px;}
.lsa6{letter-spacing:0.301788px;}
.lsc8{letter-spacing:0.305280px;}
.lsa1{letter-spacing:0.345600px;}
.lsa9{letter-spacing:0.354312px;}
.ls68{letter-spacing:0.373464px;}
.ls6e{letter-spacing:0.408960px;}
.ls52{letter-spacing:0.426240px;}
.ls7f{letter-spacing:0.429120px;}
.ls5a{letter-spacing:0.432000px;}
.ls72{letter-spacing:0.434880px;}
.ls6d{letter-spacing:0.439200px;}
.ls26{letter-spacing:0.440640px;}
.ls93{letter-spacing:0.445800px;}
.ls62{letter-spacing:0.446400px;}
.ls9c{letter-spacing:0.449280px;}
.ls95{letter-spacing:0.452160px;}
.ls51{letter-spacing:0.453600px;}
.ls2b{letter-spacing:0.475416px;}
.ls9e{letter-spacing:0.489600px;}
.ls64{letter-spacing:0.498240px;}
.ls7b{letter-spacing:0.525600px;}
.ls94{letter-spacing:0.538560px;}
.ls9d{letter-spacing:0.540000px;}
.lsac{letter-spacing:0.541440px;}
.lsc6{letter-spacing:0.564480px;}
.ls8e{letter-spacing:0.572400px;}
.ls90{letter-spacing:0.576000px;}
.ls4f{letter-spacing:0.590400px;}
.ls5d{letter-spacing:0.596160px;}
.ls7a{letter-spacing:0.599040px;}
.ls6c{letter-spacing:0.601920px;}
.ls61{letter-spacing:0.607680px;}
.lsa0{letter-spacing:0.610560px;}
.ls8b{letter-spacing:0.611400px;}
.ls50{letter-spacing:0.612000px;}
.ls63{letter-spacing:0.616320px;}
.ls5b{letter-spacing:0.622080px;}
.ls4d{letter-spacing:0.639360px;}
.ls9f{letter-spacing:0.662400px;}
.lsa3{letter-spacing:0.663336px;}
.lsc7{letter-spacing:0.665280px;}
.ls8f{letter-spacing:0.672300px;}
.lsa4{letter-spacing:0.681264px;}
.ls22{letter-spacing:0.684000px;}
.ls25{letter-spacing:0.705600px;}
.lsa8{letter-spacing:0.720000px;}
.ls24{letter-spacing:0.766800px;}
.ls6f{letter-spacing:0.768960px;}
.lsbc{letter-spacing:0.774000px;}
.ls23{letter-spacing:0.792000px;}
.ls96{letter-spacing:0.792600px;}
.ls80{letter-spacing:0.799200px;}
.ls81{letter-spacing:0.800640px;}
.ls77{letter-spacing:0.806400px;}
.lsad{letter-spacing:0.817200px;}
.ls9a{letter-spacing:0.820800px;}
.lsc5{letter-spacing:0.856800px;}
.ls82{letter-spacing:0.878400px;}
.ls91{letter-spacing:0.936000px;}
.ls59{letter-spacing:0.972000px;}
.lsb3{letter-spacing:2.160000px;}
.lsbb{letter-spacing:2.592000px;}
.ls8d{letter-spacing:3.311400px;}
.ls78{letter-spacing:3.312000px;}
.ls8c{letter-spacing:3.312600px;}
.ls7e{letter-spacing:3.319200px;}
.ls79{letter-spacing:3.672000px;}
.ls9b{letter-spacing:3.679200px;}
.ls86{letter-spacing:4.032000px;}
.ls65{letter-spacing:5.779116px;}
.ls5e{letter-spacing:5.831400px;}
.ls5c{letter-spacing:5.832000px;}
.ls5f{letter-spacing:5.832600px;}
.ls60{letter-spacing:6.192000px;}
.lsc4{letter-spacing:6.751080px;}
.ls92{letter-spacing:7.992000px;}
.lsa7{letter-spacing:7.999200px;}
.ls88{letter-spacing:8.352000px;}
.lsa2{letter-spacing:8.359200px;}
.ls8a{letter-spacing:8.711400px;}
.ls87{letter-spacing:8.712000px;}
.ls89{letter-spacing:8.712600px;}
.lsa5{letter-spacing:8.719200px;}
.ls54{letter-spacing:10.620000px;}
.ls1e{letter-spacing:13.692708px;}
.lsd{letter-spacing:20.260800px;}
.ls57{letter-spacing:20.700000px;}
.ls56{letter-spacing:24.849720px;}
.ls69{letter-spacing:33.496848px;}
.ls4e{letter-spacing:39.376800px;}
.ls6b{letter-spacing:39.736800px;}
.ls70{letter-spacing:54.118800px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-83.880000px;}
.ws47{word-spacing:-67.618800px;}
.ws3d{word-spacing:-49.744800px;}
.ws24{word-spacing:-49.384800px;}
.ws13{word-spacing:-47.880000px;}
.ws6{word-spacing:-23.318640px;}
.ws3{word-spacing:-19.090296px;}
.ws7{word-spacing:-18.882720px;}
.wsa{word-spacing:-18.855936px;}
.ws2{word-spacing:-18.842544px;}
.ws1{word-spacing:-18.809064px;}
.ws9{word-spacing:-18.795672px;}
.wsb{word-spacing:-18.768888px;}
.wse{word-spacing:-18.762192px;}
.wsc{word-spacing:-18.748800px;}
.wsd{word-spacing:-18.742104px;}
.ws8{word-spacing:-18.728712px;}
.ws4{word-spacing:-18.701928px;}
.ws0{word-spacing:-18.614880px;}
.ws14{word-spacing:-16.613280px;}
.ws11{word-spacing:-15.217200px;}
.ws39{word-spacing:-13.684104px;}
.ws54{word-spacing:-13.435128px;}
.ws3b{word-spacing:-13.430340px;}
.ws3a{word-spacing:-13.401612px;}
.ws62{word-spacing:-13.396824px;}
.ws36{word-spacing:-13.353732px;}
.ws37{word-spacing:-13.348944px;}
.ws15{word-spacing:-13.339368px;}
.ws17{word-spacing:-13.334580px;}
.ws16{word-spacing:-13.329792px;}
.ws1f{word-spacing:-13.325004px;}
.ws19{word-spacing:-13.320216px;}
.ws53{word-spacing:-13.315428px;}
.ws12{word-spacing:-13.310640px;}
.ws1c{word-spacing:-13.305852px;}
.ws21{word-spacing:-13.301064px;}
.ws65{word-spacing:-13.277124px;}
.ws38{word-spacing:-13.272336px;}
.ws35{word-spacing:-13.267548px;}
.ws20{word-spacing:-13.224456px;}
.ws1e{word-spacing:-13.210092px;}
.ws18{word-spacing:-13.205304px;}
.ws1b{word-spacing:-13.190940px;}
.ws1a{word-spacing:-13.128696px;}
.ws6a{word-spacing:-12.343464px;}
.ws67{word-spacing:-12.151944px;}
.ws6c{word-spacing:-12.123216px;}
.ws6e{word-spacing:-12.118428px;}
.ws6b{word-spacing:-12.051396px;}
.ws10{word-spacing:-12.009600px;}
.ws6d{word-spacing:-11.993940px;}
.ws69{word-spacing:-11.874240px;}
.wsf{word-spacing:-11.815200px;}
.ws22{word-spacing:-11.425536px;}
.ws1d{word-spacing:-10.608480px;}
.ws5e{word-spacing:-8.987904px;}
.ws5c{word-spacing:-8.978940px;}
.ws5d{word-spacing:-8.969976px;}
.ws51{word-spacing:-8.807040px;}
.ws42{word-spacing:-8.775360px;}
.ws27{word-spacing:-8.712000px;}
.ws71{word-spacing:-8.671680px;}
.ws59{word-spacing:-8.668800px;}
.ws40{word-spacing:-8.645760px;}
.ws41{word-spacing:-8.628480px;}
.ws45{word-spacing:-8.622720px;}
.ws5a{word-spacing:-8.616960px;}
.ws46{word-spacing:-8.614080px;}
.ws5f{word-spacing:-8.608428px;}
.ws3e{word-spacing:-8.608320px;}
.ws4f{word-spacing:-8.605440px;}
.ws43{word-spacing:-8.602560px;}
.ws26{word-spacing:-8.596800px;}
.ws70{word-spacing:-8.570880px;}
.ws63{word-spacing:-8.547840px;}
.ws60{word-spacing:-8.544960px;}
.ws4a{word-spacing:-8.504640px;}
.ws58{word-spacing:-8.496000px;}
.ws61{word-spacing:-8.458560px;}
.ws56{word-spacing:-8.455680px;}
.ws25{word-spacing:-8.447040px;}
.ws49{word-spacing:-8.441280px;}
.ws44{word-spacing:-8.438400px;}
.ws50{word-spacing:-8.435520px;}
.ws28{word-spacing:-8.432640px;}
.ws3f{word-spacing:-8.415360px;}
.ws5b{word-spacing:-8.352000px;}
.ws72{word-spacing:-8.311680px;}
.ws57{word-spacing:-8.285760px;}
.ws55{word-spacing:-8.236800px;}
.ws78{word-spacing:-2.638188px;}
.ws84{word-spacing:-2.279088px;}
.ws8f{word-spacing:-1.690164px;}
.ws7b{word-spacing:-1.436400px;}
.ws73{word-spacing:-1.168272px;}
.ws79{word-spacing:-0.981540px;}
.ws2b{word-spacing:-0.286200px;}
.ws2e{word-spacing:-0.264600px;}
.ws8a{word-spacing:-0.248976px;}
.ws77{word-spacing:-0.181944px;}
.ws81{word-spacing:-0.172368px;}
.ws75{word-spacing:-0.153216px;}
.ws2c{word-spacing:-0.145800px;}
.ws7c{word-spacing:-0.134064px;}
.ws2f{word-spacing:-0.091800px;}
.ws2a{word-spacing:0.000000px;}
.ws30{word-spacing:0.019152px;}
.ws86{word-spacing:0.086184px;}
.ws7e{word-spacing:0.124488px;}
.ws7a{word-spacing:0.239400px;}
.ws2d{word-spacing:0.243000px;}
.ws89{word-spacing:0.541044px;}
.ws4e{word-spacing:1.058148px;}
.ws87{word-spacing:1.340640px;}
.ws7d{word-spacing:1.570464px;}
.ws85{word-spacing:1.694952px;}
.ws8b{word-spacing:1.709316px;}
.ws3c{word-spacing:1.745280px;}
.ws82{word-spacing:1.776348px;}
.ws8c{word-spacing:1.987020px;}
.ws23{word-spacing:2.105280px;}
.ws8d{word-spacing:2.197692px;}
.ws74{word-spacing:2.264724px;}
.ws52{word-spacing:2.502720px;}
.ws48{word-spacing:2.825280px;}
.ws32{word-spacing:3.581424px;}
.ws88{word-spacing:4.859820px;}
.ws4d{word-spacing:5.415228px;}
.ws90{word-spacing:6.291432px;}
.ws8e{word-spacing:6.631380px;}
.ws6f{word-spacing:7.135200px;}
.ws91{word-spacing:7.938504px;}
.ws68{word-spacing:8.015940px;}
.ws66{word-spacing:8.016660px;}
.ws83{word-spacing:8.953560px;}
.ws4c{word-spacing:9.025380px;}
.ws80{word-spacing:9.585576px;}
.ws7f{word-spacing:9.609516px;}
.ws76{word-spacing:11.314044px;}
.ws31{word-spacing:11.649204px;}
.ws33{word-spacing:12.970692px;}
.ws34{word-spacing:13.320216px;}
.ws4b{word-spacing:33.142536px;}
.ws64{word-spacing:1761.503820px;}
.ws29{word-spacing:1791.263820px;}
._25{margin-left:-127.801800px;}
._18{margin-left:-38.975040px;}
._24{margin-left:-34.229412px;}
._23{margin-left:-33.185628px;}
._1d{margin-left:-6.792984px;}
._1e{margin-left:-5.640264px;}
._3{margin-left:-4.343904px;}
._4{margin-left:-3.240000px;}
._2{margin-left:-1.298376px;}
._0{width:1.096200px;}
._a{width:2.417940px;}
._d{width:3.543372px;}
._10{width:5.266800px;}
._c{width:6.502104px;}
._13{width:7.517160px;}
._5{width:8.627976px;}
._8{width:10.073952px;}
._b{width:11.659212px;}
._7{width:14.770980px;}
._12{width:16.542540px;}
._22{width:18.385920px;}
._f{width:19.410552px;}
._e{width:20.550096px;}
._6{width:21.584304px;}
._1a{width:22.829184px;}
._11{width:24.121944px;}
._9{width:25.601436px;}
._19{width:27.722520px;}
._17{width:29.063160px;}
._15{width:30.834720px;}
._14{width:32.275908px;}
._1b{width:33.980436px;}
._16{width:35.301924px;}
._1c{width:36.398376px;}
._29{width:43.470252px;}
._1f{width:48.282192px;}
._21{width:58.269960px;}
._28{width:61.410636px;}
._27{width:62.833176px;}
._20{width:124.827696px;}
._1{width:1271.824200px;}
._2a{width:2076.383970px;}
._26{width:2106.143736px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:28.800000px;}
.fsc{font-size:29.880000px;}
.fs5{font-size:36.000000px;}
.fs8{font-size:38.160000px;}
.fs9{font-size:41.760000px;}
.fs4{font-size:43.200000px;}
.fs6{font-size:47.880000px;}
.fsb{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.960000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y113{bottom:4.140150px;}
.y11d{bottom:5.850000px;}
.y9f{bottom:6.390000px;}
.ya2{bottom:6.750000px;}
.ya4{bottom:8.460000px;}
.y54{bottom:9.270000px;}
.y112{bottom:13.140150px;}
.y11c{bottom:14.850000px;}
.yd5{bottom:19.080000px;}
.y1af{bottom:20.790000px;}
.y9a{bottom:21.600000px;}
.y11b{bottom:23.850000px;}
.yd9{bottom:24.120000px;}
.y115{bottom:26.010000px;}
.y9d{bottom:27.450000px;}
.yd4{bottom:28.080000px;}
.y1ae{bottom:29.790000px;}
.y11a{bottom:32.850000px;}
.y9c{bottom:36.450150px;}
.y156{bottom:36.900000px;}
.y1ad{bottom:38.790000px;}
.ydb{bottom:40.500000px;}
.y119{bottom:41.850000px;}
.yd7{bottom:45.810150px;}
.y1ac{bottom:47.790000px;}
.y118{bottom:50.850000px;}
.y55{bottom:52.224013px;}
.y117{bottom:59.850000px;}
.y1b1{bottom:62.190000px;}
.ya5{bottom:64.224013px;}
.y116{bottom:68.850150px;}
.y1{bottom:73.980000px;}
.y11f{bottom:83.700000px;}
.ya3{bottom:142.020000px;}
.y111{bottom:143.460000px;}
.y52{bottom:145.530366px;}
.y7e{bottom:147.785397px;}
.ybd{bottom:150.215577px;}
.y36{bottom:151.922826px;}
.y51{bottom:155.970366px;}
.yd2{bottom:160.650618px;}
.y7d{bottom:162.814929px;}
.ybc{bottom:165.155334px;}
.y50{bottom:166.500150px;}
.y35{bottom:166.952358px;}
.yd1{bottom:175.692525px;}
.y7c{bottom:177.754686px;}
.ybb{bottom:180.184866px;}
.y166{bottom:181.170933px;}
.y34{bottom:181.892115px;}
.y1aa{bottom:183.422925px;}
.yd0{bottom:190.632282px;}
.y7b{bottom:192.784218px;}
.y114{bottom:193.410150px;}
.yba{bottom:195.214398px;}
.y1a9{bottom:195.392925px;}
.y53{bottom:196.020000px;}
.y165{bottom:196.110690px;}
.y33{bottom:196.921647px;}
.ycf{bottom:205.661814px;}
.y1a8{bottom:207.452700px;}
.y7a{bottom:207.813750px;}
.yb9{bottom:210.154155px;}
.y164{bottom:211.140222px;}
.y32{bottom:211.951179px;}
.y1a7{bottom:219.422700px;}
.yce{bottom:220.691346px;}
.y79{bottom:222.753507px;}
.yb8{bottom:225.183687px;}
.y163{bottom:226.169754px;}
.y31{bottom:226.890936px;}
.y1a6{bottom:231.392700px;}
.ycd{bottom:235.631103px;}
.y78{bottom:237.783039px;}
.yb7{bottom:240.213219px;}
.y30{bottom:241.920468px;}
.y1a5{bottom:243.452475px;}
.yd6{bottom:245.700150px;}
.y162{bottom:246.600150px;}
.ycc{bottom:250.660635px;}
.y77{bottom:252.812571px;}
.yb6{bottom:255.152976px;}
.y1a4{bottom:255.422475px;}
.y2f{bottom:256.953912px;}
.y11e{bottom:258.030000px;}
.ycb{bottom:265.690167px;}
.y1a3{bottom:267.392475px;}
.y76{bottom:267.752328px;}
.yb5{bottom:270.182508px;}
.y2e{bottom:271.893669px;}
.y1a2{bottom:279.452250px;}
.yca{bottom:280.629924px;}
.y161{bottom:281.614155px;}
.y75{bottom:282.781860px;}
.yb4{bottom:285.212040px;}
.y2d{bottom:286.923201px;}
.y1a1{bottom:291.422250px;}
.y160{bottom:296.643687px;}
.y74{bottom:297.811392px;}
.yb3{bottom:300.151797px;}
.yc9{bottom:300.160176px;}
.y2c{bottom:301.952733px;}
.y1a0{bottom:303.392250px;}
.y15f{bottom:311.673219px;}
.y73{bottom:312.751149px;}
.yb2{bottom:315.181329px;}
.y19f{bottom:315.452025px;}
.y2b{bottom:317.882409px;}
.y1b0{bottom:319.230000px;}
.yc8{bottom:324.189951px;}
.y15e{bottom:326.612976px;}
.y19e{bottom:327.422025px;}
.y72{bottom:327.780681px;}
.yb1{bottom:330.210861px;}
.y98{bottom:333.275265px;}
.y2a{bottom:334.892976px;}
.yc7{bottom:339.129708px;}
.y19d{bottom:339.392025px;}
.y15d{bottom:341.642508px;}
.yda{bottom:342.450000px;}
.y71{bottom:342.810213px;}
.yb0{bottom:345.150618px;}
.y97{bottom:348.304797px;}
.y29{bottom:349.922508px;}
.y19c{bottom:351.451800px;}
.yc6{bottom:354.159240px;}
.y15c{bottom:356.672040px;}
.y70{bottom:357.749970px;}
.yaf{bottom:360.180711px;}
.y96{bottom:363.244554px;}
.y19b{bottom:363.421800px;}
.y28{bottom:364.952040px;}
.yc5{bottom:369.188772px;}
.y15b{bottom:371.611797px;}
.y6f{bottom:372.779502px;}
.yae{bottom:375.210243px;}
.y19a{bottom:375.391800px;}
.y95{bottom:378.274086px;}
.y27{bottom:379.891797px;}
.yc4{bottom:384.218304px;}
.y15a{bottom:386.641329px;}
.y199{bottom:387.451575px;}
.y6e{bottom:388.808883px;}
.yad{bottom:390.150618px;}
.y94{bottom:393.303618px;}
.y26{bottom:394.921329px;}
.yc3{bottom:399.158061px;}
.y198{bottom:399.421575px;}
.y159{bottom:401.670861px;}
.yac{bottom:405.179820px;}
.y6d{bottom:405.818253px;}
.y93{bottom:408.333150px;}
.y25{bottom:409.950861px;}
.y197{bottom:411.391575px;}
.yc2{bottom:414.187593px;}
.y158{bottom:416.610618px;}
.yab{bottom:420.209352px;}
.y6c{bottom:420.758010px;}
.y92{bottom:423.272907px;}
.y196{bottom:423.451350px;}
.y24{bottom:424.890618px;}
.yc1{bottom:429.217125px;}
.y157{bottom:431.640150px;}
.y195{bottom:435.421350px;}
.y6b{bottom:435.787542px;}
.y91{bottom:438.302439px;}
.yaa{bottom:439.649829px;}
.y1ab{bottom:439.650000px;}
.y23{bottom:439.925427px;}
.yc0{bottom:444.156882px;}
.y194{bottom:447.391350px;}
.y6a{bottom:450.817074px;}
.y90{bottom:453.331971px;}
.y22{bottom:454.954959px;}
.ybf{bottom:459.186414px;}
.y193{bottom:459.451125px;}
.ya9{bottom:460.170000px;}
.y69{bottom:465.756831px;}
.y8f{bottom:468.271728px;}
.y4f{bottom:469.711467px;}
.y21{bottom:469.894716px;}
.y192{bottom:471.421125px;}
.ybe{bottom:474.215946px;}
.y68{bottom:480.786363px;}
.yd8{bottom:482.130000px;}
.y8e{bottom:483.301260px;}
.y191{bottom:483.391125px;}
.y4e{bottom:484.740999px;}
.y20{bottom:484.924248px;}
.ya8{bottom:495.180936px;}
.y190{bottom:495.450900px;}
.y67{bottom:495.815895px;}
.y8d{bottom:498.330792px;}
.y4d{bottom:499.680756px;}
.y1f{bottom:499.953780px;}
.y18f{bottom:507.420900px;}
.ya7{bottom:510.210468px;}
.y66{bottom:510.755652px;}
.y8c{bottom:513.270549px;}
.y4c{bottom:514.710288px;}
.y1e{bottom:514.893537px;}
.y18e{bottom:519.390900px;}
.ya6{bottom:525.240000px;}
.y65{bottom:525.785184px;}
.y8b{bottom:529.289433px;}
.y4b{bottom:529.739820px;}
.y1d{bottom:529.923069px;}
.y18d{bottom:531.450675px;}
.yd3{bottom:533.160000px;}
.y64{bottom:540.814716px;}
.y18c{bottom:543.420675px;}
.y4a{bottom:544.679577px;}
.y1c{bottom:544.952601px;}
.y8a{bottom:546.307395px;}
.y18b{bottom:555.390675px;}
.y63{bottom:555.754473px;}
.y1b{bottom:559.892358px;}
.y89{bottom:561.336927px;}
.y49{bottom:564.209829px;}
.y155{bottom:564.391476px;}
.y18a{bottom:567.450450px;}
.y62{bottom:570.784005px;}
.y1a{bottom:574.921890px;}
.yf9{bottom:574.927785px;}
.y88{bottom:576.276684px;}
.y138{bottom:576.456138px;}
.y189{bottom:579.420450px;}
.y154{bottom:579.421008px;}
.y48{bottom:584.730000px;}
.y61{bottom:585.813537px;}
.y19{bottom:589.951422px;}
.yf8{bottom:589.957317px;}
.y87{bottom:591.306216px;}
.y188{bottom:591.390450px;}
.y137{bottom:591.395895px;}
.y153{bottom:594.450540px;}
.y60{bottom:600.753294px;}
.y187{bottom:603.450225px;}
.y18{bottom:604.891179px;}
.yf7{bottom:604.897074px;}
.y86{bottom:606.335748px;}
.y136{bottom:606.425427px;}
.y152{bottom:609.390297px;}
.y186{bottom:615.420225px;}
.y5f{bottom:615.782826px;}
.y47{bottom:619.745334px;}
.y17{bottom:619.920711px;}
.yf6{bottom:619.926606px;}
.y85{bottom:621.275505px;}
.y135{bottom:621.454959px;}
.y151{bottom:624.419829px;}
.y185{bottom:627.390225px;}
.y5e{bottom:630.812358px;}
.y46{bottom:634.685091px;}
.y16{bottom:634.950243px;}
.yf5{bottom:634.956138px;}
.y84{bottom:636.305037px;}
.y134{bottom:636.394716px;}
.y184{bottom:639.450225px;}
.y150{bottom:644.940000px;}
.y5d{bottom:645.752115px;}
.ya1{bottom:647.280000px;}
.ya0{bottom:647.640000px;}
.y45{bottom:649.714623px;}
.y15{bottom:649.889829px;}
.yf4{bottom:649.895895px;}
.y183{bottom:651.420225px;}
.y133{bottom:651.424248px;}
.y83{bottom:654.035001px;}
.y5c{bottom:660.781647px;}
.y182{bottom:663.390225px;}
.y44{bottom:664.744155px;}
.yf3{bottom:664.925427px;}
.y132{bottom:666.453780px;}
.y9e{bottom:669.780000px;}
.y14{bottom:670.410000px;}
.y181{bottom:675.450000px;}
.y5b{bottom:675.811179px;}
.y82{bottom:676.174713px;}
.y110{bottom:676.894716px;}
.y43{bottom:679.773687px;}
.yf2{bottom:679.954959px;}
.y14f{bottom:679.965516px;}
.y131{bottom:681.393537px;}
.y180{bottom:687.421629px;}
.y5a{bottom:690.750936px;}
.y10f{bottom:691.924248px;}
.y42{bottom:694.713444px;}
.y81{bottom:694.804821px;}
.yf1{bottom:694.894716px;}
.y14e{bottom:694.905273px;}
.y130{bottom:696.423069px;}
.y17f{bottom:699.391629px;}
.y13{bottom:705.423366px;}
.y59{bottom:705.780468px;}
.y10e{bottom:706.953780px;}
.y41{bottom:709.742976px;}
.y80{bottom:709.834353px;}
.yf0{bottom:709.924248px;}
.y14d{bottom:709.934805px;}
.y17e{bottom:711.451404px;}
.y12f{bottom:711.452601px;}
.y12{bottom:720.452898px;}
.y58{bottom:720.810000px;}
.y10d{bottom:721.893537px;}
.y17d{bottom:723.421404px;}
.y40{bottom:724.772508px;}
.yef{bottom:724.953780px;}
.y14c{bottom:724.964337px;}
.y12e{bottom:726.392358px;}
.y99{bottom:728.820000px;}
.y7f{bottom:729.274830px;}
.y17c{bottom:735.391404px;}
.y11{bottom:735.392655px;}
.y10c{bottom:736.923069px;}
.y9b{bottom:737.280000px;}
.y3f{bottom:739.712265px;}
.yee{bottom:739.893537px;}
.y14b{bottom:739.904094px;}
.y12d{bottom:741.421890px;}
.y17b{bottom:747.451179px;}
.y10{bottom:750.422187px;}
.y10b{bottom:751.952601px;}
.y3e{bottom:754.741797px;}
.yed{bottom:754.923069px;}
.y14a{bottom:754.933626px;}
.y12c{bottom:756.451422px;}
.y17a{bottom:759.421179px;}
.yf{bottom:765.451719px;}
.y10a{bottom:766.892358px;}
.y3d{bottom:769.771329px;}
.yec{bottom:769.952601px;}
.y149{bottom:769.963158px;}
.y12b{bottom:771.391179px;}
.ye{bottom:780.391476px;}
.y109{bottom:781.921890px;}
.y179{bottom:783.450954px;}
.y3c{bottom:784.711086px;}
.yeb{bottom:784.892358px;}
.y148{bottom:784.902915px;}
.y12a{bottom:786.420711px;}
.y178{bottom:795.420954px;}
.yd{bottom:795.421008px;}
.y108{bottom:796.951422px;}
.y3b{bottom:799.740618px;}
.yea{bottom:799.921890px;}
.y147{bottom:799.932447px;}
.y129{bottom:801.450243px;}
.y177{bottom:807.390954px;}
.yc{bottom:810.450540px;}
.y107{bottom:811.891179px;}
.y3a{bottom:814.773546px;}
.ye9{bottom:814.951422px;}
.y146{bottom:814.961979px;}
.y128{bottom:816.390468px;}
.y176{bottom:819.450729px;}
.yb{bottom:825.390297px;}
.y106{bottom:826.920711px;}
.ye8{bottom:829.891179px;}
.y145{bottom:829.901736px;}
.y175{bottom:831.420729px;}
.y127{bottom:831.423510px;}
.y39{bottom:832.953582px;}
.ya{bottom:840.419829px;}
.y105{bottom:841.950243px;}
.y174{bottom:843.390729px;}
.ye7{bottom:844.920711px;}
.y144{bottom:844.931268px;}
.y126{bottom:846.453042px;}
.y38{bottom:847.893339px;}
.y173{bottom:855.450504px;}
.y104{bottom:856.890468px;}
.ye6{bottom:859.950243px;}
.y143{bottom:859.960800px;}
.y9{bottom:860.940000px;}
.y125{bottom:861.392799px;}
.y37{bottom:862.922871px;}
.y172{bottom:867.420504px;}
.y103{bottom:871.931016px;}
.ye5{bottom:874.893762px;}
.y142{bottom:874.900557px;}
.y124{bottom:876.422331px;}
.y171{bottom:879.390504px;}
.y102{bottom:886.960548px;}
.ye4{bottom:889.923294px;}
.y141{bottom:889.930089px;}
.y170{bottom:891.450279px;}
.y123{bottom:891.451863px;}
.y8{bottom:895.950000px;}
.y101{bottom:901.900305px;}
.y16f{bottom:903.420279px;}
.ye3{bottom:904.952826px;}
.y140{bottom:904.959621px;}
.y122{bottom:906.391620px;}
.y16e{bottom:915.480054px;}
.y7{bottom:916.830000px;}
.y100{bottom:916.929837px;}
.ye2{bottom:919.982358px;}
.y13f{bottom:919.989153px;}
.y121{bottom:921.421152px;}
.y16d{bottom:927.450054px;}
.yff{bottom:931.959369px;}
.y6{bottom:933.300000px;}
.ye1{bottom:934.922115px;}
.y13e{bottom:934.928910px;}
.y16c{bottom:939.420054px;}
.y120{bottom:940.951404px;}
.yfe{bottom:946.988901px;}
.y5{bottom:949.860000px;}
.ye0{bottom:949.951647px;}
.y13d{bottom:949.958442px;}
.y16b{bottom:951.479829px;}
.y4{bottom:960.930000px;}
.yfd{bottom:961.928658px;}
.y16a{bottom:963.449829px;}
.ydf{bottom:964.981179px;}
.y13c{bottom:964.987974px;}
.y169{bottom:975.419829px;}
.yfc{bottom:976.958190px;}
.yde{bottom:979.920936px;}
.y13b{bottom:979.927731px;}
.y168{bottom:987.479604px;}
.y3{bottom:989.460162px;}
.yfb{bottom:991.987722px;}
.ydd{bottom:994.950468px;}
.y13a{bottom:994.957263px;}
.y2{bottom:1005.930000px;}
.y167{bottom:1007.910000px;}
.yfa{bottom:1007.917398px;}
.ydc{bottom:1009.980000px;}
.y139{bottom:1009.986795px;}
.y57{bottom:1119.023964px;}
.y56{bottom:1131.023964px;}
.h14{height:18.000000px;}
.h16{height:19.530000px;}
.hd{height:26.208984px;}
.h1f{height:26.209584px;}
.hb{height:30.422812px;}
.h4{height:31.450781px;}
.h20{height:33.244805px;}
.ha{height:34.857949px;}
.h7{height:34.881328px;}
.h8{height:34.882012px;}
.h19{height:34.882648px;}
.h5{height:34.974844px;}
.h15{height:37.494141px;}
.h1{height:39.339844px;}
.h10{height:41.458584px;}
.h17{height:41.493516px;}
.h11{height:41.495784px;}
.h6{height:43.506914px;}
.hf{height:46.608000px;}
.h9{height:46.865972px;}
.h3{height:53.050781px;}
.h2{height:61.066934px;}
.he{height:94.608000px;}
.h18{height:180.810000px;}
.hc{height:269.100000px;}
.h13{height:280.620000px;}
.h12{height:289.080000px;}
.h1c{height:412.470000px;}
.h1e{height:416.700000px;}
.h1a{height:484.740000px;}
.h1d{height:522.990000px;}
.h1b{height:535.770000px;}
.h21{height:578.250000px;}
.h0{height:1188.000000px;}
.w3{width:8.280000px;}
.w5{width:13.680000px;}
.w4{width:29.970000px;}
.w6{width:333.810000px;}
.w1{width:338.400000px;}
.w2{width:338.490000px;}
.w7{width:701.640000px;}
.w0{width:907.500000px;}
.x0{left:0.000000px;}
.xd{left:1.529850px;}
.xa{left:4.230000px;}
.x12{left:5.310000px;}
.xb{left:46.710000px;}
.x10{left:48.510000px;}
.x11{left:51.030000px;}
.x5{left:76.500000px;}
.x1{left:101.790000px;}
.x2{left:112.860072px;}
.x3{left:469.619658px;}
.x9{left:480.689703px;}
.x4{left:482.850612px;}
.x7{left:493.560058px;}
.x8{left:559.523986px;}
.xe{left:602.010000px;}
.x6{left:617.915955px;}
.xf{left:676.620000px;}
.xc{left:774.360000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.947392pt;}
.v1{vertical-align:19.200000pt;}
.v4{vertical-align:42.666667pt;}
.lsbe{letter-spacing:-1.361920pt;}
.ls7d{letter-spacing:-0.944832pt;}
.ls2a{letter-spacing:-0.238592pt;}
.ls34{letter-spacing:-0.238080pt;}
.lsab{letter-spacing:-0.174496pt;}
.ls31{letter-spacing:-0.172800pt;}
.ls4c{letter-spacing:-0.163328pt;}
.ls46{letter-spacing:-0.161728pt;}
.ls37{letter-spacing:-0.134400pt;}
.lsbf{letter-spacing:-0.127680pt;}
.lsc0{letter-spacing:-0.123424pt;}
.lsc3{letter-spacing:-0.114912pt;}
.ls33{letter-spacing:-0.110400pt;}
.ls47{letter-spacing:-0.106400pt;}
.ls3f{letter-spacing:-0.097888pt;}
.ls39{letter-spacing:-0.096000pt;}
.ls42{letter-spacing:-0.093632pt;}
.ls48{letter-spacing:-0.089376pt;}
.ls32{letter-spacing:-0.086400pt;}
.ls7c{letter-spacing:-0.085120pt;}
.ls27{letter-spacing:-0.081600pt;}
.ls49{letter-spacing:-0.076608pt;}
.ls28{letter-spacing:-0.072000pt;}
.lsbd{letter-spacing:-0.063840pt;}
.lsc1{letter-spacing:-0.059584pt;}
.ls45{letter-spacing:-0.051072pt;}
.lsaa{letter-spacing:-0.042560pt;}
.ls66{letter-spacing:-0.038304pt;}
.ls67{letter-spacing:-0.034048pt;}
.ls97{letter-spacing:-0.029792pt;}
.ls41{letter-spacing:-0.025536pt;}
.ls44{letter-spacing:-0.021280pt;}
.ls3d{letter-spacing:-0.017024pt;}
.ls3c{letter-spacing:-0.012768pt;}
.ls4b{letter-spacing:-0.008512pt;}
.ls3b{letter-spacing:-0.004256pt;}
.ls29{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.004256pt;}
.ls11{letter-spacing:0.008512pt;}
.ls1b{letter-spacing:0.012768pt;}
.ls13{letter-spacing:0.017024pt;}
.lsb{letter-spacing:0.019200pt;}
.ls15{letter-spacing:0.021280pt;}
.ls10{letter-spacing:0.025536pt;}
.ls12{letter-spacing:0.029792pt;}
.ls16{letter-spacing:0.034048pt;}
.ls18{letter-spacing:0.038304pt;}
.lsa{letter-spacing:0.038400pt;}
.ls1d{letter-spacing:0.042560pt;}
.ls58{letter-spacing:0.046816pt;}
.lsf{letter-spacing:0.047360pt;}
.ls1a{letter-spacing:0.051072pt;}
.ls38{letter-spacing:0.052800pt;}
.lsaf{letter-spacing:0.055328pt;}
.ls40{letter-spacing:0.059584pt;}
.lse{letter-spacing:0.064000pt;}
.ls83{letter-spacing:0.070400pt;}
.ls0{letter-spacing:0.072320pt;}
.ls4a{letter-spacing:0.072352pt;}
.ls53{letter-spacing:0.076608pt;}
.ls3{letter-spacing:0.077376pt;}
.ls55{letter-spacing:0.080864pt;}
.ls30{letter-spacing:0.082016pt;}
.ls35{letter-spacing:0.084480pt;}
.ls19{letter-spacing:0.085120pt;}
.ls84{letter-spacing:0.088224pt;}
.ls1c{letter-spacing:0.089376pt;}
.lsc{letter-spacing:0.089600pt;}
.ls74{letter-spacing:0.090784pt;}
.ls3a{letter-spacing:0.091200pt;}
.ls85{letter-spacing:0.092512pt;}
.ls43{letter-spacing:0.093632pt;}
.ls98{letter-spacing:0.097888pt;}
.ls2d{letter-spacing:0.101184pt;}
.ls75{letter-spacing:0.102144pt;}
.ls17{letter-spacing:0.106400pt;}
.ls76{letter-spacing:0.110656pt;}
.ls8{letter-spacing:0.113088pt;}
.ls7{letter-spacing:0.119040pt;}
.lsb9{letter-spacing:0.119168pt;}
.ls1f{letter-spacing:0.122176pt;}
.lsb1{letter-spacing:0.123424pt;}
.lsb2{letter-spacing:0.127680pt;}
.ls9{letter-spacing:0.130944pt;}
.ls73{letter-spacing:0.131936pt;}
.ls2e{letter-spacing:0.134208pt;}
.lsb6{letter-spacing:0.136192pt;}
.ls6{letter-spacing:0.136896pt;}
.lsb7{letter-spacing:0.140448pt;}
.ls21{letter-spacing:0.141056pt;}
.lsae{letter-spacing:0.143360pt;}
.ls3e{letter-spacing:0.144704pt;}
.ls20{letter-spacing:0.148480pt;}
.lsba{letter-spacing:0.148960pt;}
.lsb0{letter-spacing:0.153216pt;}
.ls4{letter-spacing:0.160704pt;}
.lsb4{letter-spacing:0.161728pt;}
.ls1{letter-spacing:0.172608pt;}
.ls6a{letter-spacing:0.174496pt;}
.lsb5{letter-spacing:0.178752pt;}
.ls36{letter-spacing:0.182400pt;}
.lsb8{letter-spacing:0.183008pt;}
.ls5{letter-spacing:0.187008pt;}
.ls2{letter-spacing:0.202368pt;}
.lsc2{letter-spacing:0.204288pt;}
.ls99{letter-spacing:0.204800pt;}
.ls2f{letter-spacing:0.214272pt;}
.ls2c{letter-spacing:0.238080pt;}
.ls71{letter-spacing:0.248320pt;}
.lsa6{letter-spacing:0.268256pt;}
.lsc8{letter-spacing:0.271360pt;}
.lsa1{letter-spacing:0.307200pt;}
.lsa9{letter-spacing:0.314944pt;}
.ls68{letter-spacing:0.331968pt;}
.ls6e{letter-spacing:0.363520pt;}
.ls52{letter-spacing:0.378880pt;}
.ls7f{letter-spacing:0.381440pt;}
.ls5a{letter-spacing:0.384000pt;}
.ls72{letter-spacing:0.386560pt;}
.ls6d{letter-spacing:0.390400pt;}
.ls26{letter-spacing:0.391680pt;}
.ls93{letter-spacing:0.396267pt;}
.ls62{letter-spacing:0.396800pt;}
.ls9c{letter-spacing:0.399360pt;}
.ls95{letter-spacing:0.401920pt;}
.ls51{letter-spacing:0.403200pt;}
.ls2b{letter-spacing:0.422592pt;}
.ls9e{letter-spacing:0.435200pt;}
.ls64{letter-spacing:0.442880pt;}
.ls7b{letter-spacing:0.467200pt;}
.ls94{letter-spacing:0.478720pt;}
.ls9d{letter-spacing:0.480000pt;}
.lsac{letter-spacing:0.481280pt;}
.lsc6{letter-spacing:0.501760pt;}
.ls8e{letter-spacing:0.508800pt;}
.ls90{letter-spacing:0.512000pt;}
.ls4f{letter-spacing:0.524800pt;}
.ls5d{letter-spacing:0.529920pt;}
.ls7a{letter-spacing:0.532480pt;}
.ls6c{letter-spacing:0.535040pt;}
.ls61{letter-spacing:0.540160pt;}
.lsa0{letter-spacing:0.542720pt;}
.ls8b{letter-spacing:0.543467pt;}
.ls50{letter-spacing:0.544000pt;}
.ls63{letter-spacing:0.547840pt;}
.ls5b{letter-spacing:0.552960pt;}
.ls4d{letter-spacing:0.568320pt;}
.ls9f{letter-spacing:0.588800pt;}
.lsa3{letter-spacing:0.589632pt;}
.lsc7{letter-spacing:0.591360pt;}
.ls8f{letter-spacing:0.597600pt;}
.lsa4{letter-spacing:0.605568pt;}
.ls22{letter-spacing:0.608000pt;}
.ls25{letter-spacing:0.627200pt;}
.lsa8{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.681600pt;}
.ls6f{letter-spacing:0.683520pt;}
.lsbc{letter-spacing:0.688000pt;}
.ls23{letter-spacing:0.704000pt;}
.ls96{letter-spacing:0.704533pt;}
.ls80{letter-spacing:0.710400pt;}
.ls81{letter-spacing:0.711680pt;}
.ls77{letter-spacing:0.716800pt;}
.lsad{letter-spacing:0.726400pt;}
.ls9a{letter-spacing:0.729600pt;}
.lsc5{letter-spacing:0.761600pt;}
.ls82{letter-spacing:0.780800pt;}
.ls91{letter-spacing:0.832000pt;}
.ls59{letter-spacing:0.864000pt;}
.lsb3{letter-spacing:1.920000pt;}
.lsbb{letter-spacing:2.304000pt;}
.ls8d{letter-spacing:2.943467pt;}
.ls78{letter-spacing:2.944000pt;}
.ls8c{letter-spacing:2.944533pt;}
.ls7e{letter-spacing:2.950400pt;}
.ls79{letter-spacing:3.264000pt;}
.ls9b{letter-spacing:3.270400pt;}
.ls86{letter-spacing:3.584000pt;}
.ls65{letter-spacing:5.136992pt;}
.ls5e{letter-spacing:5.183467pt;}
.ls5c{letter-spacing:5.184000pt;}
.ls5f{letter-spacing:5.184533pt;}
.ls60{letter-spacing:5.504000pt;}
.lsc4{letter-spacing:6.000960pt;}
.ls92{letter-spacing:7.104000pt;}
.lsa7{letter-spacing:7.110400pt;}
.ls88{letter-spacing:7.424000pt;}
.lsa2{letter-spacing:7.430400pt;}
.ls8a{letter-spacing:7.743467pt;}
.ls87{letter-spacing:7.744000pt;}
.ls89{letter-spacing:7.744533pt;}
.lsa5{letter-spacing:7.750400pt;}
.ls54{letter-spacing:9.440000pt;}
.ls1e{letter-spacing:12.171296pt;}
.lsd{letter-spacing:18.009600pt;}
.ls57{letter-spacing:18.400000pt;}
.ls56{letter-spacing:22.088640pt;}
.ls69{letter-spacing:29.774976pt;}
.ls4e{letter-spacing:35.001600pt;}
.ls6b{letter-spacing:35.321600pt;}
.ls70{letter-spacing:48.105600pt;}
.ws5{word-spacing:-74.560000pt;}
.ws47{word-spacing:-60.105600pt;}
.ws3d{word-spacing:-44.217600pt;}
.ws24{word-spacing:-43.897600pt;}
.ws13{word-spacing:-42.560000pt;}
.ws6{word-spacing:-20.727680pt;}
.ws3{word-spacing:-16.969152pt;}
.ws7{word-spacing:-16.784640pt;}
.wsa{word-spacing:-16.760832pt;}
.ws2{word-spacing:-16.748928pt;}
.ws1{word-spacing:-16.719168pt;}
.ws9{word-spacing:-16.707264pt;}
.wsb{word-spacing:-16.683456pt;}
.wse{word-spacing:-16.677504pt;}
.wsc{word-spacing:-16.665600pt;}
.wsd{word-spacing:-16.659648pt;}
.ws8{word-spacing:-16.647744pt;}
.ws4{word-spacing:-16.623936pt;}
.ws0{word-spacing:-16.546560pt;}
.ws14{word-spacing:-14.767360pt;}
.ws11{word-spacing:-13.526400pt;}
.ws39{word-spacing:-12.163648pt;}
.ws54{word-spacing:-11.942336pt;}
.ws3b{word-spacing:-11.938080pt;}
.ws3a{word-spacing:-11.912544pt;}
.ws62{word-spacing:-11.908288pt;}
.ws36{word-spacing:-11.869984pt;}
.ws37{word-spacing:-11.865728pt;}
.ws15{word-spacing:-11.857216pt;}
.ws17{word-spacing:-11.852960pt;}
.ws16{word-spacing:-11.848704pt;}
.ws1f{word-spacing:-11.844448pt;}
.ws19{word-spacing:-11.840192pt;}
.ws53{word-spacing:-11.835936pt;}
.ws12{word-spacing:-11.831680pt;}
.ws1c{word-spacing:-11.827424pt;}
.ws21{word-spacing:-11.823168pt;}
.ws65{word-spacing:-11.801888pt;}
.ws38{word-spacing:-11.797632pt;}
.ws35{word-spacing:-11.793376pt;}
.ws20{word-spacing:-11.755072pt;}
.ws1e{word-spacing:-11.742304pt;}
.ws18{word-spacing:-11.738048pt;}
.ws1b{word-spacing:-11.725280pt;}
.ws1a{word-spacing:-11.669952pt;}
.ws6a{word-spacing:-10.971968pt;}
.ws67{word-spacing:-10.801728pt;}
.ws6c{word-spacing:-10.776192pt;}
.ws6e{word-spacing:-10.771936pt;}
.ws6b{word-spacing:-10.712352pt;}
.ws10{word-spacing:-10.675200pt;}
.ws6d{word-spacing:-10.661280pt;}
.ws69{word-spacing:-10.554880pt;}
.wsf{word-spacing:-10.502400pt;}
.ws22{word-spacing:-10.156032pt;}
.ws1d{word-spacing:-9.429760pt;}
.ws5e{word-spacing:-7.989248pt;}
.ws5c{word-spacing:-7.981280pt;}
.ws5d{word-spacing:-7.973312pt;}
.ws51{word-spacing:-7.828480pt;}
.ws42{word-spacing:-7.800320pt;}
.ws27{word-spacing:-7.744000pt;}
.ws71{word-spacing:-7.708160pt;}
.ws59{word-spacing:-7.705600pt;}
.ws40{word-spacing:-7.685120pt;}
.ws41{word-spacing:-7.669760pt;}
.ws45{word-spacing:-7.664640pt;}
.ws5a{word-spacing:-7.659520pt;}
.ws46{word-spacing:-7.656960pt;}
.ws5f{word-spacing:-7.651936pt;}
.ws3e{word-spacing:-7.651840pt;}
.ws4f{word-spacing:-7.649280pt;}
.ws43{word-spacing:-7.646720pt;}
.ws26{word-spacing:-7.641600pt;}
.ws70{word-spacing:-7.618560pt;}
.ws63{word-spacing:-7.598080pt;}
.ws60{word-spacing:-7.595520pt;}
.ws4a{word-spacing:-7.559680pt;}
.ws58{word-spacing:-7.552000pt;}
.ws61{word-spacing:-7.518720pt;}
.ws56{word-spacing:-7.516160pt;}
.ws25{word-spacing:-7.508480pt;}
.ws49{word-spacing:-7.503360pt;}
.ws44{word-spacing:-7.500800pt;}
.ws50{word-spacing:-7.498240pt;}
.ws28{word-spacing:-7.495680pt;}
.ws3f{word-spacing:-7.480320pt;}
.ws5b{word-spacing:-7.424000pt;}
.ws72{word-spacing:-7.388160pt;}
.ws57{word-spacing:-7.365120pt;}
.ws55{word-spacing:-7.321600pt;}
.ws78{word-spacing:-2.345056pt;}
.ws84{word-spacing:-2.025856pt;}
.ws8f{word-spacing:-1.502368pt;}
.ws7b{word-spacing:-1.276800pt;}
.ws73{word-spacing:-1.038464pt;}
.ws79{word-spacing:-0.872480pt;}
.ws2b{word-spacing:-0.254400pt;}
.ws2e{word-spacing:-0.235200pt;}
.ws8a{word-spacing:-0.221312pt;}
.ws77{word-spacing:-0.161728pt;}
.ws81{word-spacing:-0.153216pt;}
.ws75{word-spacing:-0.136192pt;}
.ws2c{word-spacing:-0.129600pt;}
.ws7c{word-spacing:-0.119168pt;}
.ws2f{word-spacing:-0.081600pt;}
.ws2a{word-spacing:0.000000pt;}
.ws30{word-spacing:0.017024pt;}
.ws86{word-spacing:0.076608pt;}
.ws7e{word-spacing:0.110656pt;}
.ws7a{word-spacing:0.212800pt;}
.ws2d{word-spacing:0.216000pt;}
.ws89{word-spacing:0.480928pt;}
.ws4e{word-spacing:0.940576pt;}
.ws87{word-spacing:1.191680pt;}
.ws7d{word-spacing:1.395968pt;}
.ws85{word-spacing:1.506624pt;}
.ws8b{word-spacing:1.519392pt;}
.ws3c{word-spacing:1.551360pt;}
.ws82{word-spacing:1.578976pt;}
.ws8c{word-spacing:1.766240pt;}
.ws23{word-spacing:1.871360pt;}
.ws8d{word-spacing:1.953504pt;}
.ws74{word-spacing:2.013088pt;}
.ws52{word-spacing:2.224640pt;}
.ws48{word-spacing:2.511360pt;}
.ws32{word-spacing:3.183488pt;}
.ws88{word-spacing:4.319840pt;}
.ws4d{word-spacing:4.813536pt;}
.ws90{word-spacing:5.592384pt;}
.ws8e{word-spacing:5.894560pt;}
.ws6f{word-spacing:6.342400pt;}
.ws91{word-spacing:7.056448pt;}
.ws68{word-spacing:7.125280pt;}
.ws66{word-spacing:7.125920pt;}
.ws83{word-spacing:7.958720pt;}
.ws4c{word-spacing:8.022560pt;}
.ws80{word-spacing:8.520512pt;}
.ws7f{word-spacing:8.541792pt;}
.ws76{word-spacing:10.056928pt;}
.ws31{word-spacing:10.354848pt;}
.ws33{word-spacing:11.529504pt;}
.ws34{word-spacing:11.840192pt;}
.ws4b{word-spacing:29.460032pt;}
.ws64{word-spacing:1565.781173pt;}
.ws29{word-spacing:1592.234507pt;}
._25{margin-left:-113.601600pt;}
._18{margin-left:-34.644480pt;}
._24{margin-left:-30.426144pt;}
._23{margin-left:-29.498336pt;}
._1d{margin-left:-6.038208pt;}
._1e{margin-left:-5.013568pt;}
._3{margin-left:-3.861248pt;}
._4{margin-left:-2.880000pt;}
._2{margin-left:-1.154112pt;}
._0{width:0.974400pt;}
._a{width:2.149280pt;}
._d{width:3.149664pt;}
._10{width:4.681600pt;}
._c{width:5.779648pt;}
._13{width:6.681920pt;}
._5{width:7.669312pt;}
._8{width:8.954624pt;}
._b{width:10.363744pt;}
._7{width:13.129760pt;}
._12{width:14.704480pt;}
._22{width:16.343040pt;}
._f{width:17.253824pt;}
._e{width:18.266752pt;}
._6{width:19.186048pt;}
._1a{width:20.292608pt;}
._11{width:21.441728pt;}
._9{width:22.756832pt;}
._19{width:24.642240pt;}
._17{width:25.833920pt;}
._15{width:27.408640pt;}
._14{width:28.689696pt;}
._1b{width:30.204832pt;}
._16{width:31.379488pt;}
._1c{width:32.354112pt;}
._29{width:38.640224pt;}
._1f{width:42.917504pt;}
._21{width:51.795520pt;}
._28{width:54.587232pt;}
._27{width:55.851712pt;}
._20{width:110.957952pt;}
._1{width:1130.510400pt;}
._2a{width:1845.674640pt;}
._26{width:1872.127765pt;}
.fsa{font-size:25.600000pt;}
.fsc{font-size:26.560000pt;}
.fs5{font-size:32.000000pt;}
.fs8{font-size:33.920000pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:38.400000pt;}
.fs6{font-size:42.560000pt;}
.fsb{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:59.520000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y113{bottom:3.680133pt;}
.y11d{bottom:5.200000pt;}
.y9f{bottom:5.680000pt;}
.ya2{bottom:6.000000pt;}
.ya4{bottom:7.520000pt;}
.y54{bottom:8.240000pt;}
.y112{bottom:11.680133pt;}
.y11c{bottom:13.200000pt;}
.yd5{bottom:16.960000pt;}
.y1af{bottom:18.480000pt;}
.y9a{bottom:19.200000pt;}
.y11b{bottom:21.200000pt;}
.yd9{bottom:21.440000pt;}
.y115{bottom:23.120000pt;}
.y9d{bottom:24.400000pt;}
.yd4{bottom:24.960000pt;}
.y1ae{bottom:26.480000pt;}
.y11a{bottom:29.200000pt;}
.y9c{bottom:32.400133pt;}
.y156{bottom:32.800000pt;}
.y1ad{bottom:34.480000pt;}
.ydb{bottom:36.000000pt;}
.y119{bottom:37.200000pt;}
.yd7{bottom:40.720133pt;}
.y1ac{bottom:42.480000pt;}
.y118{bottom:45.200000pt;}
.y55{bottom:46.421345pt;}
.y117{bottom:53.200000pt;}
.y1b1{bottom:55.280000pt;}
.ya5{bottom:57.088012pt;}
.y116{bottom:61.200133pt;}
.y1{bottom:65.760000pt;}
.y11f{bottom:74.400000pt;}
.ya3{bottom:126.240000pt;}
.y111{bottom:127.520000pt;}
.y52{bottom:129.360325pt;}
.y7e{bottom:131.364797pt;}
.ybd{bottom:133.524957pt;}
.y36{bottom:135.042512pt;}
.y51{bottom:138.640325pt;}
.yd2{bottom:142.800549pt;}
.y7d{bottom:144.724381pt;}
.ybc{bottom:146.804741pt;}
.y50{bottom:148.000133pt;}
.y35{bottom:148.402096pt;}
.yd1{bottom:156.171133pt;}
.y7c{bottom:158.004165pt;}
.ybb{bottom:160.164325pt;}
.y166{bottom:161.040829pt;}
.y34{bottom:161.681880pt;}
.y1aa{bottom:163.042600pt;}
.yd0{bottom:169.450917pt;}
.y7b{bottom:171.363749pt;}
.y114{bottom:171.920133pt;}
.yba{bottom:173.523909pt;}
.y1a9{bottom:173.682600pt;}
.y53{bottom:174.240000pt;}
.y165{bottom:174.320613pt;}
.y33{bottom:175.041464pt;}
.ycf{bottom:182.810501pt;}
.y1a8{bottom:184.402400pt;}
.y7a{bottom:184.723333pt;}
.yb9{bottom:186.803693pt;}
.y164{bottom:187.680197pt;}
.y32{bottom:188.401048pt;}
.y1a7{bottom:195.042400pt;}
.yce{bottom:196.170085pt;}
.y79{bottom:198.003117pt;}
.yb8{bottom:200.163277pt;}
.y163{bottom:201.039781pt;}
.y31{bottom:201.680832pt;}
.y1a6{bottom:205.682400pt;}
.ycd{bottom:209.449869pt;}
.y78{bottom:211.362701pt;}
.yb7{bottom:213.522861pt;}
.y30{bottom:215.040416pt;}
.y1a5{bottom:216.402200pt;}
.yd6{bottom:218.400133pt;}
.y162{bottom:219.200133pt;}
.ycc{bottom:222.809453pt;}
.y77{bottom:224.722285pt;}
.yb6{bottom:226.802645pt;}
.y1a4{bottom:227.042200pt;}
.y2f{bottom:228.403477pt;}
.y11e{bottom:229.360000pt;}
.ycb{bottom:236.169037pt;}
.y1a3{bottom:237.682200pt;}
.y76{bottom:238.002069pt;}
.yb5{bottom:240.162229pt;}
.y2e{bottom:241.683261pt;}
.y1a2{bottom:248.402000pt;}
.yca{bottom:249.448821pt;}
.y161{bottom:250.323693pt;}
.y75{bottom:251.361653pt;}
.yb4{bottom:253.521813pt;}
.y2d{bottom:255.042845pt;}
.y1a1{bottom:259.042000pt;}
.y160{bottom:263.683277pt;}
.y74{bottom:264.721237pt;}
.yb3{bottom:266.801597pt;}
.yc9{bottom:266.809045pt;}
.y2c{bottom:268.402429pt;}
.y1a0{bottom:269.682000pt;}
.y15f{bottom:277.042861pt;}
.y73{bottom:278.001021pt;}
.yb2{bottom:280.161181pt;}
.y19f{bottom:280.401800pt;}
.y2b{bottom:282.562141pt;}
.y1b0{bottom:283.760000pt;}
.yc8{bottom:288.168845pt;}
.y15e{bottom:290.322645pt;}
.y19e{bottom:291.041800pt;}
.y72{bottom:291.360605pt;}
.yb1{bottom:293.520765pt;}
.y98{bottom:296.244680pt;}
.y2a{bottom:297.682645pt;}
.yc7{bottom:301.448629pt;}
.y19d{bottom:301.681800pt;}
.y15d{bottom:303.682229pt;}
.yda{bottom:304.400000pt;}
.y71{bottom:304.720189pt;}
.yb0{bottom:306.800549pt;}
.y97{bottom:309.604264pt;}
.y29{bottom:311.042229pt;}
.y19c{bottom:312.401600pt;}
.yc6{bottom:314.808213pt;}
.y15c{bottom:317.041813pt;}
.y70{bottom:317.999973pt;}
.yaf{bottom:320.160632pt;}
.y96{bottom:322.884048pt;}
.y19b{bottom:323.041600pt;}
.y28{bottom:324.401813pt;}
.yc5{bottom:328.167797pt;}
.y15b{bottom:330.321597pt;}
.y6f{bottom:331.359557pt;}
.yae{bottom:333.520216pt;}
.y19a{bottom:333.681600pt;}
.y95{bottom:336.243632pt;}
.y27{bottom:337.681597pt;}
.yc4{bottom:341.527381pt;}
.y15a{bottom:343.681181pt;}
.y199{bottom:344.401400pt;}
.y6e{bottom:345.607896pt;}
.yad{bottom:346.800549pt;}
.y94{bottom:349.603216pt;}
.y26{bottom:351.041181pt;}
.yc3{bottom:354.807165pt;}
.y198{bottom:355.041400pt;}
.y159{bottom:357.040765pt;}
.yac{bottom:360.159840pt;}
.y6d{bottom:360.727336pt;}
.y93{bottom:362.962800pt;}
.y25{bottom:364.400765pt;}
.y197{bottom:365.681400pt;}
.yc2{bottom:368.166749pt;}
.y158{bottom:370.320549pt;}
.yab{bottom:373.519424pt;}
.y6c{bottom:374.007120pt;}
.y92{bottom:376.242584pt;}
.y196{bottom:376.401200pt;}
.y24{bottom:377.680549pt;}
.yc1{bottom:381.526333pt;}
.y157{bottom:383.680133pt;}
.y195{bottom:387.041200pt;}
.y6b{bottom:387.366704pt;}
.y91{bottom:389.602168pt;}
.yaa{bottom:390.799848pt;}
.y1ab{bottom:390.800000pt;}
.y23{bottom:391.044824pt;}
.yc0{bottom:394.806117pt;}
.y194{bottom:397.681200pt;}
.y6a{bottom:400.726288pt;}
.y90{bottom:402.961752pt;}
.y22{bottom:404.404408pt;}
.ybf{bottom:408.165701pt;}
.y193{bottom:408.401000pt;}
.ya9{bottom:409.040000pt;}
.y69{bottom:414.006072pt;}
.y8f{bottom:416.241536pt;}
.y4f{bottom:417.521304pt;}
.y21{bottom:417.684192pt;}
.y192{bottom:419.041000pt;}
.ybe{bottom:421.525285pt;}
.y68{bottom:427.365656pt;}
.yd8{bottom:428.560000pt;}
.y8e{bottom:429.601120pt;}
.y191{bottom:429.681000pt;}
.y4e{bottom:430.880888pt;}
.y20{bottom:431.043776pt;}
.ya8{bottom:440.160832pt;}
.y190{bottom:440.400800pt;}
.y67{bottom:440.725240pt;}
.y8d{bottom:442.960704pt;}
.y4d{bottom:444.160672pt;}
.y1f{bottom:444.403360pt;}
.y18f{bottom:451.040800pt;}
.ya7{bottom:453.520416pt;}
.y66{bottom:454.005024pt;}
.y8c{bottom:456.240488pt;}
.y4c{bottom:457.520256pt;}
.y1e{bottom:457.683144pt;}
.y18e{bottom:461.680800pt;}
.ya6{bottom:466.880000pt;}
.y65{bottom:467.364608pt;}
.y8b{bottom:470.479496pt;}
.y4b{bottom:470.879840pt;}
.y1d{bottom:471.042728pt;}
.y18d{bottom:472.400600pt;}
.yd3{bottom:473.920000pt;}
.y64{bottom:480.724192pt;}
.y18c{bottom:483.040600pt;}
.y4a{bottom:484.159624pt;}
.y1c{bottom:484.402312pt;}
.y8a{bottom:485.606573pt;}
.y18b{bottom:493.680600pt;}
.y63{bottom:494.003976pt;}
.y1b{bottom:497.682096pt;}
.y89{bottom:498.966157pt;}
.y49{bottom:501.519848pt;}
.y155{bottom:501.681312pt;}
.y18a{bottom:504.400400pt;}
.y62{bottom:507.363560pt;}
.y1a{bottom:511.041680pt;}
.yf9{bottom:511.046920pt;}
.y88{bottom:512.245941pt;}
.y138{bottom:512.405456pt;}
.y189{bottom:515.040400pt;}
.y154{bottom:515.040896pt;}
.y48{bottom:519.760000pt;}
.y61{bottom:520.723144pt;}
.y19{bottom:524.401264pt;}
.yf8{bottom:524.406504pt;}
.y87{bottom:525.605525pt;}
.y188{bottom:525.680400pt;}
.y137{bottom:525.685240pt;}
.y153{bottom:528.400480pt;}
.y60{bottom:534.002928pt;}
.y187{bottom:536.400200pt;}
.y18{bottom:537.681048pt;}
.yf7{bottom:537.686288pt;}
.y86{bottom:538.965109pt;}
.y136{bottom:539.044824pt;}
.y152{bottom:541.680264pt;}
.y186{bottom:547.040200pt;}
.y5f{bottom:547.362512pt;}
.y47{bottom:550.884741pt;}
.y17{bottom:551.040632pt;}
.yf6{bottom:551.045872pt;}
.y85{bottom:552.244893pt;}
.y135{bottom:552.404408pt;}
.y151{bottom:555.039848pt;}
.y185{bottom:557.680200pt;}
.y5e{bottom:560.722096pt;}
.y46{bottom:564.164525pt;}
.y16{bottom:564.400216pt;}
.yf5{bottom:564.405456pt;}
.y84{bottom:565.604477pt;}
.y134{bottom:565.684192pt;}
.y184{bottom:568.400200pt;}
.y150{bottom:573.280000pt;}
.y5d{bottom:574.001880pt;}
.ya1{bottom:575.360000pt;}
.ya0{bottom:575.680000pt;}
.y45{bottom:577.524109pt;}
.y15{bottom:577.679848pt;}
.yf4{bottom:577.685240pt;}
.y183{bottom:579.040200pt;}
.y133{bottom:579.043776pt;}
.y83{bottom:581.364445pt;}
.y5c{bottom:587.361464pt;}
.y182{bottom:589.680200pt;}
.y44{bottom:590.883693pt;}
.yf3{bottom:591.044824pt;}
.y132{bottom:592.403360pt;}
.y9e{bottom:595.360000pt;}
.y14{bottom:595.920000pt;}
.y181{bottom:600.400000pt;}
.y5b{bottom:600.721048pt;}
.y82{bottom:601.044189pt;}
.y110{bottom:601.684192pt;}
.y43{bottom:604.243277pt;}
.yf2{bottom:604.404408pt;}
.y14f{bottom:604.413792pt;}
.y131{bottom:605.683144pt;}
.y180{bottom:611.041448pt;}
.y5a{bottom:614.000832pt;}
.y10f{bottom:615.043776pt;}
.y42{bottom:617.523061pt;}
.y81{bottom:617.604285pt;}
.yf1{bottom:617.684192pt;}
.y14e{bottom:617.693576pt;}
.y130{bottom:619.042728pt;}
.y17f{bottom:621.681448pt;}
.y13{bottom:627.042992pt;}
.y59{bottom:627.360416pt;}
.y10e{bottom:628.403360pt;}
.y41{bottom:630.882645pt;}
.y80{bottom:630.963869pt;}
.yf0{bottom:631.043776pt;}
.y14d{bottom:631.053160pt;}
.y17e{bottom:632.401248pt;}
.y12f{bottom:632.402312pt;}
.y12{bottom:640.402576pt;}
.y58{bottom:640.720000pt;}
.y10d{bottom:641.683144pt;}
.y17d{bottom:643.041248pt;}
.y40{bottom:644.242229pt;}
.yef{bottom:644.403360pt;}
.y14c{bottom:644.412744pt;}
.y12e{bottom:645.682096pt;}
.y99{bottom:647.840000pt;}
.y7f{bottom:648.244293pt;}
.y17c{bottom:653.681248pt;}
.y11{bottom:653.682360pt;}
.y10c{bottom:655.042728pt;}
.y9b{bottom:655.360000pt;}
.y3f{bottom:657.522013pt;}
.yee{bottom:657.683144pt;}
.y14b{bottom:657.692528pt;}
.y12d{bottom:659.041680pt;}
.y17b{bottom:664.401048pt;}
.y10{bottom:667.041944pt;}
.y10b{bottom:668.402312pt;}
.y3e{bottom:670.881597pt;}
.yed{bottom:671.042728pt;}
.y14a{bottom:671.052112pt;}
.y12c{bottom:672.401264pt;}
.y17a{bottom:675.041048pt;}
.yf{bottom:680.401528pt;}
.y10a{bottom:681.682096pt;}
.y3d{bottom:684.241181pt;}
.yec{bottom:684.402312pt;}
.y149{bottom:684.411696pt;}
.y12b{bottom:685.681048pt;}
.ye{bottom:693.681312pt;}
.y109{bottom:695.041680pt;}
.y179{bottom:696.400848pt;}
.y3c{bottom:697.520965pt;}
.yeb{bottom:697.682096pt;}
.y148{bottom:697.691480pt;}
.y12a{bottom:699.040632pt;}
.y178{bottom:707.040848pt;}
.yd{bottom:707.040896pt;}
.y108{bottom:708.401264pt;}
.y3b{bottom:710.880549pt;}
.yea{bottom:711.041680pt;}
.y147{bottom:711.051064pt;}
.y129{bottom:712.400216pt;}
.y177{bottom:717.680848pt;}
.yc{bottom:720.400480pt;}
.y107{bottom:721.681048pt;}
.y3a{bottom:724.243152pt;}
.ye9{bottom:724.401264pt;}
.y146{bottom:724.410648pt;}
.y128{bottom:725.680416pt;}
.y176{bottom:728.400648pt;}
.yb{bottom:733.680264pt;}
.y106{bottom:735.040632pt;}
.ye8{bottom:737.681048pt;}
.y145{bottom:737.690432pt;}
.y175{bottom:739.040648pt;}
.y127{bottom:739.043120pt;}
.y39{bottom:740.403184pt;}
.ya{bottom:747.039848pt;}
.y105{bottom:748.400216pt;}
.y174{bottom:749.680648pt;}
.ye7{bottom:751.040632pt;}
.y144{bottom:751.050016pt;}
.y126{bottom:752.402704pt;}
.y38{bottom:753.682968pt;}
.y173{bottom:760.400448pt;}
.y104{bottom:761.680416pt;}
.ye6{bottom:764.400216pt;}
.y143{bottom:764.409600pt;}
.y9{bottom:765.280000pt;}
.y125{bottom:765.682488pt;}
.y37{bottom:767.042552pt;}
.y172{bottom:771.040448pt;}
.y103{bottom:775.049792pt;}
.ye5{bottom:777.683344pt;}
.y142{bottom:777.689384pt;}
.y124{bottom:779.042072pt;}
.y171{bottom:781.680448pt;}
.y102{bottom:788.409376pt;}
.ye4{bottom:791.042928pt;}
.y141{bottom:791.048968pt;}
.y170{bottom:792.400248pt;}
.y123{bottom:792.401656pt;}
.y8{bottom:796.400000pt;}
.y101{bottom:801.689160pt;}
.y16f{bottom:803.040248pt;}
.ye3{bottom:804.402512pt;}
.y140{bottom:804.408552pt;}
.y122{bottom:805.681440pt;}
.y16e{bottom:813.760048pt;}
.y7{bottom:814.960000pt;}
.y100{bottom:815.048744pt;}
.ye2{bottom:817.762096pt;}
.y13f{bottom:817.768136pt;}
.y121{bottom:819.041024pt;}
.y16d{bottom:824.400048pt;}
.yff{bottom:828.408328pt;}
.y6{bottom:829.600000pt;}
.ye1{bottom:831.041880pt;}
.y13e{bottom:831.047920pt;}
.y16c{bottom:835.040048pt;}
.y120{bottom:836.401248pt;}
.yfe{bottom:841.767912pt;}
.y5{bottom:844.320000pt;}
.ye0{bottom:844.401464pt;}
.y13d{bottom:844.407504pt;}
.y16b{bottom:845.759848pt;}
.y4{bottom:854.160000pt;}
.yfd{bottom:855.047696pt;}
.y16a{bottom:856.399848pt;}
.ydf{bottom:857.761048pt;}
.y13c{bottom:857.767088pt;}
.y169{bottom:867.039848pt;}
.yfc{bottom:868.407280pt;}
.yde{bottom:871.040832pt;}
.y13b{bottom:871.046872pt;}
.y168{bottom:877.759648pt;}
.y3{bottom:879.520144pt;}
.yfb{bottom:881.766864pt;}
.ydd{bottom:884.400416pt;}
.y13a{bottom:884.406456pt;}
.y2{bottom:894.160000pt;}
.y167{bottom:895.920000pt;}
.yfa{bottom:895.926576pt;}
.ydc{bottom:897.760000pt;}
.y139{bottom:897.766040pt;}
.y57{bottom:994.687968pt;}
.y56{bottom:1005.354635pt;}
.h14{height:16.000000pt;}
.h16{height:17.360000pt;}
.hd{height:23.296875pt;}
.h1f{height:23.297408pt;}
.hb{height:27.042500pt;}
.h4{height:27.956250pt;}
.h20{height:29.550937pt;}
.ha{height:30.984844pt;}
.h7{height:31.005625pt;}
.h8{height:31.006233pt;}
.h19{height:31.006798pt;}
.h5{height:31.088750pt;}
.h15{height:33.328125pt;}
.h1{height:34.968750pt;}
.h10{height:36.852074pt;}
.h17{height:36.883125pt;}
.h11{height:36.885141pt;}
.h6{height:38.672812pt;}
.hf{height:41.429333pt;}
.h9{height:41.658642pt;}
.h3{height:47.156250pt;}
.h2{height:54.281719pt;}
.he{height:84.096000pt;}
.h18{height:160.720000pt;}
.hc{height:239.200000pt;}
.h13{height:249.440000pt;}
.h12{height:256.960000pt;}
.h1c{height:366.640000pt;}
.h1e{height:370.400000pt;}
.h1a{height:430.880000pt;}
.h1d{height:464.880000pt;}
.h1b{height:476.240000pt;}
.h21{height:514.000000pt;}
.h0{height:1056.000000pt;}
.w3{width:7.360000pt;}
.w5{width:12.160000pt;}
.w4{width:26.640000pt;}
.w6{width:296.720000pt;}
.w1{width:300.800000pt;}
.w2{width:300.880000pt;}
.w7{width:623.680000pt;}
.w0{width:806.666667pt;}
.x0{left:0.000000pt;}
.xd{left:1.359867pt;}
.xa{left:3.760000pt;}
.x12{left:4.720000pt;}
.xb{left:41.520000pt;}
.x10{left:43.120000pt;}
.x11{left:45.360000pt;}
.x5{left:68.000000pt;}
.x1{left:90.480000pt;}
.x2{left:100.320064pt;}
.x3{left:417.439696pt;}
.x9{left:427.279736pt;}
.x4{left:429.200544pt;}
.x7{left:438.720052pt;}
.x8{left:497.354655pt;}
.xe{left:535.120000pt;}
.x6{left:549.258627pt;}
.xf{left:601.440000pt;}
.xc{left:688.320000pt;}
}




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