
    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_2c87d70034de48282d0a8740.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_ebc3b193d21b34e8eb8e9d55.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_edfaf0965209194531ed33c5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e690018a31297a895c0242f8.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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736816;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_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f3b3d26629d448ee8af2e610.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_37c4719ec701e048a06514ff.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_24f813ee196c5c59288aeee4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946777;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_e233526b3bb17985a698315e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_55a067646887843d221d19f4.woff2')format("woff");}.ffc{font-family:ffc;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);}
.v1{vertical-align:-73.440000px;}
.v2{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-1.728000px;}
.ls11{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-0.936000px;}
.lsa{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.630000px;}
.ls9{letter-spacing:-0.089400px;}
.lsb{letter-spacing:-0.072000px;}
.ls7{letter-spacing:0.000000px;}
.lse{letter-spacing:0.020160px;}
.ls5{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.466800px;}
.ls1{letter-spacing:0.493920px;}
.ls10{letter-spacing:0.507000px;}
.ls0{letter-spacing:0.720000px;}
.ls2{letter-spacing:1.080000px;}
.ls3{letter-spacing:1.092000px;}
.ls13{letter-spacing:46.546560px;}
.ls4{letter-spacing:200.880000px;}
.lsd{letter-spacing:201.024000px;}
.ls6{letter-spacing:2864.616000px;}
.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;}
}
.ws8{word-spacing:-54.720000px;}
.ws0{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.627000px;}
.wsc{word-spacing:-15.586800px;}
.ws1{word-spacing:-15.120000px;}
.ws9{word-spacing:-13.680000px;}
.ws7{word-spacing:-13.050000px;}
.ws2{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:-9.000000px;}
.ws5{word-spacing:-8.928000px;}
.wsa{word-spacing:0.000000px;}
._7{margin-left:-3.408480px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._5{width:4.550400px;}
._e{width:5.559360px;}
._9{width:6.621120px;}
._b{width:7.659360px;}
._a{width:8.850240px;}
._c{width:10.287360px;}
._10{width:11.617920px;}
._f{width:13.124160px;}
._11{width:15.376320px;}
._12{width:16.430400px;}
._13{width:17.493120px;}
._14{width:18.887040px;}
._15{width:20.188800px;}
._d{width:22.161600px;}
._19{width:23.685120px;}
._1e{width:25.254720px;}
._1f{width:27.366240px;}
._1a{width:32.253120px;}
._18{width:64.944000px;}
._16{width:82.183680px;}
._17{width:95.184000px;}
._20{width:112.423680px;}
._1b{width:125.424000px;}
._1d{width:140.544000px;}
._1c{width:155.664000px;}
._21{width:201.024000px;}
._8{width:202.320000px;}
._6{width:396.244320px;}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.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.720000px;}
.fs3{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fsa{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:2.875500px;}
.y41{bottom:3.960000px;}
.y5{bottom:4.320000px;}
.y59{bottom:5.370000px;}
.y2{bottom:10.080000px;}
.y4a{bottom:10.795500px;}
.y40{bottom:21.240000px;}
.y4{bottom:23.400000px;}
.y56{bottom:23.434500px;}
.y3f{bottom:38.520000px;}
.y55{bottom:39.274500px;}
.y49{bottom:40.354500px;}
.y3{bottom:47.880000px;}
.y48{bottom:52.234500px;}
.y3e{bottom:55.800000px;}
.y54{bottom:56.554500px;}
.y7{bottom:57.636000px;}
.y47{bottom:65.194500px;}
.y53{bottom:72.394500px;}
.y3d{bottom:72.765000px;}
.y46{bottom:78.514500px;}
.y52{bottom:85.354500px;}
.y3c{bottom:90.045000px;}
.y51{bottom:91.474500px;}
.y92{bottom:96.876000px;}
.ybf{bottom:97.596000px;}
.y45{bottom:100.114500px;}
.yc7{bottom:106.596000px;}
.y50{bottom:107.314500px;}
.y3b{bottom:107.325000px;}
.y57{bottom:113.076000px;}
.y91{bottom:114.156000px;}
.ybe{bottom:114.876000px;}
.y4f{bottom:123.154500px;}
.yc6{bottom:123.876000px;}
.y3a{bottom:124.245000px;}
.y42{bottom:130.360500px;}
.y90{bottom:131.076000px;}
.ybd{bottom:132.156000px;}
.y4e{bottom:138.634500px;}
.y10c{bottom:139.716000px;}
.yc5{bottom:141.156000px;}
.y39{bottom:141.885000px;}
.ybc{bottom:149.472000px;}
.y4d{bottom:154.144500px;}
.y10b{bottom:157.035000px;}
.y8f{bottom:157.755000px;}
.yc4{bottom:158.475000px;}
.y38{bottom:159.165000px;}
.y44{bottom:162.424500px;}
.ybb{bottom:166.395000px;}
.yd9{bottom:166.755000px;}
.y4c{bottom:169.264500px;}
.y43{bottom:173.224500px;}
.y10a{bottom:174.315000px;}
.y8e{bottom:175.035000px;}
.yc3{bottom:175.755000px;}
.y37{bottom:176.445000px;}
.yd8{bottom:184.035000px;}
.y109{bottom:191.595000px;}
.y8d{bottom:192.315000px;}
.yba{bottom:193.035000px;}
.y36{bottom:193.365000px;}
.yde{bottom:200.955000px;}
.yd7{bottom:201.315000px;}
.y108{bottom:208.515000px;}
.y8c{bottom:209.595000px;}
.yb9{bottom:210.315000px;}
.yd6{bottom:218.595000px;}
.y35{bottom:220.035000px;}
.y107{bottom:225.795000px;}
.y8b{bottom:226.515000px;}
.yb8{bottom:227.595000px;}
.yd5{bottom:235.515000px;}
.y34{bottom:237.315000px;}
.y106{bottom:243.075000px;}
.y8a{bottom:243.795000px;}
.yb7{bottom:244.515000px;}
.yd4{bottom:252.795000px;}
.y33{bottom:254.595000px;}
.y105{bottom:260.355000px;}
.y89{bottom:261.075000px;}
.yb6{bottom:261.795000px;}
.yd3{bottom:270.075000px;}
.y32{bottom:271.515000px;}
.y104{bottom:277.665000px;}
.y88{bottom:278.385000px;}
.yb5{bottom:279.105000px;}
.yd2{bottom:287.385000px;}
.y31{bottom:288.795000px;}
.y103{bottom:294.945000px;}
.y87{bottom:295.665000px;}
.yb4{bottom:296.385000px;}
.yd1{bottom:304.665000px;}
.y30{bottom:306.075000px;}
.y102{bottom:312.225000px;}
.y86{bottom:312.945000px;}
.ydd{bottom:313.305000px;}
.yb3{bottom:313.665000px;}
.yd0{bottom:321.945000px;}
.y2f{bottom:323.355000px;}
.y1b{bottom:329.475000px;}
.y101{bottom:329.505000px;}
.y85{bottom:330.225000px;}
.yb2{bottom:330.945000px;}
.yd{bottom:333.105000px;}
.ycf{bottom:339.225000px;}
.y2e{bottom:340.665000px;}
.y100{bottom:346.785000px;}
.y84{bottom:347.145000px;}
.yb1{bottom:348.225000px;}
.y1a{bottom:353.625000px;}
.yce{bottom:356.505000px;}
.y2d{bottom:357.945000px;}
.yff{bottom:364.065000px;}
.yb0{bottom:365.505000px;}
.y83{bottom:373.785000px;}
.y2c{bottom:375.225000px;}
.y19{bottom:377.745000px;}
.yfe{bottom:381.345000px;}
.yaf{bottom:382.785000px;}
.y82{bottom:391.065000px;}
.y2b{bottom:392.505000px;}
.yfd{bottom:398.625000px;}
.yae{bottom:400.065000px;}
.y18{bottom:401.865000px;}
.y81{bottom:408.390000px;}
.y2a{bottom:409.785000px;}
.yfc{bottom:415.590000px;}
.yad{bottom:417.390000px;}
.y80{bottom:425.670000px;}
.y17{bottom:425.985000px;}
.y29{bottom:427.065000px;}
.yfb{bottom:432.870000px;}
.yac{bottom:434.670000px;}
.y7f{bottom:442.590000px;}
.y28{bottom:443.985000px;}
.yfa{bottom:449.790000px;}
.y16{bottom:450.105000px;}
.yab{bottom:451.590000px;}
.y7e{bottom:459.870000px;}
.yaa{bottom:468.870000px;}
.y27{bottom:469.950000px;}
.y15{bottom:474.270000px;}
.yf9{bottom:476.430000px;}
.y7d{bottom:477.150000px;}
.y26{bottom:485.430000px;}
.ya9{bottom:486.150000px;}
.yf8{bottom:493.710000px;}
.y7c{bottom:494.430000px;}
.y14{bottom:498.750000px;}
.y25{bottom:500.910000px;}
.ya8{bottom:503.070000px;}
.yc2{bottom:503.430000px;}
.yf7{bottom:510.990000px;}
.y7b{bottom:511.710000px;}
.y24{bottom:516.390000px;}
.ya7{bottom:520.710000px;}
.y13{bottom:522.870000px;}
.yf6{bottom:528.270000px;}
.y7a{bottom:528.990000px;}
.y23{bottom:531.870000px;}
.ya6{bottom:538.020000px;}
.yf5{bottom:545.580000px;}
.y79{bottom:546.300000px;}
.y12{bottom:546.990000px;}
.y22{bottom:547.350000px;}
.ydc{bottom:554.940000px;}
.ya5{bottom:555.300000px;}
.y21{bottom:562.830000px;}
.yf4{bottom:562.860000px;}
.y78{bottom:563.580000px;}
.y11{bottom:571.110000px;}
.ya4{bottom:572.580000px;}
.y20{bottom:578.670000px;}
.yf3{bottom:580.140000px;}
.y77{bottom:580.860000px;}
.ya3{bottom:589.860000px;}
.y1f{bottom:594.150000px;}
.y10{bottom:595.230000px;}
.yf2{bottom:597.420000px;}
.y76{bottom:598.140000px;}
.ya2{bottom:607.140000px;}
.y1e{bottom:609.660000px;}
.yf1{bottom:614.340000px;}
.y75{bottom:615.420000px;}
.yf{bottom:619.380000px;}
.ya1{bottom:624.420000px;}
.y1d{bottom:625.140000px;}
.yf0{bottom:631.620000px;}
.y74{bottom:632.340000px;}
.y1c{bottom:640.260000px;}
.ya0{bottom:640.980000px;}
.yc1{bottom:641.340000px;}
.ye{bottom:643.500000px;}
.yef{bottom:648.540000px;}
.y73{bottom:649.620000px;}
.y9f{bottom:658.620000px;}
.y72{bottom:666.900000px;}
.yee{bottom:675.210000px;}
.y9e{bottom:675.930000px;}
.y71{bottom:684.210000px;}
.yed{bottom:692.490000px;}
.ydb{bottom:692.850000px;}
.y9d{bottom:693.210000px;}
.y70{bottom:701.490000px;}
.yec{bottom:709.770000px;}
.y9c{bottom:710.490000px;}
.y6f{bottom:718.770000px;}
.yeb{bottom:727.050000px;}
.y9b{bottom:727.770000px;}
.y6e{bottom:736.050000px;}
.yea{bottom:744.330000px;}
.y9a{bottom:745.050000px;}
.y6d{bottom:753.330000px;}
.ye9{bottom:761.610000px;}
.y99{bottom:762.330000px;}
.y6c{bottom:770.610000px;}
.ye8{bottom:778.890000px;}
.y98{bottom:779.610000px;}
.y6b{bottom:787.890000px;}
.ye7{bottom:796.170000px;}
.yda{bottom:796.530000px;}
.y97{bottom:796.890000px;}
.y6a{bottom:805.215000px;}
.ye6{bottom:813.495000px;}
.y96{bottom:814.215000px;}
.y69{bottom:822.495000px;}
.ye5{bottom:830.055000px;}
.y95{bottom:831.495000px;}
.y68{bottom:839.415000px;}
.y94{bottom:848.415000px;}
.y67{bottom:856.335000px;}
.ycd{bottom:856.695000px;}
.y93{bottom:865.695000px;}
.ycc{bottom:873.975000px;}
.y66{bottom:882.975000px;}
.ycb{bottom:891.255000px;}
.y65{bottom:900.255000px;}
.yca{bottom:908.535000px;}
.y64{bottom:917.535000px;}
.yc9{bottom:925.815000px;}
.y63{bottom:934.845000px;}
.yc8{bottom:942.765000px;}
.ye4{bottom:943.125000px;}
.y62{bottom:952.125000px;}
.ye3{bottom:960.405000px;}
.y61{bottom:969.405000px;}
.ye2{bottom:977.685000px;}
.y60{bottom:986.685000px;}
.yc{bottom:988.845000px;}
.yb{bottom:994.245000px;}
.ye1{bottom:994.965000px;}
.y5f{bottom:1003.965000px;}
.ya{bottom:1011.525000px;}
.ye0{bottom:1012.245000px;}
.y5e{bottom:1021.245000px;}
.ydf{bottom:1028.805000px;}
.y5d{bottom:1038.165000px;}
.y9{bottom:1046.805000px;}
.y5c{bottom:1055.085000px;}
.yc0{bottom:1055.445000px;}
.y8{bottom:1072.050000px;}
.y5b{bottom:1072.770000px;}
.y58{bottom:1075.320000px;}
.y5a{bottom:1090.050000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.ha{height:4.165313px;}
.h12{height:5.650313px;}
.h14{height:27.720000px;}
.h10{height:29.678906px;}
.hd{height:40.985156px;}
.hc{height:42.086250px;}
.he{height:53.677969px;}
.h8{height:54.808594px;}
.h11{height:55.147500px;}
.h7{height:58.050000px;}
.h6{height:59.357813px;}
.h9{height:60.952500px;}
.h16{height:62.163910px;}
.h15{height:63.565031px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h13{height:72.562500px;}
.h2{height:84.990000px;}
.h4{height:116.640000px;}
.hf{height:202.005000px;}
.hb{height:652.845000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:6.876000px;}
.x18{left:8.295000px;}
.x4{left:13.305000px;}
.x13{left:14.746500px;}
.x16{left:15.826500px;}
.x1b{left:18.346500px;}
.x15{left:21.586500px;}
.x14{left:29.506500px;}
.x6{left:39.615000px;}
.xe{left:43.906500px;}
.x1c{left:47.542500px;}
.xf{left:50.782500px;}
.xd{left:55.102500px;}
.x19{left:62.295000px;}
.x1d{left:66.265500px;}
.x1{left:78.529500px;}
.x12{left:83.905500px;}
.x7{left:86.436000px;}
.x11{left:92.905500px;}
.x2{left:95.425500px;}
.x1e{left:102.985500px;}
.x1a{left:106.945500px;}
.x21{left:113.436000px;}
.x10{left:124.585500px;}
.x20{left:140.472000px;}
.x5{left:141.540000px;}
.x3{left:182.250000px;}
.x17{left:218.970000px;}
.xa{left:333.150000px;}
.xb{left:566.850000px;}
.x9{left:766.050000px;}
.x8{left:791.970000px;}
.xc{left:807.090000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v2{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-1.536000pt;}
.ls11{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-0.832000pt;}
.lsa{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.560000pt;}
.ls9{letter-spacing:-0.079467pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.017920pt;}
.ls5{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.414933pt;}
.ls1{letter-spacing:0.439040pt;}
.ls10{letter-spacing:0.450667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.960000pt;}
.ls3{letter-spacing:0.970667pt;}
.ls13{letter-spacing:41.374720pt;}
.ls4{letter-spacing:178.560000pt;}
.lsd{letter-spacing:178.688000pt;}
.ls6{letter-spacing:2546.325333pt;}
.ws8{word-spacing:-48.640000pt;}
.ws0{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.890667pt;}
.wsc{word-spacing:-13.854933pt;}
.ws1{word-spacing:-13.440000pt;}
.ws9{word-spacing:-12.160000pt;}
.ws7{word-spacing:-11.600000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:-8.000000pt;}
.ws5{word-spacing:-7.936000pt;}
.wsa{word-spacing:0.000000pt;}
._7{margin-left:-3.029760pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._5{width:4.044800pt;}
._e{width:4.941653pt;}
._9{width:5.885440pt;}
._b{width:6.808320pt;}
._a{width:7.866880pt;}
._c{width:9.144320pt;}
._10{width:10.327040pt;}
._f{width:11.665920pt;}
._11{width:13.667840pt;}
._12{width:14.604800pt;}
._13{width:15.549440pt;}
._14{width:16.788480pt;}
._15{width:17.945600pt;}
._d{width:19.699200pt;}
._19{width:21.053440pt;}
._1e{width:22.448640pt;}
._1f{width:24.325547pt;}
._1a{width:28.669440pt;}
._18{width:57.728000pt;}
._16{width:73.052160pt;}
._17{width:84.608000pt;}
._20{width:99.932160pt;}
._1b{width:111.488000pt;}
._1d{width:124.928000pt;}
._1c{width:138.368000pt;}
._21{width:178.688000pt;}
._8{width:179.840000pt;}
._6{width:352.217173pt;}
.fs5{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.640000pt;}
.fs3{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fsa{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:2.556000pt;}
.y41{bottom:3.520000pt;}
.y5{bottom:3.840000pt;}
.y59{bottom:4.773333pt;}
.y2{bottom:8.960000pt;}
.y4a{bottom:9.596000pt;}
.y40{bottom:18.880000pt;}
.y4{bottom:20.800000pt;}
.y56{bottom:20.830667pt;}
.y3f{bottom:34.240000pt;}
.y55{bottom:34.910667pt;}
.y49{bottom:35.870667pt;}
.y3{bottom:42.560000pt;}
.y48{bottom:46.430667pt;}
.y3e{bottom:49.600000pt;}
.y54{bottom:50.270667pt;}
.y7{bottom:51.232000pt;}
.y47{bottom:57.950667pt;}
.y53{bottom:64.350667pt;}
.y3d{bottom:64.680000pt;}
.y46{bottom:69.790667pt;}
.y52{bottom:75.870667pt;}
.y3c{bottom:80.040000pt;}
.y51{bottom:81.310667pt;}
.y92{bottom:86.112000pt;}
.ybf{bottom:86.752000pt;}
.y45{bottom:88.990667pt;}
.yc7{bottom:94.752000pt;}
.y50{bottom:95.390667pt;}
.y3b{bottom:95.400000pt;}
.y57{bottom:100.512000pt;}
.y91{bottom:101.472000pt;}
.ybe{bottom:102.112000pt;}
.y4f{bottom:109.470667pt;}
.yc6{bottom:110.112000pt;}
.y3a{bottom:110.440000pt;}
.y42{bottom:115.876000pt;}
.y90{bottom:116.512000pt;}
.ybd{bottom:117.472000pt;}
.y4e{bottom:123.230667pt;}
.y10c{bottom:124.192000pt;}
.yc5{bottom:125.472000pt;}
.y39{bottom:126.120000pt;}
.ybc{bottom:132.864000pt;}
.y4d{bottom:137.017333pt;}
.y10b{bottom:139.586667pt;}
.y8f{bottom:140.226667pt;}
.yc4{bottom:140.866667pt;}
.y38{bottom:141.480000pt;}
.y44{bottom:144.377333pt;}
.ybb{bottom:147.906667pt;}
.yd9{bottom:148.226667pt;}
.y4c{bottom:150.457333pt;}
.y43{bottom:153.977333pt;}
.y10a{bottom:154.946667pt;}
.y8e{bottom:155.586667pt;}
.yc3{bottom:156.226667pt;}
.y37{bottom:156.840000pt;}
.yd8{bottom:163.586667pt;}
.y109{bottom:170.306667pt;}
.y8d{bottom:170.946667pt;}
.yba{bottom:171.586667pt;}
.y36{bottom:171.880000pt;}
.yde{bottom:178.626667pt;}
.yd7{bottom:178.946667pt;}
.y108{bottom:185.346667pt;}
.y8c{bottom:186.306667pt;}
.yb9{bottom:186.946667pt;}
.yd6{bottom:194.306667pt;}
.y35{bottom:195.586667pt;}
.y107{bottom:200.706667pt;}
.y8b{bottom:201.346667pt;}
.yb8{bottom:202.306667pt;}
.yd5{bottom:209.346667pt;}
.y34{bottom:210.946667pt;}
.y106{bottom:216.066667pt;}
.y8a{bottom:216.706667pt;}
.yb7{bottom:217.346667pt;}
.yd4{bottom:224.706667pt;}
.y33{bottom:226.306667pt;}
.y105{bottom:231.426667pt;}
.y89{bottom:232.066667pt;}
.yb6{bottom:232.706667pt;}
.yd3{bottom:240.066667pt;}
.y32{bottom:241.346667pt;}
.y104{bottom:246.813333pt;}
.y88{bottom:247.453333pt;}
.yb5{bottom:248.093333pt;}
.yd2{bottom:255.453333pt;}
.y31{bottom:256.706667pt;}
.y103{bottom:262.173333pt;}
.y87{bottom:262.813333pt;}
.yb4{bottom:263.453333pt;}
.yd1{bottom:270.813333pt;}
.y30{bottom:272.066667pt;}
.y102{bottom:277.533333pt;}
.y86{bottom:278.173333pt;}
.ydd{bottom:278.493333pt;}
.yb3{bottom:278.813333pt;}
.yd0{bottom:286.173333pt;}
.y2f{bottom:287.426667pt;}
.y1b{bottom:292.866667pt;}
.y101{bottom:292.893333pt;}
.y85{bottom:293.533333pt;}
.yb2{bottom:294.173333pt;}
.yd{bottom:296.093333pt;}
.ycf{bottom:301.533333pt;}
.y2e{bottom:302.813333pt;}
.y100{bottom:308.253333pt;}
.y84{bottom:308.573333pt;}
.yb1{bottom:309.533333pt;}
.y1a{bottom:314.333333pt;}
.yce{bottom:316.893333pt;}
.y2d{bottom:318.173333pt;}
.yff{bottom:323.613333pt;}
.yb0{bottom:324.893333pt;}
.y83{bottom:332.253333pt;}
.y2c{bottom:333.533333pt;}
.y19{bottom:335.773333pt;}
.yfe{bottom:338.973333pt;}
.yaf{bottom:340.253333pt;}
.y82{bottom:347.613333pt;}
.y2b{bottom:348.893333pt;}
.yfd{bottom:354.333333pt;}
.yae{bottom:355.613333pt;}
.y18{bottom:357.213333pt;}
.y81{bottom:363.013333pt;}
.y2a{bottom:364.253333pt;}
.yfc{bottom:369.413333pt;}
.yad{bottom:371.013333pt;}
.y80{bottom:378.373333pt;}
.y17{bottom:378.653333pt;}
.y29{bottom:379.613333pt;}
.yfb{bottom:384.773333pt;}
.yac{bottom:386.373333pt;}
.y7f{bottom:393.413333pt;}
.y28{bottom:394.653333pt;}
.yfa{bottom:399.813333pt;}
.y16{bottom:400.093333pt;}
.yab{bottom:401.413333pt;}
.y7e{bottom:408.773333pt;}
.yaa{bottom:416.773333pt;}
.y27{bottom:417.733333pt;}
.y15{bottom:421.573333pt;}
.yf9{bottom:423.493333pt;}
.y7d{bottom:424.133333pt;}
.y26{bottom:431.493333pt;}
.ya9{bottom:432.133333pt;}
.yf8{bottom:438.853333pt;}
.y7c{bottom:439.493333pt;}
.y14{bottom:443.333333pt;}
.y25{bottom:445.253333pt;}
.ya8{bottom:447.173333pt;}
.yc2{bottom:447.493333pt;}
.yf7{bottom:454.213333pt;}
.y7b{bottom:454.853333pt;}
.y24{bottom:459.013333pt;}
.ya7{bottom:462.853333pt;}
.y13{bottom:464.773333pt;}
.yf6{bottom:469.573333pt;}
.y7a{bottom:470.213333pt;}
.y23{bottom:472.773333pt;}
.ya6{bottom:478.240000pt;}
.yf5{bottom:484.960000pt;}
.y79{bottom:485.600000pt;}
.y12{bottom:486.213333pt;}
.y22{bottom:486.533333pt;}
.ydc{bottom:493.280000pt;}
.ya5{bottom:493.600000pt;}
.y21{bottom:500.293333pt;}
.yf4{bottom:500.320000pt;}
.y78{bottom:500.960000pt;}
.y11{bottom:507.653333pt;}
.ya4{bottom:508.960000pt;}
.y20{bottom:514.373333pt;}
.yf3{bottom:515.680000pt;}
.y77{bottom:516.320000pt;}
.ya3{bottom:524.320000pt;}
.y1f{bottom:528.133333pt;}
.y10{bottom:529.093333pt;}
.yf2{bottom:531.040000pt;}
.y76{bottom:531.680000pt;}
.ya2{bottom:539.680000pt;}
.y1e{bottom:541.920000pt;}
.yf1{bottom:546.080000pt;}
.y75{bottom:547.040000pt;}
.yf{bottom:550.560000pt;}
.ya1{bottom:555.040000pt;}
.y1d{bottom:555.680000pt;}
.yf0{bottom:561.440000pt;}
.y74{bottom:562.080000pt;}
.y1c{bottom:569.120000pt;}
.ya0{bottom:569.760000pt;}
.yc1{bottom:570.080000pt;}
.ye{bottom:572.000000pt;}
.yef{bottom:576.480000pt;}
.y73{bottom:577.440000pt;}
.y9f{bottom:585.440000pt;}
.y72{bottom:592.800000pt;}
.yee{bottom:600.186667pt;}
.y9e{bottom:600.826667pt;}
.y71{bottom:608.186667pt;}
.yed{bottom:615.546667pt;}
.ydb{bottom:615.866667pt;}
.y9d{bottom:616.186667pt;}
.y70{bottom:623.546667pt;}
.yec{bottom:630.906667pt;}
.y9c{bottom:631.546667pt;}
.y6f{bottom:638.906667pt;}
.yeb{bottom:646.266667pt;}
.y9b{bottom:646.906667pt;}
.y6e{bottom:654.266667pt;}
.yea{bottom:661.626667pt;}
.y9a{bottom:662.266667pt;}
.y6d{bottom:669.626667pt;}
.ye9{bottom:676.986667pt;}
.y99{bottom:677.626667pt;}
.y6c{bottom:684.986667pt;}
.ye8{bottom:692.346667pt;}
.y98{bottom:692.986667pt;}
.y6b{bottom:700.346667pt;}
.ye7{bottom:707.706667pt;}
.yda{bottom:708.026667pt;}
.y97{bottom:708.346667pt;}
.y6a{bottom:715.746667pt;}
.ye6{bottom:723.106667pt;}
.y96{bottom:723.746667pt;}
.y69{bottom:731.106667pt;}
.ye5{bottom:737.826667pt;}
.y95{bottom:739.106667pt;}
.y68{bottom:746.146667pt;}
.y94{bottom:754.146667pt;}
.y67{bottom:761.186667pt;}
.ycd{bottom:761.506667pt;}
.y93{bottom:769.506667pt;}
.ycc{bottom:776.866667pt;}
.y66{bottom:784.866667pt;}
.ycb{bottom:792.226667pt;}
.y65{bottom:800.226667pt;}
.yca{bottom:807.586667pt;}
.y64{bottom:815.586667pt;}
.yc9{bottom:822.946667pt;}
.y63{bottom:830.973333pt;}
.yc8{bottom:838.013333pt;}
.ye4{bottom:838.333333pt;}
.y62{bottom:846.333333pt;}
.ye3{bottom:853.693333pt;}
.y61{bottom:861.693333pt;}
.ye2{bottom:869.053333pt;}
.y60{bottom:877.053333pt;}
.yc{bottom:878.973333pt;}
.yb{bottom:883.773333pt;}
.ye1{bottom:884.413333pt;}
.y5f{bottom:892.413333pt;}
.ya{bottom:899.133333pt;}
.ye0{bottom:899.773333pt;}
.y5e{bottom:907.773333pt;}
.ydf{bottom:914.493333pt;}
.y5d{bottom:922.813333pt;}
.y9{bottom:930.493333pt;}
.y5c{bottom:937.853333pt;}
.yc0{bottom:938.173333pt;}
.y8{bottom:952.933333pt;}
.y5b{bottom:953.573333pt;}
.y58{bottom:955.840000pt;}
.y5a{bottom:968.933333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.ha{height:3.702500pt;}
.h12{height:5.022500pt;}
.h14{height:24.640000pt;}
.h10{height:26.381250pt;}
.hd{height:36.431250pt;}
.hc{height:37.410000pt;}
.he{height:47.713750pt;}
.h8{height:48.718750pt;}
.h11{height:49.020000pt;}
.h7{height:51.600000pt;}
.h6{height:52.762500pt;}
.h9{height:54.180000pt;}
.h16{height:55.256809pt;}
.h15{height:56.502250pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h13{height:64.500000pt;}
.h2{height:75.546667pt;}
.h4{height:103.680000pt;}
.hf{height:179.560000pt;}
.hb{height:580.306667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.112000pt;}
.x18{left:7.373333pt;}
.x4{left:11.826667pt;}
.x13{left:13.108000pt;}
.x16{left:14.068000pt;}
.x1b{left:16.308000pt;}
.x15{left:19.188000pt;}
.x14{left:26.228000pt;}
.x6{left:35.213333pt;}
.xe{left:39.028000pt;}
.x1c{left:42.260000pt;}
.xf{left:45.140000pt;}
.xd{left:48.980000pt;}
.x19{left:55.373333pt;}
.x1d{left:58.902667pt;}
.x1{left:69.804000pt;}
.x12{left:74.582667pt;}
.x7{left:76.832000pt;}
.x11{left:82.582667pt;}
.x2{left:84.822667pt;}
.x1e{left:91.542667pt;}
.x1a{left:95.062667pt;}
.x21{left:100.832000pt;}
.x10{left:110.742667pt;}
.x20{left:124.864000pt;}
.x5{left:125.813333pt;}
.x3{left:162.000000pt;}
.x17{left:194.640000pt;}
.xa{left:296.133333pt;}
.xb{left:503.866667pt;}
.x9{left:680.933333pt;}
.x8{left:703.973333pt;}
.xc{left:717.413333pt;}
}




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