
    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_0cf91184f717e740aabbd25c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.086426;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_9c8243a86dcb305231e162f4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.070312;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_abe37ecb812b2f809eb69333.woff')format("woff");}.ff3{font-family:ff3;line-height:0.854980;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_91515e23c8311eec3044d87a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.682617;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_6aeb5cd1c3bca40ecbcb606a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_22e38721764453a528eb3829.woff')format("woff");}.ff6{font-family:ff6;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.900145px;}
.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.336914px;}
.ws1{word-spacing:0.000000px;}
._16{margin-left:-7.415180px;}
._10{margin-left:-5.406676px;}
._f{margin-left:-3.672891px;}
._0{margin-left:-1.886992px;}
._b{width:3.545022px;}
._a{width:4.642840px;}
._9{width:8.789032px;}
._e{width:9.811433px;}
._d{width:13.424393px;}
._c{width:17.285239px;}
._6{width:21.798988px;}
._11{width:22.846900px;}
._5{width:26.919225px;}
._8{width:31.450541px;}
._7{width:35.755045px;}
._4{width:40.145619px;}
._18{width:41.158314px;}
._3{width:44.138659px;}
._2{width:45.483599px;}
._15{width:48.587027px;}
._1{width:49.798827px;}
._14{width:53.762874px;}
._13{width:66.941942px;}
._12{width:71.786382px;}
._17{width:76.270793px;}
._19{width:148.200364px;}
._1a{width:149.229449px;}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.000002px;}
.fs0{font-size:101.999997px;}
.y0{bottom:0.000000px;}
.y29{bottom:117.887519px;}
.y54{bottom:133.108518px;}
.y53{bottom:154.927915px;}
.y28{bottom:157.706822px;}
.y52{bottom:176.747313px;}
.y27{bottom:179.526219px;}
.y51{bottom:198.566710px;}
.y26{bottom:201.345616px;}
.y50{bottom:220.386108px;}
.y25{bottom:223.165013px;}
.y4f{bottom:242.205505px;}
.y24{bottom:244.984410px;}
.y4e{bottom:264.024903px;}
.y23{bottom:266.803807px;}
.y4d{bottom:285.844300px;}
.y22{bottom:288.623204px;}
.y4c{bottom:307.663697px;}
.y21{bottom:328.442604px;}
.y4b{bottom:329.483094px;}
.y20{bottom:350.262001px;}
.y4a{bottom:351.302491px;}
.y1f{bottom:372.081398px;}
.y49{bottom:373.121888px;}
.y1e{bottom:393.900795px;}
.y48{bottom:394.941285px;}
.y1d{bottom:415.720192px;}
.y47{bottom:416.760682px;}
.y1c{bottom:437.539589px;}
.y46{bottom:438.580079px;}
.y1b{bottom:477.358975px;}
.y45{bottom:478.399477px;}
.y1a{bottom:499.178372px;}
.y44{bottom:500.218874px;}
.y19{bottom:520.997769px;}
.y43{bottom:540.038268px;}
.y18{bottom:542.817166px;}
.y42{bottom:561.857665px;}
.y17{bottom:564.636563px;}
.y41{bottom:583.677063px;}
.y16{bottom:586.455960px;}
.y40{bottom:605.496460px;}
.y15{bottom:608.275357px;}
.y5d{bottom:627.315674px;}
.y3f{bottom:627.315857px;}
.y14{bottom:630.094754px;}
.y3e{bottom:649.135254px;}
.y5c{bottom:649.135259px;}
.y13{bottom:669.914155px;}
.y3d{bottom:670.954651px;}
.y5b{bottom:688.954824px;}
.y12{bottom:691.733596px;}
.y3c{bottom:692.774048px;}
.y5a{bottom:710.774041px;}
.y11{bottom:713.552993px;}
.y3b{bottom:714.593445px;}
.y59{bottom:732.593438px;}
.y10{bottom:735.372390px;}
.y3a{bottom:736.412842px;}
.y58{bottom:754.412835px;}
.yf{bottom:757.191787px;}
.y39{bottom:758.232239px;}
.y57{bottom:776.232232px;}
.ye{bottom:779.011184px;}
.y56{bottom:798.051629px;}
.y38{bottom:798.051637px;}
.yd{bottom:818.830575px;}
.y37{bottom:819.871034px;}
.y55{bottom:837.871030px;}
.yc{bottom:840.649972px;}
.y36{bottom:859.690428px;}
.yb{bottom:862.469369px;}
.y35{bottom:881.509825px;}
.ya{bottom:884.288774px;}
.y34{bottom:903.329223px;}
.y9{bottom:907.524143px;}
.y33{bottom:925.148620px;}
.y8{bottom:929.019248px;}
.y32{bottom:946.968018px;}
.y7{bottom:950.514353px;}
.y31{bottom:968.787414px;}
.y6{bottom:972.270539px;}
.y30{bottom:990.606812px;}
.y5{bottom:995.766914px;}
.y2f{bottom:1012.426208px;}
.y4{bottom:1019.002259px;}
.y2e{bottom:1034.245606px;}
.y3{bottom:1039.081421px;}
.y2d{bottom:1056.065002px;}
.y2{bottom:1070.360415px;}
.y2c{bottom:1077.884400px;}
.y2b{bottom:1099.703796px;}
.y1{bottom:1104.081301px;}
.y2a{bottom:1139.523194px;}
.h3{height:43.989259px;}
.h2{height:56.750978px;}
.h4{height:57.814454px;}
.h1{height:89.349607px;}
.h0{height:1263.000000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x2{left:135.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.800129pt;}
.ws0{word-spacing:-16.299479pt;}
.ws1{word-spacing:0.000000pt;}
._16{margin-left:-6.591271pt;}
._10{margin-left:-4.805934pt;}
._f{margin-left:-3.264792pt;}
._0{margin-left:-1.677327pt;}
._b{width:3.151131pt;}
._a{width:4.126969pt;}
._9{width:7.812473pt;}
._e{width:8.721274pt;}
._d{width:11.932794pt;}
._c{width:15.364657pt;}
._6{width:19.376878pt;}
._11{width:20.308355pt;}
._5{width:23.928200pt;}
._8{width:27.956037pt;}
._7{width:31.782262pt;}
._4{width:35.684994pt;}
._18{width:36.585168pt;}
._3{width:39.234363pt;}
._2{width:40.429866pt;}
._15{width:43.188469pt;}
._1{width:44.265624pt;}
._14{width:47.789221pt;}
._13{width:59.503949pt;}
._12{width:63.810117pt;}
._17{width:67.796260pt;}
._19{width:131.733657pt;}
._1a{width:132.648399pt;}
.fs1{font-size:58.666668pt;}
.fs0{font-size:90.666664pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:104.788905pt;}
.y54{bottom:118.318683pt;}
.y53{bottom:137.713703pt;}
.y28{bottom:140.183842pt;}
.y52{bottom:157.108723pt;}
.y27{bottom:159.578862pt;}
.y51{bottom:176.503743pt;}
.y26{bottom:178.973881pt;}
.y50{bottom:195.898763pt;}
.y25{bottom:198.368901pt;}
.y4f{bottom:215.293783pt;}
.y24{bottom:217.763920pt;}
.y4e{bottom:234.688803pt;}
.y23{bottom:237.158940pt;}
.y4d{bottom:254.083823pt;}
.y22{bottom:256.553959pt;}
.y4c{bottom:273.478842pt;}
.y21{bottom:291.948982pt;}
.y4b{bottom:292.873862pt;}
.y20{bottom:311.344001pt;}
.y4a{bottom:312.268881pt;}
.y1f{bottom:330.739021pt;}
.y49{bottom:331.663901pt;}
.y1e{bottom:350.134040pt;}
.y48{bottom:351.058920pt;}
.y1d{bottom:369.529060pt;}
.y47{bottom:370.453940pt;}
.y1c{bottom:388.924079pt;}
.y46{bottom:389.848959pt;}
.y1b{bottom:424.319089pt;}
.y45{bottom:425.243980pt;}
.y1a{bottom:443.714108pt;}
.y44{bottom:444.638999pt;}
.y19{bottom:463.109128pt;}
.y43{bottom:480.034016pt;}
.y18{bottom:482.504147pt;}
.y42{bottom:499.429036pt;}
.y17{bottom:501.899167pt;}
.y41{bottom:518.824056pt;}
.y16{bottom:521.294186pt;}
.y40{bottom:538.219076pt;}
.y15{bottom:540.689206pt;}
.y5d{bottom:557.613932pt;}
.y3f{bottom:557.614095pt;}
.y14{bottom:560.084225pt;}
.y3e{bottom:577.009115pt;}
.y5c{bottom:577.009119pt;}
.y13{bottom:595.479249pt;}
.y3d{bottom:596.404134pt;}
.y5b{bottom:612.404288pt;}
.y12{bottom:614.874307pt;}
.y3c{bottom:615.799154pt;}
.y5a{bottom:631.799147pt;}
.y11{bottom:634.269327pt;}
.y3b{bottom:635.194173pt;}
.y59{bottom:651.194167pt;}
.y10{bottom:653.664346pt;}
.y3a{bottom:654.589193pt;}
.y58{bottom:670.589186pt;}
.yf{bottom:673.059366pt;}
.y39{bottom:673.984212pt;}
.y57{bottom:689.984206pt;}
.ye{bottom:692.454385pt;}
.y56{bottom:709.379225pt;}
.y38{bottom:709.379233pt;}
.yd{bottom:727.849400pt;}
.y37{bottom:728.774252pt;}
.y55{bottom:744.774249pt;}
.yc{bottom:747.244420pt;}
.y36{bottom:764.169269pt;}
.yb{bottom:766.639439pt;}
.y35{bottom:783.564289pt;}
.ya{bottom:786.034465pt;}
.y34{bottom:802.959309pt;}
.y9{bottom:806.688127pt;}
.y33{bottom:822.354329pt;}
.y8{bottom:825.794887pt;}
.y32{bottom:841.749349pt;}
.y7{bottom:844.901647pt;}
.y31{bottom:861.144368pt;}
.y6{bottom:864.240479pt;}
.y30{bottom:880.539388pt;}
.y5{bottom:885.126145pt;}
.y2f{bottom:899.934407pt;}
.y4{bottom:905.779786pt;}
.y2e{bottom:919.329427pt;}
.y3{bottom:923.627929pt;}
.y2d{bottom:938.724446pt;}
.y2{bottom:951.431480pt;}
.y2c{bottom:958.119466pt;}
.y2b{bottom:977.514485pt;}
.y1{bottom:981.405601pt;}
.y2a{bottom:1012.909505pt;}
.h3{height:39.101563pt;}
.h2{height:50.445314pt;}
.h4{height:51.390626pt;}
.h1{height:79.421873pt;}
.h0{height:1122.666667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x2{left:120.000000pt;}
}




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