
    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_6dde3eee8de1c55de9061af6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_8277ba6aae5a6f408f682a55.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_d664c294e15e5bde8c4b8d89.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8404d3e239e089c5e9033ff3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.911000;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_656afb101064f79e6e13e7cd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_861bf5db2f75c58f53e389b5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.892000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_75f928fedbe75818ee114f54.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.859000;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_1e707a783d2cdd0978c10181.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.628000;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_17f8ebb9afe4701e9464107c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.664000;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_fe81a629fb75e54cbff9e85f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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_21afb8055f768ea50b4f6c79.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.999000;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_ba4867b18a2f6fee8eb676c6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.431000;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_5fc667be14e53083f1193644.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d90c2dc7bfb23b5c2e407454.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_23244df71f3fd52850c650b8.woff2')format("woff");}.fff{font-family:fff;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_1aba82b91ac38b8ef85628ae.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c1e934878b0473200912c6fd.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.723000;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_ac082e35e8b1e0c09f149a82.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.859000;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_8957eb958cd42be8fb672f23.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.704000;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_a08e277ef94e4ef45ccbc602.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.451000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.v1{vertical-align:-22.854000px;}
.v3{vertical-align:-9.822000px;}
.v7{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:6.360000px;}
.v4{vertical-align:16.182000px;}
.v2{vertical-align:23.754000px;}
.v5{vertical-align:27.030000px;}
.v9{vertical-align:35.082000px;}
.v8{vertical-align:44.898000px;}
.ls1{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.001322px;}
.ls1e{letter-spacing:0.001599px;}
.ls46{letter-spacing:0.001613px;}
.ls13{letter-spacing:0.002700px;}
.ls44{letter-spacing:0.004338px;}
.ls20{letter-spacing:0.007520px;}
.ls14{letter-spacing:0.016748px;}
.ls29{letter-spacing:0.019529px;}
.ls38{letter-spacing:0.022712px;}
.ls41{letter-spacing:0.023900px;}
.lsd{letter-spacing:0.065455px;}
.ls3c{letter-spacing:0.654546px;}
.ls22{letter-spacing:2.987971px;}
.ls12{letter-spacing:2.989739px;}
.ls32{letter-spacing:4.778186px;}
.ls31{letter-spacing:4.843640px;}
.ls5{letter-spacing:5.301823px;}
.ls47{letter-spacing:5.317591px;}
.ls7{letter-spacing:5.367277px;}
.ls40{letter-spacing:5.825459px;}
.ls3b{letter-spacing:5.890914px;}
.ls37{letter-spacing:5.976557px;}
.ls1d{letter-spacing:7.101672px;}
.ls2b{letter-spacing:7.118632px;}
.ls26{letter-spacing:7.119076px;}
.ls19{letter-spacing:7.121345px;}
.ls2f{letter-spacing:7.135599px;}
.ls16{letter-spacing:7.150766px;}
.ls23{letter-spacing:7.156446px;}
.ls24{letter-spacing:8.082553px;}
.lsf{letter-spacing:14.530921px;}
.ls28{letter-spacing:14.596376px;}
.lsc{letter-spacing:18.130924px;}
.ls6{letter-spacing:18.196379px;}
.ls45{letter-spacing:19.178198px;}
.ls36{letter-spacing:19.309107px;}
.ls48{letter-spacing:19.767289px;}
.ls27{letter-spacing:19.832744px;}
.lse{letter-spacing:19.898198px;}
.ls2d{letter-spacing:20.618199px;}
.ls2a{letter-spacing:21.167971px;}
.ls18{letter-spacing:21.169739px;}
.ls2{letter-spacing:21.419468px;}
.ls43{letter-spacing:21.600018px;}
.ls8{letter-spacing:21.796382px;}
.ls25{letter-spacing:22.626553px;}
.ls34{letter-spacing:23.367292px;}
.ls33{letter-spacing:23.432747px;}
.ls4{letter-spacing:23.498201px;}
.ls42{letter-spacing:23.825474px;}
.ls10{letter-spacing:24.803971px;}
.ls15{letter-spacing:24.805739px;}
.ls3a{letter-spacing:24.811739px;}
.ls21{letter-spacing:26.262553px;}
.ls3d{letter-spacing:26.640022px;}
.lsa{letter-spacing:27.098204px;}
.ls1f{letter-spacing:27.425477px;}
.ls3e{letter-spacing:27.621841px;}
.ls30{letter-spacing:28.210933px;}
.ls2c{letter-spacing:29.127297px;}
.ls39{letter-spacing:29.847298px;}
.ls11{letter-spacing:30.043661px;}
.ls35{letter-spacing:30.305480px;}
.ls2e{letter-spacing:30.960026px;}
.lsb{letter-spacing:32.530936px;}
.ls3{letter-spacing:33.447301px;}
.ls9{letter-spacing:35.869121px;}
.ls0{letter-spacing:35.883533px;}
.ls1a{letter-spacing:51.553739px;}
.ls17{letter-spacing:73.369739px;}
.ls1b{letter-spacing:141.840118px;}
.ls3f{letter-spacing:164.296773px;}
.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;}
}
.ws2c{word-spacing:-50.923679px;}
.ws28{word-spacing:-47.323676px;}
.ws31{word-spacing:-47.258221px;}
.ws35{word-spacing:-42.637126px;}
.ws3a{word-spacing:-33.453846px;}
.ws32{word-spacing:-32.727300px;}
.ws1a{word-spacing:-27.646998px;}
.ws4d{word-spacing:-24.440748px;}
.ws5c{word-spacing:-24.113475px;}
.ws36{word-spacing:-18.261833px;}
.ws38{word-spacing:-16.298195px;}
.ws10{word-spacing:-15.840534px;}
.ws53{word-spacing:-15.578195px;}
.ws11{word-spacing:-14.471673px;}
.ws52{word-spacing:-14.334557px;}
.ws39{word-spacing:-14.203648px;}
.ws41{word-spacing:-13.941830px;}
.ws5d{word-spacing:-13.549102px;}
.ws4c{word-spacing:-13.418193px;}
.ws4b{word-spacing:-13.352738px;}
.ws3b{word-spacing:-12.966556px;}
.ws5f{word-spacing:-12.960011px;}
.ws4a{word-spacing:-12.829102px;}
.ws45{word-spacing:-12.632738px;}
.ws54{word-spacing:-12.501829px;}
.ws56{word-spacing:-12.370919px;}
.ws49{word-spacing:-12.240010px;}
.ws42{word-spacing:-12.174556px;}
.ws43{word-spacing:-12.109101px;}
.ws3c{word-spacing:-12.069828px;}
.ws40{word-spacing:-12.043646px;}
.ws37{word-spacing:-11.978192px;}
.ws55{word-spacing:-11.912737px;}
.ws6{word-spacing:-11.776470px;}
.ws33{word-spacing:-11.520010px;}
.ws1c{word-spacing:-11.476915px;}
.ws25{word-spacing:-11.192737px;}
.ws62{word-spacing:-11.178037px;}
.ws5b{word-spacing:-11.127282px;}
.ws24{word-spacing:-11.061827px;}
.ws2e{word-spacing:-10.996373px;}
.ws17{word-spacing:-10.930918px;}
.ws64{word-spacing:-10.879159px;}
.ws18{word-spacing:-10.865464px;}
.ws57{word-spacing:-10.800009px;}
.ws30{word-spacing:-10.734554px;}
.ws58{word-spacing:-10.669100px;}
.ws1e{word-spacing:-10.603645px;}
.wse{word-spacing:-10.580281px;}
.ws16{word-spacing:-10.538191px;}
.ws20{word-spacing:-10.472736px;}
.ws5a{word-spacing:-10.407281px;}
.ws67{word-spacing:-10.400954px;}
.ws69{word-spacing:-10.341179px;}
.ws63{word-spacing:-10.167830px;}
.ws13{word-spacing:-10.161852px;}
.ws3d{word-spacing:-10.086554px;}
.ws29{word-spacing:-10.021099px;}
.ws34{word-spacing:-10.014554px;}
.ws4{word-spacing:-9.982525px;}
.ws1d{word-spacing:-9.949099px;}
.ws66{word-spacing:-9.922750px;}
.ws12{word-spacing:-9.862974px;}
.wsf{word-spacing:-9.803198px;}
.ws59{word-spacing:-9.759281px;}
.ws1f{word-spacing:-9.693826px;}
.ws68{word-spacing:-9.629849px;}
.ws21{word-spacing:-9.562917px;}
.ws8{word-spacing:-9.247945px;}
.ws5{word-spacing:-9.194147px;}
.ws65{word-spacing:-9.151644px;}
.ws23{word-spacing:-8.705462px;}
.ws22{word-spacing:-8.574553px;}
.wsd{word-spacing:-8.368584px;}
.ws15{word-spacing:-8.050916px;}
.ws2d{word-spacing:-7.141097px;}
.ws26{word-spacing:-6.872733px;}
.ws2b{word-spacing:-6.617460px;}
.ws19{word-spacing:-5.825459px;}
.ws61{word-spacing:-5.760005px;}
.wsc{word-spacing:-5.027128px;}
.ws46{word-spacing:-4.581822px;}
.ws3e{word-spacing:-3.344730px;}
.ws2f{word-spacing:-3.338185px;}
.ws14{word-spacing:-2.988780px;}
.ws60{word-spacing:-2.945457px;}
.ws44{word-spacing:-1.767274px;}
.ws1{word-spacing:-0.086077px;}
.ws2a{word-spacing:-0.065455px;}
.ws4e{word-spacing:-0.047821px;}
.ws9{word-spacing:0.000000px;}
.ws3f{word-spacing:2.415275px;}
.wsa{word-spacing:2.683639px;}
.ws4f{word-spacing:6.624652px;}
.wsb{word-spacing:11.429123px;}
.ws48{word-spacing:16.036377px;}
.ws27{word-spacing:18.130924px;}
.ws7{word-spacing:18.183859px;}
.ws5e{word-spacing:18.458197px;}
.ws2{word-spacing:23.384371px;}
.ws3{word-spacing:26.827469px;}
.ws47{word-spacing:28.996388px;}
.ws0{word-spacing:32.192873px;}
.ws51{word-spacing:34.370970px;}
.ws50{word-spacing:130.843745px;}
.ws1b{word-spacing:2261.856812px;}
._2a{margin-left:-17.726829px;}
._1{margin-left:-8.091257px;}
._28{margin-left:-7.053542px;}
._3{margin-left:-5.881958px;}
._9{margin-left:-3.890165px;}
._0{margin-left:-2.668393px;}
._5{margin-left:-1.667750px;}
._6{width:1.613952px;}
._2{width:2.668393px;}
._29{width:5.301823px;}
._2d{width:7.180310px;}
._26{width:15.868357px;}
._8{width:16.946496px;}
._24{width:19.593338px;}
._4{width:20.959727px;}
._25{width:22.450928px;}
._7{width:23.563699px;}
._22{width:25.127036px;}
._a{width:26.659918px;}
._21{width:28.676282px;}
._2b{width:29.912752px;}
._2c{width:31.029811px;}
._20{width:33.295763px;}
._30{width:35.865360px;}
._23{width:42.328498px;}
._2f{width:45.229129px;}
._27{width:52.980568px;}
._2e{width:65.448600px;}
._1f{width:68.741940px;}
._1b{width:966.182011px;}
._d{width:1217.397125px;}
._17{width:1269.212038px;}
._10{width:1276.589241px;}
._11{width:1341.283841px;}
._15{width:1412.837375px;}
._13{width:1612.715994px;}
._19{width:1665.494815px;}
._e{width:1713.143080px;}
._1e{width:1772.661196px;}
._c{width:1803.267792px;}
._16{width:1912.947289px;}
._14{width:1937.059677px;}
._b{width:1945.313230px;}
._1d{width:1962.309013px;}
._18{width:1986.919942px;}
._f{width:2055.760799px;}
._12{width:2188.495277px;}
._1c{width:2201.048699px;}
._1a{width:2285.878107px;}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y45{bottom:160.314000px;}
.y2c{bottom:173.425500px;}
.y78{bottom:190.800000px;}
.y5f{bottom:200.370000px;}
.y2b{bottom:206.257500px;}
.y44{bottom:207.663000px;}
.y77{bottom:221.286000px;}
.y8d{bottom:227.733000px;}
.y5e{bottom:230.856000px;}
.y2a{bottom:236.743500px;}
.y9e{bottom:243.615000px;}
.y8c{bottom:250.027500px;}
.y43{bottom:260.262000px;}
.y29{bottom:267.229500px;}
.y5d{bottom:272.407500px;}
.y76{bottom:273.031500px;}
.y8b{bottom:287.116500px;}
.y42{bottom:290.746500px;}
.y28{bottom:297.714000px;}
.y9d{bottom:310.645500px;}
.y5c{bottom:313.957500px;}
.y75{bottom:321.190500px;}
.yf{bottom:334.054500px;}
.y8a{bottom:339.273000px;}
.y9c{bottom:341.131500px;}
.y41{bottom:342.876000px;}
.y27{bottom:344.563500px;}
.y5b{bottom:355.509000px;}
.ye{bottom:361.699500px;}
.y74{bottom:381.151500px;}
.yd{bottom:389.346000px;}
.yae{bottom:390.295500px;}
.y26{bottom:391.413000px;}
.y9b{bottom:393.946500px;}
.y5a{bottom:397.059000px;}
.y89{bottom:402.538500px;}
.y40{bottom:405.984000px;}
.y73{bottom:411.637500px;}
.yc{bottom:414.004500px;}
.yad{bottom:417.195000px;}
.y88{bottom:433.024500px;}
.y3f{bottom:436.470000px;}
.y25{bottom:438.262500px;}
.y59{bottom:438.610500px;}
.yb{bottom:441.651000px;}
.yac{bottom:444.094500px;}
.y72{bottom:452.499000px;}
.y9a{bottom:460.977000px;}
.y87{bottom:463.510500px;}
.y3e{bottom:466.956000px;}
.ya{bottom:469.297500px;}
.yab{bottom:470.994000px;}
.y58{bottom:480.160500px;}
.y24{bottom:485.112000px;}
.y71{bottom:493.360500px;}
.yaa{bottom:497.892000px;}
.y3d{bottom:507.559500px;}
.y57{bottom:510.646500px;}
.y99{bottom:511.758000px;}
.y86{bottom:515.667000px;}
.y70{bottom:523.846500px;}
.ya9{bottom:524.791500px;}
.y23{bottom:531.961500px;}
.y3c{bottom:538.045500px;}
.y56{bottom:562.392000px;}
.y98{bottom:562.537500px;}
.y3b{bottom:568.530000px;}
.y6f{bottom:575.592000px;}
.y22{bottom:578.811000px;}
.y85{bottom:578.934000px;}
.y3a{bottom:599.016000px;}
.y97{bottom:613.318500px;}
.ya8{bottom:618.939000px;}
.y55{bottom:622.462500px;}
.y84{bottom:626.419500px;}
.y39{bottom:629.502000px;}
.y21{bottom:630.556500px;}
.y6e{bottom:635.554500px;}
.ya7{bottom:649.425000px;}
.y54{bottom:652.948500px;}
.y96{bottom:664.098000px;}
.y9{bottom:665.079000px;}
.y6d{bottom:666.040500px;}
.y83{bottom:673.906500px;}
.ya6{bottom:679.909500px;}
.y38{bottom:681.631500px;}
.y53{bottom:690.453000px;}
.y52{bottom:690.454500px;}
.y20{bottom:690.757500px;}
.y51{bottom:694.498500px;}
.y6c{bottom:696.525000px;}
.ya5{bottom:710.395500px;}
.y95{bottom:716.914500px;}
.y8{bottom:717.490500px;}
.y1f{bottom:721.243500px;}
.y82{bottom:721.393500px;}
.y50{bottom:732.004500px;}
.y6b{bottom:735.892500px;}
.y4f{bottom:736.050000px;}
.y7{bottom:744.390000px;}
.ya4{bottom:762.141000px;}
.y37{bottom:764.206500px;}
.y6a{bottom:766.378500px;}
.y4e{bottom:766.536000px;}
.y81{bottom:768.880500px;}
.y6{bottom:771.288000px;}
.y1e{bottom:777.798000px;}
.y94{bottom:783.945000px;}
.y1d{bottom:804.697500px;}
.y69{bottom:805.746000px;}
.y4d{bottom:806.592000px;}
.y36{bottom:811.824000px;}
.y80{bottom:816.366000px;}
.ya3{bottom:823.056000px;}
.y1c{bottom:831.597000px;}
.y93{bottom:834.724500px;}
.y4c{bottom:837.078000px;}
.y68{bottom:846.607500px;}
.ya2{bottom:853.542000px;}
.y1b{bottom:858.496500px;}
.y35{bottom:859.440000px;}
.y5{bottom:862.198500px;}
.y7f{bottom:868.524000px;}
.ya1{bottom:884.028000px;}
.y1a{bottom:885.394500px;}
.y92{bottom:885.505500px;}
.y67{bottom:887.469000px;}
.y4b{bottom:888.823500px;}
.y34{bottom:890.310000px;}
.y4{bottom:893.580000px;}
.y19{bottom:912.294000px;}
.y66{bottom:913.908000px;}
.ya0{bottom:914.514000px;}
.y65{bottom:917.953500px;}
.y33{bottom:921.180000px;}
.y7e{bottom:931.789500px;}
.y91{bottom:936.285000px;}
.y18{bottom:939.193500px;}
.y4a{bottom:948.894000px;}
.y64{bottom:957.321000px;}
.y3{bottom:959.440500px;}
.y7d{bottom:962.275500px;}
.y17{bottom:966.093000px;}
.y9f{bottom:966.259500px;}
.y32{bottom:968.796000px;}
.y49{bottom:979.380000px;}
.y90{bottom:987.066000px;}
.y63{bottom:987.807000px;}
.y16{bottom:992.991000px;}
.y31{bottom:999.666000px;}
.y2{bottom:999.790500px;}
.y7c{bottom:1009.761000px;}
.y48{bottom:1009.864500px;}
.y62{bottom:1027.174500px;}
.y30{bottom:1030.534500px;}
.y15{bottom:1031.697000px;}
.y8f{bottom:1037.845500px;}
.y1{bottom:1040.139000px;}
.y47{bottom:1052.613000px;}
.y7b{bottom:1057.248000px;}
.y61{bottom:1057.659000px;}
.y14{bottom:1058.595000px;}
.y2f{bottom:1061.404500px;}
.y13{bottom:1064.019000px;}
.y7a{bottom:1083.688500px;}
.y79{bottom:1087.734000px;}
.y60{bottom:1088.145000px;}
.y8e{bottom:1090.662000px;}
.y11{bottom:1090.725000px;}
.y46{bottom:1096.252500px;}
.y12{bottom:1096.663500px;}
.y2e{bottom:1109.020500px;}
.y10{bottom:1139.890500px;}
.y2d{bottom:1192.194000px;}
.hb{height:16.677504px;}
.h9{height:27.783619px;}
.h8{height:31.800699px;}
.h6{height:37.927872px;}
.ha{height:42.799330px;}
.h5{height:44.831700px;}
.hd{height:46.145493px;}
.h11{height:46.865494px;}
.h7{height:49.090950px;}
.h4{height:50.211840px;}
.h3{height:53.798400px;}
.hc{height:55.554699px;}
.h14{height:56.415470px;}
.h12{height:58.824699px;}
.hf{height:58.830699px;}
.h15{height:59.685470px;}
.h2{height:60.254040px;}
.h13{height:62.327493px;}
.he{height:65.272950px;}
.h10{height:75.006699px;}
.h17{height:93.988950px;}
.h16{height:135.323493px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:106.215000px;}
.x14{left:108.000000px;}
.x19{left:110.739000px;}
.x94{left:112.587000px;}
.xc{left:114.741000px;}
.x17{left:120.273000px;}
.xb{left:125.932500px;}
.x8e{left:127.261500px;}
.x1e{left:130.416000px;}
.x9d{left:131.994000px;}
.x16{left:132.999000px;}
.x95{left:139.000500px;}
.x8f{left:141.168000px;}
.x7f{left:147.048000px;}
.x3c{left:148.536000px;}
.x18{left:150.406500px;}
.x1b{left:151.542000px;}
.x75{left:152.832000px;}
.x1c{left:154.497000px;}
.x13{left:158.809500px;}
.x50{left:160.057500px;}
.x20{left:161.352000px;}
.x3d{left:163.534500px;}
.x8d{left:168.046500px;}
.x47{left:172.477500px;}
.x12{left:173.754000px;}
.x22{left:178.939500px;}
.x21{left:181.924500px;}
.x80{left:183.967500px;}
.x90{left:185.833500px;}
.x72{left:187.434000px;}
.x60{left:189.228000px;}
.x7e{left:191.533500px;}
.x73{left:195.105000px;}
.x1{left:196.549500px;}
.x6a{left:200.478000px;}
.x48{left:205.659000px;}
.x2{left:207.853500px;}
.x2e{left:210.922500px;}
.x49{left:212.151000px;}
.xf{left:214.422000px;}
.x10{left:221.125500px;}
.x91{left:223.503000px;}
.x61{left:225.978000px;}
.x4a{left:227.082000px;}
.x9b{left:248.445000px;}
.x97{left:251.401500px;}
.x9c{left:256.627500px;}
.x86{left:258.717000px;}
.x87{left:264.952500px;}
.x33{left:269.442000px;}
.x98{left:271.093500px;}
.x4{left:274.819500px;}
.x92{left:276.669000px;}
.x88{left:279.885000px;}
.x93{left:284.340000px;}
.x2f{left:287.898000px;}
.x1f{left:289.974000px;}
.x89{left:295.273500px;}
.x78{left:296.896500px;}
.x7a{left:301.170000px;}
.x51{left:302.827500px;}
.x79{left:305.005500px;}
.x52{left:309.319500px;}
.x8a{left:312.606000px;}
.x5e{left:315.948000px;}
.x8b{left:320.788500px;}
.x5f{left:324.085500px;}
.x7{left:329.793000px;}
.x1d{left:332.128500px;}
.x3{left:334.389000px;}
.x69{left:337.509000px;}
.x30{left:345.658500px;}
.x5{left:356.499000px;}
.x53{left:363.849000px;}
.x11{left:364.890000px;}
.x76{left:366.535500px;}
.x3b{left:369.850500px;}
.x8c{left:371.439000px;}
.x7c{left:372.688500px;}
.x3a{left:379.023000px;}
.x6{left:381.384000px;}
.xd{left:382.602000px;}
.x8{left:392.640000px;}
.x54{left:397.030500px;}
.x6b{left:398.997000px;}
.x62{left:400.830000px;}
.x3e{left:402.090000px;}
.x55{left:403.522500px;}
.x9{left:405.966000px;}
.x15{left:409.203000px;}
.x7d{left:411.973500px;}
.x6c{left:416.368500px;}
.x56{left:418.453500px;}
.x5d{left:424.968000px;}
.x96{left:428.229000px;}
.x7b{left:434.014500px;}
.x6d{left:435.967500px;}
.x23{left:440.334000px;}
.x34{left:447.591000px;}
.x2b{left:450.409500px;}
.x24{left:459.811500px;}
.x74{left:461.985000px;}
.x41{left:466.513500px;}
.x35{left:467.541000px;}
.x25{left:468.861000px;}
.x4b{left:474.898500px;}
.x6e{left:478.026000px;}
.x42{left:481.446000px;}
.x57{left:487.218000px;}
.x6f{left:489.198000px;}
.x4c{left:491.917500px;}
.x26{left:503.301000px;}
.x58{left:504.514500px;}
.x27{left:509.607000px;}
.xe{left:511.759500px;}
.x81{left:518.577000px;}
.x28{left:524.539500px;}
.x29{left:535.390500px;}
.x31{left:542.073000px;}
.x70{left:546.141000px;}
.x63{left:555.712500px;}
.x77{left:558.256500px;}
.x4d{left:560.316000px;}
.x99{left:580.578000px;}
.x64{left:583.440000px;}
.x9a{left:588.760500px;}
.x82{left:602.932500px;}
.x2a{left:611.521500px;}
.x83{left:619.798500px;}
.x84{left:626.289000px;}
.x36{left:630.265500px;}
.x37{left:649.261500px;}
.x85{left:660.478500px;}
.x38{left:701.508000px;}
.x43{left:708.133500px;}
.x44{left:718.252500px;}
.x39{left:719.484000px;}
.x71{left:722.704500px;}
.x45{left:724.488000px;}
.x4e{left:728.103000px;}
.x3f{left:733.563000px;}
.x46{left:739.420500px;}
.x59{left:743.655000px;}
.x65{left:745.765500px;}
.x4f{left:751.635000px;}
.x5a{left:753.772500px;}
.x40{left:757.779000px;}
.x5b{left:760.264500px;}
.x66{left:762.630000px;}
.x67{left:768.867000px;}
.x5c{left:780.487500px;}
.x32{left:788.208000px;}
.x2c{left:791.038500px;}
.x1a{left:799.195500px;}
.x68{left:803.055000px;}
.x2d{left:805.015500px;}
@media print{
.v1{vertical-align:-20.314667pt;}
.v3{vertical-align:-8.730667pt;}
.v7{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.653333pt;}
.v4{vertical-align:14.384000pt;}
.v2{vertical-align:21.114667pt;}
.v5{vertical-align:24.026667pt;}
.v9{vertical-align:31.184000pt;}
.v8{vertical-align:39.909333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.001175pt;}
.ls1e{letter-spacing:0.001421pt;}
.ls46{letter-spacing:0.001433pt;}
.ls13{letter-spacing:0.002400pt;}
.ls44{letter-spacing:0.003856pt;}
.ls20{letter-spacing:0.006684pt;}
.ls14{letter-spacing:0.014887pt;}
.ls29{letter-spacing:0.017359pt;}
.ls38{letter-spacing:0.020189pt;}
.ls41{letter-spacing:0.021244pt;}
.lsd{letter-spacing:0.058182pt;}
.ls3c{letter-spacing:0.581819pt;}
.ls22{letter-spacing:2.655975pt;}
.ls12{letter-spacing:2.657546pt;}
.ls32{letter-spacing:4.247276pt;}
.ls31{letter-spacing:4.305458pt;}
.ls5{letter-spacing:4.712731pt;}
.ls47{letter-spacing:4.726748pt;}
.ls7{letter-spacing:4.770913pt;}
.ls40{letter-spacing:5.178186pt;}
.ls3b{letter-spacing:5.236368pt;}
.ls37{letter-spacing:5.312495pt;}
.ls1d{letter-spacing:6.312597pt;}
.ls2b{letter-spacing:6.327673pt;}
.ls26{letter-spacing:6.328068pt;}
.ls19{letter-spacing:6.330084pt;}
.ls2f{letter-spacing:6.342755pt;}
.ls16{letter-spacing:6.356236pt;}
.ls23{letter-spacing:6.361285pt;}
.ls24{letter-spacing:7.184491pt;}
.lsf{letter-spacing:12.916374pt;}
.ls28{letter-spacing:12.974556pt;}
.lsc{letter-spacing:16.116377pt;}
.ls6{letter-spacing:16.174559pt;}
.ls45{letter-spacing:17.047287pt;}
.ls36{letter-spacing:17.163651pt;}
.ls48{letter-spacing:17.570924pt;}
.ls27{letter-spacing:17.629106pt;}
.lse{letter-spacing:17.687287pt;}
.ls2d{letter-spacing:18.327288pt;}
.ls2a{letter-spacing:18.815975pt;}
.ls18{letter-spacing:18.817546pt;}
.ls2{letter-spacing:19.039527pt;}
.ls43{letter-spacing:19.200016pt;}
.ls8{letter-spacing:19.374562pt;}
.ls25{letter-spacing:20.112491pt;}
.ls34{letter-spacing:20.770926pt;}
.ls33{letter-spacing:20.829108pt;}
.ls4{letter-spacing:20.887290pt;}
.ls42{letter-spacing:21.178199pt;}
.ls10{letter-spacing:22.047975pt;}
.ls15{letter-spacing:22.049546pt;}
.ls3a{letter-spacing:22.054879pt;}
.ls21{letter-spacing:23.344491pt;}
.ls3d{letter-spacing:23.680020pt;}
.lsa{letter-spacing:24.087293pt;}
.ls1f{letter-spacing:24.378202pt;}
.ls3e{letter-spacing:24.552748pt;}
.ls30{letter-spacing:25.076385pt;}
.ls2c{letter-spacing:25.890931pt;}
.ls39{letter-spacing:26.530931pt;}
.ls11{letter-spacing:26.705477pt;}
.ls35{letter-spacing:26.938204pt;}
.ls2e{letter-spacing:27.520023pt;}
.lsb{letter-spacing:28.916388pt;}
.ls3{letter-spacing:29.730934pt;}
.ls9{letter-spacing:31.883663pt;}
.ls0{letter-spacing:31.896474pt;}
.ls1a{letter-spacing:45.825546pt;}
.ls17{letter-spacing:65.217546pt;}
.ls1b{letter-spacing:126.080105pt;}
.ls3f{letter-spacing:146.041576pt;}
.ws2c{word-spacing:-45.265492pt;}
.ws28{word-spacing:-42.065490pt;}
.ws31{word-spacing:-42.007308pt;}
.ws35{word-spacing:-37.899668pt;}
.ws3a{word-spacing:-29.736752pt;}
.ws32{word-spacing:-29.090933pt;}
.ws1a{word-spacing:-24.575109pt;}
.ws4d{word-spacing:-21.725109pt;}
.ws5c{word-spacing:-21.434200pt;}
.ws36{word-spacing:-16.232741pt;}
.ws38{word-spacing:-14.487285pt;}
.ws10{word-spacing:-14.080475pt;}
.ws53{word-spacing:-13.847284pt;}
.ws11{word-spacing:-12.863709pt;}
.ws52{word-spacing:-12.741829pt;}
.ws39{word-spacing:-12.625465pt;}
.ws41{word-spacing:-12.392738pt;}
.ws5d{word-spacing:-12.043646pt;}
.ws4c{word-spacing:-11.927283pt;}
.ws4b{word-spacing:-11.869101pt;}
.ws3b{word-spacing:-11.525828pt;}
.ws5f{word-spacing:-11.520010pt;}
.ws4a{word-spacing:-11.403646pt;}
.ws45{word-spacing:-11.229100pt;}
.ws54{word-spacing:-11.112737pt;}
.ws56{word-spacing:-10.996373pt;}
.ws49{word-spacing:-10.880009pt;}
.ws42{word-spacing:-10.821827pt;}
.ws43{word-spacing:-10.763645pt;}
.ws3c{word-spacing:-10.728736pt;}
.ws40{word-spacing:-10.705463pt;}
.ws37{word-spacing:-10.647282pt;}
.ws55{word-spacing:-10.589100pt;}
.ws6{word-spacing:-10.467973pt;}
.ws33{word-spacing:-10.240009pt;}
.ws1c{word-spacing:-10.201702pt;}
.ws25{word-spacing:-9.949099pt;}
.ws62{word-spacing:-9.936033pt;}
.ws5b{word-spacing:-9.890917pt;}
.ws24{word-spacing:-9.832735pt;}
.ws2e{word-spacing:-9.774554pt;}
.ws17{word-spacing:-9.716372pt;}
.ws64{word-spacing:-9.670364pt;}
.ws18{word-spacing:-9.658190pt;}
.ws57{word-spacing:-9.600008pt;}
.ws30{word-spacing:-9.541826pt;}
.ws58{word-spacing:-9.483644pt;}
.ws1e{word-spacing:-9.425462pt;}
.wse{word-spacing:-9.404694pt;}
.ws16{word-spacing:-9.367281pt;}
.ws20{word-spacing:-9.309099pt;}
.ws5a{word-spacing:-9.250917pt;}
.ws67{word-spacing:-9.245293pt;}
.ws69{word-spacing:-9.192159pt;}
.ws63{word-spacing:-9.038071pt;}
.ws13{word-spacing:-9.032757pt;}
.ws3d{word-spacing:-8.965826pt;}
.ws29{word-spacing:-8.907644pt;}
.ws34{word-spacing:-8.901826pt;}
.ws4{word-spacing:-8.873356pt;}
.ws1d{word-spacing:-8.843644pt;}
.ws66{word-spacing:-8.820222pt;}
.ws12{word-spacing:-8.767088pt;}
.wsf{word-spacing:-8.713954pt;}
.ws59{word-spacing:-8.674916pt;}
.ws1f{word-spacing:-8.616734pt;}
.ws68{word-spacing:-8.559866pt;}
.ws21{word-spacing:-8.500371pt;}
.ws8{word-spacing:-8.220396pt;}
.ws5{word-spacing:-8.172575pt;}
.ws65{word-spacing:-8.134795pt;}
.ws23{word-spacing:-7.738188pt;}
.ws22{word-spacing:-7.621825pt;}
.wsd{word-spacing:-7.438741pt;}
.ws15{word-spacing:-7.156370pt;}
.ws2d{word-spacing:-6.347642pt;}
.ws26{word-spacing:-6.109096pt;}
.ws2b{word-spacing:-5.882187pt;}
.ws19{word-spacing:-5.178186pt;}
.ws61{word-spacing:-5.120004pt;}
.wsc{word-spacing:-4.468558pt;}
.ws46{word-spacing:-4.072731pt;}
.ws3e{word-spacing:-2.973093pt;}
.ws2f{word-spacing:-2.967275pt;}
.ws14{word-spacing:-2.656693pt;}
.ws60{word-spacing:-2.618184pt;}
.ws44{word-spacing:-1.570910pt;}
.ws1{word-spacing:-0.076513pt;}
.ws2a{word-spacing:-0.058182pt;}
.ws4e{word-spacing:-0.042507pt;}
.ws9{word-spacing:0.000000pt;}
.ws3f{word-spacing:2.146911pt;}
.wsa{word-spacing:2.385457pt;}
.ws4f{word-spacing:5.888579pt;}
.wsb{word-spacing:10.159221pt;}
.ws48{word-spacing:14.254557pt;}
.ws27{word-spacing:16.116377pt;}
.ws7{word-spacing:16.163430pt;}
.ws5e{word-spacing:16.407286pt;}
.ws2{word-spacing:20.786108pt;}
.ws3{word-spacing:23.846639pt;}
.ws47{word-spacing:25.774567pt;}
.ws0{word-spacing:28.615887pt;}
.ws51{word-spacing:30.551973pt;}
.ws50{word-spacing:116.305551pt;}
.ws1b{word-spacing:2010.539389pt;}
._2a{margin-left:-15.757181pt;}
._1{margin-left:-7.192228pt;}
._28{margin-left:-6.269815pt;}
._3{margin-left:-5.228407pt;}
._9{margin-left:-3.457924pt;}
._0{margin-left:-2.371905pt;}
._5{margin-left:-1.482445pt;}
._6{width:1.434624pt;}
._2{width:2.371905pt;}
._29{width:4.712731pt;}
._2d{width:6.382497pt;}
._26{width:14.105206pt;}
._8{width:15.063552pt;}
._24{width:17.416301pt;}
._4{width:18.630868pt;}
._25{width:19.956380pt;}
._7{width:20.945510pt;}
._22{width:22.335143pt;}
._a{width:23.697705pt;}
._21{width:25.490029pt;}
._2b{width:26.589113pt;}
._2c{width:27.582054pt;}
._20{width:29.596234pt;}
._30{width:31.880320pt;}
._23{width:37.625331pt;}
._2f{width:40.203670pt;}
._27{width:47.093838pt;}
._2e{width:58.176533pt;}
._1f{width:61.103947pt;}
._1b{width:858.828454pt;}
._d{width:1082.130778pt;}
._17{width:1128.188478pt;}
._10{width:1134.745992pt;}
._11{width:1192.252303pt;}
._15{width:1255.855444pt;}
._13{width:1433.525328pt;}
._19{width:1480.439835pt;}
._e{width:1522.793849pt;}
._1e{width:1575.698841pt;}
._c{width:1602.904704pt;}
._16{width:1700.397590pt;}
._14{width:1721.830824pt;}
._b{width:1729.167315pt;}
._1d{width:1744.274678pt;}
._18{width:1766.151060pt;}
._f{width:1827.342933pt;}
._12{width:1945.329135pt;}
._1c{width:1956.487732pt;}
._1a{width:2031.891651pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:142.501333pt;}
.y2c{bottom:154.156000pt;}
.y78{bottom:169.600000pt;}
.y5f{bottom:178.106667pt;}
.y2b{bottom:183.340000pt;}
.y44{bottom:184.589333pt;}
.y77{bottom:196.698667pt;}
.y8d{bottom:202.429333pt;}
.y5e{bottom:205.205333pt;}
.y2a{bottom:210.438667pt;}
.y9e{bottom:216.546667pt;}
.y8c{bottom:222.246667pt;}
.y43{bottom:231.344000pt;}
.y29{bottom:237.537333pt;}
.y5d{bottom:242.140000pt;}
.y76{bottom:242.694667pt;}
.y8b{bottom:255.214667pt;}
.y42{bottom:258.441333pt;}
.y28{bottom:264.634667pt;}
.y9d{bottom:276.129333pt;}
.y5c{bottom:279.073333pt;}
.y75{bottom:285.502667pt;}
.yf{bottom:296.937333pt;}
.y8a{bottom:301.576000pt;}
.y9c{bottom:303.228000pt;}
.y41{bottom:304.778667pt;}
.y27{bottom:306.278667pt;}
.y5b{bottom:316.008000pt;}
.ye{bottom:321.510667pt;}
.y74{bottom:338.801333pt;}
.yd{bottom:346.085333pt;}
.yae{bottom:346.929333pt;}
.y26{bottom:347.922667pt;}
.y9b{bottom:350.174667pt;}
.y5a{bottom:352.941333pt;}
.y89{bottom:357.812000pt;}
.y40{bottom:360.874667pt;}
.y73{bottom:365.900000pt;}
.yc{bottom:368.004000pt;}
.yad{bottom:370.840000pt;}
.y88{bottom:384.910667pt;}
.y3f{bottom:387.973333pt;}
.y25{bottom:389.566667pt;}
.y59{bottom:389.876000pt;}
.yb{bottom:392.578667pt;}
.yac{bottom:394.750667pt;}
.y72{bottom:402.221333pt;}
.y9a{bottom:409.757333pt;}
.y87{bottom:412.009333pt;}
.y3e{bottom:415.072000pt;}
.ya{bottom:417.153333pt;}
.yab{bottom:418.661333pt;}
.y58{bottom:426.809333pt;}
.y24{bottom:431.210667pt;}
.y71{bottom:438.542667pt;}
.yaa{bottom:442.570667pt;}
.y3d{bottom:451.164000pt;}
.y57{bottom:453.908000pt;}
.y99{bottom:454.896000pt;}
.y86{bottom:458.370667pt;}
.y70{bottom:465.641333pt;}
.ya9{bottom:466.481333pt;}
.y23{bottom:472.854667pt;}
.y3c{bottom:478.262667pt;}
.y56{bottom:499.904000pt;}
.y98{bottom:500.033333pt;}
.y3b{bottom:505.360000pt;}
.y6f{bottom:511.637333pt;}
.y22{bottom:514.498667pt;}
.y85{bottom:514.608000pt;}
.y3a{bottom:532.458667pt;}
.y97{bottom:545.172000pt;}
.ya8{bottom:550.168000pt;}
.y55{bottom:553.300000pt;}
.y84{bottom:556.817333pt;}
.y39{bottom:559.557333pt;}
.y21{bottom:560.494667pt;}
.y6e{bottom:564.937333pt;}
.ya7{bottom:577.266667pt;}
.y54{bottom:580.398667pt;}
.y96{bottom:590.309333pt;}
.y9{bottom:591.181333pt;}
.y6d{bottom:592.036000pt;}
.y83{bottom:599.028000pt;}
.ya6{bottom:604.364000pt;}
.y38{bottom:605.894667pt;}
.y53{bottom:613.736000pt;}
.y52{bottom:613.737333pt;}
.y20{bottom:614.006667pt;}
.y51{bottom:617.332000pt;}
.y6c{bottom:619.133333pt;}
.ya5{bottom:631.462667pt;}
.y95{bottom:637.257333pt;}
.y8{bottom:637.769333pt;}
.y1f{bottom:641.105333pt;}
.y82{bottom:641.238667pt;}
.y50{bottom:650.670667pt;}
.y6b{bottom:654.126667pt;}
.y4f{bottom:654.266667pt;}
.y7{bottom:661.680000pt;}
.ya4{bottom:677.458667pt;}
.y37{bottom:679.294667pt;}
.y6a{bottom:681.225333pt;}
.y4e{bottom:681.365333pt;}
.y81{bottom:683.449333pt;}
.y6{bottom:685.589333pt;}
.y1e{bottom:691.376000pt;}
.y94{bottom:696.840000pt;}
.y1d{bottom:715.286667pt;}
.y69{bottom:716.218667pt;}
.y4d{bottom:716.970667pt;}
.y36{bottom:721.621333pt;}
.y80{bottom:725.658667pt;}
.ya3{bottom:731.605333pt;}
.y1c{bottom:739.197333pt;}
.y93{bottom:741.977333pt;}
.y4c{bottom:744.069333pt;}
.y68{bottom:752.540000pt;}
.ya2{bottom:758.704000pt;}
.y1b{bottom:763.108000pt;}
.y35{bottom:763.946667pt;}
.y5{bottom:766.398667pt;}
.y7f{bottom:772.021333pt;}
.ya1{bottom:785.802667pt;}
.y1a{bottom:787.017333pt;}
.y92{bottom:787.116000pt;}
.y67{bottom:788.861333pt;}
.y4b{bottom:790.065333pt;}
.y34{bottom:791.386667pt;}
.y4{bottom:794.293333pt;}
.y19{bottom:810.928000pt;}
.y66{bottom:812.362667pt;}
.ya0{bottom:812.901333pt;}
.y65{bottom:815.958667pt;}
.y33{bottom:818.826667pt;}
.y7e{bottom:828.257333pt;}
.y91{bottom:832.253333pt;}
.y18{bottom:834.838667pt;}
.y4a{bottom:843.461333pt;}
.y64{bottom:850.952000pt;}
.y3{bottom:852.836000pt;}
.y7d{bottom:855.356000pt;}
.y17{bottom:858.749333pt;}
.y9f{bottom:858.897333pt;}
.y32{bottom:861.152000pt;}
.y49{bottom:870.560000pt;}
.y90{bottom:877.392000pt;}
.y63{bottom:878.050667pt;}
.y16{bottom:882.658667pt;}
.y31{bottom:888.592000pt;}
.y2{bottom:888.702667pt;}
.y7c{bottom:897.565333pt;}
.y48{bottom:897.657333pt;}
.y62{bottom:913.044000pt;}
.y30{bottom:916.030667pt;}
.y15{bottom:917.064000pt;}
.y8f{bottom:922.529333pt;}
.y1{bottom:924.568000pt;}
.y47{bottom:935.656000pt;}
.y7b{bottom:939.776000pt;}
.y61{bottom:940.141333pt;}
.y14{bottom:940.973333pt;}
.y2f{bottom:943.470667pt;}
.y13{bottom:945.794667pt;}
.y7a{bottom:963.278667pt;}
.y79{bottom:966.874667pt;}
.y60{bottom:967.240000pt;}
.y8e{bottom:969.477333pt;}
.y11{bottom:969.533333pt;}
.y46{bottom:974.446667pt;}
.y12{bottom:974.812000pt;}
.y2e{bottom:985.796000pt;}
.y10{bottom:1013.236000pt;}
.y2d{bottom:1059.728000pt;}
.hb{height:14.824448pt;}
.h9{height:24.696550pt;}
.h8{height:28.267288pt;}
.h6{height:33.713664pt;}
.ha{height:38.043849pt;}
.h5{height:39.850400pt;}
.hd{height:41.018216pt;}
.h11{height:41.658217pt;}
.h7{height:43.636400pt;}
.h4{height:44.632747pt;}
.h3{height:47.820800pt;}
.hc{height:49.381955pt;}
.h14{height:50.147084pt;}
.h12{height:52.288621pt;}
.hf{height:52.293955pt;}
.h15{height:53.053751pt;}
.h2{height:53.559147pt;}
.h13{height:55.402216pt;}
.he{height:58.020400pt;}
.h10{height:66.672621pt;}
.h17{height:83.545733pt;}
.h16{height:120.287549pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:94.413333pt;}
.x14{left:96.000000pt;}
.x19{left:98.434667pt;}
.x94{left:100.077333pt;}
.xc{left:101.992000pt;}
.x17{left:106.909333pt;}
.xb{left:111.940000pt;}
.x8e{left:113.121333pt;}
.x1e{left:115.925333pt;}
.x9d{left:117.328000pt;}
.x16{left:118.221333pt;}
.x95{left:123.556000pt;}
.x8f{left:125.482667pt;}
.x7f{left:130.709333pt;}
.x3c{left:132.032000pt;}
.x18{left:133.694667pt;}
.x1b{left:134.704000pt;}
.x75{left:135.850667pt;}
.x1c{left:137.330667pt;}
.x13{left:141.164000pt;}
.x50{left:142.273333pt;}
.x20{left:143.424000pt;}
.x3d{left:145.364000pt;}
.x8d{left:149.374667pt;}
.x47{left:153.313333pt;}
.x12{left:154.448000pt;}
.x22{left:159.057333pt;}
.x21{left:161.710667pt;}
.x80{left:163.526667pt;}
.x90{left:165.185333pt;}
.x72{left:166.608000pt;}
.x60{left:168.202667pt;}
.x7e{left:170.252000pt;}
.x73{left:173.426667pt;}
.x1{left:174.710667pt;}
.x6a{left:178.202667pt;}
.x48{left:182.808000pt;}
.x2{left:184.758667pt;}
.x2e{left:187.486667pt;}
.x49{left:188.578667pt;}
.xf{left:190.597333pt;}
.x10{left:196.556000pt;}
.x91{left:198.669333pt;}
.x61{left:200.869333pt;}
.x4a{left:201.850667pt;}
.x9b{left:220.840000pt;}
.x97{left:223.468000pt;}
.x9c{left:228.113333pt;}
.x86{left:229.970667pt;}
.x87{left:235.513333pt;}
.x33{left:239.504000pt;}
.x98{left:240.972000pt;}
.x4{left:244.284000pt;}
.x92{left:245.928000pt;}
.x88{left:248.786667pt;}
.x93{left:252.746667pt;}
.x2f{left:255.909333pt;}
.x1f{left:257.754667pt;}
.x89{left:262.465333pt;}
.x78{left:263.908000pt;}
.x7a{left:267.706667pt;}
.x51{left:269.180000pt;}
.x79{left:271.116000pt;}
.x52{left:274.950667pt;}
.x8a{left:277.872000pt;}
.x5e{left:280.842667pt;}
.x8b{left:285.145333pt;}
.x5f{left:288.076000pt;}
.x7{left:293.149333pt;}
.x1d{left:295.225333pt;}
.x3{left:297.234667pt;}
.x69{left:300.008000pt;}
.x30{left:307.252000pt;}
.x5{left:316.888000pt;}
.x53{left:323.421333pt;}
.x11{left:324.346667pt;}
.x76{left:325.809333pt;}
.x3b{left:328.756000pt;}
.x8c{left:330.168000pt;}
.x7c{left:331.278667pt;}
.x3a{left:336.909333pt;}
.x6{left:339.008000pt;}
.xd{left:340.090667pt;}
.x8{left:349.013333pt;}
.x54{left:352.916000pt;}
.x6b{left:354.664000pt;}
.x62{left:356.293333pt;}
.x3e{left:357.413333pt;}
.x55{left:358.686667pt;}
.x9{left:360.858667pt;}
.x15{left:363.736000pt;}
.x7d{left:366.198667pt;}
.x6c{left:370.105333pt;}
.x56{left:371.958667pt;}
.x5d{left:377.749333pt;}
.x96{left:380.648000pt;}
.x7b{left:385.790667pt;}
.x6d{left:387.526667pt;}
.x23{left:391.408000pt;}
.x34{left:397.858667pt;}
.x2b{left:400.364000pt;}
.x24{left:408.721333pt;}
.x74{left:410.653333pt;}
.x41{left:414.678667pt;}
.x35{left:415.592000pt;}
.x25{left:416.765333pt;}
.x4b{left:422.132000pt;}
.x6e{left:424.912000pt;}
.x42{left:427.952000pt;}
.x57{left:433.082667pt;}
.x6f{left:434.842667pt;}
.x4c{left:437.260000pt;}
.x26{left:447.378667pt;}
.x58{left:448.457333pt;}
.x27{left:452.984000pt;}
.xe{left:454.897333pt;}
.x81{left:460.957333pt;}
.x28{left:466.257333pt;}
.x29{left:475.902667pt;}
.x31{left:481.842667pt;}
.x70{left:485.458667pt;}
.x63{left:493.966667pt;}
.x77{left:496.228000pt;}
.x4d{left:498.058667pt;}
.x99{left:516.069333pt;}
.x64{left:518.613333pt;}
.x9a{left:523.342667pt;}
.x82{left:535.940000pt;}
.x2a{left:543.574667pt;}
.x83{left:550.932000pt;}
.x84{left:556.701333pt;}
.x36{left:560.236000pt;}
.x37{left:577.121333pt;}
.x85{left:587.092000pt;}
.x38{left:623.562667pt;}
.x43{left:629.452000pt;}
.x44{left:638.446667pt;}
.x39{left:639.541333pt;}
.x71{left:642.404000pt;}
.x45{left:643.989333pt;}
.x4e{left:647.202667pt;}
.x3f{left:652.056000pt;}
.x46{left:657.262667pt;}
.x59{left:661.026667pt;}
.x65{left:662.902667pt;}
.x4f{left:668.120000pt;}
.x5a{left:670.020000pt;}
.x40{left:673.581333pt;}
.x5b{left:675.790667pt;}
.x66{left:677.893333pt;}
.x67{left:683.437333pt;}
.x5c{left:693.766667pt;}
.x32{left:700.629333pt;}
.x2c{left:703.145333pt;}
.x1a{left:710.396000pt;}
.x68{left:713.826667pt;}
.x2d{left:715.569333pt;}
}




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