
    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_f6e46031aaa8f2e428b9fffa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_872e7f98be624baeea7e020d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1a1536676f139648984a3b44.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_606b1e21a25766d0b2d974e6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1a33079ee7bc8d94f2a6ef34.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c0d54a95d779351c049216d5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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);}
.v2{vertical-align:-69.120000px;}
.v5{vertical-align:-64.800000px;}
.v1{vertical-align:-62.640000px;}
.v4{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.ls1e{letter-spacing:-0.828000px;}
.lse{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.220800px;}
.ls1d{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.126000px;}
.ls18{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.027360px;}
.lsf{letter-spacing:-0.018000px;}
.lsa{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.018000px;}
.ls16{letter-spacing:0.108000px;}
.ls19{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.738000px;}
.ls1c{letter-spacing:2.988000px;}
.ls4{letter-spacing:5.220000px;}
.ls5{letter-spacing:6.660000px;}
.ls1b{letter-spacing:30.492000px;}
.ls14{letter-spacing:44.748000px;}
.ls11{letter-spacing:45.612000px;}
.ls6{letter-spacing:52.560000px;}
.ls3{letter-spacing:66.420000px;}
.ls15{letter-spacing:68.652000px;}
.ls0{letter-spacing:154.980000px;}
.ls7{letter-spacing:1226.940000px;}
.ls8{letter-spacing:1241.100000px;}
.ls1a{letter-spacing:1357.680000px;}
.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;}
}
.ws10{word-spacing:-54.000000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.wsf{word-spacing:-16.822200px;}
.ws3{word-spacing:-14.580000px;}
.wsc{word-spacing:-14.238000px;}
.ws5{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws9{word-spacing:-13.860000px;}
.ws15{word-spacing:-13.626000px;}
.ws12{word-spacing:-13.608000px;}
.ws13{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.482000px;}
.ws14{word-spacing:-13.392000px;}
.ws11{word-spacing:-13.374000px;}
.ws16{word-spacing:-13.284000px;}
.wsa{word-spacing:-13.140000px;}
.wsd{word-spacing:-12.960000px;}
.ws17{word-spacing:-12.672000px;}
.ws6{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.000000px;}
.wse{word-spacing:0.000000px;}
._9{margin-left:-6.482880px;}
._a{margin-left:-3.446640px;}
._1{margin-left:-2.442960px;}
._0{margin-left:-1.188000px;}
._2{width:1.524240px;}
._6{width:3.030000px;}
._7{width:4.282560px;}
._8{width:5.972880px;}
._4{width:7.236000px;}
._5{width:8.364000px;}
._c{width:9.497760px;}
._13{width:10.629360px;}
._10{width:11.880000px;}
._11{width:848.909760px;}
._d{width:926.615760px;}
._b{width:1041.420000px;}
._12{width:1078.728000px;}
._15{width:1106.621520px;}
._e{width:1164.282000px;}
._14{width:1228.740000px;}
._f{width:1234.343760px;}
._3{width:1574.460000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fs9{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsb{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yb9{bottom:2.880000px;}
.ybf{bottom:3.240000px;}
.ybb{bottom:3.420000px;}
.yc0{bottom:18.720000px;}
.yc8{bottom:18.756000px;}
.ybd{bottom:18.900000px;}
.ycd{bottom:34.200000px;}
.ybc{bottom:34.380000px;}
.yc7{bottom:34.410000px;}
.yc6{bottom:49.890000px;}
.y2{bottom:57.960000px;}
.y1{bottom:76.860000px;}
.y93{bottom:102.960000px;}
.y60{bottom:107.100000px;}
.y39{bottom:109.470000px;}
.y92{bottom:118.980000px;}
.y5f{bottom:119.520000px;}
.yc5{bottom:122.760000px;}
.y38{bottom:125.130000px;}
.y91{bottom:134.460000px;}
.y37{bottom:140.640000px;}
.y90{bottom:149.976000px;}
.y36{bottom:156.300000px;}
.y8f{bottom:165.630000px;}
.y35{bottom:171.420000px;}
.y8e{bottom:180.930000px;}
.yc4{bottom:185.610000px;}
.y34{bottom:187.080000px;}
.y8d{bottom:196.410000px;}
.yc3{bottom:201.810000px;}
.y33{bottom:203.100000px;}
.y8c{bottom:212.070000px;}
.y32{bottom:218.580000px;}
.y8b{bottom:228.090000px;}
.yc2{bottom:233.670000px;}
.y31{bottom:234.060000px;}
.y8a{bottom:240.330000px;}
.y30{bottom:249.540000px;}
.y2f{bottom:265.020000px;}
.yfb{bottom:275.970000px;}
.y2e{bottom:280.680000px;}
.yc1{bottom:281.010000px;}
.yfa{bottom:291.450000px;}
.y2d{bottom:295.980000px;}
.yf9{bottom:306.930000px;}
.y2c{bottom:311.460000px;}
.ybe{bottom:312.870000px;}
.yf8{bottom:322.590000px;}
.y2b{bottom:327.120000px;}
.yf7{bottom:338.070000px;}
.yba{bottom:344.550000px;}
.yf6{bottom:353.550000px;}
.y2a{bottom:358.620000px;}
.yf5{bottom:369.030000px;}
.y29{bottom:374.280000px;}
.yf4{bottom:384.690000px;}
.y28{bottom:389.805000px;}
.yb8{bottom:391.935000px;}
.yf3{bottom:400.215000px;}
.y27{bottom:405.285000px;}
.yb7{bottom:411.555000px;}
.yf2{bottom:415.695000px;}
.y26{bottom:420.945000px;}
.yb6{bottom:426.855000px;}
.y25{bottom:436.425000px;}
.yb5{bottom:442.695000px;}
.yf1{bottom:446.835000px;}
.y24{bottom:451.905000px;}
.yb4{bottom:458.175000px;}
.y23{bottom:467.565000px;}
.y89{bottom:468.435000px;}
.yb3{bottom:473.835000px;}
.yf0{bottom:477.975000px;}
.y22{bottom:483.045000px;}
.y88{bottom:484.275000px;}
.yb2{bottom:489.135000px;}
.yef{bottom:493.635000px;}
.y21{bottom:498.525000px;}
.y87{bottom:500.835000px;}
.yb1{bottom:504.615000px;}
.yee{bottom:509.115000px;}
.y20{bottom:513.825000px;}
.y86{bottom:517.215000px;}
.yb0{bottom:520.275000px;}
.yed{bottom:524.595000px;}
.y85{bottom:533.775000px;}
.yaf{bottom:536.115000px;}
.yec{bottom:540.075000px;}
.y1f{bottom:544.965000px;}
.y84{bottom:550.335000px;}
.yae{bottom:551.775000px;}
.yeb{bottom:555.735000px;}
.y1e{bottom:565.125000px;}
.y83{bottom:566.355000px;}
.yad{bottom:567.255000px;}
.yea{bottom:571.035000px;}
.y82{bottom:582.015000px;}
.yac{bottom:582.555000px;}
.ye9{bottom:586.515000px;}
.y1d{bottom:594.105000px;}
.y81{bottom:598.035000px;}
.yab{bottom:598.215000px;}
.ye8{bottom:602.175000px;}
.y1c{bottom:612.285000px;}
.y80{bottom:613.515000px;}
.yaa{bottom:613.695000px;}
.ye7{bottom:618.015000px;}
.y5e{bottom:626.835000px;}
.y1b{bottom:627.945000px;}
.ya9{bottom:629.535000px;}
.y7f{bottom:630.075000px;}
.ye6{bottom:633.495000px;}
.y5d{bottom:642.165000px;}
.y1a{bottom:643.455000px;}
.ya8{bottom:645.225000px;}
.y7e{bottom:646.665000px;}
.ye5{bottom:649.005000px;}
.y5c{bottom:657.825000px;}
.y19{bottom:658.935000px;}
.ya7{bottom:660.705000px;}
.y7d{bottom:663.225000px;}
.ye4{bottom:665.745000px;}
.y5b{bottom:673.305000px;}
.y18{bottom:674.595000px;}
.y7c{bottom:679.785000px;}
.ye3{bottom:681.225000px;}
.y5a{bottom:688.785000px;}
.ya6{bottom:691.665000px;}
.y7b{bottom:696.345000px;}
.ye2{bottom:696.705000px;}
.y17{bottom:696.735000px;}
.y59{bottom:704.265000px;}
.ya5{bottom:707.505000px;}
.y7a{bottom:712.725000px;}
.ye1{bottom:713.265000px;}
.y58{bottom:720.825000px;}
.ya4{bottom:723.165000px;}
.y16{bottom:728.055000px;}
.y79{bottom:728.205000px;}
.ye0{bottom:729.825000px;}
.ya3{bottom:738.645000px;}
.y57{bottom:738.825000px;}
.y15{bottom:743.535000px;}
.y78{bottom:743.865000px;}
.ydf{bottom:746.385000px;}
.ya2{bottom:754.125000px;}
.y56{bottom:754.665000px;}
.y14{bottom:759.015000px;}
.y77{bottom:759.705000px;}
.yde{bottom:762.945000px;}
.y55{bottom:769.965000px;}
.y76{bottom:775.185000px;}
.ydd{bottom:779.505000px;}
.ya1{bottom:785.085000px;}
.y54{bottom:785.625000px;}
.y75{bottom:790.845000px;}
.y13{bottom:793.755000px;}
.ydc{bottom:796.065000px;}
.ya0{bottom:800.925000px;}
.y53{bottom:801.105000px;}
.y74{bottom:806.325000px;}
.ydb{bottom:811.545000px;}
.y12{bottom:813.735000px;}
.y52{bottom:816.585000px;}
.y73{bottom:821.805000px;}
.yda{bottom:828.285000px;}
.y51{bottom:832.065000px;}
.y72{bottom:837.285000px;}
.yd9{bottom:843.765000px;}
.y9f{bottom:847.545000px;}
.y50{bottom:847.725000px;}
.y11{bottom:850.635000px;}
.y71{bottom:852.945000px;}
.yd8{bottom:859.245000px;}
.y10{bottom:859.275000px;}
.y9e{bottom:863.025000px;}
.y4f{bottom:863.385000px;}
.y70{bottom:868.425000px;}
.yd7{bottom:874.725000px;}
.y4e{bottom:878.685000px;}
.y6f{bottom:884.085000px;}
.yf{bottom:884.655000px;}
.yd6{bottom:891.465000px;}
.y9d{bottom:894.210000px;}
.y4d{bottom:894.750000px;}
.yd5{bottom:906.810000px;}
.y9c{bottom:909.510000px;}
.y4c{bottom:910.050000px;}
.y6e{bottom:914.910000px;}
.yd4{bottom:922.650000px;}
.ye{bottom:923.940000px;}
.y9b{bottom:925.170000px;}
.y4b{bottom:925.530000px;}
.y6d{bottom:930.570000px;}
.yd3{bottom:938.130000px;}
.y9a{bottom:940.650000px;}
.y4a{bottom:941.010000px;}
.y6c{bottom:946.050000px;}
.yd2{bottom:953.790000px;}
.y49{bottom:956.670000px;}
.yd{bottom:966.240000px;}
.yd1{bottom:969.270000px;}
.y48{bottom:972.150000px;}
.y6b{bottom:977.550000px;}
.yd0{bottom:984.930000px;}
.y47{bottom:987.630000px;}
.y6a{bottom:994.110000px;}
.ycf{bottom:1000.230000px;}
.yc{bottom:1000.620000px;}
.y46{bottom:1003.110000px;}
.y69{bottom:1010.670000px;}
.yce{bottom:1015.710000px;}
.y99{bottom:1018.590000px;}
.y45{bottom:1018.770000px;}
.y68{bottom:1027.230000px;}
.ycc{bottom:1029.210000px;}
.y9{bottom:1034.100000px;}
.y44{bottom:1034.250000px;}
.yb{bottom:1039.320000px;}
.y67{bottom:1043.790000px;}
.y43{bottom:1049.730000px;}
.y8{bottom:1057.320000px;}
.y66{bottom:1060.350000px;}
.y98{bottom:1065.030000px;}
.y42{bottom:1065.210000px;}
.ya{bottom:1071.360000px;}
.ycb{bottom:1076.370000px;}
.y65{bottom:1076.910000px;}
.y41{bottom:1080.870000px;}
.y7{bottom:1086.660000px;}
.y64{bottom:1093.470000px;}
.y40{bottom:1096.170000px;}
.y97{bottom:1096.530000px;}
.y6{bottom:1105.740000px;}
.yca{bottom:1108.230000px;}
.y63{bottom:1110.030000px;}
.y3f{bottom:1111.830000px;}
.y96{bottom:1112.190000px;}
.y5{bottom:1123.020000px;}
.yc9{bottom:1124.430000px;}
.y62{bottom:1126.590000px;}
.y3e{bottom:1127.490000px;}
.y95{bottom:1127.670000px;}
.y4{bottom:1140.300000px;}
.y94{bottom:1142.970000px;}
.y3d{bottom:1143.330000px;}
.y3{bottom:1158.360000px;}
.y61{bottom:1158.660000px;}
.y3c{bottom:1158.840000px;}
.y3b{bottom:1175.220000px;}
.y3a{bottom:1193.760000px;}
.ha{height:12.335625px;}
.h13{height:15.480000px;}
.h15{height:30.960000px;}
.h17{height:31.140000px;}
.hb{height:35.314453px;}
.hf{height:38.158594px;}
.h19{height:46.440000px;}
.h16{height:46.620000px;}
.h14{height:46.656000px;}
.h10{height:47.344922px;}
.h6{height:48.616875px;}
.hc{height:52.971680px;}
.h11{height:52.998047px;}
.hd{height:54.421875px;}
.h12{height:55.503491px;}
.h7{height:55.796836px;}
.h8{height:58.621992px;}
.h3{height:60.226875px;}
.h18{height:62.136000px;}
.he{height:62.153438px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.h2{height:72.562500px;}
.h5{height:81.995625px;}
.h9{height:84.898125px;}
.h0{height:1263.000000px;}
.w3{width:137.916000px;}
.w4{width:248.115000px;}
.w2{width:296.670000px;}
.w1{width:893.999987px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1f{left:9.360000px;}
.x23{left:14.220000px;}
.x20{left:15.840000px;}
.x29{left:19.080000px;}
.x28{left:25.380000px;}
.x27{left:26.820000px;}
.x2{left:29.970000px;}
.x1c{left:34.050000px;}
.x2d{left:36.900000px;}
.x2e{left:39.240000px;}
.x26{left:41.430000px;}
.x2c{left:44.670000px;}
.x22{left:46.290000px;}
.x2a{left:50.940000px;}
.x8{left:53.040000px;}
.x21{left:55.440000px;}
.x31{left:58.139987px;}
.x2b{left:63.714000px;}
.x15{left:68.579987px;}
.xd{left:69.675000px;}
.x24{left:72.225000px;}
.x9{left:73.380000px;}
.x25{left:78.114000px;}
.x1a{left:79.374000px;}
.x13{left:85.175987px;}
.x1e{left:90.585000px;}
.x2f{left:92.565000px;}
.x10{left:95.615987px;}
.x19{left:99.576000px;}
.x18{left:209.369987px;}
.xb{left:242.100000px;}
.x5{left:244.050000px;}
.x3{left:252.120000px;}
.xa{left:256.980000px;}
.x12{left:288.974987px;}
.x4{left:290.610000px;}
.x17{left:354.494987px;}
.x30{left:395.534987px;}
.x1b{left:396.615000px;}
.xe{left:400.053000px;}
.x1{left:422.700000px;}
.xf{left:428.864987px;}
.xc{left:437.070000px;}
.x14{left:441.284987px;}
.x6{left:478.845000px;}
.x7{left:506.340000px;}
.x1d{left:534.885000px;}
.x11{left:611.249987px;}
.x16{left:620.429987px;}
@media print{
.v2{vertical-align:-61.440000pt;}
.v5{vertical-align:-57.600000pt;}
.v1{vertical-align:-55.680000pt;}
.v4{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls1e{letter-spacing:-0.736000pt;}
.lse{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.196267pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.112000pt;}
.ls18{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.024320pt;}
.lsf{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.016000pt;}
.ls16{letter-spacing:0.096000pt;}
.ls19{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.656000pt;}
.ls1c{letter-spacing:2.656000pt;}
.ls4{letter-spacing:4.640000pt;}
.ls5{letter-spacing:5.920000pt;}
.ls1b{letter-spacing:27.104000pt;}
.ls14{letter-spacing:39.776000pt;}
.ls11{letter-spacing:40.544000pt;}
.ls6{letter-spacing:46.720000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls15{letter-spacing:61.024000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls7{letter-spacing:1090.613333pt;}
.ls8{letter-spacing:1103.200000pt;}
.ls1a{letter-spacing:1206.826667pt;}
.ws10{word-spacing:-48.000000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsf{word-spacing:-14.953067pt;}
.ws3{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.656000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws9{word-spacing:-12.320000pt;}
.ws15{word-spacing:-12.112000pt;}
.ws12{word-spacing:-12.096000pt;}
.ws13{word-spacing:-12.016000pt;}
.ws8{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.984000pt;}
.ws14{word-spacing:-11.904000pt;}
.ws11{word-spacing:-11.888000pt;}
.ws16{word-spacing:-11.808000pt;}
.wsa{word-spacing:-11.680000pt;}
.wsd{word-spacing:-11.520000pt;}
.ws17{word-spacing:-11.264000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.000000pt;}
.wse{word-spacing:0.000000pt;}
._9{margin-left:-5.762560pt;}
._a{margin-left:-3.063680pt;}
._1{margin-left:-2.171520pt;}
._0{margin-left:-1.056000pt;}
._2{width:1.354880pt;}
._6{width:2.693333pt;}
._7{width:3.806720pt;}
._8{width:5.309227pt;}
._4{width:6.432000pt;}
._5{width:7.434667pt;}
._c{width:8.442453pt;}
._13{width:9.448320pt;}
._10{width:10.560000pt;}
._11{width:754.586453pt;}
._d{width:823.658453pt;}
._b{width:925.706667pt;}
._12{width:958.869333pt;}
._15{width:983.663573pt;}
._e{width:1034.917333pt;}
._14{width:1092.213333pt;}
._f{width:1097.194453pt;}
._3{width:1399.520000pt;}
.fs8{font-size:10.880000pt;}
.fs9{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsb{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yb9{bottom:2.560000pt;}
.ybf{bottom:2.880000pt;}
.ybb{bottom:3.040000pt;}
.yc0{bottom:16.640000pt;}
.yc8{bottom:16.672000pt;}
.ybd{bottom:16.800000pt;}
.ycd{bottom:30.400000pt;}
.ybc{bottom:30.560000pt;}
.yc7{bottom:30.586667pt;}
.yc6{bottom:44.346667pt;}
.y2{bottom:51.520000pt;}
.y1{bottom:68.320000pt;}
.y93{bottom:91.520000pt;}
.y60{bottom:95.200000pt;}
.y39{bottom:97.306667pt;}
.y92{bottom:105.760000pt;}
.y5f{bottom:106.240000pt;}
.yc5{bottom:109.120000pt;}
.y38{bottom:111.226667pt;}
.y91{bottom:119.520000pt;}
.y37{bottom:125.013333pt;}
.y90{bottom:133.312000pt;}
.y36{bottom:138.933333pt;}
.y8f{bottom:147.226667pt;}
.y35{bottom:152.373333pt;}
.y8e{bottom:160.826667pt;}
.yc4{bottom:164.986667pt;}
.y34{bottom:166.293333pt;}
.y8d{bottom:174.586667pt;}
.yc3{bottom:179.386667pt;}
.y33{bottom:180.533333pt;}
.y8c{bottom:188.506667pt;}
.y32{bottom:194.293333pt;}
.y8b{bottom:202.746667pt;}
.yc2{bottom:207.706667pt;}
.y31{bottom:208.053333pt;}
.y8a{bottom:213.626667pt;}
.y30{bottom:221.813333pt;}
.y2f{bottom:235.573333pt;}
.yfb{bottom:245.306667pt;}
.y2e{bottom:249.493333pt;}
.yc1{bottom:249.786667pt;}
.yfa{bottom:259.066667pt;}
.y2d{bottom:263.093333pt;}
.yf9{bottom:272.826667pt;}
.y2c{bottom:276.853333pt;}
.ybe{bottom:278.106667pt;}
.yf8{bottom:286.746667pt;}
.y2b{bottom:290.773333pt;}
.yf7{bottom:300.506667pt;}
.yba{bottom:306.266667pt;}
.yf6{bottom:314.266667pt;}
.y2a{bottom:318.773333pt;}
.yf5{bottom:328.026667pt;}
.y29{bottom:332.693333pt;}
.yf4{bottom:341.946667pt;}
.y28{bottom:346.493333pt;}
.yb8{bottom:348.386667pt;}
.yf3{bottom:355.746667pt;}
.y27{bottom:360.253333pt;}
.yb7{bottom:365.826667pt;}
.yf2{bottom:369.506667pt;}
.y26{bottom:374.173333pt;}
.yb6{bottom:379.426667pt;}
.y25{bottom:387.933333pt;}
.yb5{bottom:393.506667pt;}
.yf1{bottom:397.186667pt;}
.y24{bottom:401.693333pt;}
.yb4{bottom:407.266667pt;}
.y23{bottom:415.613333pt;}
.y89{bottom:416.386667pt;}
.yb3{bottom:421.186667pt;}
.yf0{bottom:424.866667pt;}
.y22{bottom:429.373333pt;}
.y88{bottom:430.466667pt;}
.yb2{bottom:434.786667pt;}
.yef{bottom:438.786667pt;}
.y21{bottom:443.133333pt;}
.y87{bottom:445.186667pt;}
.yb1{bottom:448.546667pt;}
.yee{bottom:452.546667pt;}
.y20{bottom:456.733333pt;}
.y86{bottom:459.746667pt;}
.yb0{bottom:462.466667pt;}
.yed{bottom:466.306667pt;}
.y85{bottom:474.466667pt;}
.yaf{bottom:476.546667pt;}
.yec{bottom:480.066667pt;}
.y1f{bottom:484.413333pt;}
.y84{bottom:489.186667pt;}
.yae{bottom:490.466667pt;}
.yeb{bottom:493.986667pt;}
.y1e{bottom:502.333333pt;}
.y83{bottom:503.426667pt;}
.yad{bottom:504.226667pt;}
.yea{bottom:507.586667pt;}
.y82{bottom:517.346667pt;}
.yac{bottom:517.826667pt;}
.ye9{bottom:521.346667pt;}
.y1d{bottom:528.093333pt;}
.y81{bottom:531.586667pt;}
.yab{bottom:531.746667pt;}
.ye8{bottom:535.266667pt;}
.y1c{bottom:544.253333pt;}
.y80{bottom:545.346667pt;}
.yaa{bottom:545.506667pt;}
.ye7{bottom:549.346667pt;}
.y5e{bottom:557.186667pt;}
.y1b{bottom:558.173333pt;}
.ya9{bottom:559.586667pt;}
.y7f{bottom:560.066667pt;}
.ye6{bottom:563.106667pt;}
.y5d{bottom:570.813333pt;}
.y1a{bottom:571.960000pt;}
.ya8{bottom:573.533333pt;}
.y7e{bottom:574.813333pt;}
.ye5{bottom:576.893333pt;}
.y5c{bottom:584.733333pt;}
.y19{bottom:585.720000pt;}
.ya7{bottom:587.293333pt;}
.y7d{bottom:589.533333pt;}
.ye4{bottom:591.773333pt;}
.y5b{bottom:598.493333pt;}
.y18{bottom:599.640000pt;}
.y7c{bottom:604.253333pt;}
.ye3{bottom:605.533333pt;}
.y5a{bottom:612.253333pt;}
.ya6{bottom:614.813333pt;}
.y7b{bottom:618.973333pt;}
.ye2{bottom:619.293333pt;}
.y17{bottom:619.320000pt;}
.y59{bottom:626.013333pt;}
.ya5{bottom:628.893333pt;}
.y7a{bottom:633.533333pt;}
.ye1{bottom:634.013333pt;}
.y58{bottom:640.733333pt;}
.ya4{bottom:642.813333pt;}
.y16{bottom:647.160000pt;}
.y79{bottom:647.293333pt;}
.ye0{bottom:648.733333pt;}
.ya3{bottom:656.573333pt;}
.y57{bottom:656.733333pt;}
.y15{bottom:660.920000pt;}
.y78{bottom:661.213333pt;}
.ydf{bottom:663.453333pt;}
.ya2{bottom:670.333333pt;}
.y56{bottom:670.813333pt;}
.y14{bottom:674.680000pt;}
.y77{bottom:675.293333pt;}
.yde{bottom:678.173333pt;}
.y55{bottom:684.413333pt;}
.y76{bottom:689.053333pt;}
.ydd{bottom:692.893333pt;}
.ya1{bottom:697.853333pt;}
.y54{bottom:698.333333pt;}
.y75{bottom:702.973333pt;}
.y13{bottom:705.560000pt;}
.ydc{bottom:707.613333pt;}
.ya0{bottom:711.933333pt;}
.y53{bottom:712.093333pt;}
.y74{bottom:716.733333pt;}
.ydb{bottom:721.373333pt;}
.y12{bottom:723.320000pt;}
.y52{bottom:725.853333pt;}
.y73{bottom:730.493333pt;}
.yda{bottom:736.253333pt;}
.y51{bottom:739.613333pt;}
.y72{bottom:744.253333pt;}
.yd9{bottom:750.013333pt;}
.y9f{bottom:753.373333pt;}
.y50{bottom:753.533333pt;}
.y11{bottom:756.120000pt;}
.y71{bottom:758.173333pt;}
.yd8{bottom:763.773333pt;}
.y10{bottom:763.800000pt;}
.y9e{bottom:767.133333pt;}
.y4f{bottom:767.453333pt;}
.y70{bottom:771.933333pt;}
.yd7{bottom:777.533333pt;}
.y4e{bottom:781.053333pt;}
.y6f{bottom:785.853333pt;}
.yf{bottom:786.360000pt;}
.yd6{bottom:792.413333pt;}
.y9d{bottom:794.853333pt;}
.y4d{bottom:795.333333pt;}
.yd5{bottom:806.053333pt;}
.y9c{bottom:808.453333pt;}
.y4c{bottom:808.933333pt;}
.y6e{bottom:813.253333pt;}
.yd4{bottom:820.133333pt;}
.ye{bottom:821.280000pt;}
.y9b{bottom:822.373333pt;}
.y4b{bottom:822.693333pt;}
.y6d{bottom:827.173333pt;}
.yd3{bottom:833.893333pt;}
.y9a{bottom:836.133333pt;}
.y4a{bottom:836.453333pt;}
.y6c{bottom:840.933333pt;}
.yd2{bottom:847.813333pt;}
.y49{bottom:850.373333pt;}
.yd{bottom:858.880000pt;}
.yd1{bottom:861.573333pt;}
.y48{bottom:864.133333pt;}
.y6b{bottom:868.933333pt;}
.yd0{bottom:875.493333pt;}
.y47{bottom:877.893333pt;}
.y6a{bottom:883.653333pt;}
.ycf{bottom:889.093333pt;}
.yc{bottom:889.440000pt;}
.y46{bottom:891.653333pt;}
.y69{bottom:898.373333pt;}
.yce{bottom:902.853333pt;}
.y99{bottom:905.413333pt;}
.y45{bottom:905.573333pt;}
.y68{bottom:913.093333pt;}
.ycc{bottom:914.853333pt;}
.y9{bottom:919.200000pt;}
.y44{bottom:919.333333pt;}
.yb{bottom:923.840000pt;}
.y67{bottom:927.813333pt;}
.y43{bottom:933.093333pt;}
.y8{bottom:939.840000pt;}
.y66{bottom:942.533333pt;}
.y98{bottom:946.693333pt;}
.y42{bottom:946.853333pt;}
.ya{bottom:952.320000pt;}
.ycb{bottom:956.773333pt;}
.y65{bottom:957.253333pt;}
.y41{bottom:960.773333pt;}
.y7{bottom:965.920000pt;}
.y64{bottom:971.973333pt;}
.y40{bottom:974.373333pt;}
.y97{bottom:974.693333pt;}
.y6{bottom:982.880000pt;}
.yca{bottom:985.093333pt;}
.y63{bottom:986.693333pt;}
.y3f{bottom:988.293333pt;}
.y96{bottom:988.613333pt;}
.y5{bottom:998.240000pt;}
.yc9{bottom:999.493333pt;}
.y62{bottom:1001.413333pt;}
.y3e{bottom:1002.213333pt;}
.y95{bottom:1002.373333pt;}
.y4{bottom:1013.600000pt;}
.y94{bottom:1015.973333pt;}
.y3d{bottom:1016.293333pt;}
.y3{bottom:1029.653333pt;}
.y61{bottom:1029.920000pt;}
.y3c{bottom:1030.080000pt;}
.y3b{bottom:1044.640000pt;}
.y3a{bottom:1061.120000pt;}
.ha{height:10.965000pt;}
.h13{height:13.760000pt;}
.h15{height:27.520000pt;}
.h17{height:27.680000pt;}
.hb{height:31.390625pt;}
.hf{height:33.918750pt;}
.h19{height:41.280000pt;}
.h16{height:41.440000pt;}
.h14{height:41.472000pt;}
.h10{height:42.084375pt;}
.h6{height:43.215000pt;}
.hc{height:47.085938pt;}
.h11{height:47.109375pt;}
.hd{height:48.375000pt;}
.h12{height:49.336436pt;}
.h7{height:49.597187pt;}
.h8{height:52.108438pt;}
.h3{height:53.535000pt;}
.h18{height:55.232000pt;}
.he{height:55.247500pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.h2{height:64.500000pt;}
.h5{height:72.885000pt;}
.h9{height:75.465000pt;}
.h0{height:1122.666667pt;}
.w3{width:122.592000pt;}
.w4{width:220.546667pt;}
.w2{width:263.706667pt;}
.w1{width:794.666655pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1f{left:8.320000pt;}
.x23{left:12.640000pt;}
.x20{left:14.080000pt;}
.x29{left:16.960000pt;}
.x28{left:22.560000pt;}
.x27{left:23.840000pt;}
.x2{left:26.640000pt;}
.x1c{left:30.266667pt;}
.x2d{left:32.800000pt;}
.x2e{left:34.880000pt;}
.x26{left:36.826667pt;}
.x2c{left:39.706667pt;}
.x22{left:41.146667pt;}
.x2a{left:45.280000pt;}
.x8{left:47.146667pt;}
.x21{left:49.280000pt;}
.x31{left:51.679988pt;}
.x2b{left:56.634667pt;}
.x15{left:60.959988pt;}
.xd{left:61.933333pt;}
.x24{left:64.200000pt;}
.x9{left:65.226667pt;}
.x25{left:69.434667pt;}
.x1a{left:70.554667pt;}
.x13{left:75.711988pt;}
.x1e{left:80.520000pt;}
.x2f{left:82.280000pt;}
.x10{left:84.991988pt;}
.x19{left:88.512000pt;}
.x18{left:186.106655pt;}
.xb{left:215.200000pt;}
.x5{left:216.933333pt;}
.x3{left:224.106667pt;}
.xa{left:228.426667pt;}
.x12{left:256.866655pt;}
.x4{left:258.320000pt;}
.x17{left:315.106655pt;}
.x30{left:351.586655pt;}
.x1b{left:352.546667pt;}
.xe{left:355.602667pt;}
.x1{left:375.733333pt;}
.xf{left:381.213321pt;}
.xc{left:388.506667pt;}
.x14{left:392.253321pt;}
.x6{left:425.640000pt;}
.x7{left:450.080000pt;}
.x1d{left:475.453333pt;}
.x11{left:543.333321pt;}
.x16{left:551.493321pt;}
}




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