
    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_812a2b38472bc3f808697c9d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f01365f8f2d55a49693a04a8.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8c0b853649802b7dd0ed4ddf.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a95a9c0aaca8b70b647a373a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e5c51f78508c04c778d07052.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.691406;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_64a2aa385f273b6451f979b8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.730469;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.054720px;}
.ls1{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.150000px;}
.ls2{letter-spacing:13.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;}
}
.ws0{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:0.000000px;}
._d{margin-left:-2.376000px;}
._1{margin-left:-1.152000px;}
._0{width:1.356000px;}
._9{width:2.472000px;}
._b{width:4.440000px;}
._6{width:5.592000px;}
._2{width:7.176000px;}
._3{width:8.352000px;}
._e{width:9.948000px;}
._8{width:11.964000px;}
._7{width:13.104000px;}
._14{width:14.220000px;}
._c{width:15.336000px;}
._a{width:16.344000px;}
._13{width:19.440000px;}
._12{width:20.880000px;}
._4{width:22.800000px;}
._5{width:24.252000px;}
._15{width:26.352000px;}
._f{width:27.504000px;}
._10{width:28.512000px;}
._11{width:32.760000px;}
._16{width:846.156000px;}
.fc2{color:rgb(37,37,37);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y45{bottom:109.836000px;}
.y44{bottom:127.116000px;}
.y20{bottom:128.556000px;}
.y43{bottom:144.396000px;}
.y42{bottom:149.616000px;}
.y1f{bottom:159.510000px;}
.y41{bottom:161.670000px;}
.y40{bottom:178.950000px;}
.y1e{bottom:190.650000px;}
.y3f{bottom:196.050000px;}
.y3e{bottom:199.830000px;}
.y3d{bottom:214.410000px;}
.y1d{bottom:221.610000px;}
.y3c{bottom:245.370000px;}
.y1c{bottom:252.750000px;}
.y3b{bottom:278.130000px;}
.y1b{bottom:283.710000px;}
.y3a{bottom:309.135000px;}
.y1a{bottom:314.895000px;}
.y39{bottom:340.275000px;}
.y19{bottom:345.855000px;}
.y38{bottom:371.235000px;}
.y18{bottom:376.995000px;}
.y37{bottom:402.375000px;}
.y17{bottom:407.955000px;}
.y36{bottom:433.335000px;}
.y16{bottom:439.095000px;}
.y35{bottom:464.475000px;}
.y15{bottom:470.055000px;}
.y34{bottom:495.435000px;}
.y14{bottom:501.195000px;}
.y33{bottom:526.395000px;}
.y13{bottom:532.155000px;}
.y31{bottom:557.535000px;}
.y32{bottom:564.405000px;}
.y12{bottom:584.205000px;}
.y30{bottom:588.525000px;}
.y11{bottom:615.345000px;}
.y2f{bottom:619.665000px;}
.y10{bottom:646.305000px;}
.y2e{bottom:671.685000px;}
.yf{bottom:677.445000px;}
.y2d{bottom:702.825000px;}
.ye{bottom:708.405000px;}
.y2c{bottom:733.785000px;}
.yd{bottom:739.545000px;}
.y2b{bottom:764.925000px;}
.yc{bottom:770.505000px;}
.y2a{bottom:795.885000px;}
.yb{bottom:801.645000px;}
.y29{bottom:827.070000px;}
.ya{bottom:832.650000px;}
.y4b{bottom:845.430000px;}
.y28{bottom:858.030000px;}
.y9{bottom:863.610000px;}
.y27{bottom:888.990000px;}
.y4a{bottom:891.510000px;}
.y8{bottom:905.190000px;}
.y26{bottom:920.130000px;}
.y7{bottom:925.890000px;}
.y49{bottom:927.150000px;}
.y6{bottom:946.590000px;}
.y48{bottom:948.030000px;}
.y25{bottom:951.090000px;}
.y5{bottom:982.230000px;}
.y47{bottom:983.490000px;}
.y4{bottom:1003.110000px;}
.y24{bottom:1003.290000px;}
.y46{bottom:1019.310000px;}
.y3{bottom:1023.810000px;}
.y22{bottom:1034.250000px;}
.y23{bottom:1041.090000px;}
.y2{bottom:1044.510000px;}
.y1{bottom:1065.240000px;}
.y21{bottom:1065.420000px;}
.h7{height:27.945000px;}
.h9{height:38.158594px;}
.h6{height:45.184219px;}
.h5{height:47.344922px;}
.h8{height:58.651172px;}
.h3{height:64.546875px;}
.h2{height:70.664062px;}
.h1{height:72.562500px;}
.h4{height:1187.984910px;}
.h0{height:1188.000000px;}
.w1{width:917.977500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:127.656000px;}
.x3{left:131.436000px;}
.xe{left:132.516000px;}
.xd{left:343.695000px;}
.x1{left:414.075000px;}
.xf{left:416.595000px;}
.x4{left:435.495000px;}
.x2{left:459.075000px;}
.xb{left:497.962500px;}
.xc{left:504.105000px;}
.x6{left:517.605000px;}
.x5{left:531.825000px;}
.x7{left:661.965000px;}
.x9{left:784.387500px;}
.xa{left:790.530000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.048640pt;}
.ls1{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.133333pt;}
.ls2{letter-spacing:12.160000pt;}
.ws0{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
._d{margin-left:-2.112000pt;}
._1{margin-left:-1.024000pt;}
._0{width:1.205333pt;}
._9{width:2.197333pt;}
._b{width:3.946667pt;}
._6{width:4.970667pt;}
._2{width:6.378667pt;}
._3{width:7.424000pt;}
._e{width:8.842667pt;}
._8{width:10.634667pt;}
._7{width:11.648000pt;}
._14{width:12.640000pt;}
._c{width:13.632000pt;}
._a{width:14.528000pt;}
._13{width:17.280000pt;}
._12{width:18.560000pt;}
._4{width:20.266667pt;}
._5{width:21.557333pt;}
._15{width:23.424000pt;}
._f{width:24.448000pt;}
._10{width:25.344000pt;}
._11{width:29.120000pt;}
._16{width:752.138667pt;}
.fs3{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:97.632000pt;}
.y44{bottom:112.992000pt;}
.y20{bottom:114.272000pt;}
.y43{bottom:128.352000pt;}
.y42{bottom:132.992000pt;}
.y1f{bottom:141.786667pt;}
.y41{bottom:143.706667pt;}
.y40{bottom:159.066667pt;}
.y1e{bottom:169.466667pt;}
.y3f{bottom:174.266667pt;}
.y3e{bottom:177.626667pt;}
.y3d{bottom:190.586667pt;}
.y1d{bottom:196.986667pt;}
.y3c{bottom:218.106667pt;}
.y1c{bottom:224.666667pt;}
.y3b{bottom:247.226667pt;}
.y1b{bottom:252.186667pt;}
.y3a{bottom:274.786667pt;}
.y1a{bottom:279.906667pt;}
.y39{bottom:302.466667pt;}
.y19{bottom:307.426667pt;}
.y38{bottom:329.986667pt;}
.y18{bottom:335.106667pt;}
.y37{bottom:357.666667pt;}
.y17{bottom:362.626667pt;}
.y36{bottom:385.186667pt;}
.y16{bottom:390.306667pt;}
.y35{bottom:412.866667pt;}
.y15{bottom:417.826667pt;}
.y34{bottom:440.386667pt;}
.y14{bottom:445.506667pt;}
.y33{bottom:467.906667pt;}
.y13{bottom:473.026667pt;}
.y31{bottom:495.586667pt;}
.y32{bottom:501.693333pt;}
.y12{bottom:519.293333pt;}
.y30{bottom:523.133333pt;}
.y11{bottom:546.973333pt;}
.y2f{bottom:550.813333pt;}
.y10{bottom:574.493333pt;}
.y2e{bottom:597.053333pt;}
.yf{bottom:602.173333pt;}
.y2d{bottom:624.733333pt;}
.ye{bottom:629.693333pt;}
.y2c{bottom:652.253333pt;}
.yd{bottom:657.373333pt;}
.y2b{bottom:679.933333pt;}
.yc{bottom:684.893333pt;}
.y2a{bottom:707.453333pt;}
.yb{bottom:712.573333pt;}
.y29{bottom:735.173333pt;}
.ya{bottom:740.133333pt;}
.y4b{bottom:751.493333pt;}
.y28{bottom:762.693333pt;}
.y9{bottom:767.653333pt;}
.y27{bottom:790.213333pt;}
.y4a{bottom:792.453333pt;}
.y8{bottom:804.613333pt;}
.y26{bottom:817.893333pt;}
.y7{bottom:823.013333pt;}
.y49{bottom:824.133333pt;}
.y6{bottom:841.413333pt;}
.y48{bottom:842.693333pt;}
.y25{bottom:845.413333pt;}
.y5{bottom:873.093333pt;}
.y47{bottom:874.213333pt;}
.y4{bottom:891.653333pt;}
.y24{bottom:891.813333pt;}
.y46{bottom:906.053333pt;}
.y3{bottom:910.053333pt;}
.y22{bottom:919.333333pt;}
.y23{bottom:925.413333pt;}
.y2{bottom:928.453333pt;}
.y1{bottom:946.880000pt;}
.y21{bottom:947.040000pt;}
.h7{height:24.840000pt;}
.h9{height:33.918750pt;}
.h6{height:40.163750pt;}
.h5{height:42.084375pt;}
.h8{height:52.134375pt;}
.h3{height:57.375000pt;}
.h2{height:62.812500pt;}
.h1{height:64.500000pt;}
.h4{height:1055.986587pt;}
.h0{height:1056.000000pt;}
.w1{width:815.980000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:113.472000pt;}
.x3{left:116.832000pt;}
.xe{left:117.792000pt;}
.xd{left:305.506667pt;}
.x1{left:368.066667pt;}
.xf{left:370.306667pt;}
.x4{left:387.106667pt;}
.x2{left:408.066667pt;}
.xb{left:442.633333pt;}
.xc{left:448.093333pt;}
.x6{left:460.093333pt;}
.x5{left:472.733333pt;}
.x7{left:588.413333pt;}
.x9{left:697.233333pt;}
.xa{left:702.693333pt;}
}




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