
    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_8fedf969fc49db47da884c9b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_7c5f21de923f6ee4c9a1942c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_7d3b50e4bb82498ad9bb8ce9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.364746;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_47108ebfcfee665f9be94471.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_503c097a37a93c09c2deb943.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_2a84f89b28b91d8a9032b5fa.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_93fbda459c4994c75ebe4d98.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_bc51797a93cd7dfdc24c857a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_4b4c444429bbcca05972e3c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_c34d54bd00378a6da06a8da1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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;}
.m10{transform:matrix(0.201327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201327,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.213889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213889,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.221264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221264,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.228022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228022,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.230337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230337,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.241573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241573,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.244253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244253,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.244382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244382,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247159,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247283,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m17{transform:matrix(0.252907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252907,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.261236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261236,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.262755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262755,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.267442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267442,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.284884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284884,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.293210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293210,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.302778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302778,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.331325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331325,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.418478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418478,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.432584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432584,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.485955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485955,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-71.289000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.417500px;}
.v3{vertical-align:2.880600px;}
.ls4a{letter-spacing:-15.421950px;}
.ls39{letter-spacing:-14.573250px;}
.ls4b{letter-spacing:-10.530000px;}
.ls3d{letter-spacing:-9.815250px;}
.ls1c{letter-spacing:-7.582800px;}
.ls3e{letter-spacing:-7.236900px;}
.ls3b{letter-spacing:-6.905250px;}
.ls20{letter-spacing:-6.897000px;}
.ls43{letter-spacing:-6.831000px;}
.ls36{letter-spacing:-6.824100px;}
.ls46{letter-spacing:-6.746700px;}
.ls49{letter-spacing:-6.514800px;}
.ls1e{letter-spacing:-6.138000px;}
.ls35{letter-spacing:-6.135750px;}
.ls45{letter-spacing:-6.075600px;}
.ls15{letter-spacing:-6.067575px;}
.ls4c{letter-spacing:-6.056400px;}
.ls40{letter-spacing:-5.366250px;}
.ls37{letter-spacing:-5.313000px;}
.ls12{letter-spacing:-5.306625px;}
.ls21{letter-spacing:-5.067600px;}
.ls3a{letter-spacing:-4.603500px;}
.ls30{letter-spacing:-4.554000px;}
.ls14{letter-spacing:-4.552350px;}
.ls42{letter-spacing:-4.502250px;}
.ls16{letter-spacing:-4.295250px;}
.ls17{letter-spacing:-3.834600px;}
.ls2e{letter-spacing:-3.834000px;}
.ls3f{letter-spacing:-3.795000px;}
.ls10{letter-spacing:-3.791400px;}
.ls2c{letter-spacing:-3.071250px;}
.lsc{letter-spacing:-3.069000px;}
.lsf{letter-spacing:-3.037125px;}
.ls31{letter-spacing:-3.036000px;}
.ls3c{letter-spacing:-2.898000px;}
.ls38{letter-spacing:-2.796750px;}
.ls41{letter-spacing:-2.328450px;}
.lsb{letter-spacing:-2.303400px;}
.ls4d{letter-spacing:-2.302875px;}
.ls2b{letter-spacing:-2.301750px;}
.ls32{letter-spacing:-2.277000px;}
.lsd{letter-spacing:-2.276175px;}
.lsa{letter-spacing:-2.138850px;}
.ls19{letter-spacing:-1.537800px;}
.ls2d{letter-spacing:-1.532250px;}
.ls34{letter-spacing:-1.518000px;}
.ls1b{letter-spacing:-1.515750px;}
.lse{letter-spacing:-1.515225px;}
.ls47{letter-spacing:-0.841500px;}
.ls2f{letter-spacing:-0.769500px;}
.ls1a{letter-spacing:-0.765600px;}
.ls48{letter-spacing:-0.761100px;}
.ls11{letter-spacing:-0.760950px;}
.ls33{letter-spacing:-0.759000px;}
.ls1d{letter-spacing:-0.637875px;}
.ls13{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.759000px;}
.ls0{letter-spacing:0.760950px;}
.ls7{letter-spacing:0.765600px;}
.ls27{letter-spacing:0.769500px;}
.ls18{letter-spacing:0.769950px;}
.ls3{letter-spacing:1.515225px;}
.ls22{letter-spacing:1.518000px;}
.ls2a{letter-spacing:1.532250px;}
.ls9{letter-spacing:1.537800px;}
.ls1f{letter-spacing:1.555275px;}
.ls4{letter-spacing:2.276175px;}
.ls26{letter-spacing:2.301750px;}
.ls8{letter-spacing:2.303400px;}
.ls24{letter-spacing:3.036000px;}
.ls2{letter-spacing:3.037125px;}
.ls6{letter-spacing:3.069000px;}
.ls29{letter-spacing:3.071250px;}
.ls1{letter-spacing:3.791400px;}
.ls25{letter-spacing:3.795000px;}
.ls5{letter-spacing:3.834600px;}
.ls44{letter-spacing:4.552350px;}
.ls28{letter-spacing:4.603500px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
._20{margin-left:-17.097709px;}
._1f{margin-left:-15.899850px;}
._1c{margin-left:-14.271150px;}
._11{margin-left:-12.985909px;}
._12{margin-left:-11.614500px;}
._e{margin-left:-10.553175px;}
._0{margin-left:-9.411750px;}
._1{margin-left:-8.036700px;}
._1e{margin-left:-6.918941px;}
._c{margin-left:-5.880675px;}
._2{margin-left:-4.205250px;}
._d{margin-left:-2.289525px;}
._3{margin-left:-1.014600px;}
._8{width:1.495200px;}
._b{width:2.710050px;}
._6{width:4.312050px;}
._9{width:5.500200px;}
._14{width:6.556670px;}
._7{width:7.662900px;}
._4{width:8.897775px;}
._f{width:10.760100px;}
._a{width:12.769275px;}
._13{width:14.084250px;}
._10{width:15.919875px;}
._15{width:17.802225px;}
._28{width:18.870580px;}
._5{width:20.745900px;}
._2f{width:21.818925px;}
._27{width:23.379613px;}
._2e{width:24.537750px;}
._1d{width:25.665375px;}
._2d{width:26.698050px;}
._29{width:27.985500px;}
._2b{width:29.308575px;}
._25{width:31.846425px;}
._2c{width:34.519425px;}
._2a{width:35.640000px;}
._1a{width:39.118200px;}
._21{width:41.350074px;}
._1b{width:43.217591px;}
._23{width:45.153363px;}
._22{width:46.268763px;}
._19{width:48.421591px;}
._32{width:49.945737px;}
._26{width:51.522830px;}
._24{width:54.677316px;}
._30{width:58.345818px;}
._31{width:60.952500px;}
._16{width:63.833025px;}
._17{width:65.134650px;}
._18{width:67.597725px;}
._35{width:154.171002px;}
._33{width:158.248050px;}
._34{width:159.272877px;}
._36{width:164.649300px;}
.fc0{color:transparent;}
.fs10{font-size:41.250000px;}
.fs7{font-size:60.750000px;}
.fsa{font-size:61.500000px;}
.fs4{font-size:62.250000px;}
.fs3{font-size:63.000000px;}
.fs6{font-size:64.500000px;}
.fs5{font-size:65.250000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:66.750000px;}
.fsb{font-size:67.500000px;}
.fsf{font-size:68.250000px;}
.fsc{font-size:69.000000px;}
.fs8{font-size:71.250000px;}
.fs9{font-size:72.000000px;}
.fs0{font-size:73.500000px;}
.fs11{font-size:84.000000px;}
.fsd{font-size:84.750000px;}
.fse{font-size:86.250000px;}
.y0{bottom:0.000000px;}
.ye0{bottom:90.163650px;}
.y71{bottom:91.946603px;}
.y36{bottom:98.801377px;}
.y70{bottom:109.952415px;}
.y35{bottom:116.807190px;}
.y6f{bottom:127.958228px;}
.y34{bottom:135.163440px;}
.ydf{bottom:144.512250px;}
.ya9{bottom:144.524550px;}
.y6e{bottom:146.314478px;}
.y33{bottom:153.519690px;}
.yde{bottom:162.517875px;}
.y6d{bottom:165.037853px;}
.y32{bottom:172.243065px;}
.ydd{bottom:180.523500px;}
.ya7{bottom:181.238775px;}
.ya8{bottom:181.244100px;}
.y6c{bottom:183.043665px;}
.y6b{bottom:183.044490px;}
.y31{bottom:190.245353px;}
.ydc{bottom:198.529125px;}
.ya6{bottom:199.598775px;}
.y6a{bottom:201.767865px;}
.y30{bottom:208.601602px;}
.ydb{bottom:217.232250px;}
.ya5{bottom:217.604400px;}
.y69{bottom:220.124115px;}
.y2f{bottom:226.607415px;}
.yda{bottom:235.237875px;}
.ya4{bottom:235.958775px;}
.y68{bottom:237.755190px;}
.y2d{bottom:244.956802px;}
.y2e{bottom:244.963665px;}
.yd9{bottom:253.597875px;}
.ya3{bottom:254.318775px;}
.y67{bottom:255.761002px;}
.y2c{bottom:262.967865px;}
.yd8{bottom:271.957875px;}
.ya2{bottom:272.324400px;}
.y66{bottom:273.766815px;}
.y2b{bottom:281.324115px;}
.yd7{bottom:289.963500px;}
.ya1{bottom:290.684400px;}
.y65{bottom:292.119690px;}
.y2a{bottom:299.312565px;}
.yd6{bottom:308.323500px;}
.y9f{bottom:309.043800px;}
.ya0{bottom:309.044250px;}
.y64{bottom:310.125502px;}
.y29{bottom:317.314065px;}
.yd5{bottom:326.683500px;}
.y9e{bottom:327.403800px;}
.y63{bottom:328.481753px;}
.y28{bottom:335.678565px;}
.yd4{bottom:345.043500px;}
.y9d{bottom:345.763800px;}
.y9c{bottom:345.779925px;}
.y62{bottom:347.205128px;}
.y27{bottom:354.043065px;}
.yd3{bottom:363.403500px;}
.y9b{bottom:364.139925px;}
.y61{bottom:364.843815px;}
.y60{bottom:364.847265px;}
.yd2{bottom:381.763350px;}
.y9a{bottom:382.854300px;}
.y5f{bottom:383.203515px;}
.yd1{bottom:400.123350px;}
.y99{bottom:401.214300px;}
.y5e{bottom:401.563365px;}
.y26{bottom:409.483365px;}
.yd0{bottom:418.837725px;}
.y5d{bottom:419.563965px;}
.y98{bottom:419.574300px;}
.ycf{bottom:437.197725px;}
.y97{bottom:438.288675px;}
.y5c{bottom:438.643815px;}
.y25{bottom:445.843815px;}
.y96{bottom:456.648675px;}
.y5b{bottom:457.003665px;}
.y24{bottom:464.209703px;}
.ycd{bottom:474.643200px;}
.yce{bottom:474.643350px;}
.y95{bottom:475.363050px;}
.y23{bottom:483.283515px;}
.ycc{bottom:493.003200px;}
.y22{bottom:501.284115px;}
.ycb{bottom:511.359900px;}
.y94{bottom:512.083050px;}
.y93{bottom:512.089425px;}
.y5a{bottom:514.243515px;}
.y21{bottom:519.623940px;}
.yca{bottom:529.724400px;}
.y92{bottom:530.803800px;}
.y20{bottom:537.629752px;}
.yc8{bottom:548.079450px;}
.yc9{bottom:548.084250px;}
.y59{bottom:549.161902px;}
.y91{bottom:549.163650px;}
.yc7{bottom:566.443950px;}
.y90{bottom:567.166500px;}
.y58{bottom:567.518153px;}
.y1f{bottom:574.358940px;}
.yc6{bottom:585.163050px;}
.y57{bottom:585.521528px;}
.y1e{bottom:592.364753px;}
.y122{bottom:599.025180px;}
.y56{bottom:603.527340px;}
.y1d{bottom:610.370565px;}
.y55{bottom:621.883590px;}
.yc5{bottom:621.884250px;}
.y8f{bottom:622.243500px;}
.y1c{bottom:628.726815px;}
.yff{bottom:635.385667px;}
.y121{bottom:636.469493px;}
.y54{bottom:640.239840px;}
.y8e{bottom:640.964250px;}
.y1b{bottom:647.080440px;}
.yfe{bottom:653.741917px;}
.yc4{bottom:658.603200px;}
.y53{bottom:658.954815px;}
.y8c{bottom:659.323800px;}
.y8d{bottom:659.324100px;}
.y1a{bottom:665.800365px;}
.yfd{bottom:672.098167px;}
.y11f{bottom:672.461655px;}
.y120{bottom:672.464430px;}
.yc3{bottom:676.429275px;}
.y52{bottom:677.311065px;}
.y8b{bottom:677.701275px;}
.y19{bottom:684.523740px;}
.yfc{bottom:690.103980px;}
.y11d{bottom:691.181580px;}
.y11e{bottom:691.185030px;}
.yc2{bottom:694.974900px;}
.y51{bottom:696.034440px;}
.y8a{bottom:696.061275px;}
.y18{bottom:702.879990px;}
.yfa{bottom:708.822105px;}
.yfb{bottom:708.824730px;}
.y11c{bottom:709.904955px;}
.yc1{bottom:713.334900px;}
.y89{bottom:714.421275px;}
.y50{bottom:715.108252px;}
.y17{bottom:721.609627px;}
.yf9{bottom:727.545480px;}
.y11b{bottom:727.910767px;}
.yc0{bottom:732.049275px;}
.y4f{bottom:733.114065px;}
.y88{bottom:733.135650px;}
.y16{bottom:739.965877px;}
.yf8{bottom:746.268855px;}
.y119{bottom:746.975092px;}
.y11a{bottom:746.984580px;}
.ybf{bottom:750.763650px;}
.y4e{bottom:751.470315px;}
.y87{bottom:751.495650px;}
.y15{bottom:757.971690px;}
.yf7{bottom:764.992230px;}
.y118{bottom:765.698467px;}
.ybe{bottom:769.123650px;}
.y4d{bottom:769.826565px;}
.y86{bottom:769.855650px;}
.y14{bottom:776.695065px;}
.yf6{bottom:783.348480px;}
.y117{bottom:783.704280px;}
.ybd{bottom:787.483500px;}
.y4c{bottom:788.182815px;}
.y85{bottom:788.570025px;}
.y13{bottom:795.051315px;}
.yf5{bottom:801.704730px;}
.y116{bottom:802.424205px;}
.ybc{bottom:805.848675px;}
.y4b{bottom:806.539065px;}
.y84{bottom:806.575650px;}
.y12{bottom:813.407565px;}
.yf4{bottom:820.061355px;}
.y115{bottom:820.780455px;}
.ybb{bottom:824.563050px;}
.y4a{bottom:825.262440px;}
.y83{bottom:825.290025px;}
.y11{bottom:831.763815px;}
.yf3{bottom:838.784730px;}
.y114{bottom:839.500455px;}
.yba{bottom:842.923050px;}
.y49{bottom:843.268253px;}
.y82{bottom:844.004400px;}
.y10{bottom:850.127115px;}
.yf2{bottom:856.790543px;}
.y113{bottom:857.856705px;}
.yb9{bottom:861.283050px;}
.y48{bottom:861.624502px;}
.y81{bottom:862.364400px;}
.yf{bottom:868.483365px;}
.yf1{bottom:875.146793px;}
.y112{bottom:875.862517px;}
.yb8{bottom:879.643050px;}
.y47{bottom:880.347877px;}
.y80{bottom:880.730175px;}
.ye{bottom:886.843403px;}
.yf0{bottom:893.152605px;}
.y111{bottom:893.868330px;}
.y46{bottom:898.353690px;}
.yb7{bottom:898.357425px;}
.y7f{bottom:899.090175px;}
.yd{bottom:904.849215px;}
.yef{bottom:911.508855px;}
.y110{bottom:912.224580px;}
.y45{bottom:916.709940px;}
.yb6{bottom:916.717425px;}
.y7e{bottom:917.450175px;}
.yc{bottom:923.572590px;}
.yee{bottom:929.865105px;}
.y10f{bottom:930.947955px;}
.y12a{bottom:934.111320px;}
.yb5{bottom:935.431800px;}
.y44{bottom:935.433315px;}
.y7d{bottom:936.164550px;}
.yb{bottom:941.928840px;}
.yed{bottom:948.588480px;}
.y10e{bottom:949.304205px;}
.y129{bottom:952.842570px;}
.y43{bottom:953.789565px;}
.yb4{bottom:953.791800px;}
.y7c{bottom:954.524550px;}
.ya{bottom:960.285090px;}
.yec{bottom:966.944730px;}
.y10d{bottom:967.660455px;}
.y127{bottom:971.191770px;}
.y128{bottom:971.922420px;}
.y42{bottom:972.145815px;}
.yb3{bottom:972.151800px;}
.y7b{bottom:972.884250px;}
.y9{bottom:979.008465px;}
.yeb{bottom:985.668105px;}
.y10b{bottom:986.381205px;}
.y10c{bottom:986.383830px;}
.y126{bottom:989.929095px;}
.y41{bottom:990.869190px;}
.yb2{bottom:991.237425px;}
.y7a{bottom:991.603350px;}
.y8{bottom:997.731840px;}
.yea{bottom:1004.391480px;}
.y10a{bottom:1005.111630px;}
.y125{bottom:1008.289095px;}
.yb1{bottom:1009.249125px;}
.y40{bottom:1009.592565px;}
.y79{bottom:1009.963200px;}
.y7{bottom:1016.088090px;}
.y124{bottom:1027.003470px;}
.y3f{bottom:1027.598377px;}
.y78{bottom:1028.322900px;}
.y6{bottom:1034.811465px;}
.ye9{bottom:1041.101355px;}
.y109{bottom:1041.830318px;}
.y3e{bottom:1046.321753px;}
.yaf{bottom:1046.323350px;}
.yb0{bottom:1046.323500px;}
.y5{bottom:1053.167715px;}
.ye8{bottom:1059.824730px;}
.y108{bottom:1060.904130px;}
.y107{bottom:1060.907580px;}
.y3d{bottom:1064.327565px;}
.y77{bottom:1064.683350px;}
.y4{bottom:1071.523965px;}
.ye7{bottom:1078.190617px;}
.y106{bottom:1079.263830px;}
.y3c{bottom:1082.679690px;}
.yae{bottom:1082.689800px;}
.y3{bottom:1090.243065px;}
.ye6{bottom:1097.264430px;}
.y105{bottom:1097.984580px;}
.y3b{bottom:1101.403065px;}
.yad{bottom:1101.763800px;}
.y76{bottom:1101.770025px;}
.y2{bottom:1108.602765px;}
.ye5{bottom:1115.265030px;}
.ye4{bottom:1115.268630px;}
.y104{bottom:1116.344430px;}
.y3a{bottom:1119.759315px;}
.yac{bottom:1120.482900px;}
.y75{bottom:1120.484400px;}
.y123{bottom:1132.483770px;}
.ye3{bottom:1133.624880px;}
.y103{bottom:1134.704280px;}
.y39{bottom:1138.482690px;}
.y74{bottom:1138.844400px;}
.ye2{bottom:1151.984580px;}
.y102{bottom:1153.063980px;}
.y38{bottom:1156.488502px;}
.y73{bottom:1157.569725px;}
.yab{bottom:1157.924250px;}
.ye1{bottom:1169.983530px;}
.y101{bottom:1171.423830px;}
.y1{bottom:1173.044265px;}
.y37{bottom:1174.844752px;}
.y72{bottom:1176.284100px;}
.yaa{bottom:1176.286050px;}
.y100{bottom:1209.224430px;}
.h20{height:43.022461px;}
.hc{height:63.360352px;}
.h12{height:64.142578px;}
.h9{height:64.924805px;}
.h8{height:65.707031px;}
.hb{height:67.271484px;}
.ha{height:68.053711px;}
.h4{height:68.835938px;}
.h3{height:69.618164px;}
.h21{height:69.620864px;}
.hf{height:69.627914px;}
.h6{height:69.628664px;}
.h1f{height:69.631064px;}
.h13{height:69.631664px;}
.h5{height:69.631964px;}
.hd{height:69.634664px;}
.he{height:69.651764px;}
.h14{height:69.652664px;}
.h7{height:69.697664px;}
.h16{height:70.400391px;}
.h10{height:70.415039px;}
.h19{height:70.422291px;}
.h1c{height:70.445391px;}
.h1b{height:71.182617px;}
.h26{height:71.793591px;}
.h25{height:71.817891px;}
.h17{height:71.964844px;}
.h27{height:73.322991px;}
.h28{height:73.329591px;}
.h11{height:75.093750px;}
.h2{height:76.658203px;}
.h24{height:87.609375px;}
.h18{height:88.391602px;}
.h1a{height:89.956055px;}
.h1e{height:1255.500000px;}
.h1d{height:1255.500030px;}
.h15{height:1258.500000px;}
.h1{height:1260.000000px;}
.h0{height:1260.000015px;}
.h22{height:1262.999970px;}
.h23{height:1263.000000px;}
.w0{width:847.499550px;}
.w1{width:847.500000px;}
.w4{width:850.499550px;}
.w5{width:850.500000px;}
.w7{width:852.000000px;}
.w6{width:852.000120px;}
.w2{width:859.499550px;}
.w3{width:859.500000px;}
.x0{left:0.000000px;}
.x5b{left:62.777970px;}
.x24{left:64.290900px;}
.x20{left:65.349000px;}
.x1b{left:66.435300px;}
.x5{left:68.084400px;}
.x3{left:69.157350px;}
.x1{left:70.226100px;}
.x27{left:108.198600px;}
.x23{left:109.269900px;}
.x4{left:111.280950px;}
.x58{left:114.616020px;}
.xb{left:122.080200px;}
.x1f{left:129.075450px;}
.xd{left:135.392100px;}
.x25{left:138.076500px;}
.x26{left:151.036050px;}
.x21{left:157.156500px;}
.xc{left:160.956150px;}
.x2{left:171.033600px;}
.x22{left:177.315900px;}
.x3e{left:197.355300px;}
.x3b{left:201.315300px;}
.x5d{left:233.416620px;}
.x3f{left:238.036500px;}
.x3c{left:242.355900px;}
.x5e{left:262.577070px;}
.x7{left:280.120200px;}
.x54{left:281.235900px;}
.x2a{left:287.835600px;}
.x1e{left:289.275900px;}
.x1c{left:290.355300px;}
.x28{left:294.315300px;}
.x29{left:299.356350px;}
.x55{left:306.075450px;}
.x3d{left:312.195900px;}
.x40{left:318.675600px;}
.x8{left:321.161700px;}
.x56{left:338.116500px;}
.x9{left:340.600800px;}
.xa{left:379.120650px;}
.x1d{left:393.676800px;}
.x59{left:397.936320px;}
.x57{left:400.096770px;}
.x41{left:401.116050px;}
.x6{left:404.322000px;}
.x5a{left:448.696470px;}
.x38{left:450.564750px;}
.x36{left:451.624987px;}
.x32{left:452.704350px;}
.x10{left:453.966450px;}
.xe{left:455.088000px;}
.x15{left:472.358850px;}
.x37{left:494.476950px;}
.x11{left:496.387950px;}
.xf{left:497.592000px;}
.x31{left:508.515750px;}
.x4e{left:538.276500px;}
.x51{left:546.196500px;}
.x4f{left:552.315300px;}
.x19{left:553.359900px;}
.x2c{left:559.996050px;}
.x45{left:562.036500px;}
.x1a{left:565.246500px;}
.x2d{left:576.556350px;}
.x46{left:579.676200px;}
.x47{left:581.836650px;}
.x2f{left:585.555750px;}
.x4a{left:593.355900px;}
.x30{left:599.955600px;}
.x4b{left:612.076500px;}
.x52{left:621.435300px;}
.x48{left:623.595750px;}
.x43{left:627.555750px;}
.x53{left:633.676200px;}
.x4c{left:654.196500px;}
.x4d{left:661.396350px;}
.x39{left:665.115450px;}
.x33{left:666.555750px;}
.x50{left:674.716800px;}
.x3a{left:689.595750px;}
.x2b{left:696.436350px;}
.x34{left:697.876650px;}
.x49{left:704.595750px;}
.x44{left:706.395300px;}
.x35{left:709.395750px;}
.x2e{left:712.996650px;}
.x12{left:719.681850px;}
.x16{left:725.801400px;}
.x42{left:732.315900px;}
.x13{left:735.519900px;}
.x17{left:740.192400px;}
.x18{left:757.129200px;}
.x14{left:775.840200px;}
.x5c{left:782.776920px;}
@media print{
.v1{vertical-align:-63.368000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.260000pt;}
.v3{vertical-align:2.560533pt;}
.ls4a{letter-spacing:-13.708400pt;}
.ls39{letter-spacing:-12.954000pt;}
.ls4b{letter-spacing:-9.360000pt;}
.ls3d{letter-spacing:-8.724667pt;}
.ls1c{letter-spacing:-6.740267pt;}
.ls3e{letter-spacing:-6.432800pt;}
.ls3b{letter-spacing:-6.138000pt;}
.ls20{letter-spacing:-6.130667pt;}
.ls43{letter-spacing:-6.072000pt;}
.ls36{letter-spacing:-6.065867pt;}
.ls46{letter-spacing:-5.997067pt;}
.ls49{letter-spacing:-5.790933pt;}
.ls1e{letter-spacing:-5.456000pt;}
.ls35{letter-spacing:-5.454000pt;}
.ls45{letter-spacing:-5.400533pt;}
.ls15{letter-spacing:-5.393400pt;}
.ls4c{letter-spacing:-5.383467pt;}
.ls40{letter-spacing:-4.770000pt;}
.ls37{letter-spacing:-4.722667pt;}
.ls12{letter-spacing:-4.717000pt;}
.ls21{letter-spacing:-4.504533pt;}
.ls3a{letter-spacing:-4.092000pt;}
.ls30{letter-spacing:-4.048000pt;}
.ls14{letter-spacing:-4.046533pt;}
.ls42{letter-spacing:-4.002000pt;}
.ls16{letter-spacing:-3.818000pt;}
.ls17{letter-spacing:-3.408533pt;}
.ls2e{letter-spacing:-3.408000pt;}
.ls3f{letter-spacing:-3.373333pt;}
.ls10{letter-spacing:-3.370133pt;}
.ls2c{letter-spacing:-2.730000pt;}
.lsc{letter-spacing:-2.728000pt;}
.lsf{letter-spacing:-2.699667pt;}
.ls31{letter-spacing:-2.698667pt;}
.ls3c{letter-spacing:-2.576000pt;}
.ls38{letter-spacing:-2.486000pt;}
.ls41{letter-spacing:-2.069733pt;}
.lsb{letter-spacing:-2.047467pt;}
.ls4d{letter-spacing:-2.047000pt;}
.ls2b{letter-spacing:-2.046000pt;}
.ls32{letter-spacing:-2.024000pt;}
.lsd{letter-spacing:-2.023267pt;}
.lsa{letter-spacing:-1.901200pt;}
.ls19{letter-spacing:-1.366933pt;}
.ls2d{letter-spacing:-1.362000pt;}
.ls34{letter-spacing:-1.349333pt;}
.ls1b{letter-spacing:-1.347333pt;}
.lse{letter-spacing:-1.346867pt;}
.ls47{letter-spacing:-0.748000pt;}
.ls2f{letter-spacing:-0.684000pt;}
.ls1a{letter-spacing:-0.680533pt;}
.ls48{letter-spacing:-0.676533pt;}
.ls11{letter-spacing:-0.676400pt;}
.ls33{letter-spacing:-0.674667pt;}
.ls1d{letter-spacing:-0.567000pt;}
.ls13{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.674667pt;}
.ls0{letter-spacing:0.676400pt;}
.ls7{letter-spacing:0.680533pt;}
.ls27{letter-spacing:0.684000pt;}
.ls18{letter-spacing:0.684400pt;}
.ls3{letter-spacing:1.346867pt;}
.ls22{letter-spacing:1.349333pt;}
.ls2a{letter-spacing:1.362000pt;}
.ls9{letter-spacing:1.366933pt;}
.ls1f{letter-spacing:1.382467pt;}
.ls4{letter-spacing:2.023267pt;}
.ls26{letter-spacing:2.046000pt;}
.ls8{letter-spacing:2.047467pt;}
.ls24{letter-spacing:2.698667pt;}
.ls2{letter-spacing:2.699667pt;}
.ls6{letter-spacing:2.728000pt;}
.ls29{letter-spacing:2.730000pt;}
.ls1{letter-spacing:3.370133pt;}
.ls25{letter-spacing:3.373333pt;}
.ls5{letter-spacing:3.408533pt;}
.ls44{letter-spacing:4.046533pt;}
.ls28{letter-spacing:4.092000pt;}
.ws0{word-spacing:0.000000pt;}
._20{margin-left:-15.197964pt;}
._1f{margin-left:-14.133200pt;}
._1c{margin-left:-12.685467pt;}
._11{margin-left:-11.543030pt;}
._12{margin-left:-10.324000pt;}
._e{margin-left:-9.380600pt;}
._0{margin-left:-8.366000pt;}
._1{margin-left:-7.143733pt;}
._1e{margin-left:-6.150170pt;}
._c{margin-left:-5.227267pt;}
._2{margin-left:-3.738000pt;}
._d{margin-left:-2.035133pt;}
._3{margin-left:-0.901867pt;}
._8{width:1.329067pt;}
._b{width:2.408933pt;}
._6{width:3.832933pt;}
._9{width:4.889067pt;}
._14{width:5.828152pt;}
._7{width:6.811467pt;}
._4{width:7.909133pt;}
._f{width:9.564533pt;}
._a{width:11.350467pt;}
._13{width:12.519333pt;}
._10{width:14.151000pt;}
._15{width:15.824200pt;}
._28{width:16.773848pt;}
._5{width:18.440800pt;}
._2f{width:19.394600pt;}
._27{width:20.781878pt;}
._2e{width:21.811333pt;}
._1d{width:22.813667pt;}
._2d{width:23.731600pt;}
._29{width:24.876000pt;}
._2b{width:26.052067pt;}
._25{width:28.307933pt;}
._2c{width:30.683933pt;}
._2a{width:31.680000pt;}
._1a{width:34.771733pt;}
._21{width:36.755622pt;}
._1b{width:38.415636pt;}
._23{width:40.136322pt;}
._22{width:41.127789pt;}
._19{width:43.041414pt;}
._32{width:44.396211pt;}
._26{width:45.798071pt;}
._24{width:48.602059pt;}
._30{width:51.862950pt;}
._31{width:54.180000pt;}
._16{width:56.740467pt;}
._17{width:57.897467pt;}
._18{width:60.086867pt;}
._35{width:137.040891pt;}
._33{width:140.664933pt;}
._34{width:141.575891pt;}
._36{width:146.354933pt;}
.fs10{font-size:36.666667pt;}
.fs7{font-size:54.000000pt;}
.fsa{font-size:54.666667pt;}
.fs4{font-size:55.333333pt;}
.fs3{font-size:56.000000pt;}
.fs6{font-size:57.333333pt;}
.fs5{font-size:58.000000pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:59.333333pt;}
.fsb{font-size:60.000000pt;}
.fsf{font-size:60.666667pt;}
.fsc{font-size:61.333333pt;}
.fs8{font-size:63.333333pt;}
.fs9{font-size:64.000000pt;}
.fs0{font-size:65.333333pt;}
.fs11{font-size:74.666667pt;}
.fsd{font-size:75.333333pt;}
.fse{font-size:76.666667pt;}
.y0{bottom:0.000000pt;}
.ye0{bottom:80.145467pt;}
.y71{bottom:81.730313pt;}
.y36{bottom:87.823447pt;}
.y70{bottom:97.735480pt;}
.y35{bottom:103.828613pt;}
.y6f{bottom:113.740647pt;}
.y34{bottom:120.145280pt;}
.ydf{bottom:128.455333pt;}
.ya9{bottom:128.466267pt;}
.y6e{bottom:130.057313pt;}
.y33{bottom:136.461947pt;}
.yde{bottom:144.460333pt;}
.y6d{bottom:146.700313pt;}
.y32{bottom:153.104947pt;}
.ydd{bottom:160.465333pt;}
.ya7{bottom:161.101133pt;}
.ya8{bottom:161.105867pt;}
.y6c{bottom:162.705480pt;}
.y6b{bottom:162.706213pt;}
.y31{bottom:169.106980pt;}
.ydc{bottom:176.470333pt;}
.ya6{bottom:177.421133pt;}
.y6a{bottom:179.349213pt;}
.y30{bottom:185.423647pt;}
.ydb{bottom:193.095333pt;}
.ya5{bottom:193.426133pt;}
.y69{bottom:195.665880pt;}
.y2f{bottom:201.428813pt;}
.yda{bottom:209.100333pt;}
.ya4{bottom:209.741133pt;}
.y68{bottom:211.337947pt;}
.y2d{bottom:217.739380pt;}
.y2e{bottom:217.745480pt;}
.yd9{bottom:225.420333pt;}
.ya3{bottom:226.061133pt;}
.y67{bottom:227.343113pt;}
.y2c{bottom:233.749213pt;}
.yd8{bottom:241.740333pt;}
.ya2{bottom:242.066133pt;}
.y66{bottom:243.348280pt;}
.y2b{bottom:250.065880pt;}
.yd7{bottom:257.745333pt;}
.ya1{bottom:258.386133pt;}
.y65{bottom:259.661947pt;}
.y2a{bottom:266.055613pt;}
.yd6{bottom:274.065333pt;}
.y9f{bottom:274.705600pt;}
.ya0{bottom:274.706000pt;}
.y64{bottom:275.667113pt;}
.y29{bottom:282.056947pt;}
.yd5{bottom:290.385333pt;}
.y9e{bottom:291.025600pt;}
.y63{bottom:291.983780pt;}
.y28{bottom:298.380947pt;}
.yd4{bottom:306.705333pt;}
.y9d{bottom:307.345600pt;}
.y9c{bottom:307.359933pt;}
.y62{bottom:308.626780pt;}
.y27{bottom:314.704947pt;}
.yd3{bottom:323.025333pt;}
.y9b{bottom:323.679933pt;}
.y61{bottom:324.305613pt;}
.y60{bottom:324.308680pt;}
.yd2{bottom:339.345200pt;}
.y9a{bottom:340.314933pt;}
.y5f{bottom:340.625347pt;}
.yd1{bottom:355.665200pt;}
.y99{bottom:356.634933pt;}
.y5e{bottom:356.945213pt;}
.y26{bottom:363.985213pt;}
.yd0{bottom:372.300200pt;}
.y5d{bottom:372.945747pt;}
.y98{bottom:372.954933pt;}
.ycf{bottom:388.620200pt;}
.y97{bottom:389.589933pt;}
.y5c{bottom:389.905613pt;}
.y25{bottom:396.305613pt;}
.y96{bottom:405.909933pt;}
.y5b{bottom:406.225480pt;}
.y24{bottom:412.630847pt;}
.ycd{bottom:421.905067pt;}
.yce{bottom:421.905200pt;}
.y95{bottom:422.544933pt;}
.y23{bottom:429.585347pt;}
.ycc{bottom:438.225067pt;}
.y22{bottom:445.585880pt;}
.ycb{bottom:454.542133pt;}
.y94{bottom:455.184933pt;}
.y93{bottom:455.190600pt;}
.y5a{bottom:457.105347pt;}
.y21{bottom:461.887947pt;}
.yca{bottom:470.866133pt;}
.y92{bottom:471.825600pt;}
.y20{bottom:477.893113pt;}
.yc8{bottom:487.181733pt;}
.yc9{bottom:487.186000pt;}
.y59{bottom:488.143913pt;}
.y91{bottom:488.145467pt;}
.yc7{bottom:503.505733pt;}
.y90{bottom:504.148000pt;}
.y58{bottom:504.460580pt;}
.y1f{bottom:510.541280pt;}
.yc6{bottom:520.144933pt;}
.y57{bottom:520.463580pt;}
.y1e{bottom:526.546447pt;}
.y122{bottom:532.466827pt;}
.y56{bottom:536.468747pt;}
.y1d{bottom:542.551613pt;}
.y55{bottom:552.785413pt;}
.yc5{bottom:552.786000pt;}
.y8f{bottom:553.105333pt;}
.y1c{bottom:558.868280pt;}
.yff{bottom:564.787260pt;}
.y121{bottom:565.750660pt;}
.y54{bottom:569.102080pt;}
.y8e{bottom:569.746000pt;}
.y1b{bottom:575.182613pt;}
.yfe{bottom:581.103927pt;}
.yc4{bottom:585.425067pt;}
.y53{bottom:585.737613pt;}
.y8c{bottom:586.065600pt;}
.y8d{bottom:586.065867pt;}
.y1a{bottom:591.822547pt;}
.yfd{bottom:597.420593pt;}
.y11f{bottom:597.743693pt;}
.y120{bottom:597.746160pt;}
.yc3{bottom:601.270467pt;}
.y52{bottom:602.054280pt;}
.y8b{bottom:602.401133pt;}
.y19{bottom:608.465547pt;}
.yfc{bottom:613.425760pt;}
.y11d{bottom:614.383627pt;}
.y11e{bottom:614.386693pt;}
.yc2{bottom:617.755467pt;}
.y51{bottom:618.697280pt;}
.y8a{bottom:618.721133pt;}
.y18{bottom:624.782213pt;}
.yfa{bottom:630.064093pt;}
.yfb{bottom:630.066427pt;}
.y11c{bottom:631.026627pt;}
.yc1{bottom:634.075467pt;}
.y89{bottom:635.041133pt;}
.y50{bottom:635.651780pt;}
.y17{bottom:641.430780pt;}
.yf9{bottom:646.707093pt;}
.y11b{bottom:647.031793pt;}
.yc0{bottom:650.710467pt;}
.y4f{bottom:651.656947pt;}
.y88{bottom:651.676133pt;}
.y16{bottom:657.747447pt;}
.yf8{bottom:663.350093pt;}
.y119{bottom:663.977860pt;}
.y11a{bottom:663.986293pt;}
.ybf{bottom:667.345467pt;}
.y4e{bottom:667.973613pt;}
.y87{bottom:667.996133pt;}
.y15{bottom:673.752613pt;}
.yf7{bottom:679.993093pt;}
.y118{bottom:680.620860pt;}
.ybe{bottom:683.665467pt;}
.y4d{bottom:684.290280pt;}
.y86{bottom:684.316133pt;}
.y14{bottom:690.395613pt;}
.yf6{bottom:696.309760pt;}
.y117{bottom:696.626027pt;}
.ybd{bottom:699.985333pt;}
.y4c{bottom:700.606947pt;}
.y85{bottom:700.951133pt;}
.y13{bottom:706.712280pt;}
.yf5{bottom:712.626427pt;}
.y116{bottom:713.265960pt;}
.ybc{bottom:716.309933pt;}
.y4b{bottom:716.923613pt;}
.y84{bottom:716.956133pt;}
.y12{bottom:723.028947pt;}
.yf4{bottom:728.943427pt;}
.y115{bottom:729.582627pt;}
.ybb{bottom:732.944933pt;}
.y4a{bottom:733.566613pt;}
.y83{bottom:733.591133pt;}
.y11{bottom:739.345613pt;}
.yf3{bottom:745.586427pt;}
.y114{bottom:746.222627pt;}
.yba{bottom:749.264933pt;}
.y49{bottom:749.571780pt;}
.y82{bottom:750.226133pt;}
.y10{bottom:755.668547pt;}
.yf2{bottom:761.591593pt;}
.y113{bottom:762.539293pt;}
.yb9{bottom:765.584933pt;}
.y48{bottom:765.888447pt;}
.y81{bottom:766.546133pt;}
.yf{bottom:771.985213pt;}
.yf1{bottom:777.908260pt;}
.y112{bottom:778.544460pt;}
.yb8{bottom:781.904933pt;}
.y47{bottom:782.531447pt;}
.y80{bottom:782.871267pt;}
.ye{bottom:788.305247pt;}
.yf0{bottom:793.913427pt;}
.y111{bottom:794.549627pt;}
.y46{bottom:798.536613pt;}
.yb7{bottom:798.539933pt;}
.y7f{bottom:799.191267pt;}
.yd{bottom:804.310413pt;}
.yef{bottom:810.230093pt;}
.y110{bottom:810.866293pt;}
.y45{bottom:814.853280pt;}
.yb6{bottom:814.859933pt;}
.y7e{bottom:815.511267pt;}
.yc{bottom:820.953413pt;}
.yee{bottom:826.546760pt;}
.y10f{bottom:827.509293pt;}
.y12a{bottom:830.321173pt;}
.yb5{bottom:831.494933pt;}
.y44{bottom:831.496280pt;}
.y7d{bottom:832.146267pt;}
.yb{bottom:837.270080pt;}
.yed{bottom:843.189760pt;}
.y10e{bottom:843.825960pt;}
.y129{bottom:846.971173pt;}
.y43{bottom:847.812947pt;}
.yb4{bottom:847.814933pt;}
.y7c{bottom:848.466267pt;}
.ya{bottom:853.586747pt;}
.yec{bottom:859.506427pt;}
.y10d{bottom:860.142627pt;}
.y127{bottom:863.281573pt;}
.y128{bottom:863.931040pt;}
.y42{bottom:864.129613pt;}
.yb3{bottom:864.134933pt;}
.y7b{bottom:864.786000pt;}
.y9{bottom:870.229747pt;}
.yeb{bottom:876.149427pt;}
.y10b{bottom:876.783293pt;}
.y10c{bottom:876.785627pt;}
.y126{bottom:879.936973pt;}
.y41{bottom:880.772613pt;}
.yb2{bottom:881.099933pt;}
.y7a{bottom:881.425200pt;}
.y8{bottom:886.872747pt;}
.yea{bottom:892.792427pt;}
.y10a{bottom:893.432560pt;}
.y125{bottom:896.256973pt;}
.yb1{bottom:897.110333pt;}
.y40{bottom:897.415613pt;}
.y79{bottom:897.745067pt;}
.y7{bottom:903.189413pt;}
.y124{bottom:912.891973pt;}
.y3f{bottom:913.420780pt;}
.y78{bottom:914.064800pt;}
.y6{bottom:919.832413pt;}
.ye9{bottom:925.423427pt;}
.y109{bottom:926.071393pt;}
.y3e{bottom:930.063780pt;}
.yaf{bottom:930.065200pt;}
.yb0{bottom:930.065333pt;}
.y5{bottom:936.149080pt;}
.ye8{bottom:942.066427pt;}
.y108{bottom:943.025893pt;}
.y107{bottom:943.028960pt;}
.y3d{bottom:946.068947pt;}
.y77{bottom:946.385200pt;}
.y4{bottom:952.465747pt;}
.ye7{bottom:958.391660pt;}
.y106{bottom:959.345627pt;}
.y3c{bottom:962.381947pt;}
.yae{bottom:962.390933pt;}
.y3{bottom:969.104947pt;}
.ye6{bottom:975.346160pt;}
.y105{bottom:975.986293pt;}
.y3b{bottom:979.024947pt;}
.yad{bottom:979.345600pt;}
.y76{bottom:979.351133pt;}
.y2{bottom:985.424680pt;}
.ye5{bottom:991.346693pt;}
.ye4{bottom:991.349893pt;}
.y104{bottom:992.306160pt;}
.y3a{bottom:995.341613pt;}
.yac{bottom:995.984800pt;}
.y75{bottom:995.986133pt;}
.y123{bottom:1006.652240pt;}
.ye3{bottom:1007.666560pt;}
.y103{bottom:1008.626027pt;}
.y39{bottom:1011.984613pt;}
.y74{bottom:1012.306133pt;}
.ye2{bottom:1023.986293pt;}
.y102{bottom:1024.945760pt;}
.y38{bottom:1027.989780pt;}
.y73{bottom:1028.950867pt;}
.yab{bottom:1029.266000pt;}
.ye1{bottom:1039.985360pt;}
.y101{bottom:1041.265627pt;}
.y1{bottom:1042.706013pt;}
.y37{bottom:1044.306447pt;}
.y72{bottom:1045.585867pt;}
.yaa{bottom:1045.587600pt;}
.y100{bottom:1074.866160pt;}
.h20{height:38.242188pt;}
.hc{height:56.320312pt;}
.h12{height:57.015625pt;}
.h9{height:57.710938pt;}
.h8{height:58.406250pt;}
.hb{height:59.796875pt;}
.ha{height:60.492188pt;}
.h4{height:61.187500pt;}
.h3{height:61.882812pt;}
.h21{height:61.885213pt;}
.hf{height:61.891479pt;}
.h6{height:61.892146pt;}
.h1f{height:61.894279pt;}
.h13{height:61.894812pt;}
.h5{height:61.895079pt;}
.hd{height:61.897479pt;}
.he{height:61.912679pt;}
.h14{height:61.913479pt;}
.h7{height:61.953479pt;}
.h16{height:62.578125pt;}
.h10{height:62.591146pt;}
.h19{height:62.597592pt;}
.h1c{height:62.618125pt;}
.h1b{height:63.273438pt;}
.h26{height:63.816525pt;}
.h25{height:63.838125pt;}
.h17{height:63.968750pt;}
.h27{height:65.175992pt;}
.h28{height:65.181858pt;}
.h11{height:66.750000pt;}
.h2{height:68.140625pt;}
.h24{height:77.875000pt;}
.h18{height:78.570312pt;}
.h1a{height:79.960938pt;}
.h1e{height:1116.000000pt;}
.h1d{height:1116.000027pt;}
.h15{height:1118.666667pt;}
.h1{height:1120.000000pt;}
.h0{height:1120.000013pt;}
.h22{height:1122.666640pt;}
.h23{height:1122.666667pt;}
.w0{width:753.332933pt;}
.w1{width:753.333333pt;}
.w4{width:755.999600pt;}
.w5{width:756.000000pt;}
.w7{width:757.333333pt;}
.w6{width:757.333440pt;}
.w2{width:763.999600pt;}
.w3{width:764.000000pt;}
.x0{left:0.000000pt;}
.x5b{left:55.802640pt;}
.x24{left:57.147467pt;}
.x20{left:58.088000pt;}
.x1b{left:59.053600pt;}
.x5{left:60.519467pt;}
.x3{left:61.473200pt;}
.x1{left:62.423200pt;}
.x27{left:96.176533pt;}
.x23{left:97.128800pt;}
.x4{left:98.916400pt;}
.x58{left:101.880907pt;}
.xb{left:108.515733pt;}
.x1f{left:114.733733pt;}
.xd{left:120.348533pt;}
.x25{left:122.734667pt;}
.x26{left:134.254267pt;}
.x21{left:139.694667pt;}
.xc{left:143.072133pt;}
.x2{left:152.029867pt;}
.x22{left:157.614133pt;}
.x3e{left:175.426933pt;}
.x3b{left:178.946933pt;}
.x5d{left:207.481440pt;}
.x3f{left:211.588000pt;}
.x3c{left:215.427467pt;}
.x5e{left:233.401840pt;}
.x7{left:248.995733pt;}
.x54{left:249.987467pt;}
.x2a{left:255.853867pt;}
.x1e{left:257.134133pt;}
.x1c{left:258.093600pt;}
.x28{left:261.613600pt;}
.x29{left:266.094533pt;}
.x55{left:272.067067pt;}
.x3d{left:277.507467pt;}
.x40{left:283.267200pt;}
.x8{left:285.477067pt;}
.x56{left:300.548000pt;}
.x9{left:302.756267pt;}
.xa{left:336.996133pt;}
.x1d{left:349.934933pt;}
.x59{left:353.721173pt;}
.x57{left:355.641573pt;}
.x41{left:356.547600pt;}
.x6{left:359.397333pt;}
.x5a{left:398.841307pt;}
.x38{left:400.502000pt;}
.x36{left:401.444433pt;}
.x32{left:402.403867pt;}
.x10{left:403.525733pt;}
.xe{left:404.522667pt;}
.x15{left:419.874533pt;}
.x37{left:439.535067pt;}
.x11{left:441.233733pt;}
.xf{left:442.304000pt;}
.x31{left:452.014000pt;}
.x4e{left:478.468000pt;}
.x51{left:485.508000pt;}
.x4f{left:490.946933pt;}
.x19{left:491.875467pt;}
.x2c{left:497.774267pt;}
.x45{left:499.588000pt;}
.x1a{left:502.441333pt;}
.x2d{left:512.494533pt;}
.x46{left:515.267733pt;}
.x47{left:517.188133pt;}
.x2f{left:520.494000pt;}
.x4a{left:527.427467pt;}
.x30{left:533.293867pt;}
.x4b{left:544.068000pt;}
.x52{left:552.386933pt;}
.x48{left:554.307333pt;}
.x43{left:557.827333pt;}
.x53{left:563.267733pt;}
.x4c{left:581.508000pt;}
.x4d{left:587.907867pt;}
.x39{left:591.213733pt;}
.x33{left:592.494000pt;}
.x50{left:599.748267pt;}
.x3a{left:612.974000pt;}
.x2b{left:619.054533pt;}
.x34{left:620.334800pt;}
.x49{left:626.307333pt;}
.x44{left:627.906933pt;}
.x35{left:630.574000pt;}
.x2e{left:633.774800pt;}
.x12{left:639.717200pt;}
.x16{left:645.156800pt;}
.x42{left:650.947467pt;}
.x13{left:653.795467pt;}
.x17{left:657.948800pt;}
.x18{left:673.003733pt;}
.x14{left:689.635733pt;}
.x5c{left:695.801707pt;}
}




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