
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_89f4b08bec196a56494befe2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_758253af16a139201f4f1b86.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_9f05933775a54693b6a932ea.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_035866e552b45bb4aa5323b9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966309;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_aaf3cb8bba50bb0453032543.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921875;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_84b1864e61e9911f4c7c0dfe.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976562;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_3ed26b9efa23524c44d4f335.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;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_a2dd99b6f0e8a6f47cb3952b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.976562;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_00cd940f5d2a5341edd4edd8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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_609c35a1a3a998a0e9d20eaf.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.914062;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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-1.008000px;}
.ls9{letter-spacing:-0.226200px;}
.lse{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.089400px;}
.lsd{letter-spacing:-0.072000px;}
.ls11{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.259920px;}
.ls7{letter-spacing:0.262200px;}
.ls5{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.493800px;}
.ls10{letter-spacing:16.506720px;}
.ls2{letter-spacing:46.026720px;}
.ls1{letter-spacing:49.626720px;}
.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;}
}
.ws1{word-spacing:-16.822200px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.wsc{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.518000px;}
.wsb{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.392000px;}
.ws6{word-spacing:-10.933800px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.213800px;}
.ws8{word-spacing:-8.928000px;}
.wsd{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.414320px;}
._2{width:2.623440px;}
._4{width:4.549680px;}
._3{width:5.724000px;}
._5{width:6.966000px;}
._7{width:8.694000px;}
._6{width:9.936000px;}
._8{width:11.826000px;}
._a{width:12.894720px;}
._b{width:13.904160px;}
._c{width:15.012000px;}
._e{width:16.185600px;}
._9{width:17.604000px;}
._10{width:18.670320px;}
._d{width:23.652000px;}
._f{width:26.852160px;}
._11{width:83.205840px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(31,31,31);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:0.540000px;}
.y44{bottom:3.060000px;}
.y5{bottom:3.780000px;}
.y5b{bottom:5.010000px;}
.y2{bottom:9.930000px;}
.y59{bottom:16.920000px;}
.y43{bottom:18.900000px;}
.y4{bottom:22.710000px;}
.y4d{bottom:30.420000px;}
.y58{bottom:32.400000px;}
.y42{bottom:36.045000px;}
.y4c{bottom:41.574000px;}
.y3{bottom:47.910000px;}
.y57{bottom:50.214000px;}
.y4b{bottom:53.274000px;}
.y41{bottom:53.325000px;}
.y7{bottom:57.060000px;}
.y56{bottom:65.694000px;}
.y4a{bottom:66.234000px;}
.y40{bottom:70.605000px;}
.y49{bottom:79.374000px;}
.y55{bottom:81.174000px;}
.y3f{bottom:87.885000px;}
.y93{bottom:95.616000px;}
.y54{bottom:98.994000px;}
.y48{bottom:101.334000px;}
.yc6{bottom:102.276000px;}
.y3e{bottom:105.165000px;}
.y45{bottom:109.116000px;}
.y92{bottom:112.896000px;}
.y111{bottom:114.336000px;}
.y53{bottom:114.474000px;}
.yc5{bottom:116.316000px;}
.y3d{bottom:122.265000px;}
.y52{bottom:129.954000px;}
.y91{bottom:130.176000px;}
.y110{bottom:131.616000px;}
.ye5{bottom:139.176000px;}
.y3c{bottom:139.545000px;}
.y51{bottom:145.614000px;}
.y90{bottom:147.456000px;}
.y10f{bottom:148.896000px;}
.y3b{bottom:156.825000px;}
.y50{bottom:161.094000px;}
.y47{bottom:163.254000px;}
.y8f{bottom:164.550000px;}
.ye4{bottom:165.450000px;}
.y10e{bottom:166.170000px;}
.y46{bottom:173.874000px;}
.y3a{bottom:174.105000px;}
.y4f{bottom:176.574000px;}
.y8e{bottom:181.830000px;}
.ye3{bottom:182.550000px;}
.y10d{bottom:183.450000px;}
.y39{bottom:191.385000px;}
.y8d{bottom:199.110000px;}
.ye2{bottom:199.830000px;}
.y10c{bottom:200.550000px;}
.y38{bottom:208.665000px;}
.y8c{bottom:216.390000px;}
.ye1{bottom:217.110000px;}
.y10b{bottom:217.830000px;}
.y37{bottom:225.765000px;}
.y8b{bottom:233.670000px;}
.ye0{bottom:234.390000px;}
.y10a{bottom:235.110000px;}
.y36{bottom:243.045000px;}
.y8a{bottom:250.950000px;}
.ydf{bottom:251.670000px;}
.y109{bottom:252.390000px;}
.y35{bottom:260.325000px;}
.yae{bottom:267.870000px;}
.yde{bottom:268.950000px;}
.y108{bottom:269.670000px;}
.y89{bottom:277.050000px;}
.y34{bottom:277.605000px;}
.yad{bottom:285.150000px;}
.ydd{bottom:286.050000px;}
.y107{bottom:286.950000px;}
.y88{bottom:294.330000px;}
.y33{bottom:294.915000px;}
.yac{bottom:302.430000px;}
.ydc{bottom:303.330000px;}
.y106{bottom:304.050000px;}
.y87{bottom:311.610000px;}
.y32{bottom:312.195000px;}
.yf{bottom:313.050000px;}
.yab{bottom:319.710000px;}
.ydb{bottom:320.610000px;}
.y105{bottom:321.330000px;}
.y86{bottom:328.890000px;}
.y1d{bottom:328.935000px;}
.y31{bottom:329.295000px;}
.yaa{bottom:336.990000px;}
.y104{bottom:338.610000px;}
.y30{bottom:346.575000px;}
.yda{bottom:346.935000px;}
.y1c{bottom:353.055000px;}
.ya9{bottom:354.315000px;}
.y85{bottom:355.215000px;}
.y103{bottom:355.935000px;}
.y2f{bottom:363.855000px;}
.yd9{bottom:364.215000px;}
.ya8{bottom:371.415000px;}
.y84{bottom:372.495000px;}
.y102{bottom:373.215000px;}
.y1b{bottom:377.175000px;}
.y2e{bottom:381.135000px;}
.yd8{bottom:381.495000px;}
.ya7{bottom:388.695000px;}
.y83{bottom:389.595000px;}
.y101{bottom:390.495000px;}
.yd7{bottom:398.595000px;}
.y1a{bottom:401.295000px;}
.ya6{bottom:405.975000px;}
.y82{bottom:406.875000px;}
.y2d{bottom:407.055000px;}
.y100{bottom:407.595000px;}
.yd6{bottom:415.875000px;}
.y2c{bottom:422.535000px;}
.ya5{bottom:423.255000px;}
.y81{bottom:424.155000px;}
.yff{bottom:424.875000px;}
.y19{bottom:425.415000px;}
.yd5{bottom:433.155000px;}
.y2b{bottom:438.015000px;}
.yc4{bottom:439.095000px;}
.ya4{bottom:440.535000px;}
.y80{bottom:441.435000px;}
.yfe{bottom:442.155000px;}
.y18{bottom:449.535000px;}
.yd4{bottom:450.435000px;}
.y2a{bottom:453.675000px;}
.yc3{bottom:456.375000px;}
.ya3{bottom:457.815000px;}
.y7f{bottom:458.715000px;}
.yfd{bottom:459.435000px;}
.yd3{bottom:467.715000px;}
.y29{bottom:469.155000px;}
.y17{bottom:473.655000px;}
.ya2{bottom:474.915000px;}
.y7e{bottom:475.995000px;}
.yfc{bottom:476.715000px;}
.y28{bottom:484.635000px;}
.yd2{bottom:484.995000px;}
.yc2{bottom:490.935000px;}
.ya1{bottom:492.195000px;}
.y7d{bottom:493.095000px;}
.yfb{bottom:493.995000px;}
.y16{bottom:497.955000px;}
.y27{bottom:500.115000px;}
.yd1{bottom:502.095000px;}
.yc1{bottom:508.215000px;}
.ya0{bottom:509.475000px;}
.yfa{bottom:511.095000px;}
.y26{bottom:515.775000px;}
.y7c{bottom:519.375000px;}
.y15{bottom:522.075000px;}
.yc0{bottom:525.315000px;}
.y9f{bottom:526.755000px;}
.yf9{bottom:528.375000px;}
.y25{bottom:531.255000px;}
.y7b{bottom:536.655000px;}
.ybf{bottom:542.595000px;}
.y9e{bottom:544.035000px;}
.yf8{bottom:545.655000px;}
.y14{bottom:546.195000px;}
.y24{bottom:546.735000px;}
.y7a{bottom:553.935000px;}
.ybe{bottom:559.875000px;}
.y9d{bottom:561.315000px;}
.y23{bottom:562.260000px;}
.yf7{bottom:562.935000px;}
.y13{bottom:570.360000px;}
.y79{bottom:571.215000px;}
.ybd{bottom:577.155000px;}
.y22{bottom:577.920000px;}
.y9c{bottom:578.415000px;}
.yf6{bottom:580.215000px;}
.y78{bottom:588.315000px;}
.y21{bottom:593.400000px;}
.ybc{bottom:594.435000px;}
.y12{bottom:594.480000px;}
.y9b{bottom:595.695000px;}
.yf5{bottom:597.315000px;}
.y77{bottom:605.625000px;}
.y20{bottom:608.880000px;}
.ybb{bottom:611.565000px;}
.y9a{bottom:613.005000px;}
.yf4{bottom:614.625000px;}
.y11{bottom:618.600000px;}
.y76{bottom:622.905000px;}
.y1f{bottom:624.360000px;}
.yba{bottom:628.845000px;}
.y99{bottom:630.285000px;}
.yf3{bottom:631.905000px;}
.y1e{bottom:640.020000px;}
.y75{bottom:640.185000px;}
.y10{bottom:642.900000px;}
.yb9{bottom:646.125000px;}
.y98{bottom:647.565000px;}
.yf2{bottom:649.185000px;}
.y74{bottom:657.465000px;}
.yb8{bottom:663.405000px;}
.y97{bottom:664.665000px;}
.yf1{bottom:666.465000px;}
.y73{bottom:674.745000px;}
.yb7{bottom:680.685000px;}
.y96{bottom:681.945000px;}
.yf0{bottom:683.745000px;}
.y72{bottom:691.845000px;}
.yb6{bottom:697.965000px;}
.y95{bottom:699.225000px;}
.yef{bottom:700.845000px;}
.y71{bottom:709.125000px;}
.y94{bottom:713.265000px;}
.yb5{bottom:715.065000px;}
.y112{bottom:718.125000px;}
.y70{bottom:726.405000px;}
.yee{bottom:727.125000px;}
.yb4{bottom:732.345000px;}
.yd0{bottom:735.405000px;}
.y6f{bottom:743.685000px;}
.yed{bottom:744.405000px;}
.yb3{bottom:749.625000px;}
.ycf{bottom:752.685000px;}
.y6e{bottom:760.965000px;}
.yec{bottom:761.685000px;}
.yce{bottom:769.965000px;}
.yb2{bottom:775.905000px;}
.y6d{bottom:778.245000px;}
.yeb{bottom:778.965000px;}
.ycd{bottom:787.245000px;}
.yb1{bottom:793.185000px;}
.yea{bottom:796.245000px;}
.y6c{bottom:804.345000px;}
.yb0{bottom:810.465000px;}
.ye9{bottom:813.345000px;}
.y6b{bottom:821.625000px;}
.yaf{bottom:824.325000px;}
.ye8{bottom:830.625000px;}
.y6a{bottom:838.905000px;}
.ye7{bottom:847.905000px;}
.y69{bottom:856.185000px;}
.ye6{bottom:865.185000px;}
.ycc{bottom:873.510000px;}
.y68{bottom:882.510000px;}
.ycb{bottom:890.610000px;}
.y67{bottom:899.610000px;}
.yca{bottom:907.890000px;}
.y66{bottom:916.890000px;}
.yc9{bottom:925.170000px;}
.y65{bottom:934.170000px;}
.yc8{bottom:942.450000px;}
.y64{bottom:951.450000px;}
.yc7{bottom:959.730000px;}
.ye{bottom:968.190000px;}
.y63{bottom:968.730000px;}
.yd{bottom:972.870000px;}
.y62{bottom:986.010000px;}
.yc{bottom:989.970000px;}
.y61{bottom:1003.110000px;}
.yb{bottom:1007.250000px;}
.y60{bottom:1020.390000px;}
.ya{bottom:1024.530000px;}
.y5f{bottom:1037.670000px;}
.y9{bottom:1043.250000px;}
.y5e{bottom:1054.950000px;}
.y8{bottom:1071.870000px;}
.y5d{bottom:1072.230000px;}
.y5a{bottom:1075.140000px;}
.y5c{bottom:1089.510000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.ha{height:4.064063px;}
.h13{height:21.114844px;}
.h12{height:25.136719px;}
.h16{height:27.720000px;}
.hd{height:29.158594px;}
.hc{height:29.464453px;}
.hf{height:37.705078px;}
.he{height:38.100586px;}
.h14{height:38.997070px;}
.h7{height:40.132617px;}
.h15{height:41.080078px;}
.h6{height:41.726953px;}
.h9{height:42.164648px;}
.h10{height:43.506914px;}
.h18{height:45.461953px;}
.h5{height:46.251562px;}
.h17{height:64.002656px;}
.h8{height:64.126055px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h11{height:203.220000px;}
.hb{height:652.605000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w5{width:132.660000px;}
.w7{width:162.900000px;}
.w6{width:596.490000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:7.056000px;}
.x1a{left:8.100000px;}
.x16{left:10.800000px;}
.x4{left:12.780000px;}
.x18{left:13.860000px;}
.x17{left:16.740000px;}
.x1d{left:18.180000px;}
.x6{left:19.260000px;}
.x10{left:25.920000px;}
.x11{left:29.340000px;}
.xf{left:31.500000px;}
.x15{left:37.620000px;}
.x13{left:42.840000px;}
.x14{left:45.900000px;}
.x1e{left:47.700000px;}
.x1f{left:57.060000px;}
.x1b{left:62.145000px;}
.x12{left:66.234000px;}
.x1{left:78.300000px;}
.x9{left:86.435987px;}
.x2{left:95.790000px;}
.x20{left:102.774000px;}
.x1c{left:106.734000px;}
.x23{left:113.435987px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x19{left:219.090000px;}
.xc{left:430.124987px;}
.xb{left:449.744987px;}
.xd{left:628.529987px;}
.x24{left:661.829987px;}
.x22{left:672.989987px;}
.x25{left:716.729987px;}
.xa{left:719.069987px;}
.x8{left:766.049987px;}
.x7{left:791.999987px;}
.xe{left:806.939987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.896000pt;}
.ls9{letter-spacing:-0.201067pt;}
.lse{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.079467pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.231040pt;}
.ls7{letter-spacing:0.233067pt;}
.ls5{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.438933pt;}
.ls10{letter-spacing:14.672640pt;}
.ls2{letter-spacing:40.912640pt;}
.ls1{letter-spacing:44.112640pt;}
.ws1{word-spacing:-14.953067pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.wsc{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.016000pt;}
.wsb{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.904000pt;}
.ws6{word-spacing:-9.718933pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-9.078933pt;}
.ws8{word-spacing:-7.936000pt;}
.wsd{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.257173pt;}
._2{width:2.331947pt;}
._4{width:4.044160pt;}
._3{width:5.088000pt;}
._5{width:6.192000pt;}
._7{width:7.728000pt;}
._6{width:8.832000pt;}
._8{width:10.512000pt;}
._a{width:11.461973pt;}
._b{width:12.359253pt;}
._c{width:13.344000pt;}
._e{width:14.387200pt;}
._9{width:15.648000pt;}
._10{width:16.595840pt;}
._d{width:21.024000pt;}
._f{width:23.868587pt;}
._11{width:73.960747pt;}
.fs5{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:0.480000pt;}
.y44{bottom:2.720000pt;}
.y5{bottom:3.360000pt;}
.y5b{bottom:4.453333pt;}
.y2{bottom:8.826667pt;}
.y59{bottom:15.040000pt;}
.y43{bottom:16.800000pt;}
.y4{bottom:20.186667pt;}
.y4d{bottom:27.040000pt;}
.y58{bottom:28.800000pt;}
.y42{bottom:32.040000pt;}
.y4c{bottom:36.954667pt;}
.y3{bottom:42.586667pt;}
.y57{bottom:44.634667pt;}
.y4b{bottom:47.354667pt;}
.y41{bottom:47.400000pt;}
.y7{bottom:50.720000pt;}
.y56{bottom:58.394667pt;}
.y4a{bottom:58.874667pt;}
.y40{bottom:62.760000pt;}
.y49{bottom:70.554667pt;}
.y55{bottom:72.154667pt;}
.y3f{bottom:78.120000pt;}
.y93{bottom:84.992000pt;}
.y54{bottom:87.994667pt;}
.y48{bottom:90.074667pt;}
.yc6{bottom:90.912000pt;}
.y3e{bottom:93.480000pt;}
.y45{bottom:96.992000pt;}
.y92{bottom:100.352000pt;}
.y111{bottom:101.632000pt;}
.y53{bottom:101.754667pt;}
.yc5{bottom:103.392000pt;}
.y3d{bottom:108.680000pt;}
.y52{bottom:115.514667pt;}
.y91{bottom:115.712000pt;}
.y110{bottom:116.992000pt;}
.ye5{bottom:123.712000pt;}
.y3c{bottom:124.040000pt;}
.y51{bottom:129.434667pt;}
.y90{bottom:131.072000pt;}
.y10f{bottom:132.352000pt;}
.y3b{bottom:139.400000pt;}
.y50{bottom:143.194667pt;}
.y47{bottom:145.114667pt;}
.y8f{bottom:146.266667pt;}
.ye4{bottom:147.066667pt;}
.y10e{bottom:147.706667pt;}
.y46{bottom:154.554667pt;}
.y3a{bottom:154.760000pt;}
.y4f{bottom:156.954667pt;}
.y8e{bottom:161.626667pt;}
.ye3{bottom:162.266667pt;}
.y10d{bottom:163.066667pt;}
.y39{bottom:170.120000pt;}
.y8d{bottom:176.986667pt;}
.ye2{bottom:177.626667pt;}
.y10c{bottom:178.266667pt;}
.y38{bottom:185.480000pt;}
.y8c{bottom:192.346667pt;}
.ye1{bottom:192.986667pt;}
.y10b{bottom:193.626667pt;}
.y37{bottom:200.680000pt;}
.y8b{bottom:207.706667pt;}
.ye0{bottom:208.346667pt;}
.y10a{bottom:208.986667pt;}
.y36{bottom:216.040000pt;}
.y8a{bottom:223.066667pt;}
.ydf{bottom:223.706667pt;}
.y109{bottom:224.346667pt;}
.y35{bottom:231.400000pt;}
.yae{bottom:238.106667pt;}
.yde{bottom:239.066667pt;}
.y108{bottom:239.706667pt;}
.y89{bottom:246.266667pt;}
.y34{bottom:246.760000pt;}
.yad{bottom:253.466667pt;}
.ydd{bottom:254.266667pt;}
.y107{bottom:255.066667pt;}
.y88{bottom:261.626667pt;}
.y33{bottom:262.146667pt;}
.yac{bottom:268.826667pt;}
.ydc{bottom:269.626667pt;}
.y106{bottom:270.266667pt;}
.y87{bottom:276.986667pt;}
.y32{bottom:277.506667pt;}
.yf{bottom:278.266667pt;}
.yab{bottom:284.186667pt;}
.ydb{bottom:284.986667pt;}
.y105{bottom:285.626667pt;}
.y86{bottom:292.346667pt;}
.y1d{bottom:292.386667pt;}
.y31{bottom:292.706667pt;}
.yaa{bottom:299.546667pt;}
.y104{bottom:300.986667pt;}
.y30{bottom:308.066667pt;}
.yda{bottom:308.386667pt;}
.y1c{bottom:313.826667pt;}
.ya9{bottom:314.946667pt;}
.y85{bottom:315.746667pt;}
.y103{bottom:316.386667pt;}
.y2f{bottom:323.426667pt;}
.yd9{bottom:323.746667pt;}
.ya8{bottom:330.146667pt;}
.y84{bottom:331.106667pt;}
.y102{bottom:331.746667pt;}
.y1b{bottom:335.266667pt;}
.y2e{bottom:338.786667pt;}
.yd8{bottom:339.106667pt;}
.ya7{bottom:345.506667pt;}
.y83{bottom:346.306667pt;}
.y101{bottom:347.106667pt;}
.yd7{bottom:354.306667pt;}
.y1a{bottom:356.706667pt;}
.ya6{bottom:360.866667pt;}
.y82{bottom:361.666667pt;}
.y2d{bottom:361.826667pt;}
.y100{bottom:362.306667pt;}
.yd6{bottom:369.666667pt;}
.y2c{bottom:375.586667pt;}
.ya5{bottom:376.226667pt;}
.y81{bottom:377.026667pt;}
.yff{bottom:377.666667pt;}
.y19{bottom:378.146667pt;}
.yd5{bottom:385.026667pt;}
.y2b{bottom:389.346667pt;}
.yc4{bottom:390.306667pt;}
.ya4{bottom:391.586667pt;}
.y80{bottom:392.386667pt;}
.yfe{bottom:393.026667pt;}
.y18{bottom:399.586667pt;}
.yd4{bottom:400.386667pt;}
.y2a{bottom:403.266667pt;}
.yc3{bottom:405.666667pt;}
.ya3{bottom:406.946667pt;}
.y7f{bottom:407.746667pt;}
.yfd{bottom:408.386667pt;}
.yd3{bottom:415.746667pt;}
.y29{bottom:417.026667pt;}
.y17{bottom:421.026667pt;}
.ya2{bottom:422.146667pt;}
.y7e{bottom:423.106667pt;}
.yfc{bottom:423.746667pt;}
.y28{bottom:430.786667pt;}
.yd2{bottom:431.106667pt;}
.yc2{bottom:436.386667pt;}
.ya1{bottom:437.506667pt;}
.y7d{bottom:438.306667pt;}
.yfb{bottom:439.106667pt;}
.y16{bottom:442.626667pt;}
.y27{bottom:444.546667pt;}
.yd1{bottom:446.306667pt;}
.yc1{bottom:451.746667pt;}
.ya0{bottom:452.866667pt;}
.yfa{bottom:454.306667pt;}
.y26{bottom:458.466667pt;}
.y7c{bottom:461.666667pt;}
.y15{bottom:464.066667pt;}
.yc0{bottom:466.946667pt;}
.y9f{bottom:468.226667pt;}
.yf9{bottom:469.666667pt;}
.y25{bottom:472.226667pt;}
.y7b{bottom:477.026667pt;}
.ybf{bottom:482.306667pt;}
.y9e{bottom:483.586667pt;}
.yf8{bottom:485.026667pt;}
.y14{bottom:485.506667pt;}
.y24{bottom:485.986667pt;}
.y7a{bottom:492.386667pt;}
.ybe{bottom:497.666667pt;}
.y9d{bottom:498.946667pt;}
.y23{bottom:499.786667pt;}
.yf7{bottom:500.386667pt;}
.y13{bottom:506.986667pt;}
.y79{bottom:507.746667pt;}
.ybd{bottom:513.026667pt;}
.y22{bottom:513.706667pt;}
.y9c{bottom:514.146667pt;}
.yf6{bottom:515.746667pt;}
.y78{bottom:522.946667pt;}
.y21{bottom:527.466667pt;}
.ybc{bottom:528.386667pt;}
.y12{bottom:528.426667pt;}
.y9b{bottom:529.506667pt;}
.yf5{bottom:530.946667pt;}
.y77{bottom:538.333333pt;}
.y20{bottom:541.226667pt;}
.ybb{bottom:543.613333pt;}
.y9a{bottom:544.893333pt;}
.yf4{bottom:546.333333pt;}
.y11{bottom:549.866667pt;}
.y76{bottom:553.693333pt;}
.y1f{bottom:554.986667pt;}
.yba{bottom:558.973333pt;}
.y99{bottom:560.253333pt;}
.yf3{bottom:561.693333pt;}
.y1e{bottom:568.906667pt;}
.y75{bottom:569.053333pt;}
.y10{bottom:571.466667pt;}
.yb9{bottom:574.333333pt;}
.y98{bottom:575.613333pt;}
.yf2{bottom:577.053333pt;}
.y74{bottom:584.413333pt;}
.yb8{bottom:589.693333pt;}
.y97{bottom:590.813333pt;}
.yf1{bottom:592.413333pt;}
.y73{bottom:599.773333pt;}
.yb7{bottom:605.053333pt;}
.y96{bottom:606.173333pt;}
.yf0{bottom:607.773333pt;}
.y72{bottom:614.973333pt;}
.yb6{bottom:620.413333pt;}
.y95{bottom:621.533333pt;}
.yef{bottom:622.973333pt;}
.y71{bottom:630.333333pt;}
.y94{bottom:634.013333pt;}
.yb5{bottom:635.613333pt;}
.y112{bottom:638.333333pt;}
.y70{bottom:645.693333pt;}
.yee{bottom:646.333333pt;}
.yb4{bottom:650.973333pt;}
.yd0{bottom:653.693333pt;}
.y6f{bottom:661.053333pt;}
.yed{bottom:661.693333pt;}
.yb3{bottom:666.333333pt;}
.ycf{bottom:669.053333pt;}
.y6e{bottom:676.413333pt;}
.yec{bottom:677.053333pt;}
.yce{bottom:684.413333pt;}
.yb2{bottom:689.693333pt;}
.y6d{bottom:691.773333pt;}
.yeb{bottom:692.413333pt;}
.ycd{bottom:699.773333pt;}
.yb1{bottom:705.053333pt;}
.yea{bottom:707.773333pt;}
.y6c{bottom:714.973333pt;}
.yb0{bottom:720.413333pt;}
.ye9{bottom:722.973333pt;}
.y6b{bottom:730.333333pt;}
.yaf{bottom:732.733333pt;}
.ye8{bottom:738.333333pt;}
.y6a{bottom:745.693333pt;}
.ye7{bottom:753.693333pt;}
.y69{bottom:761.053333pt;}
.ye6{bottom:769.053333pt;}
.ycc{bottom:776.453333pt;}
.y68{bottom:784.453333pt;}
.ycb{bottom:791.653333pt;}
.y67{bottom:799.653333pt;}
.yca{bottom:807.013333pt;}
.y66{bottom:815.013333pt;}
.yc9{bottom:822.373333pt;}
.y65{bottom:830.373333pt;}
.yc8{bottom:837.733333pt;}
.y64{bottom:845.733333pt;}
.yc7{bottom:853.093333pt;}
.ye{bottom:860.613333pt;}
.y63{bottom:861.093333pt;}
.yd{bottom:864.773333pt;}
.y62{bottom:876.453333pt;}
.yc{bottom:879.973333pt;}
.y61{bottom:891.653333pt;}
.yb{bottom:895.333333pt;}
.y60{bottom:907.013333pt;}
.ya{bottom:910.693333pt;}
.y5f{bottom:922.373333pt;}
.y9{bottom:927.333333pt;}
.y5e{bottom:937.733333pt;}
.y8{bottom:952.773333pt;}
.y5d{bottom:953.093333pt;}
.y5a{bottom:955.680000pt;}
.y5c{bottom:968.453333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.ha{height:3.612500pt;}
.h13{height:18.768750pt;}
.h12{height:22.343750pt;}
.h16{height:24.640000pt;}
.hd{height:25.918750pt;}
.hc{height:26.190625pt;}
.hf{height:33.515625pt;}
.he{height:33.867188pt;}
.h14{height:34.664062pt;}
.h7{height:35.673437pt;}
.h15{height:36.515625pt;}
.h6{height:37.090625pt;}
.h9{height:37.479688pt;}
.h10{height:38.672812pt;}
.h18{height:40.410625pt;}
.h5{height:41.112500pt;}
.h17{height:56.891250pt;}
.h8{height:57.000937pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h11{height:180.640000pt;}
.hb{height:580.093333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w5{width:117.920000pt;}
.w7{width:144.800000pt;}
.w6{width:530.213333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.272000pt;}
.x1a{left:7.200000pt;}
.x16{left:9.600000pt;}
.x4{left:11.360000pt;}
.x18{left:12.320000pt;}
.x17{left:14.880000pt;}
.x1d{left:16.160000pt;}
.x6{left:17.120000pt;}
.x10{left:23.040000pt;}
.x11{left:26.080000pt;}
.xf{left:28.000000pt;}
.x15{left:33.440000pt;}
.x13{left:38.080000pt;}
.x14{left:40.800000pt;}
.x1e{left:42.400000pt;}
.x1f{left:50.720000pt;}
.x1b{left:55.240000pt;}
.x12{left:58.874667pt;}
.x1{left:69.600000pt;}
.x9{left:76.831988pt;}
.x2{left:85.146667pt;}
.x20{left:91.354667pt;}
.x1c{left:94.874667pt;}
.x23{left:100.831988pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x19{left:194.746667pt;}
.xc{left:382.333322pt;}
.xb{left:399.773322pt;}
.xd{left:558.693322pt;}
.x24{left:588.293322pt;}
.x22{left:598.213322pt;}
.x25{left:637.093322pt;}
.xa{left:639.173322pt;}
.x8{left:680.933322pt;}
.x7{left:703.999988pt;}
.xe{left:717.279988pt;}
}




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