
    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_fdc6236205807cbc8e3bbb70.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_054ad501015d1cc9d0852ede.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.894000;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_aa67a868fc91f14e51b88ef7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.690000;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_1adb283eab8965209de9df39.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927000;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;}
.m1{transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,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:-39.026400px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:202.006035px;}
.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:0.000000px;}
._2{margin-left:-4.471500px;}
._0{margin-left:-3.226200px;}
._1{margin-left:-1.877400px;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.300000px;}
.fs5{font-size:46.200000px;}
.fs1{font-size:47.100000px;}
.fs0{font-size:47.396730px;}
.fs9{font-size:48.000000px;}
.fsa{font-size:54.084000px;}
.fs7{font-size:57.900000px;}
.fs4{font-size:58.800000px;}
.fs6{font-size:59.328000px;}
.fs8{font-size:59.700000px;}
.fsb{font-size:60.144000px;}
.fs3{font-size:82.200000px;}
.y0{bottom:0.000000px;}
.y31{bottom:118.308450px;}
.y17{bottom:146.294100px;}
.y9{bottom:159.417000px;}
.y57{bottom:171.507000px;}
.ya{bottom:201.436200px;}
.y52{bottom:219.741300px;}
.y51{bottom:236.646300px;}
.y50{bottom:253.551300px;}
.y4f{bottom:270.456300px;}
.y19{bottom:281.856150px;}
.y12{bottom:303.773850px;}
.y24{bottom:305.350800px;}
.y30{bottom:329.140200px;}
.y7{bottom:339.550350px;}
.y1c{bottom:346.872150px;}
.y6{bottom:376.450650px;}
.y25{bottom:379.540050px;}
.y16{bottom:407.050350px;}
.y2f{bottom:411.069750px;}
.y49{bottom:437.643300px;}
.y5{bottom:441.869250px;}
.y48{bottom:471.969900px;}
.y18{bottom:480.647550px;}
.y47{bottom:489.133350px;}
.y46{bottom:506.296800px;}
.y45{bottom:523.460250px;}
.y26{bottom:523.941150px;}
.y1e{bottom:525.337050px;}
.y10{bottom:538.445850px;}
.y44{bottom:540.623700px;}
.y43{bottom:557.787150px;}
.y42{bottom:574.950600px;}
.y11{bottom:577.366350px;}
.y41{bottom:592.114050px;}
.y40{bottom:609.277500px;}
.y1a{bottom:617.139600px;}
.y3f{bottom:626.440950px;}
.y53{bottom:629.249250px;}
.y54{bottom:640.990200px;}
.y15{bottom:641.050650px;}
.y3e{bottom:643.604400px;}
.y55{bottom:648.383100px;}
.y3d{bottom:660.767850px;}
.y56{bottom:666.666600px;}
.y3c{bottom:677.931300px;}
.y1b{bottom:685.540200px;}
.y3b{bottom:695.094750px;}
.y2a{bottom:701.107500px;}
.y3a{bottom:712.258200px;}
.y4{bottom:719.397750px;}
.y39{bottom:729.421650px;}
.y14{bottom:731.950500px;}
.y1d{bottom:732.906750px;}
.y38{bottom:746.585100px;}
.y29{bottom:748.505850px;}
.y37{bottom:763.748550px;}
.y3{bottom:777.339750px;}
.y36{bottom:780.912000px;}
.y2{bottom:792.250200px;}
.y35{bottom:798.075450px;}
.y4d{bottom:798.521850px;}
.y34{bottom:815.238900px;}
.y4e{bottom:816.940050px;}
.y33{bottom:832.402350px;}
.y2b{bottom:835.806900px;}
.y1{bottom:848.695050px;}
.y32{bottom:849.565800px;}
.y28{bottom:852.656100px;}
.y2e{bottom:863.926050px;}
.y2d{bottom:877.426050px;}
.y2c{bottom:891.202800px;}
.y27{bottom:897.884400px;}
.y4c{bottom:914.641350px;}
.y13{bottom:959.465250px;}
.y21{bottom:986.523000px;}
.y20{bottom:1003.168650px;}
.y1f{bottom:1019.814300px;}
.y23{bottom:1054.075350px;}
.y4b{bottom:1072.258050px;}
.y22{bottom:1086.002550px;}
.y4a{bottom:1089.163050px;}
.yf{bottom:1102.339500px;}
.ye{bottom:1115.879850px;}
.yd{bottom:1129.421100px;}
.yc{bottom:1146.379650px;}
.yb{bottom:1162.850100px;}
.y8{bottom:1191.465750px;}
.h7{height:31.323600px;}
.h6{height:31.933800px;}
.h3{height:32.734500px;}
.h2{height:32.940727px;}
.hb{height:33.360000px;}
.hc{height:36.668952px;}
.h9{height:39.256200px;}
.h5{height:39.866400px;}
.h8{height:40.224384px;}
.ha{height:41.491500px;}
.hd{height:43.784832px;}
.h4{height:55.731600px;}
.h0{height:1268.999550px;}
.h1{height:1269.000000px;}
.w0{width:897.000000px;}
.x0{left:0.000000px;}
.x7{left:89.563500px;}
.x14{left:101.775900px;}
.xd{left:161.001150px;}
.x12{left:177.859350px;}
.xf{left:194.029650px;}
.xb{left:196.755150px;}
.x2{left:294.487500px;}
.x11{left:297.187500px;}
.x6{left:301.724850px;}
.xc{left:303.318450px;}
.xe{left:358.591950px;}
.x1{left:453.409050px;}
.x3{left:496.692900px;}
.x5{left:497.895750px;}
.x4{left:499.090050px;}
.x10{left:501.157050px;}
.xa{left:506.242800px;}
.x9{left:509.495550px;}
.x8{left:521.712750px;}
.x13{left:734.944650px;}
@media print{
.v1{vertical-align:-34.690133pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:179.560920pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-3.974667pt;}
._0{margin-left:-2.867733pt;}
._1{margin-left:-1.668800pt;}
.fs2{font-size:32.266667pt;}
.fs5{font-size:41.066667pt;}
.fs1{font-size:41.866667pt;}
.fs0{font-size:42.130427pt;}
.fs9{font-size:42.666667pt;}
.fsa{font-size:48.074667pt;}
.fs7{font-size:51.466667pt;}
.fs4{font-size:52.266667pt;}
.fs6{font-size:52.736000pt;}
.fs8{font-size:53.066667pt;}
.fsb{font-size:53.461333pt;}
.fs3{font-size:73.066667pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:105.163067pt;}
.y17{bottom:130.039200pt;}
.y9{bottom:141.704000pt;}
.y57{bottom:152.450667pt;}
.ya{bottom:179.054400pt;}
.y52{bottom:195.325600pt;}
.y51{bottom:210.352267pt;}
.y50{bottom:225.378933pt;}
.y4f{bottom:240.405600pt;}
.y19{bottom:250.538800pt;}
.y12{bottom:270.021200pt;}
.y24{bottom:271.422933pt;}
.y30{bottom:292.569067pt;}
.y7{bottom:301.822533pt;}
.y1c{bottom:308.330800pt;}
.y6{bottom:334.622800pt;}
.y25{bottom:337.368933pt;}
.y16{bottom:361.822533pt;}
.y2f{bottom:365.395333pt;}
.y49{bottom:389.016267pt;}
.y5{bottom:392.772667pt;}
.y48{bottom:419.528800pt;}
.y18{bottom:427.242267pt;}
.y47{bottom:434.785200pt;}
.y46{bottom:450.041600pt;}
.y45{bottom:465.298000pt;}
.y26{bottom:465.725467pt;}
.y1e{bottom:466.966267pt;}
.y10{bottom:478.618533pt;}
.y44{bottom:480.554400pt;}
.y43{bottom:495.810800pt;}
.y42{bottom:511.067200pt;}
.y11{bottom:513.214533pt;}
.y41{bottom:526.323600pt;}
.y40{bottom:541.580000pt;}
.y1a{bottom:548.568533pt;}
.y3f{bottom:556.836400pt;}
.y53{bottom:559.332667pt;}
.y54{bottom:569.769067pt;}
.y15{bottom:569.822800pt;}
.y3e{bottom:572.092800pt;}
.y55{bottom:576.340533pt;}
.y3d{bottom:587.349200pt;}
.y56{bottom:592.592533pt;}
.y3c{bottom:602.605600pt;}
.y1b{bottom:609.369067pt;}
.y3b{bottom:617.862000pt;}
.y2a{bottom:623.206667pt;}
.y3a{bottom:633.118400pt;}
.y4{bottom:639.464667pt;}
.y39{bottom:648.374800pt;}
.y14{bottom:650.622667pt;}
.y1d{bottom:651.472667pt;}
.y38{bottom:663.631200pt;}
.y29{bottom:665.338533pt;}
.y37{bottom:678.887600pt;}
.y3{bottom:690.968667pt;}
.y36{bottom:694.144000pt;}
.y2{bottom:704.222400pt;}
.y35{bottom:709.400400pt;}
.y4d{bottom:709.797200pt;}
.y34{bottom:724.656800pt;}
.y4e{bottom:726.168933pt;}
.y33{bottom:739.913200pt;}
.y2b{bottom:742.939467pt;}
.y1{bottom:754.395600pt;}
.y32{bottom:755.169600pt;}
.y28{bottom:757.916533pt;}
.y2e{bottom:767.934267pt;}
.y2d{bottom:779.934267pt;}
.y2c{bottom:792.180267pt;}
.y27{bottom:798.119467pt;}
.y4c{bottom:813.014533pt;}
.y13{bottom:852.858000pt;}
.y21{bottom:876.909333pt;}
.y20{bottom:891.705467pt;}
.y1f{bottom:906.501600pt;}
.y23{bottom:936.955867pt;}
.y4b{bottom:953.118267pt;}
.y22{bottom:965.335600pt;}
.y4a{bottom:968.144933pt;}
.yf{bottom:979.857333pt;}
.ye{bottom:991.893200pt;}
.yd{bottom:1003.929867pt;}
.yc{bottom:1019.004133pt;}
.yb{bottom:1033.644533pt;}
.y8{bottom:1059.080667pt;}
.h7{height:27.843200pt;}
.h6{height:28.385600pt;}
.h3{height:29.097333pt;}
.h2{height:29.280647pt;}
.hb{height:29.653333pt;}
.hc{height:32.594624pt;}
.h9{height:34.894400pt;}
.h5{height:35.436800pt;}
.h8{height:35.755008pt;}
.ha{height:36.881333pt;}
.hd{height:38.919851pt;}
.h4{height:49.539200pt;}
.h0{height:1127.999600pt;}
.h1{height:1128.000000pt;}
.w0{width:797.333333pt;}
.x0{left:0.000000pt;}
.x7{left:79.612000pt;}
.x14{left:90.467467pt;}
.xd{left:143.112133pt;}
.x12{left:158.097200pt;}
.xf{left:172.470800pt;}
.xb{left:174.893467pt;}
.x2{left:261.766667pt;}
.x11{left:264.166667pt;}
.x6{left:268.199867pt;}
.xc{left:269.616400pt;}
.xe{left:318.748400pt;}
.x1{left:403.030267pt;}
.x3{left:441.504800pt;}
.x5{left:442.574000pt;}
.x4{left:443.635600pt;}
.x10{left:445.472933pt;}
.xa{left:449.993600pt;}
.x9{left:452.884933pt;}
.x8{left:463.744667pt;}
.x13{left:653.284133pt;}
}




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