
    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_0e1da04ab4d00cd3558205d7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_36c95fa1fc1704d7d596c2cb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_b201999486665afebf9b415e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.056152;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_0732d4197304cfc8cbb72169.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_1d5cc05d066c7fa4e938fdfe.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.056152;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_b1ca8414bf3b074df1583d1b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_205005f30c7ae1bd60ae4925.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.051000;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_0064b2a6bea7c84e95ef776a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.956500;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_afd2abf7fd0fb758c910b35c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958496;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_800aefd5fa6bda29a2f84ec8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958496;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_36c95fa1fc1704d7d596c2cb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958496;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_b201999486665afebf9b415e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.056152;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_9265e43a877975e0270f67bb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958496;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_588bbab316a62f29cf62807c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.969000;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_bb602fe9873c86e222774ef1.woff2')format("woff");}.fff{font-family:fff;line-height:0.947000;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_800aefd5fa6bda29a2f84ec8.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.958496;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_36c95fa1fc1704d7d596c2cb.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.958496;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_b201999486665afebf9b415e.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.056152;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_9265e43a877975e0270f67bb.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.958496;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_36c95fa1fc1704d7d596c2cb.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.958496;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_b201999486665afebf9b415e.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.056152;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_9265e43a877975e0270f67bb.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_36c95fa1fc1704d7d596c2cb.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_b201999486665afebf9b415e.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.056152;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:ff19;src:url('chunks/assets/font_9265e43a877975e0270f67bb.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.958496;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:ff1a;src:url('chunks/assets/font_78969e8a0827631bbe48a8ac.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.956500;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:ff1b;src:url('chunks/assets/font_c0889abb4efaff00c8caae27.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.709000;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);}
