
    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_843cb90273ab2324b0e3f8d8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_a42f106a3790ecce4bbb614c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_489b110bc37b149654cc3d37.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_73cfe1caef00a5a64ca12794.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959961;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_059116bae216493ba4a4aacc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.675781;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_1a9abca63d9e0eb4d2d043c6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a7cdf082d20cec3dbb29b863.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9a92d376a15991f2ff4d946b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740234;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_d99913620d24096af7bbb7f1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740723;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_9ec265c77321500f928c23ea.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740723;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_2ef41ec9a9ddd2942ff76a4f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740234;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_58a48b913ba29241e496b2f1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.740723;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_833c9f2dcbf431e614a48d5d.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_0ce25cf167da03a98b2fec24.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.718262;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_67091e1fb4977c3e01f6a0a1.woff2')format("woff");}.fff{font-family:fff;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_48da565eb2e37c398b22b064.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.761719;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_89466cef4c770b7014158295.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_72979edaddaaee84ba3a1f4d.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.120605;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_753968d6aaa3eab4d7fe80c9.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_9a92d376a15991f2ff4d946b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_4d86d9a41de70e2731b94289.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_2ef41ec9a9ddd2942ff76a4f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_8394a10f6564fdc648892b8e.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_014cda5ce5ad726924360239.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_cc7a1f2bd6cf0e582680de73.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_ba2f9e10310da540a4262ad9.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_753968d6aaa3eab4d7fe80c9.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_9a92d376a15991f2ff4d946b.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.740234;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:ff1d;src:url('chunks/assets/font_4d86d9a41de70e2731b94289.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_2ef41ec9a9ddd2942ff76a4f.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.740234;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:ff1f;src:url('chunks/assets/font_8394a10f6564fdc648892b8e.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.330566;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:ff20;src:url('chunks/assets/font_8ad0fac684e3facc77272865.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.078000px;}
