
    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_4a2aa73acfbc2dcc6e53b237.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_17ce0b618b0329fc0ebaebae.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_acc002782e7a718cb0e0641b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.897000;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_6fb249a276b8fcb2d07dd0f5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.580000;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_7686397113fc55a2cd928e7e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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_aa8d8ceff5ee22ac4c18b0c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.555000;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_5ec72a90765cf451f45c3fe8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.522000;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_169a3521b0f49c089d0dfb54.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.234000;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);}
.m16{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);}
.m3{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);}
.m9{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m8{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.md{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);}
.mb{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m1c{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,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);}
.m6{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m7{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);}
.m4{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);}
.m1d{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m19{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m14{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);}
.ma{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:56.676000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.988780px;}
.ls5{letter-spacing:15.260724px;}
.ls4{letter-spacing:16.841790px;}
.ls3{letter-spacing:17.185500px;}
.ls2{letter-spacing:957.795000px;}
.ls6{letter-spacing:958.995000px;}
.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;}
}
.ws5a{word-spacing:-17.185500px;}
.ws11{word-spacing:-14.943900px;}
.ws4e{word-spacing:-3.849552px;}
.ws4a{word-spacing:-3.437100px;}
.ws2a{word-spacing:-3.093390px;}
.ws10{word-spacing:-2.988780px;}
.ws2e{word-spacing:-2.818422px;}
.ws2f{word-spacing:-2.474712px;}
.ws51{word-spacing:-2.337228px;}
.ws3c{word-spacing:-2.062260px;}
.ws29{word-spacing:-1.787292px;}
.ws54{word-spacing:-1.649808px;}
.ws21{word-spacing:-1.374840px;}
.ws30{word-spacing:-0.893646px;}
.ws36{word-spacing:-0.618678px;}
.ws14{word-spacing:-0.549936px;}
.ws52{word-spacing:-0.481194px;}
.ws2{word-spacing:-0.413170px;}
.ws4c{word-spacing:-0.412452px;}
.ws28{word-spacing:-0.343710px;}
.ws42{word-spacing:-0.274968px;}
.wsa{word-spacing:-0.239102px;}
.ws1d{word-spacing:-0.206226px;}
.ws2c{word-spacing:-0.137484px;}
.wsc{word-spacing:-0.119551px;}
.ws40{word-spacing:-0.068742px;}
.wsf{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.047821px;}
.ws3{word-spacing:0.000000px;}
.ws1f{word-spacing:0.068742px;}
.ws8{word-spacing:0.119551px;}
.ws15{word-spacing:0.137484px;}
.ws5{word-spacing:0.179327px;}
.ws20{word-spacing:0.206226px;}
.ws18{word-spacing:0.274968px;}
.wsb{word-spacing:0.298878px;}
.ws13{word-spacing:0.343710px;}
.ws48{word-spacing:0.412452px;}
.ws24{word-spacing:0.549936px;}
.ws25{word-spacing:0.756162px;}
.ws3d{word-spacing:1.099872px;}
.ws46{word-spacing:1.443582px;}
.ws19{word-spacing:1.512324px;}
.ws22{word-spacing:2.062260px;}
.ws9{word-spacing:2.450800px;}
.ws34{word-spacing:2.543454px;}
.ws49{word-spacing:2.680938px;}
.ws3b{word-spacing:3.093390px;}
.ws6{word-spacing:3.347434px;}
.ws1b{word-spacing:3.368358px;}
.ws1a{word-spacing:3.712068px;}
.ws58{word-spacing:4.124520px;}
.ws2b{word-spacing:4.262004px;}
.ws7{word-spacing:4.423394px;}
.ws41{word-spacing:4.605714px;}
.ws27{word-spacing:5.018166px;}
.ws35{word-spacing:5.155650px;}
.ws26{word-spacing:5.224392px;}
.ws23{word-spacing:5.293134px;}
.wsd{word-spacing:5.499355px;}
.ws1c{word-spacing:5.980554px;}
.ws47{word-spacing:6.186780px;}
.ws53{word-spacing:6.324264px;}
.ws2d{word-spacing:6.599232px;}
.ws16{word-spacing:6.667974px;}
.wse{word-spacing:6.874194px;}
.ws1e{word-spacing:7.355394px;}
.ws5b{word-spacing:7.699104px;}
.ws4d{word-spacing:8.386524px;}
.ws31{word-spacing:9.417654px;}
.ws17{word-spacing:9.692622px;}
.ws57{word-spacing:10.448784px;}
.ws59{word-spacing:10.655010px;}
.ws3a{word-spacing:12.167334px;}
.ws50{word-spacing:12.717270px;}
.ws4b{word-spacing:13.748400px;}
.ws44{word-spacing:15.123240px;}
.ws0{word-spacing:16.880672px;}
.ws3e{word-spacing:16.979274px;}
.ws3f{word-spacing:17.048016px;}
.ws37{word-spacing:17.116758px;}
.ws33{word-spacing:17.254242px;}
.ws32{word-spacing:19.349392px;}
.ws4{word-spacing:19.427070px;}
.ws56{word-spacing:20.966310px;}
.ws39{word-spacing:48.669336px;}
.ws4f{word-spacing:67.298418px;}
.ws55{word-spacing:68.329548px;}
.ws45{word-spacing:69.841872px;}
.ws12{word-spacing:77.630692px;}
.ws43{word-spacing:218.668302px;}
.ws38{word-spacing:434.380698px;}
._1{margin-left:-7.230468px;}
._3{margin-left:-5.750422px;}
._7{margin-left:-4.124516px;}
._4{margin-left:-2.719794px;}
._2{margin-left:-1.032924px;}
._0{width:1.386797px;}
._25{width:5.057022px;}
._5{width:14.107042px;}
._d{width:16.591416px;}
._b{width:18.231558px;}
._9{width:19.566954px;}
._8{width:21.459440px;}
._a{width:23.551586px;}
._28{width:25.228314px;}
._6{width:27.018571px;}
._10{width:31.141920px;}
._e{width:32.876922px;}
._13{width:34.027290px;}
._27{width:35.305292px;}
._12{width:36.983196px;}
._11{width:43.307460px;}
._f{width:51.809356px;}
._29{width:53.206308px;}
._c{width:59.775600px;}
._26{width:63.242640px;}
._1e{width:67.367160px;}
._15{width:69.429420px;}
._20{width:71.766648px;}
._14{width:77.708400px;}
._18{width:95.553174px;}
._24{width:172.954872px;}
._1a{width:207.188388px;}
._23{width:224.418724px;}
._16{width:230.573226px;}
._22{width:235.922544px;}
._19{width:275.930388px;}
._17{width:287.410302px;}
._1d{width:348.521940px;}
._1b{width:451.566198px;}
._1f{width:515.096364px;}
._21{width:567.946404px;}
._1c{width:609.947766px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs0{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs5{font-size:68.742000px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:77.708400px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y55{bottom:41.308500px;}
.y56{bottom:43.522500px;}
.y51{bottom:80.557500px;}
.y54{bottom:81.571500px;}
.y50{bottom:103.354500px;}
.y53{bottom:104.368500px;}
.y25{bottom:107.499000px;}
.y8f{bottom:121.192500px;}
.y4f{bottom:126.151500px;}
.y52{bottom:127.165500px;}
.y24{bottom:130.296000px;}
.y8e{bottom:143.989500px;}
.y23{bottom:153.093000px;}
.y8d{bottom:166.786500px;}
.y4e{bottom:168.528000px;}
.y22{bottom:175.890000px;}
.y8c{bottom:189.583500px;}
.y4a{bottom:190.311000px;}
.y4d{bottom:191.325000px;}
.y21{bottom:198.687000px;}
.y8b{bottom:212.380500px;}
.y49{bottom:213.108000px;}
.y4c{bottom:214.122000px;}
.y20{bottom:221.485500px;}
.y48{bottom:235.905000px;}
.y4b{bottom:236.919000px;}
.y1f{bottom:244.282500px;}
.y8a{bottom:245.638500px;}
.y1e{bottom:267.079500px;}
.y47{bottom:285.085500px;}
.y1d{bottom:289.876500px;}
.y75{bottom:290.007000px;}
.y89{bottom:291.021000px;}
.y46{bottom:310.872000px;}
.y1c{bottom:312.673500px;}
.y74{bottom:312.804000px;}
.y88{bottom:313.818000px;}
.y73{bottom:335.601000px;}
.y87{bottom:336.615000px;}
.y45{bottom:336.657000px;}
.y72{bottom:358.398000px;}
.y86{bottom:359.412000px;}
.y44{bottom:362.443500px;}
.y1b{bottom:363.864000px;}
.y71{bottom:381.195000px;}
.y85{bottom:382.209000px;}
.y43{bottom:388.827000px;}
.y70{bottom:403.993500px;}
.y84{bottom:405.006000px;}
.y1a{bottom:405.037500px;}
.y19{bottom:423.613500px;}
.y6f{bottom:426.790500px;}
.y83{bottom:427.804500px;}
.y42{bottom:430.155000px;}
.y18{bottom:437.440500px;}
.y6e{bottom:449.587500px;}
.y82{bottom:450.601500px;}
.y17{bottom:459.393000px;}
.y41{bottom:464.677500px;}
.y6d{bottom:472.384500px;}
.y81{bottom:473.398500px;}
.y16{bottom:483.598500px;}
.y3d{bottom:486.460500px;}
.y40{bottom:487.474500px;}
.y6c{bottom:495.181500px;}
.y80{bottom:496.195500px;}
.y3c{bottom:509.259000px;}
.y3f{bottom:510.271500px;}
.y6b{bottom:517.978500px;}
.y7f{bottom:518.992500px;}
.y15{bottom:519.000000px;}
.y3b{bottom:532.056000px;}
.y3e{bottom:533.070000px;}
.y6a{bottom:540.775500px;}
.y14{bottom:540.954000px;}
.y7e{bottom:541.789500px;}
.y13{bottom:562.906500px;}
.y69{bottom:563.572500px;}
.y7d{bottom:564.586500px;}
.y3a{bottom:584.260500px;}
.y12{bottom:584.859000px;}
.y68{bottom:586.369500px;}
.y7c{bottom:587.383500px;}
.y11{bottom:606.811500px;}
.y67{bottom:609.166500px;}
.y7b{bottom:610.180500px;}
.y39{bottom:628.629000px;}
.y10{bottom:628.764000px;}
.y66{bottom:631.963500px;}
.y7a{bottom:632.977500px;}
.yf{bottom:650.718000px;}
.y38{bottom:651.426000px;}
.y65{bottom:654.760500px;}
.y79{bottom:655.774500px;}
.ye{bottom:672.670500px;}
.y37{bottom:674.223000px;}
.y64{bottom:677.557500px;}
.y78{bottom:678.571500px;}
.yd{bottom:694.623000px;}
.y36{bottom:697.020000px;}
.y63{bottom:700.354500px;}
.y77{bottom:701.368500px;}
.yc{bottom:716.575500px;}
.y35{bottom:719.817000px;}
.y62{bottom:723.153000px;}
.y76{bottom:724.165500px;}
.yb{bottom:738.528000px;}
.y34{bottom:742.614000px;}
.ya{bottom:760.480500px;}
.y33{bottom:765.411000px;}
.y61{bottom:775.357500px;}
.y9{bottom:782.434500px;}
.y32{bottom:788.208000px;}
.y8{bottom:804.387000px;}
.y31{bottom:811.005000px;}
.y7{bottom:826.339500px;}
.y60{bottom:827.163000px;}
.y30{bottom:844.263000px;}
.y6{bottom:848.292000px;}
.y5f{bottom:852.948000px;}
.y5e{bottom:879.331500px;}
.y2f{bottom:888.631500px;}
.y5d{bottom:905.118000px;}
.y2e{bottom:911.430000px;}
.y5{bottom:917.967000px;}
.y5c{bottom:927.915000px;}
.y2d{bottom:934.227000px;}
.y5b{bottom:953.701500px;}
.y2c{bottom:957.024000px;}
.y4{bottom:959.347500px;}
.y5a{bottom:979.486500px;}
.y2b{bottom:979.821000px;}
.y3{bottom:996.498000px;}
.y59{bottom:1002.283500px;}
.y2a{bottom:1002.618000px;}
.y29{bottom:1025.415000px;}
.y58{bottom:1028.667000px;}
.y28{bottom:1048.212000px;}
.y57{bottom:1069.995000px;}
.y27{bottom:1071.009000px;}
.y2{bottom:1101.726000px;}
.y26{bottom:1110.262500px;}
.y1{bottom:1113.681000px;}
.h6{height:32.278824px;}
.h1{height:35.865450px;}
.h7{height:37.013299px;}
.hc{height:37.802342px;}
.h5{height:41.125613px;}
.h4{height:41.304940px;}
.hb{height:46.950786px;}
.h9{height:47.294496px;}
.ha{height:47.500722px;}
.h3{height:53.463379px;}
.h8{height:53.696504px;}
.h2{height:71.065171px;}
.hd{height:92.541450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:127.558500px;}
.x5{left:136.561500px;}
.xe{left:153.070500px;}
.x6{left:178.044000px;}
.x1a{left:181.558500px;}
.xc{left:202.422000px;}
.x12{left:219.768000px;}
.x17{left:238.120500px;}
.xa{left:243.132000px;}
.x4{left:264.648000px;}
.x16{left:323.052000px;}
.x7{left:329.733000px;}
.x11{left:338.202000px;}
.x8{left:341.356500px;}
.x13{left:396.997500px;}
.x10{left:404.373000px;}
.xd{left:407.386500px;}
.x9{left:410.130000px;}
.xb{left:422.914500px;}
.x14{left:452.577000px;}
.xf{left:464.346000px;}
.x19{left:489.858000px;}
.x18{left:517.135500px;}
.x2{left:573.774000px;}
.x15{left:578.070000px;}
.x1{left:696.322500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:50.378667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.656693pt;}
.ls5{letter-spacing:13.565088pt;}
.ls4{letter-spacing:14.970480pt;}
.ls3{letter-spacing:15.276000pt;}
.ls2{letter-spacing:851.373333pt;}
.ls6{letter-spacing:852.440000pt;}
.ws5a{word-spacing:-15.276000pt;}
.ws11{word-spacing:-13.283467pt;}
.ws4e{word-spacing:-3.421824pt;}
.ws4a{word-spacing:-3.055200pt;}
.ws2a{word-spacing:-2.749680pt;}
.ws10{word-spacing:-2.656693pt;}
.ws2e{word-spacing:-2.505264pt;}
.ws2f{word-spacing:-2.199744pt;}
.ws51{word-spacing:-2.077536pt;}
.ws3c{word-spacing:-1.833120pt;}
.ws29{word-spacing:-1.588704pt;}
.ws54{word-spacing:-1.466496pt;}
.ws21{word-spacing:-1.222080pt;}
.ws30{word-spacing:-0.794352pt;}
.ws36{word-spacing:-0.549936pt;}
.ws14{word-spacing:-0.488832pt;}
.ws52{word-spacing:-0.427728pt;}
.ws2{word-spacing:-0.367262pt;}
.ws4c{word-spacing:-0.366624pt;}
.ws28{word-spacing:-0.305520pt;}
.ws42{word-spacing:-0.244416pt;}
.wsa{word-spacing:-0.212535pt;}
.ws1d{word-spacing:-0.183312pt;}
.ws2c{word-spacing:-0.122208pt;}
.wsc{word-spacing:-0.106268pt;}
.ws40{word-spacing:-0.061104pt;}
.wsf{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.042507pt;}
.ws3{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.061104pt;}
.ws8{word-spacing:0.106268pt;}
.ws15{word-spacing:0.122208pt;}
.ws5{word-spacing:0.159402pt;}
.ws20{word-spacing:0.183312pt;}
.ws18{word-spacing:0.244416pt;}
.wsb{word-spacing:0.265669pt;}
.ws13{word-spacing:0.305520pt;}
.ws48{word-spacing:0.366624pt;}
.ws24{word-spacing:0.488832pt;}
.ws25{word-spacing:0.672144pt;}
.ws3d{word-spacing:0.977664pt;}
.ws46{word-spacing:1.283184pt;}
.ws19{word-spacing:1.344288pt;}
.ws22{word-spacing:1.833120pt;}
.ws9{word-spacing:2.178489pt;}
.ws34{word-spacing:2.260848pt;}
.ws49{word-spacing:2.383056pt;}
.ws3b{word-spacing:2.749680pt;}
.ws6{word-spacing:2.975497pt;}
.ws1b{word-spacing:2.994096pt;}
.ws1a{word-spacing:3.299616pt;}
.ws58{word-spacing:3.666240pt;}
.ws2b{word-spacing:3.788448pt;}
.ws7{word-spacing:3.931906pt;}
.ws41{word-spacing:4.093968pt;}
.ws27{word-spacing:4.460592pt;}
.ws35{word-spacing:4.582800pt;}
.ws26{word-spacing:4.643904pt;}
.ws23{word-spacing:4.705008pt;}
.wsd{word-spacing:4.888316pt;}
.ws1c{word-spacing:5.316048pt;}
.ws47{word-spacing:5.499360pt;}
.ws53{word-spacing:5.621568pt;}
.ws2d{word-spacing:5.865984pt;}
.ws16{word-spacing:5.927088pt;}
.wse{word-spacing:6.110395pt;}
.ws1e{word-spacing:6.538128pt;}
.ws5b{word-spacing:6.843648pt;}
.ws4d{word-spacing:7.454688pt;}
.ws31{word-spacing:8.371248pt;}
.ws17{word-spacing:8.615664pt;}
.ws57{word-spacing:9.287808pt;}
.ws59{word-spacing:9.471120pt;}
.ws3a{word-spacing:10.815408pt;}
.ws50{word-spacing:11.304240pt;}
.ws4b{word-spacing:12.220800pt;}
.ws44{word-spacing:13.442880pt;}
.ws0{word-spacing:15.005042pt;}
.ws3e{word-spacing:15.092688pt;}
.ws3f{word-spacing:15.153792pt;}
.ws37{word-spacing:15.214896pt;}
.ws33{word-spacing:15.337104pt;}
.ws32{word-spacing:17.199459pt;}
.ws4{word-spacing:17.268507pt;}
.ws56{word-spacing:18.636720pt;}
.ws39{word-spacing:43.261632pt;}
.ws4f{word-spacing:59.820816pt;}
.ws55{word-spacing:60.737376pt;}
.ws45{word-spacing:62.081664pt;}
.ws12{word-spacing:69.005059pt;}
.ws43{word-spacing:194.371824pt;}
.ws38{word-spacing:386.116176pt;}
._1{margin-left:-6.427083pt;}
._3{margin-left:-5.111486pt;}
._7{margin-left:-3.666237pt;}
._4{margin-left:-2.417595pt;}
._2{margin-left:-0.918155pt;}
._0{width:1.232709pt;}
._25{width:4.495131pt;}
._5{width:12.539593pt;}
._d{width:14.747925pt;}
._b{width:16.205829pt;}
._9{width:17.392848pt;}
._8{width:19.075058pt;}
._a{width:20.934743pt;}
._28{width:22.425168pt;}
._6{width:24.016508pt;}
._10{width:27.681707pt;}
._e{width:29.223931pt;}
._13{width:30.246480pt;}
._27{width:31.382482pt;}
._12{width:32.873952pt;}
._11{width:38.495520pt;}
._f{width:46.052761pt;}
._29{width:47.294496pt;}
._c{width:53.133867pt;}
._26{width:56.215680pt;}
._1e{width:59.881920pt;}
._15{width:61.715040pt;}
._20{width:63.792576pt;}
._14{width:69.074133pt;}
._18{width:84.936155pt;}
._24{width:153.737664pt;}
._1a{width:184.167456pt;}
._23{width:199.483310pt;}
._16{width:204.953979pt;}
._22{width:209.708928pt;}
._19{width:245.271456pt;}
._17{width:255.475824pt;}
._1d{width:309.797280pt;}
._1b{width:401.392176pt;}
._1f{width:457.863435pt;}
._21{width:504.841248pt;}
._1c{width:542.175792pt;}
.fs0{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs5{font-size:61.104000pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:69.074133pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:36.718667pt;}
.y56{bottom:38.686667pt;}
.y51{bottom:71.606667pt;}
.y54{bottom:72.508000pt;}
.y50{bottom:91.870667pt;}
.y53{bottom:92.772000pt;}
.y25{bottom:95.554667pt;}
.y8f{bottom:107.726667pt;}
.y4f{bottom:112.134667pt;}
.y52{bottom:113.036000pt;}
.y24{bottom:115.818667pt;}
.y8e{bottom:127.990667pt;}
.y23{bottom:136.082667pt;}
.y8d{bottom:148.254667pt;}
.y4e{bottom:149.802667pt;}
.y22{bottom:156.346667pt;}
.y8c{bottom:168.518667pt;}
.y4a{bottom:169.165333pt;}
.y4d{bottom:170.066667pt;}
.y21{bottom:176.610667pt;}
.y8b{bottom:188.782667pt;}
.y49{bottom:189.429333pt;}
.y4c{bottom:190.330667pt;}
.y20{bottom:196.876000pt;}
.y48{bottom:209.693333pt;}
.y4b{bottom:210.594667pt;}
.y1f{bottom:217.140000pt;}
.y8a{bottom:218.345333pt;}
.y1e{bottom:237.404000pt;}
.y47{bottom:253.409333pt;}
.y1d{bottom:257.668000pt;}
.y75{bottom:257.784000pt;}
.y89{bottom:258.685333pt;}
.y46{bottom:276.330667pt;}
.y1c{bottom:277.932000pt;}
.y74{bottom:278.048000pt;}
.y88{bottom:278.949333pt;}
.y73{bottom:298.312000pt;}
.y87{bottom:299.213333pt;}
.y45{bottom:299.250667pt;}
.y72{bottom:318.576000pt;}
.y86{bottom:319.477333pt;}
.y44{bottom:322.172000pt;}
.y1b{bottom:323.434667pt;}
.y71{bottom:338.840000pt;}
.y85{bottom:339.741333pt;}
.y43{bottom:345.624000pt;}
.y70{bottom:359.105333pt;}
.y84{bottom:360.005333pt;}
.y1a{bottom:360.033333pt;}
.y19{bottom:376.545333pt;}
.y6f{bottom:379.369333pt;}
.y83{bottom:380.270667pt;}
.y42{bottom:382.360000pt;}
.y18{bottom:388.836000pt;}
.y6e{bottom:399.633333pt;}
.y82{bottom:400.534667pt;}
.y17{bottom:408.349333pt;}
.y41{bottom:413.046667pt;}
.y6d{bottom:419.897333pt;}
.y81{bottom:420.798667pt;}
.y16{bottom:429.865333pt;}
.y3d{bottom:432.409333pt;}
.y40{bottom:433.310667pt;}
.y6c{bottom:440.161333pt;}
.y80{bottom:441.062667pt;}
.y3c{bottom:452.674667pt;}
.y3f{bottom:453.574667pt;}
.y6b{bottom:460.425333pt;}
.y7f{bottom:461.326667pt;}
.y15{bottom:461.333333pt;}
.y3b{bottom:472.938667pt;}
.y3e{bottom:473.840000pt;}
.y6a{bottom:480.689333pt;}
.y14{bottom:480.848000pt;}
.y7e{bottom:481.590667pt;}
.y13{bottom:500.361333pt;}
.y69{bottom:500.953333pt;}
.y7d{bottom:501.854667pt;}
.y3a{bottom:519.342667pt;}
.y12{bottom:519.874667pt;}
.y68{bottom:521.217333pt;}
.y7c{bottom:522.118667pt;}
.y11{bottom:539.388000pt;}
.y67{bottom:541.481333pt;}
.y7b{bottom:542.382667pt;}
.y39{bottom:558.781333pt;}
.y10{bottom:558.901333pt;}
.y66{bottom:561.745333pt;}
.y7a{bottom:562.646667pt;}
.yf{bottom:578.416000pt;}
.y38{bottom:579.045333pt;}
.y65{bottom:582.009333pt;}
.y79{bottom:582.910667pt;}
.ye{bottom:597.929333pt;}
.y37{bottom:599.309333pt;}
.y64{bottom:602.273333pt;}
.y78{bottom:603.174667pt;}
.yd{bottom:617.442667pt;}
.y36{bottom:619.573333pt;}
.y63{bottom:622.537333pt;}
.y77{bottom:623.438667pt;}
.yc{bottom:636.956000pt;}
.y35{bottom:639.837333pt;}
.y62{bottom:642.802667pt;}
.y76{bottom:643.702667pt;}
.yb{bottom:656.469333pt;}
.y34{bottom:660.101333pt;}
.ya{bottom:675.982667pt;}
.y33{bottom:680.365333pt;}
.y61{bottom:689.206667pt;}
.y9{bottom:695.497333pt;}
.y32{bottom:700.629333pt;}
.y8{bottom:715.010667pt;}
.y31{bottom:720.893333pt;}
.y7{bottom:734.524000pt;}
.y60{bottom:735.256000pt;}
.y30{bottom:750.456000pt;}
.y6{bottom:754.037333pt;}
.y5f{bottom:758.176000pt;}
.y5e{bottom:781.628000pt;}
.y2f{bottom:789.894667pt;}
.y5d{bottom:804.549333pt;}
.y2e{bottom:810.160000pt;}
.y5{bottom:815.970667pt;}
.y5c{bottom:824.813333pt;}
.y2d{bottom:830.424000pt;}
.y5b{bottom:847.734667pt;}
.y2c{bottom:850.688000pt;}
.y4{bottom:852.753333pt;}
.y5a{bottom:870.654667pt;}
.y2b{bottom:870.952000pt;}
.y3{bottom:885.776000pt;}
.y59{bottom:890.918667pt;}
.y2a{bottom:891.216000pt;}
.y29{bottom:911.480000pt;}
.y58{bottom:914.370667pt;}
.y28{bottom:931.744000pt;}
.y57{bottom:951.106667pt;}
.y27{bottom:952.008000pt;}
.y2{bottom:979.312000pt;}
.y26{bottom:986.900000pt;}
.y1{bottom:989.938667pt;}
.h6{height:28.692288pt;}
.h1{height:31.880400pt;}
.h7{height:32.900710pt;}
.hc{height:33.602082pt;}
.h5{height:36.556100pt;}
.h4{height:36.715502pt;}
.hb{height:41.734032pt;}
.h9{height:42.039552pt;}
.ha{height:42.222864pt;}
.h3{height:47.523004pt;}
.h8{height:47.730226pt;}
.h2{height:63.169041pt;}
.hd{height:82.259067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.385333pt;}
.x5{left:121.388000pt;}
.xe{left:136.062667pt;}
.x6{left:158.261333pt;}
.x1a{left:161.385333pt;}
.xc{left:179.930667pt;}
.x12{left:195.349333pt;}
.x17{left:211.662667pt;}
.xa{left:216.117333pt;}
.x4{left:235.242667pt;}
.x16{left:287.157333pt;}
.x7{left:293.096000pt;}
.x11{left:300.624000pt;}
.x8{left:303.428000pt;}
.x13{left:352.886667pt;}
.x10{left:359.442667pt;}
.xd{left:362.121333pt;}
.x9{left:364.560000pt;}
.xb{left:375.924000pt;}
.x14{left:402.290667pt;}
.xf{left:412.752000pt;}
.x19{left:435.429333pt;}
.x18{left:459.676000pt;}
.x2{left:510.021333pt;}
.x15{left:513.840000pt;}
.x1{left:618.953333pt;}
}




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