
    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_31fd6f220d5731d963623813.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_5a87a1cdd0e5678b48219a07.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_43cf1ebfdb551a421981e2e8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_08fa2ca06bb2500d84207bf0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.992188;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_5da797e6b946e89a1a0820b3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973633;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_31912353e60fbe252cbce456.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.028809;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_8a7d4ca42b5d5ae315200c17.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.771978;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_427de88fa327c544945e1d97.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.937988;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_eddcf09bff3d3add89d71bc7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.157000;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_b2f7d9a227aa09393b64220c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.148000;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_c7f448e31c24c58449a898cc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.959000;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_5b448336b000d276d81a8a1d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_2006e9cf4f17878ae9e7cf8d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_c0c9bc6a97021291a3baa7d3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_ea976029e7a92780f5a15abb.woff2')format("woff");}.fff{font-family:fff;line-height:0.765137;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.758620px;}
.ls26{letter-spacing:-1.548000px;}
.ls15{letter-spacing:-1.134000px;}
.lsa{letter-spacing:-0.828000px;}
.ls17{letter-spacing:-0.612000px;}
.ls16{letter-spacing:-0.504000px;}
.ls22{letter-spacing:-0.457800px;}
.ls1e{letter-spacing:-0.414600px;}
.ls7{letter-spacing:-0.325200px;}
.ls9{letter-spacing:-0.305400px;}
.ls5{letter-spacing:-0.111000px;}
.ls8{letter-spacing:-0.109200px;}
.ls2d{letter-spacing:-0.106800px;}
.ls0{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.000960px;}
.ls11{letter-spacing:0.107520px;}
.ls14{letter-spacing:0.108000px;}
.lse{letter-spacing:0.144960px;}
.ls1c{letter-spacing:0.145380px;}
.ls10{letter-spacing:0.216000px;}
.ls2a{letter-spacing:0.259800px;}
.ls2c{letter-spacing:0.261120px;}
.ls2{letter-spacing:0.261600px;}
.ls23{letter-spacing:0.262200px;}
.ls2b{letter-spacing:0.263460px;}
.ls1f{letter-spacing:0.263940px;}
.ls1d{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.304800px;}
.lsb{letter-spacing:0.305400px;}
.ls6{letter-spacing:0.394800px;}
.ls1{letter-spacing:0.493920px;}
.ls25{letter-spacing:2.463420px;}
.ls19{letter-spacing:5.796000px;}
.ls20{letter-spacing:6.065760px;}
.ls24{letter-spacing:8.943900px;}
.ls12{letter-spacing:9.468480px;}
.lsf{letter-spacing:10.187640px;}
.ls1a{letter-spacing:10.188000px;}
.ls1b{letter-spacing:10.907580px;}
.lsc{letter-spacing:13.265760px;}
.ls13{letter-spacing:16.668480px;}
.ls21{letter-spacing:16.865760px;}
.ls28{letter-spacing:24.065280px;}
.ls4{letter-spacing:24.785283px;}
.ls29{letter-spacing:26.224320px;}
.lsd{letter-spacing:28.385280px;}
.ls27{letter-spacing:31.985280px;}
.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;}
}
.wsa{word-spacing:-36.829440px;}
.ws10{word-spacing:-18.720120px;}
.wsf{word-spacing:-18.676920px;}
.ws8{word-spacing:-18.414720px;}
.ws6{word-spacing:-18.305520px;}
.ws7{word-spacing:-18.109320px;}
.ws11{word-spacing:-17.586720px;}
.ws13{word-spacing:-16.873080px;}
.ws15{word-spacing:-16.613280px;}
.ws14{word-spacing:-16.506480px;}
.wsb{word-spacing:-15.228000px;}
.wsc{word-spacing:-15.012000px;}
.wsd{word-spacing:-14.508000px;}
.ws9{word-spacing:-11.609280px;}
.ws4{word-spacing:-10.834800px;}
.ws12{word-spacing:-10.808640px;}
.ws0{word-spacing:-0.067474px;}
.ws1{word-spacing:-0.065975px;}
.ws2{word-spacing:-0.049478px;}
.ws3{word-spacing:0.000000px;}
.wse{word-spacing:332.579932px;}
.ws5{word-spacing:332.602957px;}
._1c{margin-left:-15.689640px;}
._1{margin-left:-5.393105px;}
._15{margin-left:-3.861212px;}
._0{margin-left:-2.836929px;}
._3{margin-left:-1.159027px;}
._2{width:1.012133px;}
._d{width:2.587135px;}
._9{width:4.363493px;}
._7{width:5.365019px;}
._5{width:7.054203px;}
._6{width:8.083155px;}
._8{width:9.212252px;}
._4{width:10.863361px;}
._a{width:12.520425px;}
._12{width:14.173254px;}
._13{width:15.287911px;}
._e{width:16.657400px;}
._1d{width:17.976507px;}
._18{width:19.768204px;}
._1a{width:20.932094px;}
._c{width:22.116888px;}
._b{width:23.184731px;}
._10{width:24.386222px;}
._f{width:25.873094px;}
._11{width:27.422502px;}
._19{width:28.481892px;}
._1b{width:30.603457px;}
._16{width:31.860428px;}
._17{width:33.386447px;}
._20{width:35.304542px;}
._1f{width:36.331906px;}
._22{width:38.068920px;}
._1e{width:39.815142px;}
._21{width:120.580089px;}
._14{width:342.798320px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(186,75,55);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:36.000000px;}
.fsf{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs7{font-size:44.018465px;}
.fs6{font-size:49.478028px;}
.fse{font-size:54.000000px;}
.fs2{font-size:58.478028px;}
.fs10{font-size:59.760000px;}
.fs0{font-size:59.976564px;}
.fs5{font-size:65.975100px;}
.fs9{font-size:66.240000px;}
.fs3{font-size:67.473630px;}
.fs1{font-size:80.969238px;}
.fsc{font-size:95.760000px;}
.fs4{font-size:101.957520px;}
.fsa{font-size:144.000000px;}
.fsb{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y13{bottom:56.520000px;}
.y5b{bottom:109.079850px;}
.ycb{bottom:113.940300px;}
.y84{bottom:116.457300px;}
.y9a{bottom:116.457900px;}
.ya7{bottom:116.459700px;}
.y70{bottom:124.559850px;}
.y5a{bottom:124.560030px;}
.yca{bottom:126.899250px;}
.y6f{bottom:144.540300px;}
.y59{bottom:144.540480px;}
.y83{bottom:144.897000px;}
.y99{bottom:144.898200px;}
.ya6{bottom:144.900000px;}
.y34{bottom:147.417300px;}
.y6e{bottom:156.600000px;}
.y58{bottom:160.200240px;}
.y57{bottom:171.210000px;}
.y6d{bottom:172.110000px;}
.y82{bottom:173.367150px;}
.y98{bottom:173.368350px;}
.yc9{bottom:173.369400px;}
.ya5{bottom:173.370300px;}
.y33{bottom:175.887450px;}
.y6c{bottom:187.590150px;}
.y56{bottom:191.190000px;}
.y81{bottom:201.806850px;}
.ya4{bottom:201.807450px;}
.y97{bottom:201.808050px;}
.yc8{bottom:201.809100px;}
.y55{bottom:202.705800px;}
.y32{bottom:204.327150px;}
.y6b{bottom:207.570000px;}
.y6a{bottom:219.268500px;}
.y80{bottom:230.247150px;}
.ya3{bottom:230.247750px;}
.y96{bottom:230.248350px;}
.yc7{bottom:230.248800px;}
.y31{bottom:232.767450px;}
.y54{bottom:258.686250px;}
.y7f{bottom:258.687450px;}
.ya2{bottom:258.688050px;}
.y69{bottom:258.688650px;}
.yc6{bottom:258.689100px;}
.y30{bottom:261.207150px;}
.y53{bottom:287.125950px;}
.y7e{bottom:287.127150px;}
.ya1{bottom:287.127750px;}
.y68{bottom:287.128350px;}
.yc5{bottom:287.128800px;}
.y2f{bottom:289.827300px;}
.y52{bottom:315.566250px;}
.y7d{bottom:315.567450px;}
.y67{bottom:315.568050px;}
.y95{bottom:315.568650px;}
.yc4{bottom:315.569100px;}
.y2e{bottom:318.267600px;}
.y51{bottom:344.006550px;}
.y7c{bottom:344.007150px;}
.y66{bottom:344.007750px;}
.y94{bottom:344.008350px;}
.yc3{bottom:344.008800px;}
.y2d{bottom:346.707900px;}
.y50{bottom:372.626700px;}
.y7b{bottom:372.627300px;}
.y65{bottom:372.627900px;}
.y93{bottom:372.628500px;}
.yc2{bottom:372.628950px;}
.y2c{bottom:375.148200px;}
.y4f{bottom:401.067000px;}
.y64{bottom:401.067600px;}
.ya0{bottom:401.068200px;}
.y92{bottom:401.068800px;}
.yc1{bottom:401.069250px;}
.y2b{bottom:403.588500px;}
.y4e{bottom:429.551700px;}
.y63{bottom:429.552300px;}
.y9f{bottom:429.552900px;}
.y91{bottom:429.553500px;}
.yc0{bottom:429.553950px;}
.y2a{bottom:432.073200px;}
.y4d{bottom:457.992000px;}
.y62{bottom:457.992600px;}
.y9e{bottom:457.993200px;}
.y90{bottom:457.993800px;}
.ybf{bottom:457.994250px;}
.y29{bottom:460.513500px;}
.ydb{bottom:477.615150px;}
.y4c{bottom:486.432300px;}
.y9d{bottom:486.432900px;}
.y8f{bottom:486.433500px;}
.ybe{bottom:486.433950px;}
.y28{bottom:488.953800px;}
.yda{bottom:494.895000px;}
.yd9{bottom:511.995000px;}
.y4b{bottom:514.872600px;}
.y9c{bottom:514.873200px;}
.y8e{bottom:514.873800px;}
.ybd{bottom:514.874250px;}
.y27{bottom:517.573950px;}
.yd8{bottom:529.274850px;}
.y4a{bottom:543.312900px;}
.y9b{bottom:543.313500px;}
.y8d{bottom:543.314100px;}
.ybc{bottom:543.314550px;}
.y26{bottom:546.014250px;}
.yd7{bottom:556.274850px;}
.y49{bottom:571.752600px;}
.y8c{bottom:571.753800px;}
.ybb{bottom:571.754250px;}
.y25{bottom:574.454550px;}
.yd6{bottom:584.715150px;}
.y48{bottom:600.192900px;}
.y8b{bottom:600.194100px;}
.yba{bottom:600.194550px;}
.y24{bottom:602.894850px;}
.yd5{bottom:603.434700px;}
.yd4{bottom:620.715150px;}
.y47{bottom:628.813050px;}
.y8a{bottom:628.814250px;}
.yb9{bottom:628.814700px;}
.y23{bottom:631.335150px;}
.yd3{bottom:637.995000px;}
.yd2{bottom:655.275000px;}
.y46{bottom:657.252750px;}
.y89{bottom:657.253950px;}
.yb8{bottom:657.254400px;}
.y22{bottom:659.804700px;}
.y11{bottom:664.916042px;}
.yd1{bottom:672.584100px;}
.y10{bottom:679.757843px;}
.y45{bottom:685.722900px;}
.y88{bottom:685.724100px;}
.yb7{bottom:685.724550px;}
.y21{bottom:688.245000px;}
.yd0{bottom:689.683500px;}
.yf{bottom:694.605494px;}
.ye{bottom:709.376974px;}
.y44{bottom:714.163200px;}
.y87{bottom:714.164400px;}
.yb6{bottom:714.164850px;}
.ycf{bottom:716.683500px;}
.y20{bottom:716.684700px;}
.yd{bottom:737.044938px;}
.y43{bottom:742.602900px;}
.y7a{bottom:742.603500px;}
.y86{bottom:742.604100px;}
.yb5{bottom:742.604550px;}
.yce{bottom:745.123800px;}
.y1f{bottom:745.125000px;}
.yc{bottom:751.892590px;}
.yb{bottom:766.664069px;}
.y42{bottom:771.043200px;}
.y79{bottom:771.043800px;}
.y85{bottom:771.044400px;}
.yb4{bottom:771.044850px;}
.ycd{bottom:773.743950px;}
.y1e{bottom:773.745150px;}
.ya{bottom:794.332034px;}
.y61{bottom:799.482900px;}
.y41{bottom:799.483500px;}
.y78{bottom:799.484100px;}
.yb3{bottom:799.484550px;}
.ycc{bottom:800.923800px;}
.y1d{bottom:802.184850px;}
.y9{bottom:809.179685px;}
.y8{bottom:824.021486px;}
.y60{bottom:827.923200px;}
.y40{bottom:827.923800px;}
.y77{bottom:827.924400px;}
.yb2{bottom:827.924850px;}
.y1c{bottom:830.625150px;}
.y7{bottom:838.798828px;}
.y5f{bottom:856.363500px;}
.y3f{bottom:856.364100px;}
.y76{bottom:856.364700px;}
.yb1{bottom:856.365150px;}
.y1b{bottom:859.065450px;}
.y5e{bottom:884.983050px;}
.y3e{bottom:884.983650px;}
.y75{bottom:884.984250px;}
.yb0{bottom:884.984700px;}
.y1a{bottom:887.505150px;}
.y5d{bottom:913.468350px;}
.y3d{bottom:913.468950px;}
.y74{bottom:913.469550px;}
.yaf{bottom:913.470000px;}
.y19{bottom:915.990450px;}
.y3c{bottom:941.908650px;}
.y73{bottom:941.909250px;}
.yae{bottom:941.909700px;}
.y18{bottom:944.430150px;}
.y3b{bottom:970.348950px;}
.y72{bottom:970.349550px;}
.yad{bottom:970.350000px;}
.y6{bottom:971.056641px;}
.y17{bottom:978.810000px;}
.y3a{bottom:998.789250px;}
.y71{bottom:998.789850px;}
.yac{bottom:998.790000px;}
.y5{bottom:1013.730468px;}
.y39{bottom:1027.229550px;}
.yab{bottom:1027.230000px;}
.y16{bottom:1034.430150px;}
.y38{bottom:1055.669850px;}
.yaa{bottom:1055.670300px;}
.y15{bottom:1081.410000px;}
.y37{bottom:1084.109550px;}
.ya9{bottom:1084.110000px;}
.y4{bottom:1089.533204px;}
.y1{bottom:1100.390625px;}
.y3{bottom:1106.132812px;}
.y36{bottom:1112.549850px;}
.ya8{bottom:1112.550000px;}
.y14{bottom:1122.810000px;}
.y2{bottom:1137.287109px;}
.y35{bottom:1141.170000px;}
.y12{bottom:1173.420000px;}
.y5c{bottom:1175.220000px;}
.hb{height:32.046646px;}
.h16{height:32.706000px;}
.h13{height:33.804000px;}
.h18{height:38.114640px;}
.h7{height:38.195685px;}
.h1{height:39.974614px;}
.h8{height:40.200898px;}
.h3{height:44.543810px;}
.h15{height:48.256875px;}
.h10{height:49.083840px;}
.h14{height:50.706000px;}
.h6{height:50.930973px;}
.h4{height:52.087797px;}
.h19{height:56.114640px;}
.h1a{height:61.470720px;}
.h2{height:61.675787px;}
.hc{height:62.199360px;}
.h17{height:62.209560px;}
.h11{height:62.971260px;}
.h12{height:62.973600px;}
.h5{height:77.165115px;}
.hf{height:89.918640px;}
.hd{height:135.216000px;}
.he{height:155.681280px;}
.h0{height:1261.500000px;}
.h9{height:1262.880000px;}
.ha{height:1263.000000px;}
.w0{width:892.500000px;}
.w1{width:892.980000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.558593px;}
.x9{left:157.350000px;}
.x1{left:244.488282px;}
.x2{left:265.746093px;}
.xc{left:437.295000px;}
.x6{left:441.974595px;}
.x4{left:514.005000px;}
.xa{left:518.505000px;}
.x8{left:548.565000px;}
.x5{left:596.265000px;}
.xb{left:623.985000px;}
.x7{left:765.510000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.118773pt;}
.ls26{letter-spacing:-1.376000pt;}
.ls15{letter-spacing:-1.008000pt;}
.lsa{letter-spacing:-0.736000pt;}
.ls17{letter-spacing:-0.544000pt;}
.ls16{letter-spacing:-0.448000pt;}
.ls22{letter-spacing:-0.406933pt;}
.ls1e{letter-spacing:-0.368533pt;}
.ls7{letter-spacing:-0.289067pt;}
.ls9{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:-0.098667pt;}
.ls8{letter-spacing:-0.097067pt;}
.ls2d{letter-spacing:-0.094933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000853pt;}
.ls11{letter-spacing:0.095573pt;}
.ls14{letter-spacing:0.096000pt;}
.lse{letter-spacing:0.128853pt;}
.ls1c{letter-spacing:0.129227pt;}
.ls10{letter-spacing:0.192000pt;}
.ls2a{letter-spacing:0.230933pt;}
.ls2c{letter-spacing:0.232107pt;}
.ls2{letter-spacing:0.232533pt;}
.ls23{letter-spacing:0.233067pt;}
.ls2b{letter-spacing:0.234187pt;}
.ls1f{letter-spacing:0.234613pt;}
.ls1d{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.270933pt;}
.lsb{letter-spacing:0.271467pt;}
.ls6{letter-spacing:0.350933pt;}
.ls1{letter-spacing:0.439040pt;}
.ls25{letter-spacing:2.189707pt;}
.ls19{letter-spacing:5.152000pt;}
.ls20{letter-spacing:5.391787pt;}
.ls24{letter-spacing:7.950133pt;}
.ls12{letter-spacing:8.416427pt;}
.lsf{letter-spacing:9.055680pt;}
.ls1a{letter-spacing:9.056000pt;}
.ls1b{letter-spacing:9.695627pt;}
.lsc{letter-spacing:11.791787pt;}
.ls13{letter-spacing:14.816427pt;}
.ls21{letter-spacing:14.991787pt;}
.ls28{letter-spacing:21.391360pt;}
.ls4{letter-spacing:22.031362pt;}
.ls29{letter-spacing:23.310507pt;}
.lsd{letter-spacing:25.231360pt;}
.ls27{letter-spacing:28.431360pt;}
.wsa{word-spacing:-32.737280pt;}
.ws10{word-spacing:-16.640107pt;}
.wsf{word-spacing:-16.601707pt;}
.ws8{word-spacing:-16.368640pt;}
.ws6{word-spacing:-16.271573pt;}
.ws7{word-spacing:-16.097173pt;}
.ws11{word-spacing:-15.632640pt;}
.ws13{word-spacing:-14.998293pt;}
.ws15{word-spacing:-14.767360pt;}
.ws14{word-spacing:-14.672427pt;}
.wsb{word-spacing:-13.536000pt;}
.wsc{word-spacing:-13.344000pt;}
.wsd{word-spacing:-12.896000pt;}
.ws9{word-spacing:-10.319360pt;}
.ws4{word-spacing:-9.630933pt;}
.ws12{word-spacing:-9.607680pt;}
.ws0{word-spacing:-0.059977pt;}
.ws1{word-spacing:-0.058645pt;}
.ws2{word-spacing:-0.043980pt;}
.ws3{word-spacing:0.000000pt;}
.wse{word-spacing:295.626607pt;}
.ws5{word-spacing:295.647073pt;}
._1c{margin-left:-13.946347pt;}
._1{margin-left:-4.793871pt;}
._15{margin-left:-3.432189pt;}
._0{margin-left:-2.521715pt;}
._3{margin-left:-1.030246pt;}
._2{width:0.899674pt;}
._d{width:2.299676pt;}
._9{width:3.878661pt;}
._7{width:4.768905pt;}
._5{width:6.270402pt;}
._6{width:7.185027pt;}
._8{width:8.188669pt;}
._4{width:9.656321pt;}
._a{width:11.129267pt;}
._12{width:12.598448pt;}
._13{width:13.589254pt;}
._e{width:14.806578pt;}
._1d{width:15.979117pt;}
._18{width:17.571737pt;}
._1a{width:18.606306pt;}
._c{width:19.659456pt;}
._b{width:20.608650pt;}
._10{width:21.676642pt;}
._f{width:22.998306pt;}
._11{width:24.375557pt;}
._19{width:25.317238pt;}
._1b{width:27.203073pt;}
._16{width:28.320380pt;}
._17{width:29.676842pt;}
._20{width:31.381815pt;}
._1f{width:32.295027pt;}
._22{width:33.839040pt;}
._1e{width:35.391237pt;}
._21{width:107.182302pt;}
._14{width:304.709618pt;}
.fsd{font-size:32.000000pt;}
.fsf{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs7{font-size:39.127524pt;}
.fs6{font-size:43.980469pt;}
.fse{font-size:48.000000pt;}
.fs2{font-size:51.980469pt;}
.fs10{font-size:53.120000pt;}
.fs0{font-size:53.312501pt;}
.fs5{font-size:58.644533pt;}
.fs9{font-size:58.880000pt;}
.fs3{font-size:59.976560pt;}
.fs1{font-size:71.972656pt;}
.fsc{font-size:85.120000pt;}
.fs4{font-size:90.628907pt;}
.fsa{font-size:128.000000pt;}
.fsb{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:50.240000pt;}
.y5b{bottom:96.959867pt;}
.ycb{bottom:101.280267pt;}
.y84{bottom:103.517600pt;}
.y9a{bottom:103.518133pt;}
.ya7{bottom:103.519733pt;}
.y70{bottom:110.719867pt;}
.y5a{bottom:110.720027pt;}
.yca{bottom:112.799333pt;}
.y6f{bottom:128.480267pt;}
.y59{bottom:128.480427pt;}
.y83{bottom:128.797333pt;}
.y99{bottom:128.798400pt;}
.ya6{bottom:128.800000pt;}
.y34{bottom:131.037600pt;}
.y6e{bottom:139.200000pt;}
.y58{bottom:142.400213pt;}
.y57{bottom:152.186667pt;}
.y6d{bottom:152.986667pt;}
.y82{bottom:154.104133pt;}
.y98{bottom:154.105200pt;}
.yc9{bottom:154.106133pt;}
.ya5{bottom:154.106933pt;}
.y33{bottom:156.344400pt;}
.y6c{bottom:166.746800pt;}
.y56{bottom:169.946667pt;}
.y81{bottom:179.383867pt;}
.ya4{bottom:179.384400pt;}
.y97{bottom:179.384933pt;}
.yc8{bottom:179.385867pt;}
.y55{bottom:180.182933pt;}
.y32{bottom:181.624133pt;}
.y6b{bottom:184.506667pt;}
.y6a{bottom:194.905333pt;}
.y80{bottom:204.664133pt;}
.ya3{bottom:204.664667pt;}
.y96{bottom:204.665200pt;}
.yc7{bottom:204.665600pt;}
.y31{bottom:206.904400pt;}
.y54{bottom:229.943333pt;}
.y7f{bottom:229.944400pt;}
.ya2{bottom:229.944933pt;}
.y69{bottom:229.945467pt;}
.yc6{bottom:229.945867pt;}
.y30{bottom:232.184133pt;}
.y53{bottom:255.223067pt;}
.y7e{bottom:255.224133pt;}
.ya1{bottom:255.224667pt;}
.y68{bottom:255.225200pt;}
.yc5{bottom:255.225600pt;}
.y2f{bottom:257.624267pt;}
.y52{bottom:280.503333pt;}
.y7d{bottom:280.504400pt;}
.y67{bottom:280.504933pt;}
.y95{bottom:280.505467pt;}
.yc4{bottom:280.505867pt;}
.y2e{bottom:282.904533pt;}
.y51{bottom:305.783600pt;}
.y7c{bottom:305.784133pt;}
.y66{bottom:305.784667pt;}
.y94{bottom:305.785200pt;}
.yc3{bottom:305.785600pt;}
.y2d{bottom:308.184800pt;}
.y50{bottom:331.223733pt;}
.y7b{bottom:331.224267pt;}
.y65{bottom:331.224800pt;}
.y93{bottom:331.225333pt;}
.yc2{bottom:331.225733pt;}
.y2c{bottom:333.465067pt;}
.y4f{bottom:356.504000pt;}
.y64{bottom:356.504533pt;}
.ya0{bottom:356.505067pt;}
.y92{bottom:356.505600pt;}
.yc1{bottom:356.506000pt;}
.y2b{bottom:358.745333pt;}
.y4e{bottom:381.823733pt;}
.y63{bottom:381.824267pt;}
.y9f{bottom:381.824800pt;}
.y91{bottom:381.825333pt;}
.yc0{bottom:381.825733pt;}
.y2a{bottom:384.065067pt;}
.y4d{bottom:407.104000pt;}
.y62{bottom:407.104533pt;}
.y9e{bottom:407.105067pt;}
.y90{bottom:407.105600pt;}
.ybf{bottom:407.106000pt;}
.y29{bottom:409.345333pt;}
.ydb{bottom:424.546800pt;}
.y4c{bottom:432.384267pt;}
.y9d{bottom:432.384800pt;}
.y8f{bottom:432.385333pt;}
.ybe{bottom:432.385733pt;}
.y28{bottom:434.625600pt;}
.yda{bottom:439.906667pt;}
.yd9{bottom:455.106667pt;}
.y4b{bottom:457.664533pt;}
.y9c{bottom:457.665067pt;}
.y8e{bottom:457.665600pt;}
.ybd{bottom:457.666000pt;}
.y27{bottom:460.065733pt;}
.yd8{bottom:470.466533pt;}
.y4a{bottom:482.944800pt;}
.y9b{bottom:482.945333pt;}
.y8d{bottom:482.945867pt;}
.ybc{bottom:482.946267pt;}
.y26{bottom:485.346000pt;}
.yd7{bottom:494.466533pt;}
.y49{bottom:508.224533pt;}
.y8c{bottom:508.225600pt;}
.ybb{bottom:508.226000pt;}
.y25{bottom:510.626267pt;}
.yd6{bottom:519.746800pt;}
.y48{bottom:533.504800pt;}
.y8b{bottom:533.505867pt;}
.yba{bottom:533.506267pt;}
.y24{bottom:535.906533pt;}
.yd5{bottom:536.386400pt;}
.yd4{bottom:551.746800pt;}
.y47{bottom:558.944933pt;}
.y8a{bottom:558.946000pt;}
.yb9{bottom:558.946400pt;}
.y23{bottom:561.186800pt;}
.yd3{bottom:567.106667pt;}
.yd2{bottom:582.466667pt;}
.y46{bottom:584.224667pt;}
.y89{bottom:584.225733pt;}
.yb8{bottom:584.226133pt;}
.y22{bottom:586.493067pt;}
.y11{bottom:591.036482pt;}
.yd1{bottom:597.852533pt;}
.y10{bottom:604.229194pt;}
.y45{bottom:609.531467pt;}
.y88{bottom:609.532533pt;}
.yb7{bottom:609.532933pt;}
.y21{bottom:611.773333pt;}
.yd0{bottom:613.052000pt;}
.yf{bottom:617.427106pt;}
.ye{bottom:630.557310pt;}
.y44{bottom:634.811733pt;}
.y87{bottom:634.812800pt;}
.yb6{bottom:634.813200pt;}
.ycf{bottom:637.052000pt;}
.y20{bottom:637.053067pt;}
.yd{bottom:655.151056pt;}
.y43{bottom:660.091467pt;}
.y7a{bottom:660.092000pt;}
.y86{bottom:660.092533pt;}
.yb5{bottom:660.092933pt;}
.yce{bottom:662.332267pt;}
.y1f{bottom:662.333333pt;}
.yc{bottom:668.348969pt;}
.yb{bottom:681.479173pt;}
.y42{bottom:685.371733pt;}
.y79{bottom:685.372267pt;}
.y85{bottom:685.372800pt;}
.yb4{bottom:685.373200pt;}
.ycd{bottom:687.772400pt;}
.y1e{bottom:687.773467pt;}
.ya{bottom:706.072919pt;}
.y61{bottom:710.651467pt;}
.y41{bottom:710.652000pt;}
.y78{bottom:710.652533pt;}
.yb3{bottom:710.652933pt;}
.ycc{bottom:711.932267pt;}
.y1d{bottom:713.053200pt;}
.y9{bottom:719.270831pt;}
.y8{bottom:732.463543pt;}
.y60{bottom:735.931733pt;}
.y40{bottom:735.932267pt;}
.y77{bottom:735.932800pt;}
.yb2{bottom:735.933200pt;}
.y1c{bottom:738.333467pt;}
.y7{bottom:745.598959pt;}
.y5f{bottom:761.212000pt;}
.y3f{bottom:761.212533pt;}
.y76{bottom:761.213067pt;}
.yb1{bottom:761.213467pt;}
.y1b{bottom:763.613733pt;}
.y5e{bottom:786.651600pt;}
.y3e{bottom:786.652133pt;}
.y75{bottom:786.652667pt;}
.yb0{bottom:786.653067pt;}
.y1a{bottom:788.893467pt;}
.y5d{bottom:811.971867pt;}
.y3d{bottom:811.972400pt;}
.y74{bottom:811.972933pt;}
.yaf{bottom:811.973333pt;}
.y19{bottom:814.213733pt;}
.y3c{bottom:837.252133pt;}
.y73{bottom:837.252667pt;}
.yae{bottom:837.253067pt;}
.y18{bottom:839.493467pt;}
.y3b{bottom:862.532400pt;}
.y72{bottom:862.532933pt;}
.yad{bottom:862.533333pt;}
.y6{bottom:863.161459pt;}
.y17{bottom:870.053333pt;}
.y3a{bottom:887.812667pt;}
.y71{bottom:887.813200pt;}
.yac{bottom:887.813333pt;}
.y5{bottom:901.093749pt;}
.y39{bottom:913.092933pt;}
.yab{bottom:913.093333pt;}
.y16{bottom:919.493467pt;}
.y38{bottom:938.373200pt;}
.yaa{bottom:938.373600pt;}
.y15{bottom:961.253333pt;}
.y37{bottom:963.652933pt;}
.ya9{bottom:963.653333pt;}
.y4{bottom:968.473959pt;}
.y1{bottom:978.125000pt;}
.y3{bottom:983.229167pt;}
.y36{bottom:988.933200pt;}
.ya8{bottom:988.933333pt;}
.y14{bottom:998.053333pt;}
.y2{bottom:1010.921875pt;}
.y35{bottom:1014.373333pt;}
.y12{bottom:1043.040000pt;}
.y5c{bottom:1044.640000pt;}
.hb{height:28.485908pt;}
.h16{height:29.072000pt;}
.h13{height:30.048000pt;}
.h18{height:33.879680pt;}
.h7{height:33.951720pt;}
.h1{height:35.532990pt;}
.h8{height:35.734131pt;}
.h3{height:39.594498pt;}
.h15{height:42.895000pt;}
.h10{height:43.630080pt;}
.h14{height:45.072000pt;}
.h6{height:45.271976pt;}
.h4{height:46.300264pt;}
.h19{height:49.879680pt;}
.h1a{height:54.640640pt;}
.h2{height:54.822922pt;}
.hc{height:55.288320pt;}
.h17{height:55.297387pt;}
.h11{height:55.974453pt;}
.h12{height:55.976533pt;}
.h5{height:68.591214pt;}
.hf{height:79.927680pt;}
.hd{height:120.192000pt;}
.he{height:138.383360pt;}
.h0{height:1121.333333pt;}
.h9{height:1122.560000pt;}
.ha{height:1122.666667pt;}
.w0{width:793.333333pt;}
.w1{width:793.760000pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.385416pt;}
.x9{left:139.866667pt;}
.x1{left:217.322917pt;}
.x2{left:236.218749pt;}
.xc{left:388.706667pt;}
.x6{left:392.866307pt;}
.x4{left:456.893333pt;}
.xa{left:460.893333pt;}
.x8{left:487.613333pt;}
.x5{left:530.013333pt;}
.xb{left:554.653333pt;}
.x7{left:680.453333pt;}
}




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