
    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_72900979a02c1a724436bc8e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_56258fc3f6f10600d6f165fc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_5180272a191ba2926bdd22b8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_24da221bc9f366496d3ae95f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_1f039661180bc31085041b3a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_6c6154fa42150bd222af8ed8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.944336;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_882c304b016370f757ee1cc2.woff')format("woff");}.ff9{font-family:ff9;line-height:0.923340;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_b8d80f0e1074a6e950dfe83c.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f0bc14a91e636504ec50db1c.woff')format("woff");}.ffb{font-family:ffb;line-height:1.112305;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_224985285d9c3ffa4a1e5135.woff')format("woff");}.ffc{font-family:ffc;line-height:1.112305;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_07dd8ae1c341bebe781f1028.woff')format("woff");}.ffd{font-family:ffd;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.fff{font-family:fff;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-13.620000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls9{letter-spacing:-2.724000px;}
.lsc{letter-spacing:-1.482000px;}
.ls12{letter-spacing:-1.026000px;}
.lsa{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.780000px;}
.ls8{letter-spacing:-0.378000px;}
.ls7{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.090000px;}
.lsb{letter-spacing:0.690000px;}
.ls1{letter-spacing:1.656000px;}
.lsd{letter-spacing:1.740000px;}
.ls3{letter-spacing:1.966500px;}
.ls2{letter-spacing:2.034000px;}
.ls15{letter-spacing:2.164500px;}
.ls4{letter-spacing:2.250000px;}
.ls5{letter-spacing:2.322000px;}
.ls13{letter-spacing:2.370000px;}
.ls11{letter-spacing:3.375000px;}
.ls6{letter-spacing:4.779000px;}
.ls0{letter-spacing:10.296000px;}
.ls16{letter-spacing:15.387000px;}
.ls14{letter-spacing:46.887000px;}
.ls10{letter-spacing:64.887000px;}
.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;}
}
.ws7{word-spacing:-16.875000px;}
.wsb{word-spacing:-16.789500px;}
.ws8{word-spacing:-16.365000px;}
.ws3{word-spacing:-16.146000px;}
.ws2{word-spacing:-15.354000px;}
.ws6{word-spacing:-14.625000px;}
.wsa{word-spacing:-13.599000px;}
.ws5{word-spacing:-13.221000px;}
.ws1{word-spacing:-12.531000px;}
.ws0{word-spacing:-11.826000px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._f{margin-left:-7.383000px;}
._10{margin-left:-5.796000px;}
._13{margin-left:-4.788000px;}
._3{margin-left:-2.820000px;}
._1{margin-left:-1.638000px;}
._0{width:1.053000px;}
._2{width:2.925000px;}
._4{width:4.458000px;}
._9{width:6.435000px;}
._11{width:8.191500px;}
._6{width:9.724500px;}
._5{width:11.445000px;}
._a{width:13.011000px;}
._b{width:16.534500px;}
._12{width:18.667500px;}
._e{width:20.779500px;}
._8{width:22.066500px;}
._7{width:25.440000px;}
._c{width:26.767500px;}
._d{width:30.336000px;}
._16{width:33.922500px;}
._14{width:35.509500px;}
._15{width:38.485500px;}
._17{width:39.519000px;}
.fc5{color:transparent;}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(50,62,79);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(31,56,100);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:58.500000px;}
.fs2{font-size:67.500000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.375000px;}
.ya0{bottom:3.405000px;}
.y18{bottom:4.500000px;}
.y94{bottom:4.515000px;}
.y90{bottom:4.545000px;}
.ye{bottom:11.250000px;}
.y1a{bottom:13.500000px;}
.yc{bottom:13.530000px;}
.y4{bottom:19.162500px;}
.y43{bottom:20.250000px;}
.y2{bottom:20.287500px;}
.y45{bottom:22.500000px;}
.y44{bottom:25.875000px;}
.y17{bottom:27.000000px;}
.yb{bottom:30.405000px;}
.y5{bottom:38.287500px;}
.y42{bottom:38.295000px;}
.y16{bottom:42.780000px;}
.ya{bottom:46.155000px;}
.y41{bottom:55.170000px;}
.y15{bottom:59.655000px;}
.y1{bottom:59.662500px;}
.y14{bottom:69.780000px;}
.y40{bottom:72.045000px;}
.y9{bottom:73.185000px;}
.y13{bottom:87.825000px;}
.y3f{bottom:90.090000px;}
.y8{bottom:93.480000px;}
.y12{bottom:106.950000px;}
.y3e{bottom:106.965000px;}
.y7{bottom:110.355000px;}
.y52{bottom:115.950000px;}
.ybf{bottom:123.862500px;}
.y3d{bottom:123.870000px;}
.y8e{bottom:128.362500px;}
.y11{bottom:132.855000px;}
.y51{bottom:132.862500px;}
.ybe{bottom:140.737500px;}
.y3c{bottom:141.870000px;}
.y8d{bottom:145.237500px;}
.y50{bottom:150.870000px;}
.y10{bottom:157.605000px;}
.y3b{bottom:158.745000px;}
.y8c{bottom:162.150000px;}
.y4f{bottom:167.775000px;}
.ybd{bottom:175.650000px;}
.y3a{bottom:175.665000px;}
.y8b{bottom:180.150000px;}
.y4e{bottom:184.650000px;}
.ybc{bottom:192.525000px;}
.y39{bottom:193.665000px;}
.y8a{bottom:197.025000px;}
.y4d{bottom:202.695000px;}
.y38{bottom:210.570000px;}
.y89{bottom:213.945000px;}
.y29{bottom:216.195000px;}
.y4c{bottom:219.570000px;}
.y37{bottom:227.445000px;}
.y28{bottom:231.945000px;}
.y4b{bottom:236.445000px;}
.ybb{bottom:244.350000px;}
.y36{bottom:245.490000px;}
.y88{bottom:248.850000px;}
.y27{bottom:249.990000px;}
.y4a{bottom:254.475000px;}
.yba{bottom:262.350000px;}
.y35{bottom:262.365000px;}
.y87{bottom:265.725000px;}
.y26{bottom:266.865000px;}
.y49{bottom:271.350000px;}
.yb9{bottom:279.225000px;}
.y34{bottom:279.240000px;}
.y86{bottom:283.725000px;}
.y25{bottom:284.865000px;}
.y48{bottom:288.270000px;}
.yb8{bottom:296.130000px;}
.y33{bottom:297.270000px;}
.y85{bottom:300.630000px;}
.y24{bottom:301.770000px;}
.y47{bottom:306.255000px;}
.yb7{bottom:314.130000px;}
.y32{bottom:314.145000px;}
.y84{bottom:317.505000px;}
.y23{bottom:319.770000px;}
.y46{bottom:323.130000px;}
.y31{bottom:331.050000px;}
.y83{bottom:335.550000px;}
.y22{bottom:336.675000px;}
.yb6{bottom:347.925000px;}
.y30{bottom:349.065000px;}
.y82{bottom:352.425000px;}
.y21{bottom:354.675000px;}
.yb5{bottom:365.925000px;}
.y2f{bottom:365.940000px;}
.y81{bottom:369.345000px;}
.y20{bottom:371.595000px;}
.y1b{bottom:373.830000px;}
.y2e{bottom:382.845000px;}
.y80{bottom:387.330000px;}
.y1f{bottom:388.470000px;}
.yd7{bottom:398.580000px;}
.yb4{bottom:399.720000px;}
.y2d{bottom:400.845000px;}
.y7f{bottom:404.205000px;}
.y1e{bottom:408.720000px;}
.yd6{bottom:415.500000px;}
.y2c{bottom:417.750000px;}
.y7e{bottom:422.250000px;}
.yd5{bottom:433.500000px;}
.y2b{bottom:434.625000px;}
.y1d{bottom:436.875000px;}
.y7d{bottom:439.125000px;}
.yd4{bottom:450.375000px;}
.yb3{bottom:451.530000px;}
.y2a{bottom:452.625000px;}
.y1c{bottom:454.920000px;}
.y7c{bottom:458.280000px;}
.yd3{bottom:467.295000px;}
.yb2{bottom:469.545000px;}
.y7b{bottom:475.155000px;}
.yd2{bottom:485.280000px;}
.yb1{bottom:486.420000px;}
.y7a{bottom:493.200000px;}
.yd1{bottom:502.200000px;}
.yb0{bottom:503.325000px;}
.y79{bottom:511.200000px;}
.yd0{bottom:519.075000px;}
.yaf{bottom:521.325000px;}
.y78{bottom:528.075000px;}
.ycf{bottom:537.120000px;}
.yae{bottom:538.230000px;}
.y77{bottom:544.980000px;}
.yce{bottom:553.995000px;}
.yad{bottom:555.105000px;}
.y76{bottom:562.995000px;}
.ycd{bottom:570.870000px;}
.yac{bottom:573.120000px;}
.y75{bottom:579.900000px;}
.ycc{bottom:588.900000px;}
.yab{bottom:590.025000px;}
.y74{bottom:596.775000px;}
.ycb{bottom:605.775000px;}
.yaa{bottom:606.900000px;}
.y73{bottom:614.775000px;}
.yca{bottom:622.695000px;}
.ya9{bottom:624.945000px;}
.y72{bottom:631.695000px;}
.yc9{bottom:640.695000px;}
.ya8{bottom:641.820000px;}
.y71{bottom:649.695000px;}
.ya7{bottom:656.445000px;}
.yc8{bottom:657.570000px;}
.y70{bottom:668.850000px;}
.ya6{bottom:674.475000px;}
.y6f{bottom:685.725000px;}
.ya5{bottom:692.475000px;}
.y6e{bottom:703.755000px;}
.yc7{bottom:709.395000px;}
.ya4{bottom:710.505000px;}
.y6d{bottom:721.755000px;}
.yc6{bottom:726.270000px;}
.ya3{bottom:728.505000px;}
.y6c{bottom:740.880000px;}
.yc5{bottom:744.300000px;}
.ya2{bottom:746.550000px;}
.y6b{bottom:757.800000px;}
.yc4{bottom:761.175000px;}
.ya1{bottom:767.925000px;}
.y6a{bottom:774.675000px;}
.yc3{bottom:778.050000px;}
.y9f{bottom:782.550000px;}
.y69{bottom:793.830000px;}
.yc2{bottom:796.080000px;}
.y9e{bottom:800.580000px;}
.y68{bottom:810.705000px;}
.yc1{bottom:812.955000px;}
.y9d{bottom:821.955000px;}
.y67{bottom:828.750000px;}
.yc0{bottom:829.875000px;}
.y9c{bottom:838.875000px;}
.y19{bottom:840.000000px;}
.y66{bottom:847.875000px;}
.y9b{bottom:853.500000px;}
.y65{bottom:864.750000px;}
.yf{bottom:869.295000px;}
.y9a{bottom:871.545000px;}
.y64{bottom:881.670000px;}
.y99{bottom:892.920000px;}
.y63{bottom:899.670000px;}
.y98{bottom:910.950000px;}
.y62{bottom:916.575000px;}
.y97{bottom:924.450000px;}
.y61{bottom:933.450000px;}
.y96{bottom:942.450000px;}
.y60{bottom:951.450000px;}
.y95{bottom:960.495000px;}
.y5f{bottom:968.370000px;}
.y93{bottom:978.480000px;}
.y5e{bottom:985.245000px;}
.y92{bottom:996.525000px;}
.y5d{bottom:1003.275000px;}
.y91{bottom:1014.525000px;}
.y5c{bottom:1020.150000px;}
.y8f{bottom:1032.525000px;}
.y5b{bottom:1037.070000px;}
.yd{bottom:1041.570000px;}
.y5a{bottom:1055.070000px;}
.y6{bottom:1067.445000px;}
.y59{bottom:1071.945000px;}
.y58{bottom:1088.850000px;}
.y57{bottom:1106.850000px;}
.y56{bottom:1123.755000px;}
.y55{bottom:1140.630000px;}
.y54{bottom:1158.630000px;}
.y53{bottom:1175.550000px;}
.h21{height:16.860000px;}
.h23{height:16.875000px;}
.h22{height:16.912500px;}
.h20{height:17.985000px;}
.h1f{height:18.000000px;}
.h1e{height:18.037500px;}
.hc{height:25.875000px;}
.h15{height:29.287500px;}
.h13{height:29.833125px;}
.h14{height:29.953125px;}
.h2{height:34.912500px;}
.h12{height:35.806641px;}
.h8{height:37.125000px;}
.h1c{height:37.162500px;}
.h1a{height:39.832031px;}
.h1d{height:41.275635px;}
.h19{height:41.389893px;}
.hf{height:43.075195px;}
.h4{height:43.453125px;}
.ha{height:43.875000px;}
.h18{height:47.074219px;}
.h17{height:49.234131px;}
.hd{height:50.625000px;}
.h1b{height:52.444336px;}
.h9{height:54.000000px;}
.h11{height:58.185791px;}
.h3{height:59.899658px;}
.h10{height:64.237500px;}
.h6{height:67.137451px;}
.h5{height:69.114990px;}
.hb{height:71.613281px;}
.h7{height:121.597500px;}
.he{height:172.260000px;}
.h16{height:466.170000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:73.237500px;}
.w14{width:75.487500px;}
.wf{width:93.525000px;}
.w11{width:100.237500px;}
.wc{width:102.525000px;}
.wb{width:125.025000px;}
.w10{width:148.687500px;}
.w4{width:152.055000px;}
.we{width:157.680000px;}
.w12{width:194.895000px;}
.wa{width:199.395000px;}
.w13{width:208.380000px;}
.w7{width:216.270000px;}
.wd{width:247.800000px;}
.w16{width:255.720000px;}
.w15{width:473.100000px;}
.w8{width:515.925000px;}
.w9{width:529.425000px;}
.w5{width:580.125000px;}
.w1{width:658.950000px;}
.w6{width:732.195000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.875000px;}
.x2{left:9.000000px;}
.x12{left:12.405000px;}
.x31{left:13.530000px;}
.xf{left:15.750000px;}
.x28{left:22.545000px;}
.x22{left:23.655000px;}
.xc{left:24.787500px;}
.x2f{left:25.905000px;}
.x20{left:28.162500px;}
.x26{left:34.905000px;}
.x2c{left:40.537500px;}
.x24{left:50.655000px;}
.x2a{left:52.935000px;}
.x19{left:58.590000px;}
.x37{left:61.950000px;}
.x32{left:63.105000px;}
.x1d{left:65.340000px;}
.x33{left:66.450000px;}
.x1a{left:68.715000px;}
.x1c{left:72.090000px;}
.x1b{left:77.745000px;}
.x1{left:81.112500px;}
.x16{left:82.237500px;}
.x29{left:96.855000px;}
.x5{left:97.987500px;}
.x38{left:103.605000px;}
.x13{left:108.149987px;}
.x14{left:135.187487px;}
.x15{left:185.849987px;}
.x35{left:190.357500px;}
.x21{left:208.395000px;}
.x10{left:214.012500px;}
.xe{left:218.512500px;}
.x2b{left:223.049987px;}
.x17{left:230.917500px;}
.x1f{left:232.049987px;}
.x6{left:233.175000px;}
.x9{left:273.705000px;}
.xd{left:281.587500px;}
.x11{left:297.375000px;}
.x23{left:310.920000px;}
.x7{left:328.920000px;}
.x2d{left:333.420000px;}
.x8{left:348.075000px;}
.xb{left:364.957500px;}
.x34{left:366.074987px;}
.xa{left:437.055000px;}
.x1e{left:447.194987px;}
.x2e{left:528.300000px;}
.x36{left:556.470000px;}
.x25{left:559.845000px;}
.x18{left:612.780000px;}
.x27{left:718.650000px;}
.x30{left:736.695000px;}
.x3{left:740.070000px;}
@media print{
.v2{vertical-align:-12.106667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls9{letter-spacing:-2.421333pt;}
.lsc{letter-spacing:-1.317333pt;}
.ls12{letter-spacing:-0.912000pt;}
.lsa{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.693333pt;}
.ls8{letter-spacing:-0.336000pt;}
.ls7{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.080000pt;}
.lsb{letter-spacing:0.613333pt;}
.ls1{letter-spacing:1.472000pt;}
.lsd{letter-spacing:1.546667pt;}
.ls3{letter-spacing:1.748000pt;}
.ls2{letter-spacing:1.808000pt;}
.ls15{letter-spacing:1.924000pt;}
.ls4{letter-spacing:2.000000pt;}
.ls5{letter-spacing:2.064000pt;}
.ls13{letter-spacing:2.106667pt;}
.ls11{letter-spacing:3.000000pt;}
.ls6{letter-spacing:4.248000pt;}
.ls0{letter-spacing:9.152000pt;}
.ls16{letter-spacing:13.677333pt;}
.ls14{letter-spacing:41.677333pt;}
.ls10{letter-spacing:57.677333pt;}
.ws7{word-spacing:-15.000000pt;}
.wsb{word-spacing:-14.924000pt;}
.ws8{word-spacing:-14.546667pt;}
.ws3{word-spacing:-14.352000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws6{word-spacing:-13.000000pt;}
.wsa{word-spacing:-12.088000pt;}
.ws5{word-spacing:-11.752000pt;}
.ws1{word-spacing:-11.138667pt;}
.ws0{word-spacing:-10.512000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._f{margin-left:-6.562667pt;}
._10{margin-left:-5.152000pt;}
._13{margin-left:-4.256000pt;}
._3{margin-left:-2.506667pt;}
._1{margin-left:-1.456000pt;}
._0{width:0.936000pt;}
._2{width:2.600000pt;}
._4{width:3.962667pt;}
._9{width:5.720000pt;}
._11{width:7.281333pt;}
._6{width:8.644000pt;}
._5{width:10.173333pt;}
._a{width:11.565333pt;}
._b{width:14.697333pt;}
._12{width:16.593333pt;}
._e{width:18.470667pt;}
._8{width:19.614667pt;}
._7{width:22.613333pt;}
._c{width:23.793333pt;}
._d{width:26.965333pt;}
._16{width:30.153333pt;}
._14{width:31.564000pt;}
._15{width:34.209333pt;}
._17{width:35.128000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:52.000000pt;}
.fs2{font-size:60.000000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.000000pt;}
.ya0{bottom:3.026667pt;}
.y18{bottom:4.000000pt;}
.y94{bottom:4.013333pt;}
.y90{bottom:4.040000pt;}
.ye{bottom:10.000000pt;}
.y1a{bottom:12.000000pt;}
.yc{bottom:12.026667pt;}
.y4{bottom:17.033333pt;}
.y43{bottom:18.000000pt;}
.y2{bottom:18.033333pt;}
.y45{bottom:20.000000pt;}
.y44{bottom:23.000000pt;}
.y17{bottom:24.000000pt;}
.yb{bottom:27.026667pt;}
.y5{bottom:34.033333pt;}
.y42{bottom:34.040000pt;}
.y16{bottom:38.026667pt;}
.ya{bottom:41.026667pt;}
.y41{bottom:49.040000pt;}
.y15{bottom:53.026667pt;}
.y1{bottom:53.033333pt;}
.y14{bottom:62.026667pt;}
.y40{bottom:64.040000pt;}
.y9{bottom:65.053333pt;}
.y13{bottom:78.066667pt;}
.y3f{bottom:80.080000pt;}
.y8{bottom:83.093333pt;}
.y12{bottom:95.066667pt;}
.y3e{bottom:95.080000pt;}
.y7{bottom:98.093333pt;}
.y52{bottom:103.066667pt;}
.ybf{bottom:110.100000pt;}
.y3d{bottom:110.106667pt;}
.y8e{bottom:114.100000pt;}
.y11{bottom:118.093333pt;}
.y51{bottom:118.100000pt;}
.ybe{bottom:125.100000pt;}
.y3c{bottom:126.106667pt;}
.y8d{bottom:129.100000pt;}
.y50{bottom:134.106667pt;}
.y10{bottom:140.093333pt;}
.y3b{bottom:141.106667pt;}
.y8c{bottom:144.133333pt;}
.y4f{bottom:149.133333pt;}
.ybd{bottom:156.133333pt;}
.y3a{bottom:156.146667pt;}
.y8b{bottom:160.133333pt;}
.y4e{bottom:164.133333pt;}
.ybc{bottom:171.133333pt;}
.y39{bottom:172.146667pt;}
.y8a{bottom:175.133333pt;}
.y4d{bottom:180.173333pt;}
.y38{bottom:187.173333pt;}
.y89{bottom:190.173333pt;}
.y29{bottom:192.173333pt;}
.y4c{bottom:195.173333pt;}
.y37{bottom:202.173333pt;}
.y28{bottom:206.173333pt;}
.y4b{bottom:210.173333pt;}
.ybb{bottom:217.200000pt;}
.y36{bottom:218.213333pt;}
.y88{bottom:221.200000pt;}
.y27{bottom:222.213333pt;}
.y4a{bottom:226.200000pt;}
.yba{bottom:233.200000pt;}
.y35{bottom:233.213333pt;}
.y87{bottom:236.200000pt;}
.y26{bottom:237.213333pt;}
.y49{bottom:241.200000pt;}
.yb9{bottom:248.200000pt;}
.y34{bottom:248.213333pt;}
.y86{bottom:252.200000pt;}
.y25{bottom:253.213333pt;}
.y48{bottom:256.240000pt;}
.yb8{bottom:263.226667pt;}
.y33{bottom:264.240000pt;}
.y85{bottom:267.226667pt;}
.y24{bottom:268.240000pt;}
.y47{bottom:272.226667pt;}
.yb7{bottom:279.226667pt;}
.y32{bottom:279.240000pt;}
.y84{bottom:282.226667pt;}
.y23{bottom:284.240000pt;}
.y46{bottom:287.226667pt;}
.y31{bottom:294.266667pt;}
.y83{bottom:298.266667pt;}
.y22{bottom:299.266667pt;}
.yb6{bottom:309.266667pt;}
.y30{bottom:310.280000pt;}
.y82{bottom:313.266667pt;}
.y21{bottom:315.266667pt;}
.yb5{bottom:325.266667pt;}
.y2f{bottom:325.280000pt;}
.y81{bottom:328.306667pt;}
.y20{bottom:330.306667pt;}
.y1b{bottom:332.293333pt;}
.y2e{bottom:340.306667pt;}
.y80{bottom:344.293333pt;}
.y1f{bottom:345.306667pt;}
.yd7{bottom:354.293333pt;}
.yb4{bottom:355.306667pt;}
.y2d{bottom:356.306667pt;}
.y7f{bottom:359.293333pt;}
.y1e{bottom:363.306667pt;}
.yd6{bottom:369.333333pt;}
.y2c{bottom:371.333333pt;}
.y7e{bottom:375.333333pt;}
.yd5{bottom:385.333333pt;}
.y2b{bottom:386.333333pt;}
.y1d{bottom:388.333333pt;}
.y7d{bottom:390.333333pt;}
.yd4{bottom:400.333333pt;}
.yb3{bottom:401.360000pt;}
.y2a{bottom:402.333333pt;}
.y1c{bottom:404.373333pt;}
.y7c{bottom:407.360000pt;}
.yd3{bottom:415.373333pt;}
.yb2{bottom:417.373333pt;}
.y7b{bottom:422.360000pt;}
.yd2{bottom:431.360000pt;}
.yb1{bottom:432.373333pt;}
.y7a{bottom:438.400000pt;}
.yd1{bottom:446.400000pt;}
.yb0{bottom:447.400000pt;}
.y79{bottom:454.400000pt;}
.yd0{bottom:461.400000pt;}
.yaf{bottom:463.400000pt;}
.y78{bottom:469.400000pt;}
.ycf{bottom:477.440000pt;}
.yae{bottom:478.426667pt;}
.y77{bottom:484.426667pt;}
.yce{bottom:492.440000pt;}
.yad{bottom:493.426667pt;}
.y76{bottom:500.440000pt;}
.ycd{bottom:507.440000pt;}
.yac{bottom:509.440000pt;}
.y75{bottom:515.466667pt;}
.ycc{bottom:523.466667pt;}
.yab{bottom:524.466667pt;}
.y74{bottom:530.466667pt;}
.ycb{bottom:538.466667pt;}
.yaa{bottom:539.466667pt;}
.y73{bottom:546.466667pt;}
.yca{bottom:553.506667pt;}
.ya9{bottom:555.506667pt;}
.y72{bottom:561.506667pt;}
.yc9{bottom:569.506667pt;}
.ya8{bottom:570.506667pt;}
.y71{bottom:577.506667pt;}
.ya7{bottom:583.506667pt;}
.yc8{bottom:584.506667pt;}
.y70{bottom:594.533333pt;}
.ya6{bottom:599.533333pt;}
.y6f{bottom:609.533333pt;}
.ya5{bottom:615.533333pt;}
.y6e{bottom:625.560000pt;}
.yc7{bottom:630.573333pt;}
.ya4{bottom:631.560000pt;}
.y6d{bottom:641.560000pt;}
.yc6{bottom:645.573333pt;}
.ya3{bottom:647.560000pt;}
.y6c{bottom:658.560000pt;}
.yc5{bottom:661.600000pt;}
.ya2{bottom:663.600000pt;}
.y6b{bottom:673.600000pt;}
.yc4{bottom:676.600000pt;}
.ya1{bottom:682.600000pt;}
.y6a{bottom:688.600000pt;}
.yc3{bottom:691.600000pt;}
.y9f{bottom:695.600000pt;}
.y69{bottom:705.626667pt;}
.yc2{bottom:707.626667pt;}
.y9e{bottom:711.626667pt;}
.y68{bottom:720.626667pt;}
.yc1{bottom:722.626667pt;}
.y9d{bottom:730.626667pt;}
.y67{bottom:736.666667pt;}
.yc0{bottom:737.666667pt;}
.y9c{bottom:745.666667pt;}
.y19{bottom:746.666667pt;}
.y66{bottom:753.666667pt;}
.y9b{bottom:758.666667pt;}
.y65{bottom:768.666667pt;}
.yf{bottom:772.706667pt;}
.y9a{bottom:774.706667pt;}
.y64{bottom:783.706667pt;}
.y99{bottom:793.706667pt;}
.y63{bottom:799.706667pt;}
.y98{bottom:809.733333pt;}
.y62{bottom:814.733333pt;}
.y97{bottom:821.733333pt;}
.y61{bottom:829.733333pt;}
.y96{bottom:837.733333pt;}
.y60{bottom:845.733333pt;}
.y95{bottom:853.773333pt;}
.y5f{bottom:860.773333pt;}
.y93{bottom:869.760000pt;}
.y5e{bottom:875.773333pt;}
.y92{bottom:885.800000pt;}
.y5d{bottom:891.800000pt;}
.y91{bottom:901.800000pt;}
.y5c{bottom:906.800000pt;}
.y8f{bottom:917.800000pt;}
.y5b{bottom:921.840000pt;}
.yd{bottom:925.840000pt;}
.y5a{bottom:937.840000pt;}
.y6{bottom:948.840000pt;}
.y59{bottom:952.840000pt;}
.y58{bottom:967.866667pt;}
.y57{bottom:983.866667pt;}
.y56{bottom:998.893333pt;}
.y55{bottom:1013.893333pt;}
.y54{bottom:1029.893333pt;}
.y53{bottom:1044.933333pt;}
.h21{height:14.986667pt;}
.h23{height:15.000000pt;}
.h22{height:15.033333pt;}
.h20{height:15.986667pt;}
.h1f{height:16.000000pt;}
.h1e{height:16.033333pt;}
.hc{height:23.000000pt;}
.h15{height:26.033333pt;}
.h13{height:26.518333pt;}
.h14{height:26.625000pt;}
.h2{height:31.033333pt;}
.h12{height:31.828125pt;}
.h8{height:33.000000pt;}
.h1c{height:33.033333pt;}
.h1a{height:35.406250pt;}
.h1d{height:36.689453pt;}
.h19{height:36.791016pt;}
.hf{height:38.289062pt;}
.h4{height:38.625000pt;}
.ha{height:39.000000pt;}
.h18{height:41.843750pt;}
.h17{height:43.763672pt;}
.hd{height:45.000000pt;}
.h1b{height:46.617188pt;}
.h9{height:48.000000pt;}
.h11{height:51.720703pt;}
.h3{height:53.244141pt;}
.h10{height:57.100000pt;}
.h6{height:59.677734pt;}
.h5{height:61.435547pt;}
.hb{height:63.656250pt;}
.h7{height:108.086667pt;}
.he{height:153.120000pt;}
.h16{height:414.373333pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:65.100000pt;}
.w14{width:67.100000pt;}
.wf{width:83.133333pt;}
.w11{width:89.100000pt;}
.wc{width:91.133333pt;}
.wb{width:111.133333pt;}
.w10{width:132.166667pt;}
.w4{width:135.160000pt;}
.we{width:140.160000pt;}
.w12{width:173.240000pt;}
.wa{width:177.240000pt;}
.w13{width:185.226667pt;}
.w7{width:192.240000pt;}
.wd{width:220.266667pt;}
.w16{width:227.306667pt;}
.w15{width:420.533333pt;}
.w8{width:458.600000pt;}
.w9{width:470.600000pt;}
.w5{width:515.666667pt;}
.w1{width:585.733333pt;}
.w6{width:650.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.000000pt;}
.x2{left:8.000000pt;}
.x12{left:11.026667pt;}
.x31{left:12.026667pt;}
.xf{left:14.000000pt;}
.x28{left:20.040000pt;}
.x22{left:21.026667pt;}
.xc{left:22.033333pt;}
.x2f{left:23.026667pt;}
.x20{left:25.033333pt;}
.x26{left:31.026667pt;}
.x2c{left:36.033333pt;}
.x24{left:45.026667pt;}
.x2a{left:47.053333pt;}
.x19{left:52.080000pt;}
.x37{left:55.066667pt;}
.x32{left:56.093333pt;}
.x1d{left:58.080000pt;}
.x33{left:59.066667pt;}
.x1a{left:61.080000pt;}
.x1c{left:64.080000pt;}
.x1b{left:69.106667pt;}
.x1{left:72.100000pt;}
.x16{left:73.100000pt;}
.x29{left:86.093333pt;}
.x5{left:87.100000pt;}
.x38{left:92.093333pt;}
.x13{left:96.133322pt;}
.x14{left:120.166655pt;}
.x15{left:165.199988pt;}
.x35{left:169.206667pt;}
.x21{left:185.240000pt;}
.x10{left:190.233333pt;}
.xe{left:194.233333pt;}
.x2b{left:198.266655pt;}
.x17{left:205.260000pt;}
.x1f{left:206.266655pt;}
.x6{left:207.266667pt;}
.x9{left:243.293333pt;}
.xd{left:250.300000pt;}
.x11{left:264.333333pt;}
.x23{left:276.373333pt;}
.x7{left:292.373333pt;}
.x2d{left:296.373333pt;}
.x8{left:309.400000pt;}
.xb{left:324.406667pt;}
.x34{left:325.399988pt;}
.xa{left:388.493333pt;}
.x1e{left:397.506655pt;}
.x2e{left:469.600000pt;}
.x36{left:494.640000pt;}
.x25{left:497.640000pt;}
.x18{left:544.693333pt;}
.x27{left:638.800000pt;}
.x30{left:654.840000pt;}
.x3{left:657.840000pt;}
}




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