.ls10{letter-spacing:-0.072000px;}
.lse{letter-spacing:-0.060000px;}
.lsd{letter-spacing:-0.054000px;}
.ls9{letter-spacing:-0.048000px;}
.lsb{letter-spacing:-0.042000px;}
.ls11{letter-spacing:-0.030000px;}
.lsa{letter-spacing:-0.024000px;}
.lsc{letter-spacing:-0.012000px;}
.ls8{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.012000px;}
.ls12{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.256200px;}
.ls18{letter-spacing:0.262200px;}
.ls16{letter-spacing:0.269400px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.480000px;}
.ls0{letter-spacing:0.540000px;}
.ls1a{letter-spacing:0.720000px;}
.ls3{letter-spacing:1.242000px;}
.ls5{letter-spacing:1.410000px;}
.ls6{letter-spacing:2.040000px;}
.ls7{letter-spacing:2.196000px;}
.ls13{letter-spacing:3.060000px;}
.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;}
}
.ws3{word-spacing:-35.040000px;}
.ws23{word-spacing:-18.720000px;}
.ws1c{word-spacing:-18.216000px;}
.ws1b{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws22{word-spacing:-17.856000px;}
.ws1d{word-spacing:-17.784000px;}
.ws21{word-spacing:-16.822200px;}
.ws4{word-spacing:-16.632000px;}
.ws20{word-spacing:-16.560000px;}
.ws1f{word-spacing:-15.226440px;}
.ws1e{word-spacing:-12.329400px;}
.ws0{word-spacing:-12.060000px;}
.ws1{word-spacing:-10.440000px;}
.ws1a{word-spacing:-0.036000px;}
.ws24{word-spacing:-0.024000px;}
.ws19{word-spacing:-0.012000px;}
.ws5{word-spacing:0.000000px;}
.ws18{word-spacing:0.162000px;}
.wsb{word-spacing:0.174000px;}
.ws17{word-spacing:0.180000px;}
.wsa{word-spacing:0.186000px;}
.ws9{word-spacing:0.210000px;}
.wsc{word-spacing:0.570000px;}
.ws12{word-spacing:5.076000px;}
.wsf{word-spacing:5.082000px;}
.wsd{word-spacing:5.094000px;}
.wse{word-spacing:5.118000px;}
.ws16{word-spacing:5.124000px;}
.ws10{word-spacing:5.130000px;}
.ws11{word-spacing:5.142000px;}
.ws13{word-spacing:5.148000px;}
.ws15{word-spacing:5.190000px;}
.ws14{word-spacing:5.196000px;}
.ws6{word-spacing:15.498000px;}
.ws8{word-spacing:18.786000px;}
.ws7{word-spacing:18.834000px;}
._12{margin-left:-5.109600px;}
._11{margin-left:-3.744000px;}
._7{margin-left:-2.376000px;}
._0{margin-left:-1.082400px;}
._1{width:1.274400px;}
._6{width:3.081000px;}
._d{width:4.608000px;}
._e{width:5.976000px;}
._f{width:7.293600px;}
._c{width:8.424000px;}
._13{width:10.296000px;}
._a{width:11.520000px;}
._b{width:13.032000px;}
._5{width:14.208000px;}
._10{width:16.128000px;}
._2{width:17.748000px;}
._4{width:19.276803px;}
._3{width:20.415600px;}
._15{width:22.245600px;}
._14{width:24.412801px;}
._9{width:25.776000px;}
._8{width:26.784000px;}
._16{width:28.872000px;}
._26{width:39.960000px;}
._27{width:41.073600px;}
._2d{width:42.480000px;}
._2e{width:43.992000px;}
._28{width:47.592000px;}
._29{width:48.960000px;}
._30{width:53.400000px;}
._31{width:54.432000px;}
._1d{width:55.728000px;}
._1e{width:56.808000px;}
._1f{width:57.948000px;}
._2c{width:59.220000px;}
._32{width:63.216000px;}
._33{width:64.440000px;}
._2a{width:67.608000px;}
._2b{width:68.688000px;}
._20{width:70.776000px;}
._21{width:72.453600px;}
._22{width:93.530400px;}
._23{width:94.591199px;}
._2f{width:96.568801px;}
._17{width:106.992000px;}
._18{width:108.350400px;}
._24{width:124.128000px;}
._25{width:126.014400px;}
._19{width:164.880000px;}
._1a{width:166.620000px;}
._1b{width:183.600000px;}
._1c{width:185.124000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs6{font-size:42.000000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:60.000000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y17{bottom:22.500000px;}
.y2c{bottom:37.221000px;}
.y16{bottom:58.597500px;}
.y1d{bottom:71.640000px;}
.y15{bottom:76.597500px;}
.y14{bottom:94.597500px;}
.y3d{bottom:113.400000px;}
.y75{bottom:120.600000px;}
.y13{bottom:127.789500px;}
.y7b{bottom:133.200000px;}
.y57{bottom:136.440000px;}
.y53{bottom:142.020000px;}
.y3c{bottom:144.360000px;}
.y12{bottom:145.555500px;}
.y46{bottom:147.960000px;}
.y74{bottom:151.560000px;}
.y56{bottom:156.780000px;}
.y4b{bottom:161.820000px;}
.y52{bottom:162.180000px;}
.y11{bottom:163.278000px;}
.y7a{bottom:164.340000px;}
.y45{bottom:168.300000px;}
.y7d{bottom:175.140000px;}
.y3b{bottom:175.500000px;}
.y55{bottom:176.940000px;}
.y4a{bottom:181.980000px;}
.y51{bottom:182.340000px;}
.y73{bottom:182.700000px;}
.y44{bottom:188.460000px;}
.y79{bottom:195.300000px;}
.y54{bottom:197.280000px;}
.y49{bottom:202.350000px;}
.y50{bottom:202.710000px;}
.y10{bottom:203.841000px;}
.y41{bottom:206.490000px;}
.y72{bottom:213.690000px;}
.y48{bottom:222.510000px;}
.y1c{bottom:233.512500px;}
.y3a{bottom:237.630000px;}
.y47{bottom:242.670000px;}
.y71{bottom:244.830000px;}
.y78{bottom:248.070000px;}
.y1b{bottom:255.112500px;}
.y77{bottom:268.410000px;}
.y39{bottom:268.590000px;}
.y70{bottom:275.790000px;}
.y1a{bottom:276.712500px;}
.y76{bottom:288.570000px;}
.y19{bottom:298.312500px;}
.y38{bottom:299.730000px;}
.y6f{bottom:306.930000px;}
.y18{bottom:319.912500px;}
.y7c{bottom:330.330000px;}
.y37{bottom:330.690000px;}
.y6e{bottom:337.890000px;}
.y4f{bottom:341.670000px;}
.y36{bottom:361.830000px;}
.y4e{bottom:382.170000px;}
.y35{bottom:392.790000px;}
.y6d{bottom:399.990000px;}
.y4d{bottom:402.330000px;}
.ye{bottom:405.750000px;}
.y4c{bottom:422.670000px;}
.y34{bottom:423.930000px;}
.y6c{bottom:431.130000px;}
.y33{bottom:454.935000px;}
.y6b{bottom:462.135000px;}
.y32{bottom:486.075000px;}
.y6a{bottom:493.275000px;}
.y42{bottom:516.675000px;}
.y31{bottom:517.035000px;}
.y69{bottom:524.235000px;}
.y30{bottom:548.175000px;}
.y68{bottom:555.375000px;}
.yd{bottom:566.715000px;}
.y2f{bottom:579.135000px;}
.y67{bottom:586.335000px;}
.yc{bottom:595.155000px;}
.y2e{bottom:610.275000px;}
.yb{bottom:616.755000px;}
.y66{bottom:617.475000px;}
.y2d{bottom:641.235000px;}
.ya{bottom:652.215000px;}
.y2b{bottom:672.375000px;}
.y9{bottom:673.845000px;}
.y65{bottom:679.245000px;}
.y40{bottom:703.365000px;}
.y8{bottom:709.125000px;}
.y7{bottom:730.725000px;}
.y2a{bottom:734.505000px;}
.y64{bottom:741.705000px;}
.y29{bottom:765.465000px;}
.y6{bottom:766.005000px;}
.y63{bottom:772.665000px;}
.y5{bottom:794.445000px;}
.y28{bottom:796.605000px;}
.y62{bottom:803.805000px;}
.y43{bottom:827.205000px;}
.y27{bottom:827.565000px;}
.y61{bottom:834.765000px;}
.y26{bottom:858.705000px;}
.y60{bottom:865.905000px;}
.y25{bottom:889.665000px;}
.y5f{bottom:896.865000px;}
.y4{bottom:910.410000px;}
.y24{bottom:920.850000px;}
.y5e{bottom:927.870000px;}
.y3{bottom:941.550000px;}
.y23{bottom:951.810000px;}
.y5d{bottom:959.010000px;}
.y22{bottom:982.950000px;}
.y5c{bottom:989.970000px;}
.y21{bottom:1013.910000px;}
.y5b{bottom:1021.110000px;}
.y20{bottom:1045.050000px;}
.y5a{bottom:1052.070000px;}
.y2{bottom:1074.930000px;}
.y1f{bottom:1076.010000px;}
.y3f{bottom:1107.150000px;}
.y59{bottom:1119.390000px;}
.y1{bottom:1126.590000px;}
.y1e{bottom:1137.750000px;}
.y3e{bottom:1138.110000px;}
.y58{bottom:1139.550000px;}
.yf{bottom:1244.520000px;}
.hb{height:28.916016px;}
.h4{height:40.964766px;}
.h9{height:43.710938px;}
.h7{height:45.000000px;}
.h8{height:48.656250px;}
.hc{height:49.992188px;}
.ha{height:62.578125px;}
.h10{height:64.546875px;}
.h5{height:64.978594px;}
.h12{height:65.010937px;}
.hd{height:65.884219px;}
.h11{height:66.757500px;}
.hf{height:70.628906px;}
.he{height:70.664062px;}
.h6{height:72.562500px;}
.h3{height:74.704922px;}
.h2{height:121.179375px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:7.500000px;}
.x13{left:72.655500px;}
.x11{left:74.236500px;}
.x10{left:77.164500px;}
.xd{left:108.036000px;}
.x6{left:109.116000px;}
.x2c{left:110.196000px;}
.x22{left:111.276000px;}
.x18{left:113.076000px;}
.x28{left:115.236000px;}
.x9{left:117.036000px;}
.x1d{left:120.096000px;}
.x3{left:121.896000px;}
.x1a{left:124.056000px;}
.x2a{left:126.216000px;}
.x1b{left:127.836000px;}
.x2e{left:129.276000px;}
.x1e{left:130.716000px;}
.x21{left:132.876000px;}
.x26{left:134.136000px;}
.x19{left:135.936000px;}
.x1c{left:137.916000px;}
.x17{left:139.536000px;}
.x16{left:141.156000px;}
.xc{left:147.996000px;}
.x1f{left:149.976000px;}
.x1{left:155.730000px;}
.xb{left:183.630000px;}
.x20{left:187.024500px;}
.x2b{left:240.150000px;}
.x5{left:243.930000px;}
.x27{left:255.990000px;}
.x8{left:261.030000px;}
.x2d{left:274.035000px;}
.x29{left:291.675000px;}
.xa{left:296.895000px;}
.x23{left:309.315000px;}
.x2{left:333.435000px;}
.x4{left:339.915000px;}
.x7{left:365.655000px;}
.x25{left:370.335000px;}
.x15{left:397.515000px;}
.xf{left:436.533000px;}
.x12{left:630.697500px;}
.x24{left:768.570000px;}
.x14{left:777.030000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.069333pt;}
.ls10{letter-spacing:-0.064000pt;}
.lse{letter-spacing:-0.053333pt;}
.lsd{letter-spacing:-0.048000pt;}
.ls9{letter-spacing:-0.042667pt;}
.lsb{letter-spacing:-0.037333pt;}
.ls11{letter-spacing:-0.026667pt;}
.lsa{letter-spacing:-0.021333pt;}
.lsc{letter-spacing:-0.010667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.010667pt;}
.ls12{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.227733pt;}
.ls18{letter-spacing:0.233067pt;}
.ls16{letter-spacing:0.239467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.426667pt;}
.ls0{letter-spacing:0.480000pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls3{letter-spacing:1.104000pt;}
.ls5{letter-spacing:1.253333pt;}
.ls6{letter-spacing:1.813333pt;}
.ls7{letter-spacing:1.952000pt;}
.ls13{letter-spacing:2.720000pt;}
.ws3{word-spacing:-31.146667pt;}
.ws23{word-spacing:-16.640000pt;}
.ws1c{word-spacing:-16.192000pt;}
.ws1b{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws22{word-spacing:-15.872000pt;}
.ws1d{word-spacing:-15.808000pt;}
.ws21{word-spacing:-14.953067pt;}
.ws4{word-spacing:-14.784000pt;}
.ws20{word-spacing:-14.720000pt;}
.ws1f{word-spacing:-13.534613pt;}
.ws1e{word-spacing:-10.959467pt;}
.ws0{word-spacing:-10.720000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws1a{word-spacing:-0.032000pt;}
.ws24{word-spacing:-0.021333pt;}
.ws19{word-spacing:-0.010667pt;}
.ws5{word-spacing:0.000000pt;}
.ws18{word-spacing:0.144000pt;}
.wsb{word-spacing:0.154667pt;}
.ws17{word-spacing:0.160000pt;}
.wsa{word-spacing:0.165333pt;}
.ws9{word-spacing:0.186667pt;}
.wsc{word-spacing:0.506667pt;}
.ws12{word-spacing:4.512000pt;}
.wsf{word-spacing:4.517333pt;}
.wsd{word-spacing:4.528000pt;}
.wse{word-spacing:4.549333pt;}
.ws16{word-spacing:4.554667pt;}
.ws10{word-spacing:4.560000pt;}
.ws11{word-spacing:4.570667pt;}
.ws13{word-spacing:4.576000pt;}
.ws15{word-spacing:4.613333pt;}
.ws14{word-spacing:4.618667pt;}
.ws6{word-spacing:13.776000pt;}
.ws8{word-spacing:16.698667pt;}
.ws7{word-spacing:16.741333pt;}
._12{margin-left:-4.541866pt;}
._11{margin-left:-3.328000pt;}
._7{margin-left:-2.112000pt;}
._0{margin-left:-0.962134pt;}
._1{width:1.132800pt;}
._6{width:2.738666pt;}
._d{width:4.096000pt;}
._e{width:5.312000pt;}
._f{width:6.483200pt;}
._c{width:7.488000pt;}
._13{width:9.152000pt;}
._a{width:10.240000pt;}
._b{width:11.584000pt;}
._5{width:12.629333pt;}
._10{width:14.336000pt;}
._2{width:15.776000pt;}
._4{width:17.134936pt;}
._3{width:18.147200pt;}
._15{width:19.773866pt;}
._14{width:21.700268pt;}
._9{width:22.912000pt;}
._8{width:23.808000pt;}
._16{width:25.664000pt;}
._26{width:35.520000pt;}
._27{width:36.509866pt;}
._2d{width:37.760000pt;}
._2e{width:39.104000pt;}
._28{width:42.304000pt;}
._29{width:43.520000pt;}
._30{width:47.466667pt;}
._31{width:48.384000pt;}
._1d{width:49.536000pt;}
._1e{width:50.496000pt;}
._1f{width:51.509333pt;}
._2c{width:52.640000pt;}
._32{width:56.192000pt;}
._33{width:57.280000pt;}
._2a{width:60.096000pt;}
._2b{width:61.056000pt;}
._20{width:62.912000pt;}
._21{width:64.403200pt;}
._22{width:83.138134pt;}
._23{width:84.081066pt;}
._2f{width:85.838934pt;}
._17{width:95.104000pt;}
._18{width:96.311467pt;}
._24{width:110.336000pt;}
._25{width:112.012800pt;}
._19{width:146.560000pt;}
._1a{width:148.106667pt;}
._1b{width:163.200000pt;}
._1c{width:164.554667pt;}
.fs3{font-size:37.120000pt;}
.fs6{font-size:37.333333pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:20.000000pt;}
.y2c{bottom:33.085333pt;}
.y16{bottom:52.086667pt;}
.y1d{bottom:63.680000pt;}
.y15{bottom:68.086667pt;}
.y14{bottom:84.086667pt;}
.y3d{bottom:100.800000pt;}
.y75{bottom:107.200000pt;}
.y13{bottom:113.590667pt;}
.y7b{bottom:118.400000pt;}
.y57{bottom:121.280000pt;}
.y53{bottom:126.240000pt;}
.y3c{bottom:128.320000pt;}
.y12{bottom:129.382667pt;}
.y46{bottom:131.520000pt;}
.y74{bottom:134.720000pt;}
.y56{bottom:139.360000pt;}
.y4b{bottom:143.840000pt;}
.y52{bottom:144.160000pt;}
.y11{bottom:145.136000pt;}
.y7a{bottom:146.080000pt;}
.y45{bottom:149.600000pt;}
.y7d{bottom:155.680000pt;}
.y3b{bottom:156.000000pt;}
.y55{bottom:157.280000pt;}
.y4a{bottom:161.760000pt;}
.y51{bottom:162.080000pt;}
.y73{bottom:162.400000pt;}
.y44{bottom:167.520000pt;}
.y79{bottom:173.600000pt;}
.y54{bottom:175.360000pt;}
.y49{bottom:179.866667pt;}
.y50{bottom:180.186667pt;}
.y10{bottom:181.192000pt;}
.y41{bottom:183.546667pt;}
.y72{bottom:189.946667pt;}
.y48{bottom:197.786667pt;}
.y1c{bottom:207.566667pt;}
.y3a{bottom:211.226667pt;}
.y47{bottom:215.706667pt;}
.y71{bottom:217.626667pt;}
.y78{bottom:220.506667pt;}
.y1b{bottom:226.766667pt;}
.y77{bottom:238.586667pt;}
.y39{bottom:238.746667pt;}
.y70{bottom:245.146667pt;}
.y1a{bottom:245.966667pt;}
.y76{bottom:256.506667pt;}
.y19{bottom:265.166667pt;}
.y38{bottom:266.426667pt;}
.y6f{bottom:272.826667pt;}
.y18{bottom:284.366667pt;}
.y7c{bottom:293.626667pt;}
.y37{bottom:293.946667pt;}
.y6e{bottom:300.346667pt;}
.y4f{bottom:303.706667pt;}
.y36{bottom:321.626667pt;}
.y4e{bottom:339.706667pt;}
.y35{bottom:349.146667pt;}
.y6d{bottom:355.546667pt;}
.y4d{bottom:357.626667pt;}
.ye{bottom:360.666667pt;}
.y4c{bottom:375.706667pt;}
.y34{bottom:376.826667pt;}
.y6c{bottom:383.226667pt;}
.y33{bottom:404.386667pt;}
.y6b{bottom:410.786667pt;}
.y32{bottom:432.066667pt;}
.y6a{bottom:438.466667pt;}
.y42{bottom:459.266667pt;}
.y31{bottom:459.586667pt;}
.y69{bottom:465.986667pt;}
.y30{bottom:487.266667pt;}
.y68{bottom:493.666667pt;}
.yd{bottom:503.746667pt;}
.y2f{bottom:514.786667pt;}
.y67{bottom:521.186667pt;}
.yc{bottom:529.026667pt;}
.y2e{bottom:542.466667pt;}
.yb{bottom:548.226667pt;}
.y66{bottom:548.866667pt;}
.y2d{bottom:569.986667pt;}
.ya{bottom:579.746667pt;}
.y2b{bottom:597.666667pt;}
.y9{bottom:598.973333pt;}
.y65{bottom:603.773333pt;}
.y40{bottom:625.213333pt;}
.y8{bottom:630.333333pt;}
.y7{bottom:649.533333pt;}
.y2a{bottom:652.893333pt;}
.y64{bottom:659.293333pt;}
.y29{bottom:680.413333pt;}
.y6{bottom:680.893333pt;}
.y63{bottom:686.813333pt;}
.y5{bottom:706.173333pt;}
.y28{bottom:708.093333pt;}
.y62{bottom:714.493333pt;}
.y43{bottom:735.293333pt;}
.y27{bottom:735.613333pt;}
.y61{bottom:742.013333pt;}
.y26{bottom:763.293333pt;}
.y60{bottom:769.693333pt;}
.y25{bottom:790.813333pt;}
.y5f{bottom:797.213333pt;}
.y4{bottom:809.253333pt;}
.y24{bottom:818.533333pt;}
.y5e{bottom:824.773333pt;}
.y3{bottom:836.933333pt;}
.y23{bottom:846.053333pt;}
.y5d{bottom:852.453333pt;}
.y22{bottom:873.733333pt;}
.y5c{bottom:879.973333pt;}
.y21{bottom:901.253333pt;}
.y5b{bottom:907.653333pt;}
.y20{bottom:928.933333pt;}
.y5a{bottom:935.173333pt;}
.y2{bottom:955.493333pt;}
.y1f{bottom:956.453333pt;}
.y3f{bottom:984.133333pt;}
.y59{bottom:995.013333pt;}
.y1{bottom:1001.413333pt;}
.y1e{bottom:1011.333333pt;}
.y3e{bottom:1011.653333pt;}
.y58{bottom:1012.933333pt;}
.yf{bottom:1106.240000pt;}
.hb{height:25.703125pt;}
.h4{height:36.413125pt;}
.h9{height:38.854167pt;}
.h7{height:40.000000pt;}
.h8{height:43.250000pt;}
.hc{height:44.437500pt;}
.ha{height:55.625000pt;}
.h10{height:57.375000pt;}
.h5{height:57.758750pt;}
.h12{height:57.787500pt;}
.hd{height:58.563750pt;}
.h11{height:59.340000pt;}
.hf{height:62.781250pt;}
.he{height:62.812500pt;}
.h6{height:64.500000pt;}
.h3{height:66.404375pt;}
.h2{height:107.715000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:6.666667pt;}
.x13{left:64.582667pt;}
.x11{left:65.988000pt;}
.x10{left:68.590667pt;}
.xd{left:96.032000pt;}
.x6{left:96.992000pt;}
.x2c{left:97.952000pt;}
.x22{left:98.912000pt;}
.x18{left:100.512000pt;}
.x28{left:102.432000pt;}
.x9{left:104.032000pt;}
.x1d{left:106.752000pt;}
.x3{left:108.352000pt;}
.x1a{left:110.272000pt;}
.x2a{left:112.192000pt;}
.x1b{left:113.632000pt;}
.x2e{left:114.912000pt;}
.x1e{left:116.192000pt;}
.x21{left:118.112000pt;}
.x26{left:119.232000pt;}
.x19{left:120.832000pt;}
.x1c{left:122.592000pt;}
.x17{left:124.032000pt;}
.x16{left:125.472000pt;}
.xc{left:131.552000pt;}
.x1f{left:133.312000pt;}
.x1{left:138.426667pt;}
.xb{left:163.226667pt;}
.x20{left:166.244000pt;}
.x2b{left:213.466667pt;}
.x5{left:216.826667pt;}
.x27{left:227.546667pt;}
.x8{left:232.026667pt;}
.x2d{left:243.586667pt;}
.x29{left:259.266667pt;}
.xa{left:263.906667pt;}
.x23{left:274.946667pt;}
.x2{left:296.386667pt;}
.x4{left:302.146667pt;}
.x7{left:325.026667pt;}
.x25{left:329.186667pt;}
.x15{left:353.346667pt;}
.xf{left:388.029333pt;}
.x12{left:560.620000pt;}
.x24{left:683.173333pt;}
.x14{left:690.693333pt;}
}




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