.ve{vertical-align:-24.300000px;}
.v6{vertical-align:-18.360000px;}
.v4{vertical-align:-17.340000px;}
.vd{vertical-align:-15.300000px;}
.v9{vertical-align:-13.824000px;}
.va{vertical-align:-12.000000px;}
.v2{vertical-align:-10.800000px;}
.vb{vertical-align:-9.060000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:10.800000px;}
.vc{vertical-align:15.300000px;}
.v5{vertical-align:17.316000px;}
.v3{vertical-align:18.354000px;}
.v1{vertical-align:20.400600px;}
.v7{vertical-align:29.168100px;}
.lsb7{letter-spacing:-4.365000px;}
.lsa2{letter-spacing:-1.800000px;}
.ls9b{letter-spacing:-1.665000px;}
.ls3c{letter-spacing:-1.188000px;}
.ls4f{letter-spacing:-0.864000px;}
.ls3b{letter-spacing:-0.810000px;}
.ls6b{letter-spacing:-0.648000px;}
.ls98{letter-spacing:-0.594000px;}
.lsb4{letter-spacing:-0.540000px;}
.ls9a{letter-spacing:-0.495000px;}
.ls4c{letter-spacing:-0.486000px;}
.lsa1{letter-spacing:-0.450000px;}
.ls23{letter-spacing:-0.432000px;}
.lsa0{letter-spacing:-0.405000px;}
.ls3d{letter-spacing:-0.378000px;}
.lsb5{letter-spacing:-0.360000px;}
.ls3a{letter-spacing:-0.324000px;}
.ls99{letter-spacing:-0.315000px;}
.ls20{letter-spacing:-0.270000px;}
.lsb6{letter-spacing:-0.225000px;}
.ls38{letter-spacing:-0.216000px;}
.lsb1{letter-spacing:-0.180000px;}
.ls21{letter-spacing:-0.175500px;}
.ls39{letter-spacing:-0.162000px;}
.ls6a{letter-spacing:-0.140400px;}
.ls9e{letter-spacing:-0.135000px;}
.ls37{letter-spacing:-0.108000px;}
.ls4d{letter-spacing:-0.105300px;}
.ls27{letter-spacing:-0.102000px;}
.lsb3{letter-spacing:-0.090000px;}
.ls4b{letter-spacing:-0.070200px;}
.ls1f{letter-spacing:-0.054000px;}
.ls9f{letter-spacing:-0.045000px;}
.ls6c{letter-spacing:-0.035100px;}
.ls1e{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.000600px;}
.ls40{letter-spacing:0.001800px;}
.ls8c{letter-spacing:0.006000px;}
.ls8{letter-spacing:0.007800px;}
.ls7{letter-spacing:0.011700px;}
.ls6{letter-spacing:0.012300px;}
.ls2{letter-spacing:0.013200px;}
.ls4{letter-spacing:0.013800px;}
.ls3{letter-spacing:0.022200px;}
.ls60{letter-spacing:0.023400px;}
.ls6f{letter-spacing:0.025200px;}
.ls5{letter-spacing:0.031800px;}
.ls30{letter-spacing:0.035100px;}
.ls50{letter-spacing:0.036000px;}
.ls76{letter-spacing:0.039000px;}
.ls32{letter-spacing:0.042000px;}
.ls17{letter-spacing:0.043050px;}
.lsae{letter-spacing:0.045000px;}
.ls31{letter-spacing:0.053700px;}
.ls2f{letter-spacing:0.054000px;}
.ls36{letter-spacing:0.057600px;}
.ls35{letter-spacing:0.058200px;}
.lsb8{letter-spacing:0.058500px;}
.ls45{letter-spacing:0.060600px;}
.lsaa{letter-spacing:0.063000px;}
.ls74{letter-spacing:0.067200px;}
.ls5c{letter-spacing:0.067800px;}
.ls4e{letter-spacing:0.070200px;}
.ls73{letter-spacing:0.072000px;}
.ls57{letter-spacing:0.076200px;}
.ls83{letter-spacing:0.078000px;}
.ls10{letter-spacing:0.085500px;}
.ls8b{letter-spacing:0.090000px;}
.lsd{letter-spacing:0.090600px;}
.ls3f{letter-spacing:0.094200px;}
.ls59{letter-spacing:0.095400px;}
.ls49{letter-spacing:0.095700px;}
.ls48{letter-spacing:0.096000px;}
.ls63{letter-spacing:0.098400px;}
.ls62{letter-spacing:0.099000px;}
.ls26{letter-spacing:0.102000px;}
.lsf{letter-spacing:0.105300px;}
.ls7f{letter-spacing:0.107400px;}
.ls22{letter-spacing:0.108000px;}
.ls1b{letter-spacing:0.122250px;}
.ls82{letter-spacing:0.135000px;}
.lsa4{letter-spacing:0.136200px;}
.ls2a{letter-spacing:0.138000px;}
.ls1c{letter-spacing:0.151650px;}
.ls58{letter-spacing:0.156000px;}
.ls90{letter-spacing:0.157800px;}
.ls19{letter-spacing:0.159450px;}
.lse{letter-spacing:0.162000px;}
.ls51{letter-spacing:0.169200px;}
.ls66{letter-spacing:0.175500px;}
.ls89{letter-spacing:0.180000px;}
.ls70{letter-spacing:0.182400px;}
.ls13{letter-spacing:0.190200px;}
.ls12{letter-spacing:0.190800px;}
.ls44{letter-spacing:0.196500px;}
.ls1a{letter-spacing:0.204000px;}
.ls6d{letter-spacing:0.205200px;}
.ls7c{letter-spacing:0.206400px;}
.ls14{letter-spacing:0.208800px;}
.ls42{letter-spacing:0.210600px;}
.ls2b{letter-spacing:0.216000px;}
.ls8f{letter-spacing:0.225000px;}
.ls81{letter-spacing:0.234000px;}
.ls43{letter-spacing:0.245700px;}
.ls18{letter-spacing:0.255000px;}
.ls46{letter-spacing:0.259200px;}
.ls11{letter-spacing:0.270000px;}
.ls9{letter-spacing:0.280800px;}
.ls52{letter-spacing:0.288000px;}
.ls47{letter-spacing:0.297000px;}
.ls5f{letter-spacing:0.302400px;}
.ls64{letter-spacing:0.303000px;}
.ls5b{letter-spacing:0.303600px;}
.ls5d{letter-spacing:0.304200px;}
.ls1d{letter-spacing:0.306000px;}
.lsb{letter-spacing:0.311400px;}
.ls53{letter-spacing:0.315900px;}
.ls24{letter-spacing:0.324000px;}
.ls7d{letter-spacing:0.327600px;}
.ls7e{letter-spacing:0.328200px;}
.lsa5{letter-spacing:0.328500px;}
.ls75{letter-spacing:0.342600px;}
.ls54{letter-spacing:0.351000px;}
.ls96{letter-spacing:0.360000px;}
.ls6e{letter-spacing:0.365400px;}
.lsac{letter-spacing:0.369600px;}
.lsab{letter-spacing:0.370200px;}
.ls5a{letter-spacing:0.373800px;}
.ls55{letter-spacing:0.375300px;}
.ls41{letter-spacing:0.378000px;}
.ls34{letter-spacing:0.381000px;}
.ls3e{letter-spacing:0.381600px;}
.ls67{letter-spacing:0.386100px;}
.ls97{letter-spacing:0.390000px;}
.ls72{letter-spacing:0.397800px;}
.ls94{letter-spacing:0.402600px;}
.lsb9{letter-spacing:0.405000px;}
.ls56{letter-spacing:0.406200px;}
.lsb0{letter-spacing:0.409500px;}
.lsa3{letter-spacing:0.409800px;}
.ls77{letter-spacing:0.421200px;}
.ls5e{letter-spacing:0.426600px;}
.ls15{letter-spacing:0.430650px;}
.lsa{letter-spacing:0.432000px;}
.lsad{letter-spacing:0.436500px;}
.ls93{letter-spacing:0.450000px;}
.ls68{letter-spacing:0.456300px;}
.lsa6{letter-spacing:0.472500px;}
.ls2e{letter-spacing:0.475800px;}
.lsc{letter-spacing:0.486000px;}
.ls2d{letter-spacing:0.491400px;}
.ls91{letter-spacing:0.495000px;}
.ls25{letter-spacing:0.540000px;}
.lsaf{letter-spacing:0.563400px;}
.ls7b{letter-spacing:0.577500px;}
.ls9c{letter-spacing:0.585000px;}
.ls33{letter-spacing:0.594000px;}
.ls71{letter-spacing:0.600000px;}
.ls95{letter-spacing:0.621000px;}
.ls84{letter-spacing:0.630000px;}
.ls69{letter-spacing:0.631800px;}
.ls80{letter-spacing:0.638400px;}
.ls29{letter-spacing:0.648000px;}
.ls87{letter-spacing:0.651600px;}
.ls16{letter-spacing:0.663000px;}
.ls7a{letter-spacing:0.666900px;}
.ls2c{letter-spacing:0.702000px;}
.ls92{letter-spacing:0.756000px;}
.ls8e{letter-spacing:0.765000px;}
.ls78{letter-spacing:0.810000px;}
.lsba{letter-spacing:0.864000px;}
.ls79{letter-spacing:0.918000px;}
.ls61{letter-spacing:0.972000px;}
.ls86{letter-spacing:0.990000px;}
.ls85{letter-spacing:0.999000px;}
.ls88{letter-spacing:1.170000px;}
.ls9d{letter-spacing:1.215000px;}
.ls8d{letter-spacing:1.350000px;}
.ls8a{letter-spacing:1.530000px;}
.ls0{letter-spacing:2.592000px;}
.ls28{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.lsb2{letter-spacing:6.795000px;}
.lsa9{letter-spacing:7.110000px;}
.lsa7{letter-spacing:7.155000px;}
.ls65{letter-spacing:14.742000px;}
.lsa8{letter-spacing:23.386500px;}
.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;}
}
.ws2{word-spacing:-15.067500px;}
.ws67{word-spacing:-13.596000px;}
.ws66{word-spacing:-13.230000px;}
.ws60{word-spacing:-12.744000px;}
.ws4a{word-spacing:-12.636000px;}
.ws3b{word-spacing:-12.582000px;}
.ws5{word-spacing:-12.420000px;}
.ws5e{word-spacing:-12.366000px;}
.ws3{word-spacing:-12.360000px;}
.ws2b{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.192000px;}
.ws38{word-spacing:-12.150000px;}
.ws3f{word-spacing:-11.988000px;}
.ws4e{word-spacing:-11.880000px;}
.ws39{word-spacing:-11.772000px;}
.ws29{word-spacing:-10.908000px;}
.ws90{word-spacing:-10.620000px;}
.ws2a{word-spacing:-10.530000px;}
.ws69{word-spacing:-10.305000px;}
.ws8c{word-spacing:-10.237500px;}
.ws6b{word-spacing:-10.215000px;}
.ws8b{word-spacing:-10.125000px;}
.ws8e{word-spacing:-10.035000px;}
.ws68{word-spacing:-9.900000px;}
.ws8d{word-spacing:-9.720000px;}
.ws91{word-spacing:-9.630000px;}
.ws53{word-spacing:-8.599500px;}
.ws51{word-spacing:-8.424000px;}
.ws5f{word-spacing:-8.388900px;}
.ws50{word-spacing:-8.353800px;}
.ws52{word-spacing:-8.283600px;}
.ws4{word-spacing:-8.248500px;}
.ws49{word-spacing:-8.213400px;}
.ws3c{word-spacing:-8.178300px;}
.ws4f{word-spacing:-8.143200px;}
.ws3e{word-spacing:-8.073000px;}
.ws3d{word-spacing:-8.037900px;}
.ws48{word-spacing:-8.002800px;}
.ws6{word-spacing:-7.967700px;}
.ws56{word-spacing:-7.932600px;}
.ws37{word-spacing:-7.897500px;}
.ws3a{word-spacing:-7.862400px;}
.ws54{word-spacing:-7.827300px;}
.ws7{word-spacing:-7.792200px;}
.ws57{word-spacing:-7.616700px;}
.ws8a{word-spacing:-7.049250px;}
.ws96{word-spacing:-6.795000px;}
.ws8f{word-spacing:-6.698250px;}
.ws6a{word-spacing:-6.639750px;}
.ws8{word-spacing:-6.630000px;}
.ws2d{word-spacing:-5.508000px;}
.ws10{word-spacing:-5.340000px;}
.wsa1{word-spacing:-3.960000px;}
.ws63{word-spacing:-3.900000px;}
.wse{word-spacing:-3.600000px;}
.wsa{word-spacing:-3.276000px;}
.wsc{word-spacing:-3.000000px;}
.ws27{word-spacing:-2.760000px;}
.wsd{word-spacing:-2.700000px;}
.ws1{word-spacing:-2.640000px;}
.wsb{word-spacing:-2.400000px;}
.ws6e{word-spacing:-1.890000px;}
.ws79{word-spacing:-1.845000px;}
.ws18{word-spacing:-1.836000px;}
.ws1a{word-spacing:-1.782000px;}
.ws5c{word-spacing:-1.728000px;}
.ws30{word-spacing:-1.674000px;}
.ws5d{word-spacing:-1.620000px;}
.ws78{word-spacing:-1.575000px;}
.ws1e{word-spacing:-1.566000px;}
.ws64{word-spacing:-1.560000px;}
.ws70{word-spacing:-1.530000px;}
.ws61{word-spacing:-1.512000px;}
.ws5b{word-spacing:-1.458000px;}
.ws7d{word-spacing:-1.440000px;}
.ws5a{word-spacing:-1.404000px;}
.ws1b{word-spacing:-1.350000px;}
.ws99{word-spacing:-1.305000px;}
.ws2f{word-spacing:-1.296000px;}
.wsf{word-spacing:-1.260000px;}
.ws19{word-spacing:-1.242000px;}
.ws97{word-spacing:-1.215000px;}
.ws35{word-spacing:-1.188000px;}
.wsa0{word-spacing:-1.170000px;}
.ws11{word-spacing:-1.134000px;}
.ws1f{word-spacing:-1.080000px;}
.ws71{word-spacing:-1.035000px;}
.ws4d{word-spacing:-1.026000px;}
.ws17{word-spacing:-0.918000px;}
.ws36{word-spacing:-0.864000px;}
.ws41{word-spacing:-0.810000px;}
.ws7e{word-spacing:-0.765000px;}
.ws98{word-spacing:-0.720000px;}
.ws34{word-spacing:-0.702000px;}
.ws15{word-spacing:-0.648000px;}
.ws6c{word-spacing:-0.600000px;}
.ws12{word-spacing:-0.594000px;}
.ws75{word-spacing:-0.585000px;}
.ws59{word-spacing:-0.540000px;}
.ws72{word-spacing:-0.495000px;}
.ws16{word-spacing:-0.486000px;}
.ws85{word-spacing:-0.450000px;}
.ws1c{word-spacing:-0.432000px;}
.ws83{word-spacing:-0.405000px;}
.ws45{word-spacing:-0.378000px;}
.ws7f{word-spacing:-0.360000px;}
.ws23{word-spacing:-0.357000px;}
.ws44{word-spacing:-0.324000px;}
.ws26{word-spacing:-0.306000px;}
.ws42{word-spacing:-0.270000px;}
.ws22{word-spacing:-0.255000px;}
.ws84{word-spacing:-0.225000px;}
.ws2c{word-spacing:-0.216000px;}
.ws25{word-spacing:-0.204000px;}
.ws9e{word-spacing:-0.180000px;}
.ws43{word-spacing:-0.162000px;}
.ws13{word-spacing:-0.108000px;}
.ws21{word-spacing:-0.102000px;}
.ws89{word-spacing:-0.090000px;}
.ws14{word-spacing:-0.054000px;}
.ws55{word-spacing:-0.053568px;}
.ws80{word-spacing:-0.045000px;}
.ws28{word-spacing:-0.035100px;}
.ws9{word-spacing:0.000000px;}
.ws7c{word-spacing:0.045000px;}
.ws4c{word-spacing:0.054000px;}
.ws24{word-spacing:0.102000px;}
.ws65{word-spacing:0.108000px;}
.ws9b{word-spacing:0.135000px;}
.ws1d{word-spacing:0.162000px;}
.ws87{word-spacing:0.180000px;}
.ws33{word-spacing:0.216000px;}
.ws88{word-spacing:0.225000px;}
.ws4b{word-spacing:0.270000px;}
.ws62{word-spacing:0.300000px;}
.ws6f{word-spacing:0.315000px;}
.ws58{word-spacing:0.324000px;}
.ws46{word-spacing:0.378000px;}
.ws9f{word-spacing:0.405000px;}
.ws2e{word-spacing:0.432000px;}
.ws74{word-spacing:0.495000px;}
.ws31{word-spacing:0.540000px;}
.ws9c{word-spacing:0.630000px;}
.ws20{word-spacing:0.714000px;}
.ws40{word-spacing:0.810000px;}
.ws82{word-spacing:0.855000px;}
.ws47{word-spacing:0.864000px;}
.wsa2{word-spacing:0.972000px;}
.ws6d{word-spacing:1.026000px;}
.ws92{word-spacing:1.035000px;}
.ws9d{word-spacing:1.125000px;}
.ws32{word-spacing:1.242000px;}
.ws76{word-spacing:1.485000px;}
.ws73{word-spacing:1.665000px;}
.ws86{word-spacing:1.800000px;}
.ws77{word-spacing:1.935000px;}
.ws93{word-spacing:2.025000px;}
.ws81{word-spacing:2.340000px;}
.ws7a{word-spacing:2.790000px;}
.ws7b{word-spacing:2.835000px;}
.ws9a{word-spacing:3.060000px;}
.ws94{word-spacing:16.695000px;}
.ws95{word-spacing:16.875000px;}
._e{margin-left:-15.017100px;}
._7{margin-left:-10.962000px;}
._8{margin-left:-9.832800px;}
._b{margin-left:-8.334600px;}
._5{margin-left:-6.176100px;}
._3{margin-left:-4.905000px;}
._4{margin-left:-3.690600px;}
._0{margin-left:-1.776000px;}
._1{width:1.270200px;}
._2{width:2.391600px;}
._6{width:4.228200px;}
._10{width:5.235000px;}
._f{width:7.785000px;}
._a{width:10.500600px;}
._9{width:15.282000px;}
._c{width:47.579400px;}
._d{width:48.759600px;}
.fc3{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fse{font-size:29.250000px;}
.fs7{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fsa{font-size:38.016000px;}
.fs4{font-size:39.000000px;}
.fsd{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fsb{font-size:53.568000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsc{font-size:66.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.yc0{bottom:4.751850px;}
.ybf{bottom:10.799850px;}
.y1{bottom:27.197850px;}
.y2{bottom:27.253800px;}
.y31{bottom:68.313900px;}
.y14a{bottom:73.308300px;}
.y7b{bottom:76.294800px;}
.y195{bottom:76.806000px;}
.yc6{bottom:79.594800px;}
.y4d{bottom:81.546300px;}
.y30{bottom:83.307900px;}
.y149{bottom:86.054550px;}
.y8f{bottom:90.544800px;}
.y7a{bottom:91.294800px;}
.y194{bottom:91.804500px;}
.y10b{bottom:92.800800px;}
.yc5{bottom:94.594800px;}
.y4c{bottom:96.544800px;}
.y2f{bottom:98.307900px;}
.y148{bottom:98.800800px;}
.y8e{bottom:105.547800px;}
.y79{bottom:106.294800px;}
.y193{bottom:106.803000px;}
.y10a{bottom:107.799300px;}
.yc4{bottom:109.594800px;}
.y4b{bottom:111.544800px;}
.y147{bottom:111.547050px;}
.y2e{bottom:113.307900px;}
.y8d{bottom:120.546300px;}
.y78{bottom:121.294800px;}
.y192{bottom:121.801500px;}
.y109{bottom:122.797800px;}
.y146{bottom:124.300800px;}
.yc3{bottom:124.594800px;}
.y4a{bottom:126.544800px;}
.y2d{bottom:128.307900px;}
.y8c{bottom:135.544800px;}
.y77{bottom:136.294800px;}
.y191{bottom:136.801500px;}
.y145{bottom:137.047050px;}
.y108{bottom:137.796300px;}
.yc2{bottom:139.594800px;}
.y49{bottom:141.544800px;}
.y2c{bottom:143.307900px;}
.y144{bottom:149.808300px;}
.y8b{bottom:150.549300px;}
.y76{bottom:151.294800px;}
.y190{bottom:151.801500px;}
.y107{bottom:152.794800px;}
.yc1{bottom:154.594800px;}
.y48{bottom:156.544800px;}
.y2b{bottom:158.307900px;}
.y143{bottom:162.554550px;}
.ybe{bottom:164.593500px;}
.y8a{bottom:165.547800px;}
.y75{bottom:166.294800px;}
.y18f{bottom:166.801500px;}
.y106{bottom:167.799300px;}
.ybd{bottom:169.593300px;}
.y47{bottom:171.550800px;}
.y142{bottom:175.300800px;}
.y2a{bottom:177.636900px;}
.y89{bottom:180.546300px;}
.y74{bottom:181.294800px;}
.y18e{bottom:181.800000px;}
.y105{bottom:182.797800px;}
.ybc{bottom:185.794800px;}
.y46{bottom:186.549300px;}
.y141{bottom:188.047050px;}
.y88{bottom:195.544800px;}
.y73{bottom:196.296300px;}
.y18d{bottom:196.800000px;}
.y104{bottom:197.796300px;}
.ybb{bottom:200.794800px;}
.y140{bottom:200.797050px;}
.y45{bottom:201.547800px;}
.y87{bottom:210.544800px;}
.y72{bottom:211.294800px;}
.y103{bottom:212.794800px;}
.y13f{bottom:213.588300px;}
.y29{bottom:213.685800px;}
.yba{bottom:215.796300px;}
.y44{bottom:216.546300px;}
.y86{bottom:225.544800px;}
.y71{bottom:226.294800px;}
.y13e{bottom:226.334550px;}
.y18c{bottom:226.932150px;}
.y102{bottom:227.800800px;}
.y28{bottom:228.687300px;}
.yb9{bottom:230.794800px;}
.y43{bottom:231.544800px;}
.y13d{bottom:239.080800px;}
.y85{bottom:240.544800px;}
.y70{bottom:241.294800px;}
.y18b{bottom:241.930650px;}
.y101{bottom:242.799300px;}
.y27{bottom:243.685800px;}
.yb8{bottom:245.794800px;}
.y42{bottom:246.544800px;}
.y13c{bottom:251.827050px;}
.y84{bottom:255.546300px;}
.y6f{bottom:256.296300px;}
.y18a{bottom:256.929150px;}
.y100{bottom:257.797800px;}
.y26{bottom:258.688800px;}
.yb7{bottom:260.797800px;}
.y41{bottom:261.547800px;}
.y13b{bottom:264.573300px;}
.y83{bottom:270.544800px;}
.y6e{bottom:271.294800px;}
.y189{bottom:271.927650px;}
.yff{bottom:272.796300px;}
.y25{bottom:273.687300px;}
.yb6{bottom:275.796300px;}
.y40{bottom:276.546300px;}
.y13a{bottom:277.319550px;}
.y82{bottom:285.543300px;}
.y6d{bottom:286.294800px;}
.y188{bottom:286.926150px;}
.yfe{bottom:287.794800px;}
.y24{bottom:288.685800px;}
.y139{bottom:290.065800px;}
.yb5{bottom:290.794800px;}
.y3f{bottom:291.544800px;}
.y6c{bottom:301.299300px;}
.y187{bottom:301.924650px;}
.yfd{bottom:302.796300px;}
.y138{bottom:302.812050px;}
.y23{bottom:303.685800px;}
.yb4{bottom:305.794800px;}
.y3e{bottom:306.547800px;}
.y137{bottom:315.558300px;}
.y6b{bottom:316.297800px;}
.y186{bottom:316.923150px;}
.yfc{bottom:317.794800px;}
.y22{bottom:318.688800px;}
.yb3{bottom:320.794800px;}
.y3d{bottom:321.546300px;}
.y136{bottom:328.304550px;}
.y6a{bottom:331.296300px;}
.y185{bottom:331.921650px;}
.yfb{bottom:332.796300px;}
.y21{bottom:333.687300px;}
.y98{bottom:335.214150px;}
.yb2{bottom:335.794800px;}
.y3c{bottom:336.544800px;}
.y135{bottom:341.050800px;}
.y69{bottom:346.294800px;}
.y184{bottom:346.921650px;}
.yfa{bottom:347.794800px;}
.y20{bottom:348.685800px;}
.y97{bottom:350.214150px;}
.yb1{bottom:350.794800px;}
.y3b{bottom:351.549300px;}
.y134{bottom:353.797050px;}
.y68{bottom:361.296300px;}
.yf9{bottom:362.793300px;}
.y1f{bottom:363.685800px;}
.y96{bottom:365.214150px;}
.yb0{bottom:365.794800px;}
.y3a{bottom:366.547800px;}
.y133{bottom:366.550800px;}
.y67{bottom:376.294800px;}
.y183{bottom:377.088300px;}
.y1e{bottom:378.685800px;}
.y132{bottom:379.297050px;}
.y95{bottom:380.214150px;}
.yaf{bottom:380.794800px;}
.y39{bottom:381.546300px;}
.y182{bottom:389.834550px;}
.y66{bottom:391.299300px;}
.y131{bottom:392.080800px;}
.y1d{bottom:393.685800px;}
.y94{bottom:395.215650px;}
.yf8{bottom:395.796300px;}
.yae{bottom:395.797800px;}
.y38{bottom:396.544800px;}
.y181{bottom:402.580800px;}
.y130{bottom:404.827050px;}
.y65{bottom:406.297800px;}
.y1c{bottom:408.685800px;}
.y93{bottom:410.214150px;}
.yf7{bottom:410.794800px;}
.yad{bottom:410.796300px;}
.y37{bottom:411.543300px;}
.y180{bottom:415.327050px;}
.y12f{bottom:417.573300px;}
.y64{bottom:421.296300px;}
.y1b{bottom:423.685800px;}
.y92{bottom:425.214150px;}
.yac{bottom:425.794800px;}
.yf6{bottom:425.797800px;}
.y17f{bottom:428.073300px;}
.y12e{bottom:430.319550px;}
.y63{bottom:436.294800px;}
.y1a{bottom:438.685800px;}
.y91{bottom:440.214150px;}
.yab{bottom:440.794800px;}
.yf5{bottom:440.796300px;}
.y17e{bottom:440.819550px;}
.y12d{bottom:443.065800px;}
.y62{bottom:451.294800px;}
.y17d{bottom:453.565800px;}
.y19{bottom:453.685800px;}
.y90{bottom:455.212650px;}
.yf4{bottom:455.794800px;}
.yaa{bottom:455.797800px;}
.y12c{bottom:455.812050px;}
.y56{bottom:463.015650px;}
.y61{bottom:466.299300px;}
.y17c{bottom:466.312050px;}
.y12b{bottom:468.558300px;}
.y18{bottom:468.685800px;}
.ya9{bottom:470.796300px;}
.yf3{bottom:470.797800px;}
.y55{bottom:478.014150px;}
.y17b{bottom:479.058300px;}
.y60{bottom:481.297800px;}
.y12a{bottom:481.304550px;}
.y17{bottom:483.685800px;}
.ya8{bottom:485.794800px;}
.yf2{bottom:485.796300px;}
.y17a{bottom:491.804550px;}
.y54{bottom:493.014150px;}
.y129{bottom:494.050800px;}
.y5f{bottom:496.296300px;}
.y16{bottom:498.684300px;}
.yf1{bottom:500.794800px;}
.ya7{bottom:500.799300px;}
.y179{bottom:504.550800px;}
.y128{bottom:506.797050px;}
.y53{bottom:508.020150px;}
.y5e{bottom:511.294800px;}
.yf0{bottom:515.793300px;}
.ya6{bottom:515.797800px;}
.y178{bottom:517.297050px;}
.y127{bottom:519.558300px;}
.y52{bottom:523.018650px;}
.y5d{bottom:526.294800px;}
.y177{bottom:530.054550px;}
.yef{bottom:530.793300px;}
.ya5{bottom:530.796300px;}
.y126{bottom:532.304550px;}
.y51{bottom:538.017150px;}
.y5c{bottom:541.294800px;}
.y176{bottom:542.800800px;}
.y125{bottom:545.050800px;}
.ya4{bottom:545.794800px;}
.y15{bottom:545.937300px;}
.y50{bottom:553.015650px;}
.y175{bottom:555.547050px;}
.y5b{bottom:556.294800px;}
.y124{bottom:557.797050px;}
.ya3{bottom:560.794800px;}
.y14{bottom:562.443300px;}
.yee{bottom:563.796300px;}
.y4f{bottom:568.014150px;}
.y174{bottom:568.304550px;}
.y123{bottom:570.565800px;}
.y5a{bottom:571.294800px;}
.ya2{bottom:575.794800px;}
.yed{bottom:578.794800px;}
.y13{bottom:578.940300px;}
.y173{bottom:581.050800px;}
.y4e{bottom:583.012650px;}
.y122{bottom:583.312050px;}
.y59{bottom:586.296300px;}
.ya1{bottom:590.796300px;}
.yec{bottom:593.794800px;}
.y172{bottom:593.797050px;}
.y12{bottom:595.437300px;}
.y121{bottom:596.058300px;}
.y58{bottom:601.294800px;}
.ya0{bottom:605.794800px;}
.yeb{bottom:608.799300px;}
.y120{bottom:608.804550px;}
.y171{bottom:610.368300px;}
.y11{bottom:611.940300px;}
.y57{bottom:616.293300px;}
.y170{bottom:619.323300px;}
.y9f{bottom:620.794800px;}
.y11f{bottom:621.550800px;}
.yea{bottom:623.797800px;}
.y10{bottom:628.437300px;}
.y16f{bottom:632.069550px;}
.y11e{bottom:634.297050px;}
.y9e{bottom:635.794800px;}
.ye9{bottom:638.796300px;}
.y16e{bottom:644.815800px;}
.yf{bottom:644.937300px;}
.y11d{bottom:647.058300px;}
.y9d{bottom:650.796300px;}
.ye8{bottom:653.794800px;}
.y16d{bottom:657.562050px;}
.y11c{bottom:659.804550px;}
.ye{bottom:661.440300px;}
.y9c{bottom:665.794800px;}
.ye7{bottom:668.796300px;}
.y81{bottom:669.837300px;}
.y16c{bottom:670.308300px;}
.y11b{bottom:672.550800px;}
.yd{bottom:677.937300px;}
.y9b{bottom:680.794800px;}
.y16b{bottom:683.054550px;}
.ye6{bottom:683.794800px;}
.y80{bottom:684.835800px;}
.y11a{bottom:685.297050px;}
.yc{bottom:694.437300px;}
.y9a{bottom:695.794800px;}
.y16a{bottom:695.800800px;}
.y119{bottom:698.043300px;}
.ye5{bottom:698.794800px;}
.y7f{bottom:699.834300px;}
.y169{bottom:708.547050px;}
.y99{bottom:710.793300px;}
.yb{bottom:710.937300px;}
.ye4{bottom:713.797800px;}
.y7e{bottom:714.835800px;}
.y168{bottom:721.300800px;}
.ya{bottom:727.434300px;}
.ye3{bottom:728.796300px;}
.y7d{bottom:729.834300px;}
.y167{bottom:734.047050px;}
.ye2{bottom:743.794800px;}
.y7c{bottom:744.832800px;}
.y166{bottom:746.800800px;}
.y34{bottom:757.050000px;}
.y9{bottom:757.434300px;}
.ye1{bottom:758.794800px;}
.y118{bottom:758.796300px;}
.y165{bottom:759.547050px;}
.yca{bottom:766.743450px;}
.y164{bottom:772.342050px;}
.ye0{bottom:773.794800px;}
.y8{bottom:775.434300px;}
.y33{bottom:778.050000px;}
.yc9{bottom:781.741950px;}
.y163{bottom:785.088300px;}
.ydf{bottom:788.796300px;}
.y117{bottom:788.797800px;}
.y7{bottom:793.434300px;}
.yc8{bottom:796.740450px;}
.y162{bottom:797.834550px;}
.y32{bottom:799.050000px;}
.yde{bottom:803.794800px;}
.y116{bottom:803.796300px;}
.y161{bottom:810.580800px;}
.yc7{bottom:811.738950px;}
.ydd{bottom:818.794800px;}
.y160{bottom:823.327050px;}
.y6{bottom:826.422300px;}
.ydc{bottom:833.796300px;}
.y115{bottom:833.797800px;}
.y15f{bottom:836.073300px;}
.ydb{bottom:848.794800px;}
.y114{bottom:848.796300px;}
.y15e{bottom:848.819550px;}
.y15d{bottom:861.565800px;}
.yda{bottom:863.794800px;}
.y5{bottom:871.428300px;}
.y15c{bottom:874.312050px;}
.y113{bottom:878.794800px;}
.yd9{bottom:878.802300px;}
.y15b{bottom:887.058300px;}
.y112{bottom:893.796300px;}
.yd8{bottom:893.800800px;}
.y15a{bottom:899.804550px;}
.y111{bottom:908.794800px;}
.yd7{bottom:908.799300px;}
.y159{bottom:912.550800px;}
.y4{bottom:916.434300px;}
.yd6{bottom:923.797800px;}
.y158{bottom:925.297050px;}
.y35{bottom:926.409600px;}
.y19e{bottom:933.549300px;}
.y157{bottom:938.047050px;}
.yd5{bottom:938.796300px;}
.y19d{bottom:948.547800px;}
.y156{bottom:950.827050px;}
.yd4{bottom:953.794800px;}
.y19c{bottom:963.546300px;}
.y155{bottom:963.573300px;}
.yd3{bottom:968.794800px;}
.y154{bottom:976.319550px;}
.y19b{bottom:978.544800px;}
.yd2{bottom:983.794800px;}
.y153{bottom:989.065800px;}
.y19a{bottom:993.543300px;}
.y110{bottom:998.794800px;}
.yd1{bottom:998.802300px;}
.y152{bottom:1001.812050px;}
.y10f{bottom:1013.797800px;}
.yd0{bottom:1013.800800px;}
.y151{bottom:1014.558300px;}
.y199{bottom:1015.297800px;}
.y150{bottom:1027.304550px;}
.y10e{bottom:1028.796300px;}
.ycf{bottom:1028.799300px;}
.y198{bottom:1030.296300px;}
.y14f{bottom:1040.050800px;}
.y10d{bottom:1043.794800px;}
.yce{bottom:1043.797800px;}
.y197{bottom:1052.044800px;}
.y14e{bottom:1052.797050px;}
.y10c{bottom:1058.794800px;}
.ycd{bottom:1058.796300px;}
.y14d{bottom:1065.550800px;}
.y196{bottom:1073.793300px;}
.ycc{bottom:1073.794800px;}
.y14c{bottom:1078.297050px;}
.ycb{bottom:1088.793300px;}
.y14b{bottom:1091.043300px;}
.y36{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.h1b{height:17.280000px;}
.h27{height:23.224500px;}
.h11{height:23.842749px;}
.h1c{height:28.093824px;}
.h14{height:34.523438px;}
.h25{height:35.730000px;}
.h13{height:36.681152px;}
.h1d{height:37.497600px;}
.h1f{height:37.962000px;}
.h26{height:38.524500px;}
.hb{height:38.838867px;}
.h3{height:39.210938px;}
.h12{height:41.158749px;}
.hd{height:42.876000px;}
.h1e{height:43.035300px;}
.h2{height:43.154297px;}
.hc{height:44.088305px;}
.ha{height:44.100305px;}
.h9{height:44.112305px;}
.h4{height:44.233154px;}
.h20{height:46.193400px;}
.h17{height:46.199400px;}
.h21{height:46.201500px;}
.h16{height:46.205400px;}
.hf{height:46.211400px;}
.h10{height:46.217400px;}
.h23{height:46.219500px;}
.he{height:46.223400px;}
.h18{height:46.229400px;}
.h19{height:46.231500px;}
.h1a{height:46.237500px;}
.h24{height:47.469727px;}
.h6{height:49.013672px;}
.h8{height:52.258887px;}
.h7{height:52.259487px;}
.h22{height:53.915039px;}
.h15{height:88.224609px;}
.h5{height:127.435547px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w2{width:27.216000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:19.871100px;}
.x2{left:61.191450px;}
.x6{left:87.951150px;}
.x7{left:94.227150px;}
.x8{left:140.952750px;}
.x4{left:233.456400px;}
.xd{left:239.149800px;}
.x5{left:251.451450px;}
.xa{left:295.369500px;}
.xe{left:300.348750px;}
.xc{left:322.584600px;}
.x3{left:584.586600px;}
.x9{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.ve{vertical-align:-21.600000pt;}
.v6{vertical-align:-16.320000pt;}
.v4{vertical-align:-15.413333pt;}
.vd{vertical-align:-13.600000pt;}
.v9{vertical-align:-12.288000pt;}
.va{vertical-align:-10.666667pt;}
.v2{vertical-align:-9.600000pt;}
.vb{vertical-align:-8.053333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:9.600000pt;}
.vc{vertical-align:13.600000pt;}
.v5{vertical-align:15.392000pt;}
.v3{vertical-align:16.314667pt;}
.v1{vertical-align:18.133867pt;}
.v7{vertical-align:25.927200pt;}
.lsb7{letter-spacing:-3.880000pt;}
.lsa2{letter-spacing:-1.600000pt;}
.ls9b{letter-spacing:-1.480000pt;}
.ls3c{letter-spacing:-1.056000pt;}
.ls4f{letter-spacing:-0.768000pt;}
.ls3b{letter-spacing:-0.720000pt;}
.ls6b{letter-spacing:-0.576000pt;}
.ls98{letter-spacing:-0.528000pt;}
.lsb4{letter-spacing:-0.480000pt;}
.ls9a{letter-spacing:-0.440000pt;}
.ls4c{letter-spacing:-0.432000pt;}
.lsa1{letter-spacing:-0.400000pt;}
.ls23{letter-spacing:-0.384000pt;}
.lsa0{letter-spacing:-0.360000pt;}
.ls3d{letter-spacing:-0.336000pt;}
.lsb5{letter-spacing:-0.320000pt;}
.ls3a{letter-spacing:-0.288000pt;}
.ls99{letter-spacing:-0.280000pt;}
.ls20{letter-spacing:-0.240000pt;}
.lsb6{letter-spacing:-0.200000pt;}
.ls38{letter-spacing:-0.192000pt;}
.lsb1{letter-spacing:-0.160000pt;}
.ls21{letter-spacing:-0.156000pt;}
.ls39{letter-spacing:-0.144000pt;}
.ls6a{letter-spacing:-0.124800pt;}
.ls9e{letter-spacing:-0.120000pt;}
.ls37{letter-spacing:-0.096000pt;}
.ls4d{letter-spacing:-0.093600pt;}
.ls27{letter-spacing:-0.090667pt;}
.lsb3{letter-spacing:-0.080000pt;}
.ls4b{letter-spacing:-0.062400pt;}
.ls1f{letter-spacing:-0.048000pt;}
.ls9f{letter-spacing:-0.040000pt;}
.ls6c{letter-spacing:-0.031200pt;}
.ls1e{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.000533pt;}
.ls40{letter-spacing:0.001600pt;}
.ls8c{letter-spacing:0.005333pt;}
.ls8{letter-spacing:0.006933pt;}
.ls7{letter-spacing:0.010400pt;}
.ls6{letter-spacing:0.010933pt;}
.ls2{letter-spacing:0.011733pt;}
.ls4{letter-spacing:0.012267pt;}
.ls3{letter-spacing:0.019733pt;}
.ls60{letter-spacing:0.020800pt;}
.ls6f{letter-spacing:0.022400pt;}
.ls5{letter-spacing:0.028267pt;}
.ls30{letter-spacing:0.031200pt;}
.ls50{letter-spacing:0.032000pt;}
.ls76{letter-spacing:0.034667pt;}
.ls32{letter-spacing:0.037333pt;}
.ls17{letter-spacing:0.038267pt;}
.lsae{letter-spacing:0.040000pt;}
.ls31{letter-spacing:0.047733pt;}
.ls2f{letter-spacing:0.048000pt;}
.ls36{letter-spacing:0.051200pt;}
.ls35{letter-spacing:0.051733pt;}
.lsb8{letter-spacing:0.052000pt;}
.ls45{letter-spacing:0.053867pt;}
.lsaa{letter-spacing:0.056000pt;}
.ls74{letter-spacing:0.059733pt;}
.ls5c{letter-spacing:0.060267pt;}
.ls4e{letter-spacing:0.062400pt;}
.ls73{letter-spacing:0.064000pt;}
.ls57{letter-spacing:0.067733pt;}
.ls83{letter-spacing:0.069333pt;}
.ls10{letter-spacing:0.076000pt;}
.ls8b{letter-spacing:0.080000pt;}
.lsd{letter-spacing:0.080533pt;}
.ls3f{letter-spacing:0.083733pt;}
.ls59{letter-spacing:0.084800pt;}
.ls49{letter-spacing:0.085067pt;}
.ls48{letter-spacing:0.085333pt;}
.ls63{letter-spacing:0.087467pt;}
.ls62{letter-spacing:0.088000pt;}
.ls26{letter-spacing:0.090667pt;}
.lsf{letter-spacing:0.093600pt;}
.ls7f{letter-spacing:0.095467pt;}
.ls22{letter-spacing:0.096000pt;}
.ls1b{letter-spacing:0.108667pt;}
.ls82{letter-spacing:0.120000pt;}
.lsa4{letter-spacing:0.121067pt;}
.ls2a{letter-spacing:0.122667pt;}
.ls1c{letter-spacing:0.134800pt;}
.ls58{letter-spacing:0.138667pt;}
.ls90{letter-spacing:0.140267pt;}
.ls19{letter-spacing:0.141733pt;}
.lse{letter-spacing:0.144000pt;}
.ls51{letter-spacing:0.150400pt;}
.ls66{letter-spacing:0.156000pt;}
.ls89{letter-spacing:0.160000pt;}
.ls70{letter-spacing:0.162133pt;}
.ls13{letter-spacing:0.169067pt;}
.ls12{letter-spacing:0.169600pt;}
.ls44{letter-spacing:0.174667pt;}
.ls1a{letter-spacing:0.181333pt;}
.ls6d{letter-spacing:0.182400pt;}
.ls7c{letter-spacing:0.183467pt;}
.ls14{letter-spacing:0.185600pt;}
.ls42{letter-spacing:0.187200pt;}
.ls2b{letter-spacing:0.192000pt;}
.ls8f{letter-spacing:0.200000pt;}
.ls81{letter-spacing:0.208000pt;}
.ls43{letter-spacing:0.218400pt;}
.ls18{letter-spacing:0.226667pt;}
.ls46{letter-spacing:0.230400pt;}
.ls11{letter-spacing:0.240000pt;}
.ls9{letter-spacing:0.249600pt;}
.ls52{letter-spacing:0.256000pt;}
.ls47{letter-spacing:0.264000pt;}
.ls5f{letter-spacing:0.268800pt;}
.ls64{letter-spacing:0.269333pt;}
.ls5b{letter-spacing:0.269867pt;}
.ls5d{letter-spacing:0.270400pt;}
.ls1d{letter-spacing:0.272000pt;}
.lsb{letter-spacing:0.276800pt;}
.ls53{letter-spacing:0.280800pt;}
.ls24{letter-spacing:0.288000pt;}
.ls7d{letter-spacing:0.291200pt;}
.ls7e{letter-spacing:0.291733pt;}
.lsa5{letter-spacing:0.292000pt;}
.ls75{letter-spacing:0.304533pt;}
.ls54{letter-spacing:0.312000pt;}
.ls96{letter-spacing:0.320000pt;}
.ls6e{letter-spacing:0.324800pt;}
.lsac{letter-spacing:0.328533pt;}
.lsab{letter-spacing:0.329067pt;}
.ls5a{letter-spacing:0.332267pt;}
.ls55{letter-spacing:0.333600pt;}
.ls41{letter-spacing:0.336000pt;}
.ls34{letter-spacing:0.338667pt;}
.ls3e{letter-spacing:0.339200pt;}
.ls67{letter-spacing:0.343200pt;}
.ls97{letter-spacing:0.346667pt;}
.ls72{letter-spacing:0.353600pt;}
.ls94{letter-spacing:0.357867pt;}
.lsb9{letter-spacing:0.360000pt;}
.ls56{letter-spacing:0.361067pt;}
.lsb0{letter-spacing:0.364000pt;}
.lsa3{letter-spacing:0.364267pt;}
.ls77{letter-spacing:0.374400pt;}
.ls5e{letter-spacing:0.379200pt;}
.ls15{letter-spacing:0.382800pt;}
.lsa{letter-spacing:0.384000pt;}
.lsad{letter-spacing:0.388000pt;}
.ls93{letter-spacing:0.400000pt;}
.ls68{letter-spacing:0.405600pt;}
.lsa6{letter-spacing:0.420000pt;}
.ls2e{letter-spacing:0.422933pt;}
.lsc{letter-spacing:0.432000pt;}
.ls2d{letter-spacing:0.436800pt;}
.ls91{letter-spacing:0.440000pt;}
.ls25{letter-spacing:0.480000pt;}
.lsaf{letter-spacing:0.500800pt;}
.ls7b{letter-spacing:0.513333pt;}
.ls9c{letter-spacing:0.520000pt;}
.ls33{letter-spacing:0.528000pt;}
.ls71{letter-spacing:0.533333pt;}
.ls95{letter-spacing:0.552000pt;}
.ls84{letter-spacing:0.560000pt;}
.ls69{letter-spacing:0.561600pt;}
.ls80{letter-spacing:0.567467pt;}
.ls29{letter-spacing:0.576000pt;}
.ls87{letter-spacing:0.579200pt;}
.ls16{letter-spacing:0.589333pt;}
.ls7a{letter-spacing:0.592800pt;}
.ls2c{letter-spacing:0.624000pt;}
.ls92{letter-spacing:0.672000pt;}
.ls8e{letter-spacing:0.680000pt;}
.ls78{letter-spacing:0.720000pt;}
.lsba{letter-spacing:0.768000pt;}
.ls79{letter-spacing:0.816000pt;}
.ls61{letter-spacing:0.864000pt;}
.ls86{letter-spacing:0.880000pt;}
.ls85{letter-spacing:0.888000pt;}
.ls88{letter-spacing:1.040000pt;}
.ls9d{letter-spacing:1.080000pt;}
.ls8d{letter-spacing:1.200000pt;}
.ls8a{letter-spacing:1.360000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls28{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.lsb2{letter-spacing:6.040000pt;}
.lsa9{letter-spacing:6.320000pt;}
.lsa7{letter-spacing:6.360000pt;}
.ls65{letter-spacing:13.104000pt;}
.lsa8{letter-spacing:20.788000pt;}
.ws2{word-spacing:-13.393333pt;}
.ws67{word-spacing:-12.085333pt;}
.ws66{word-spacing:-11.760000pt;}
.ws60{word-spacing:-11.328000pt;}
.ws4a{word-spacing:-11.232000pt;}
.ws3b{word-spacing:-11.184000pt;}
.ws5{word-spacing:-11.040000pt;}
.ws5e{word-spacing:-10.992000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws2b{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws38{word-spacing:-10.800000pt;}
.ws3f{word-spacing:-10.656000pt;}
.ws4e{word-spacing:-10.560000pt;}
.ws39{word-spacing:-10.464000pt;}
.ws29{word-spacing:-9.696000pt;}
.ws90{word-spacing:-9.440000pt;}
.ws2a{word-spacing:-9.360000pt;}
.ws69{word-spacing:-9.160000pt;}
.ws8c{word-spacing:-9.100000pt;}
.ws6b{word-spacing:-9.080000pt;}
.ws8b{word-spacing:-9.000000pt;}
.ws8e{word-spacing:-8.920000pt;}
.ws68{word-spacing:-8.800000pt;}
.ws8d{word-spacing:-8.640000pt;}
.ws91{word-spacing:-8.560000pt;}
.ws53{word-spacing:-7.644000pt;}
.ws51{word-spacing:-7.488000pt;}
.ws5f{word-spacing:-7.456800pt;}
.ws50{word-spacing:-7.425600pt;}
.ws52{word-spacing:-7.363200pt;}
.ws4{word-spacing:-7.332000pt;}
.ws49{word-spacing:-7.300800pt;}
.ws3c{word-spacing:-7.269600pt;}
.ws4f{word-spacing:-7.238400pt;}
.ws3e{word-spacing:-7.176000pt;}
.ws3d{word-spacing:-7.144800pt;}
.ws48{word-spacing:-7.113600pt;}
.ws6{word-spacing:-7.082400pt;}
.ws56{word-spacing:-7.051200pt;}
.ws37{word-spacing:-7.020000pt;}
.ws3a{word-spacing:-6.988800pt;}
.ws54{word-spacing:-6.957600pt;}
.ws7{word-spacing:-6.926400pt;}
.ws57{word-spacing:-6.770400pt;}
.ws8a{word-spacing:-6.266000pt;}
.ws96{word-spacing:-6.040000pt;}
.ws8f{word-spacing:-5.954000pt;}
.ws6a{word-spacing:-5.902000pt;}
.ws8{word-spacing:-5.893333pt;}
.ws2d{word-spacing:-4.896000pt;}
.ws10{word-spacing:-4.746667pt;}
.wsa1{word-spacing:-3.520000pt;}
.ws63{word-spacing:-3.466667pt;}
.wse{word-spacing:-3.200000pt;}
.wsa{word-spacing:-2.912000pt;}
.wsc{word-spacing:-2.666667pt;}
.ws27{word-spacing:-2.453333pt;}
.wsd{word-spacing:-2.400000pt;}
.ws1{word-spacing:-2.346667pt;}
.wsb{word-spacing:-2.133333pt;}
.ws6e{word-spacing:-1.680000pt;}
.ws79{word-spacing:-1.640000pt;}
.ws18{word-spacing:-1.632000pt;}
.ws1a{word-spacing:-1.584000pt;}
.ws5c{word-spacing:-1.536000pt;}
.ws30{word-spacing:-1.488000pt;}
.ws5d{word-spacing:-1.440000pt;}
.ws78{word-spacing:-1.400000pt;}
.ws1e{word-spacing:-1.392000pt;}
.ws64{word-spacing:-1.386667pt;}
.ws70{word-spacing:-1.360000pt;}
.ws61{word-spacing:-1.344000pt;}
.ws5b{word-spacing:-1.296000pt;}
.ws7d{word-spacing:-1.280000pt;}
.ws5a{word-spacing:-1.248000pt;}
.ws1b{word-spacing:-1.200000pt;}
.ws99{word-spacing:-1.160000pt;}
.ws2f{word-spacing:-1.152000pt;}
.wsf{word-spacing:-1.120000pt;}
.ws19{word-spacing:-1.104000pt;}
.ws97{word-spacing:-1.080000pt;}
.ws35{word-spacing:-1.056000pt;}
.wsa0{word-spacing:-1.040000pt;}
.ws11{word-spacing:-1.008000pt;}
.ws1f{word-spacing:-0.960000pt;}
.ws71{word-spacing:-0.920000pt;}
.ws4d{word-spacing:-0.912000pt;}
.ws17{word-spacing:-0.816000pt;}
.ws36{word-spacing:-0.768000pt;}
.ws41{word-spacing:-0.720000pt;}
.ws7e{word-spacing:-0.680000pt;}
.ws98{word-spacing:-0.640000pt;}
.ws34{word-spacing:-0.624000pt;}
.ws15{word-spacing:-0.576000pt;}
.ws6c{word-spacing:-0.533333pt;}
.ws12{word-spacing:-0.528000pt;}
.ws75{word-spacing:-0.520000pt;}
.ws59{word-spacing:-0.480000pt;}
.ws72{word-spacing:-0.440000pt;}
.ws16{word-spacing:-0.432000pt;}
.ws85{word-spacing:-0.400000pt;}
.ws1c{word-spacing:-0.384000pt;}
.ws83{word-spacing:-0.360000pt;}
.ws45{word-spacing:-0.336000pt;}
.ws7f{word-spacing:-0.320000pt;}
.ws23{word-spacing:-0.317333pt;}
.ws44{word-spacing:-0.288000pt;}
.ws26{word-spacing:-0.272000pt;}
.ws42{word-spacing:-0.240000pt;}
.ws22{word-spacing:-0.226667pt;}
.ws84{word-spacing:-0.200000pt;}
.ws2c{word-spacing:-0.192000pt;}
.ws25{word-spacing:-0.181333pt;}
.ws9e{word-spacing:-0.160000pt;}
.ws43{word-spacing:-0.144000pt;}
.ws13{word-spacing:-0.096000pt;}
.ws21{word-spacing:-0.090667pt;}
.ws89{word-spacing:-0.080000pt;}
.ws14{word-spacing:-0.048000pt;}
.ws55{word-spacing:-0.047616pt;}
.ws80{word-spacing:-0.040000pt;}
.ws28{word-spacing:-0.031200pt;}
.ws9{word-spacing:0.000000pt;}
.ws7c{word-spacing:0.040000pt;}
.ws4c{word-spacing:0.048000pt;}
.ws24{word-spacing:0.090667pt;}
.ws65{word-spacing:0.096000pt;}
.ws9b{word-spacing:0.120000pt;}
.ws1d{word-spacing:0.144000pt;}
.ws87{word-spacing:0.160000pt;}
.ws33{word-spacing:0.192000pt;}
.ws88{word-spacing:0.200000pt;}
.ws4b{word-spacing:0.240000pt;}
.ws62{word-spacing:0.266667pt;}
.ws6f{word-spacing:0.280000pt;}
.ws58{word-spacing:0.288000pt;}
.ws46{word-spacing:0.336000pt;}
.ws9f{word-spacing:0.360000pt;}
.ws2e{word-spacing:0.384000pt;}
.ws74{word-spacing:0.440000pt;}
.ws31{word-spacing:0.480000pt;}
.ws9c{word-spacing:0.560000pt;}
.ws20{word-spacing:0.634667pt;}
.ws40{word-spacing:0.720000pt;}
.ws82{word-spacing:0.760000pt;}
.ws47{word-spacing:0.768000pt;}
.wsa2{word-spacing:0.864000pt;}
.ws6d{word-spacing:0.912000pt;}
.ws92{word-spacing:0.920000pt;}
.ws9d{word-spacing:1.000000pt;}
.ws32{word-spacing:1.104000pt;}
.ws76{word-spacing:1.320000pt;}
.ws73{word-spacing:1.480000pt;}
.ws86{word-spacing:1.600000pt;}
.ws77{word-spacing:1.720000pt;}
.ws93{word-spacing:1.800000pt;}
.ws81{word-spacing:2.080000pt;}
.ws7a{word-spacing:2.480000pt;}
.ws7b{word-spacing:2.520000pt;}
.ws9a{word-spacing:2.720000pt;}
.ws94{word-spacing:14.840000pt;}
.ws95{word-spacing:15.000000pt;}
._e{margin-left:-13.348533pt;}
._7{margin-left:-9.744000pt;}
._8{margin-left:-8.740267pt;}
._b{margin-left:-7.408533pt;}
._5{margin-left:-5.489867pt;}
._3{margin-left:-4.360000pt;}
._4{margin-left:-3.280533pt;}
._0{margin-left:-1.578667pt;}
._1{width:1.129067pt;}
._2{width:2.125867pt;}
._6{width:3.758400pt;}
._10{width:4.653333pt;}
._f{width:6.920000pt;}
._a{width:9.333867pt;}
._9{width:13.584000pt;}
._c{width:42.292800pt;}
._d{width:43.341867pt;}
.fse{font-size:26.000000pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fsa{font-size:33.792000pt;}
.fs4{font-size:34.666667pt;}
.fsd{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fsb{font-size:47.616000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsc{font-size:58.666667pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.yc0{bottom:4.223867pt;}
.ybf{bottom:9.599867pt;}
.y1{bottom:24.175867pt;}
.y2{bottom:24.225600pt;}
.y31{bottom:60.723467pt;}
.y14a{bottom:65.162933pt;}
.y7b{bottom:67.817600pt;}
.y195{bottom:68.272000pt;}
.yc6{bottom:70.750933pt;}
.y4d{bottom:72.485600pt;}
.y30{bottom:74.051467pt;}
.y149{bottom:76.492933pt;}
.y8f{bottom:80.484267pt;}
.y7a{bottom:81.150933pt;}
.y194{bottom:81.604000pt;}
.y10b{bottom:82.489600pt;}
.yc5{bottom:84.084267pt;}
.y4c{bottom:85.817600pt;}
.y2f{bottom:87.384800pt;}
.y148{bottom:87.822933pt;}
.y8e{bottom:93.820267pt;}
.y79{bottom:94.484267pt;}
.y193{bottom:94.936000pt;}
.y10a{bottom:95.821600pt;}
.yc4{bottom:97.417600pt;}
.y4b{bottom:99.150933pt;}
.y147{bottom:99.152933pt;}
.y2e{bottom:100.718133pt;}
.y8d{bottom:107.152267pt;}
.y78{bottom:107.817600pt;}
.y192{bottom:108.268000pt;}
.y109{bottom:109.153600pt;}
.y146{bottom:110.489600pt;}
.yc3{bottom:110.750933pt;}
.y4a{bottom:112.484267pt;}
.y2d{bottom:114.051467pt;}
.y8c{bottom:120.484267pt;}
.y77{bottom:121.150933pt;}
.y191{bottom:121.601333pt;}
.y145{bottom:121.819600pt;}
.y108{bottom:122.485600pt;}
.yc2{bottom:124.084267pt;}
.y49{bottom:125.817600pt;}
.y2c{bottom:127.384800pt;}
.y144{bottom:133.162933pt;}
.y8b{bottom:133.821600pt;}
.y76{bottom:134.484267pt;}
.y190{bottom:134.934667pt;}
.y107{bottom:135.817600pt;}
.yc1{bottom:137.417600pt;}
.y48{bottom:139.150933pt;}
.y2b{bottom:140.718133pt;}
.y143{bottom:144.492933pt;}
.ybe{bottom:146.305333pt;}
.y8a{bottom:147.153600pt;}
.y75{bottom:147.817600pt;}
.y18f{bottom:148.268000pt;}
.y106{bottom:149.154933pt;}
.ybd{bottom:150.749600pt;}
.y47{bottom:152.489600pt;}
.y142{bottom:155.822933pt;}
.y2a{bottom:157.899467pt;}
.y89{bottom:160.485600pt;}
.y74{bottom:161.150933pt;}
.y18e{bottom:161.600000pt;}
.y105{bottom:162.486933pt;}
.ybc{bottom:165.150933pt;}
.y46{bottom:165.821600pt;}
.y141{bottom:167.152933pt;}
.y88{bottom:173.817600pt;}
.y73{bottom:174.485600pt;}
.y18d{bottom:174.933333pt;}
.y104{bottom:175.818933pt;}
.ybb{bottom:178.484267pt;}
.y140{bottom:178.486267pt;}
.y45{bottom:179.153600pt;}
.y87{bottom:187.150933pt;}
.y72{bottom:187.817600pt;}
.y103{bottom:189.150933pt;}
.y13f{bottom:189.856267pt;}
.y29{bottom:189.942933pt;}
.yba{bottom:191.818933pt;}
.y44{bottom:192.485600pt;}
.y86{bottom:200.484267pt;}
.y71{bottom:201.150933pt;}
.y13e{bottom:201.186267pt;}
.y18c{bottom:201.717467pt;}
.y102{bottom:202.489600pt;}
.y28{bottom:203.277600pt;}
.yb9{bottom:205.150933pt;}
.y43{bottom:205.817600pt;}
.y13d{bottom:212.516267pt;}
.y85{bottom:213.817600pt;}
.y70{bottom:214.484267pt;}
.y18b{bottom:215.049467pt;}
.y101{bottom:215.821600pt;}
.y27{bottom:216.609600pt;}
.yb8{bottom:218.484267pt;}
.y42{bottom:219.150933pt;}
.y13c{bottom:223.846267pt;}
.y84{bottom:227.152267pt;}
.y6f{bottom:227.818933pt;}
.y18a{bottom:228.381467pt;}
.y100{bottom:229.153600pt;}
.y26{bottom:229.945600pt;}
.yb7{bottom:231.820267pt;}
.y41{bottom:232.486933pt;}
.y13b{bottom:235.176267pt;}
.y83{bottom:240.484267pt;}
.y6e{bottom:241.150933pt;}
.y189{bottom:241.713467pt;}
.yff{bottom:242.485600pt;}
.y25{bottom:243.277600pt;}
.yb6{bottom:245.152267pt;}
.y40{bottom:245.818933pt;}
.y13a{bottom:246.506267pt;}
.y82{bottom:253.816267pt;}
.y6d{bottom:254.484267pt;}
.y188{bottom:255.045467pt;}
.yfe{bottom:255.817600pt;}
.y24{bottom:256.609600pt;}
.y139{bottom:257.836267pt;}
.yb5{bottom:258.484267pt;}
.y3f{bottom:259.150933pt;}
.y6c{bottom:267.821600pt;}
.y187{bottom:268.377467pt;}
.yfd{bottom:269.152267pt;}
.y138{bottom:269.166267pt;}
.y23{bottom:269.942933pt;}
.yb4{bottom:271.817600pt;}
.y3e{bottom:272.486933pt;}
.y137{bottom:280.496267pt;}
.y6b{bottom:281.153600pt;}
.y186{bottom:281.709467pt;}
.yfc{bottom:282.484267pt;}
.y22{bottom:283.278933pt;}
.yb3{bottom:285.150933pt;}
.y3d{bottom:285.818933pt;}
.y136{bottom:291.826267pt;}
.y6a{bottom:294.485600pt;}
.y185{bottom:295.041467pt;}
.yfb{bottom:295.818933pt;}
.y21{bottom:296.610933pt;}
.y98{bottom:297.968133pt;}
.yb2{bottom:298.484267pt;}
.y3c{bottom:299.150933pt;}
.y135{bottom:303.156267pt;}
.y69{bottom:307.817600pt;}
.y184{bottom:308.374800pt;}
.yfa{bottom:309.150933pt;}
.y20{bottom:309.942933pt;}
.y97{bottom:311.301467pt;}
.yb1{bottom:311.817600pt;}
.y3b{bottom:312.488267pt;}
.y134{bottom:314.486267pt;}
.y68{bottom:321.152267pt;}
.yf9{bottom:322.482933pt;}
.y1f{bottom:323.276267pt;}
.y96{bottom:324.634800pt;}
.yb0{bottom:325.150933pt;}
.y3a{bottom:325.820267pt;}
.y133{bottom:325.822933pt;}
.y67{bottom:334.484267pt;}
.y183{bottom:335.189600pt;}
.y1e{bottom:336.609600pt;}
.y132{bottom:337.152933pt;}
.y95{bottom:337.968133pt;}
.yaf{bottom:338.484267pt;}
.y39{bottom:339.152267pt;}
.y182{bottom:346.519600pt;}
.y66{bottom:347.821600pt;}
.y131{bottom:348.516267pt;}
.y1d{bottom:349.942933pt;}
.y94{bottom:351.302800pt;}
.yf8{bottom:351.818933pt;}
.yae{bottom:351.820267pt;}
.y38{bottom:352.484267pt;}
.y181{bottom:357.849600pt;}
.y130{bottom:359.846267pt;}
.y65{bottom:361.153600pt;}
.y1c{bottom:363.276267pt;}
.y93{bottom:364.634800pt;}
.yf7{bottom:365.150933pt;}
.yad{bottom:365.152267pt;}
.y37{bottom:365.816267pt;}
.y180{bottom:369.179600pt;}
.y12f{bottom:371.176267pt;}
.y64{bottom:374.485600pt;}
.y1b{bottom:376.609600pt;}
.y92{bottom:377.968133pt;}
.yac{bottom:378.484267pt;}
.yf6{bottom:378.486933pt;}
.y17f{bottom:380.509600pt;}
.y12e{bottom:382.506267pt;}
.y63{bottom:387.817600pt;}
.y1a{bottom:389.942933pt;}
.y91{bottom:391.301467pt;}
.yab{bottom:391.817600pt;}
.yf5{bottom:391.818933pt;}
.y17e{bottom:391.839600pt;}
.y12d{bottom:393.836267pt;}
.y62{bottom:401.150933pt;}
.y17d{bottom:403.169600pt;}
.y19{bottom:403.276267pt;}
.y90{bottom:404.633467pt;}
.yf4{bottom:405.150933pt;}
.yaa{bottom:405.153600pt;}
.y12c{bottom:405.166267pt;}
.y56{bottom:411.569467pt;}
.y61{bottom:414.488267pt;}
.y17c{bottom:414.499600pt;}
.y12b{bottom:416.496267pt;}
.y18{bottom:416.609600pt;}
.ya9{bottom:418.485600pt;}
.yf3{bottom:418.486933pt;}
.y55{bottom:424.901467pt;}
.y17b{bottom:425.829600pt;}
.y60{bottom:427.820267pt;}
.y12a{bottom:427.826267pt;}
.y17{bottom:429.942933pt;}
.ya8{bottom:431.817600pt;}
.yf2{bottom:431.818933pt;}
.y17a{bottom:437.159600pt;}
.y54{bottom:438.234800pt;}
.y129{bottom:439.156267pt;}
.y5f{bottom:441.152267pt;}
.y16{bottom:443.274933pt;}
.yf1{bottom:445.150933pt;}
.ya7{bottom:445.154933pt;}
.y179{bottom:448.489600pt;}
.y128{bottom:450.486267pt;}
.y53{bottom:451.573467pt;}
.y5e{bottom:454.484267pt;}
.yf0{bottom:458.482933pt;}
.ya6{bottom:458.486933pt;}
.y178{bottom:459.819600pt;}
.y127{bottom:461.829600pt;}
.y52{bottom:464.905467pt;}
.y5d{bottom:467.817600pt;}
.y177{bottom:471.159600pt;}
.yef{bottom:471.816267pt;}
.ya5{bottom:471.818933pt;}
.y126{bottom:473.159600pt;}
.y51{bottom:478.237467pt;}
.y5c{bottom:481.150933pt;}
.y176{bottom:482.489600pt;}
.y125{bottom:484.489600pt;}
.ya4{bottom:485.150933pt;}
.y15{bottom:485.277600pt;}
.y50{bottom:491.569467pt;}
.y175{bottom:493.819600pt;}
.y5b{bottom:494.484267pt;}
.y124{bottom:495.819600pt;}
.ya3{bottom:498.484267pt;}
.y14{bottom:499.949600pt;}
.yee{bottom:501.152267pt;}
.y4f{bottom:504.901467pt;}
.y174{bottom:505.159600pt;}
.y123{bottom:507.169600pt;}
.y5a{bottom:507.817600pt;}
.ya2{bottom:511.817600pt;}
.yed{bottom:514.484267pt;}
.y13{bottom:514.613600pt;}
.y173{bottom:516.489600pt;}
.y4e{bottom:518.233467pt;}
.y122{bottom:518.499600pt;}
.y59{bottom:521.152267pt;}
.ya1{bottom:525.152267pt;}
.yec{bottom:527.817600pt;}
.y172{bottom:527.819600pt;}
.y12{bottom:529.277600pt;}
.y121{bottom:529.829600pt;}
.y58{bottom:534.484267pt;}
.ya0{bottom:538.484267pt;}
.yeb{bottom:541.154933pt;}
.y120{bottom:541.159600pt;}
.y171{bottom:542.549600pt;}
.y11{bottom:543.946933pt;}
.y57{bottom:547.816267pt;}
.y170{bottom:550.509600pt;}
.y9f{bottom:551.817600pt;}
.y11f{bottom:552.489600pt;}
.yea{bottom:554.486933pt;}
.y10{bottom:558.610933pt;}
.y16f{bottom:561.839600pt;}
.y11e{bottom:563.819600pt;}
.y9e{bottom:565.150933pt;}
.ye9{bottom:567.818933pt;}
.y16e{bottom:573.169600pt;}
.yf{bottom:573.277600pt;}
.y11d{bottom:575.162933pt;}
.y9d{bottom:578.485600pt;}
.ye8{bottom:581.150933pt;}
.y16d{bottom:584.499600pt;}
.y11c{bottom:586.492933pt;}
.ye{bottom:587.946933pt;}
.y9c{bottom:591.817600pt;}
.ye7{bottom:594.485600pt;}
.y81{bottom:595.410933pt;}
.y16c{bottom:595.829600pt;}
.y11b{bottom:597.822933pt;}
.yd{bottom:602.610933pt;}
.y9b{bottom:605.150933pt;}
.y16b{bottom:607.159600pt;}
.ye6{bottom:607.817600pt;}
.y80{bottom:608.742933pt;}
.y11a{bottom:609.152933pt;}
.yc{bottom:617.277600pt;}
.y9a{bottom:618.484267pt;}
.y16a{bottom:618.489600pt;}
.y119{bottom:620.482933pt;}
.ye5{bottom:621.150933pt;}
.y7f{bottom:622.074933pt;}
.y169{bottom:629.819600pt;}
.y99{bottom:631.816267pt;}
.yb{bottom:631.944267pt;}
.ye4{bottom:634.486933pt;}
.y7e{bottom:635.409600pt;}
.y168{bottom:641.156267pt;}
.ya{bottom:646.608267pt;}
.ye3{bottom:647.818933pt;}
.y7d{bottom:648.741600pt;}
.y167{bottom:652.486267pt;}
.ye2{bottom:661.150933pt;}
.y7c{bottom:662.073600pt;}
.y166{bottom:663.822933pt;}
.y34{bottom:672.933333pt;}
.y9{bottom:673.274933pt;}
.ye1{bottom:674.484267pt;}
.y118{bottom:674.485600pt;}
.y165{bottom:675.152933pt;}
.yca{bottom:681.549733pt;}
.y164{bottom:686.526267pt;}
.ye0{bottom:687.817600pt;}
.y8{bottom:689.274933pt;}
.y33{bottom:691.600000pt;}
.yc9{bottom:694.881733pt;}
.y163{bottom:697.856267pt;}
.ydf{bottom:701.152267pt;}
.y117{bottom:701.153600pt;}
.y7{bottom:705.274933pt;}
.yc8{bottom:708.213733pt;}
.y162{bottom:709.186267pt;}
.y32{bottom:710.266667pt;}
.yde{bottom:714.484267pt;}
.y116{bottom:714.485600pt;}
.y161{bottom:720.516267pt;}
.yc7{bottom:721.545733pt;}
.ydd{bottom:727.817600pt;}
.y160{bottom:731.846267pt;}
.y6{bottom:734.597600pt;}
.ydc{bottom:741.152267pt;}
.y115{bottom:741.153600pt;}
.y15f{bottom:743.176267pt;}
.ydb{bottom:754.484267pt;}
.y114{bottom:754.485600pt;}
.y15e{bottom:754.506267pt;}
.y15d{bottom:765.836267pt;}
.yda{bottom:767.817600pt;}
.y5{bottom:774.602933pt;}
.y15c{bottom:777.166267pt;}
.y113{bottom:781.150933pt;}
.yd9{bottom:781.157600pt;}
.y15b{bottom:788.496267pt;}
.y112{bottom:794.485600pt;}
.yd8{bottom:794.489600pt;}
.y15a{bottom:799.826267pt;}
.y111{bottom:807.817600pt;}
.yd7{bottom:807.821600pt;}
.y159{bottom:811.156267pt;}
.y4{bottom:814.608267pt;}
.yd6{bottom:821.153600pt;}
.y158{bottom:822.486267pt;}
.y35{bottom:823.475200pt;}
.y19e{bottom:829.821600pt;}
.y157{bottom:833.819600pt;}
.yd5{bottom:834.485600pt;}
.y19d{bottom:843.153600pt;}
.y156{bottom:845.179600pt;}
.yd4{bottom:847.817600pt;}
.y19c{bottom:856.485600pt;}
.y155{bottom:856.509600pt;}
.yd3{bottom:861.150933pt;}
.y154{bottom:867.839600pt;}
.y19b{bottom:869.817600pt;}
.yd2{bottom:874.484267pt;}
.y153{bottom:879.169600pt;}
.y19a{bottom:883.149600pt;}
.y110{bottom:887.817600pt;}
.yd1{bottom:887.824267pt;}
.y152{bottom:890.499600pt;}
.y10f{bottom:901.153600pt;}
.yd0{bottom:901.156267pt;}
.y151{bottom:901.829600pt;}
.y199{bottom:902.486933pt;}
.y150{bottom:913.159600pt;}
.y10e{bottom:914.485600pt;}
.ycf{bottom:914.488267pt;}
.y198{bottom:915.818933pt;}
.y14f{bottom:924.489600pt;}
.y10d{bottom:927.817600pt;}
.yce{bottom:927.820267pt;}
.y197{bottom:935.150933pt;}
.y14e{bottom:935.819600pt;}
.y10c{bottom:941.150933pt;}
.ycd{bottom:941.152267pt;}
.y14d{bottom:947.156267pt;}
.y196{bottom:954.482933pt;}
.ycc{bottom:954.484267pt;}
.y14c{bottom:958.486267pt;}
.ycb{bottom:967.816267pt;}
.y14b{bottom:969.816267pt;}
.y36{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.h1b{height:15.360000pt;}
.h27{height:20.644000pt;}
.h11{height:21.193555pt;}
.h1c{height:24.972288pt;}
.h14{height:30.687500pt;}
.h25{height:31.760000pt;}
.h13{height:32.605469pt;}
.h1d{height:33.331200pt;}
.h1f{height:33.744000pt;}
.h26{height:34.244000pt;}
.hb{height:34.523438pt;}
.h3{height:34.854167pt;}
.h12{height:36.585555pt;}
.hd{height:38.112000pt;}
.h1e{height:38.253600pt;}
.h2{height:38.359375pt;}
.hc{height:39.189604pt;}
.ha{height:39.200271pt;}
.h9{height:39.210938pt;}
.h4{height:39.318359pt;}
.h20{height:41.060800pt;}
.h17{height:41.066133pt;}
.h21{height:41.068000pt;}
.h16{height:41.071467pt;}
.hf{height:41.076800pt;}
.h10{height:41.082133pt;}
.h23{height:41.084000pt;}
.he{height:41.087467pt;}
.h18{height:41.092800pt;}
.h19{height:41.094667pt;}
.h1a{height:41.100000pt;}
.h24{height:42.195312pt;}
.h6{height:43.567708pt;}
.h8{height:46.452344pt;}
.h7{height:46.452877pt;}
.h22{height:47.924479pt;}
.h15{height:78.421875pt;}
.h5{height:113.276042pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w2{width:24.192000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:17.663200pt;}
.x2{left:54.392400pt;}
.x6{left:78.178800pt;}
.x7{left:83.757467pt;}
.x8{left:125.291333pt;}
.x4{left:207.516800pt;}
.xd{left:212.577600pt;}
.x5{left:223.512400pt;}
.xa{left:262.550667pt;}
.xe{left:266.976667pt;}
.xc{left:286.741867pt;}
.x3{left:519.632533pt;}
.x9{left:732.628800pt;}
.x1{left:733.540267pt;}
}




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