
    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_309d2788a0f307c0e32b56fd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_66229d5dd2d9888b3b6a1c7f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_4d7a39bd6a0d17ba1df3cbc5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_bdc879659928cdffd41c8219.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.330566;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;}
.ls9{letter-spacing:-0.014400px;}
.ls8{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.014400px;}
.ls6{letter-spacing:0.256680px;}
.lsf{letter-spacing:0.318816px;}
.ls3{letter-spacing:0.322560px;}
.lsc{letter-spacing:0.478224px;}
.ls0{letter-spacing:0.525456px;}
.ls1{letter-spacing:0.542760px;}
.ls2{letter-spacing:0.543168px;}
.ls7{letter-spacing:0.566784px;}
.lsb{letter-spacing:0.637632px;}
.ls5{letter-spacing:0.667440px;}
.ls4{letter-spacing:0.680400px;}
.lse{letter-spacing:0.702576px;}
.lsd{letter-spacing:0.725760px;}
.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;}
}
.ws2{word-spacing:-20.030400px;}
.ws0{word-spacing:-20.001600px;}
.ws4{word-spacing:-18.740160px;}
.ws5{word-spacing:-18.694800px;}
.ws1{word-spacing:-16.956288px;}
.ws3{word-spacing:-16.891344px;}
.ws6{word-spacing:-16.731936px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-1.180800px;}
._1{width:1.173276px;}
.fc3{color:rgb(192,80,77);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(191,0,0);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.520000px;}
.fs4{font-size:59.040000px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:64.800000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y22{bottom:13.072500px;}
.y1{bottom:18.000000px;}
.ya{bottom:23.040000px;}
.y40{bottom:28.560000px;}
.y2{bottom:28.920030px;}
.y9{bottom:40.320000px;}
.y3f{bottom:48.525000px;}
.y8{bottom:58.320000px;}
.y3e{bottom:68.490000px;}
.y7{bottom:78.840000px;}
.y20{bottom:79.680030px;}
.y3d{bottom:88.455000px;}
.y6{bottom:99.720000px;}
.y3c{bottom:108.420000px;}
.y1d{bottom:114.960015px;}
.y24{bottom:115.020000px;}
.y5{bottom:119.880000px;}
.y3b{bottom:128.385000px;}
.y3a{bottom:148.350000px;}
.y39{bottom:168.315000px;}
.y38{bottom:188.280000px;}
.y37{bottom:208.245000px;}
.y36{bottom:228.210000px;}
.y35{bottom:248.175000px;}
.y34{bottom:268.140000px;}
.y33{bottom:288.105000px;}
.y32{bottom:308.070000px;}
.y31{bottom:328.035000px;}
.y30{bottom:348.000000px;}
.y2f{bottom:367.965000px;}
.y2e{bottom:387.930000px;}
.y2d{bottom:407.895000px;}
.y2c{bottom:427.860000px;}
.y2b{bottom:447.825000px;}
.y2a{bottom:467.790000px;}
.y29{bottom:487.755000px;}
.y28{bottom:507.720000px;}
.y27{bottom:527.685000px;}
.y26{bottom:547.650150px;}
.y25{bottom:567.615150px;}
.y1f{bottom:591.479985px;}
.y1e{bottom:608.759985px;}
.y1c{bottom:722.640000px;}
.y1b{bottom:737.760000px;}
.y1a{bottom:756.840000px;}
.y19{bottom:775.920000px;}
.y23{bottom:792.180000px;}
.y18{bottom:794.640000px;}
.y17{bottom:813.720000px;}
.y16{bottom:832.800000px;}
.y15{bottom:851.520000px;}
.y21{bottom:867.780000px;}
.y14{bottom:869.520000px;}
.y13{bottom:884.280000px;}
.y12{bottom:901.560000px;}
.y11{bottom:917.760000px;}
.y10{bottom:932.880000px;}
.yf{bottom:952.320000px;}
.ye{bottom:967.440000px;}
.yd{bottom:988.320000px;}
.yc{bottom:1007.400000px;}
.yb{bottom:1021.080000px;}
.y4{bottom:1050.240000px;}
.y3{bottom:1170.120000px;}
.h9{height:34.642266px;}
.hd{height:36.360000px;}
.h3{height:42.902578px;}
.h8{height:43.040391px;}
.ha{height:47.239453px;}
.h2{height:47.988281px;}
.hc{height:53.303203px;}
.h6{height:58.503516px;}
.he{height:60.351563px;}
.h7{height:65.003906px;}
.h5{height:75.404531px;}
.h4{height:135.000000px;}
.hf{height:590.580000px;}
.hb{height:622.440000px;}
.h1{height:1227.000000px;}
.h0{height:1263.000000px;}
.w2{width:223.200000px;}
.w5{width:519.759000px;}
.w3{width:542.520000px;}
.w6{width:581.422500px;}
.w7{width:737.820000px;}
.w4{width:740.880000px;}
.w1{width:856.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x14{left:3.000000px;}
.x7{left:8.280000px;}
.x1{left:18.000000px;}
.x4{left:63.720000px;}
.x3{left:66.959835px;}
.x12{left:77.400000px;}
.x16{left:78.840000px;}
.x11{left:109.484970px;}
.xb{left:150.656250px;}
.x9{left:162.178800px;}
.x5{left:180.405000px;}
.x15{left:219.780000px;}
.xa{left:268.192500px;}
.x13{left:281.160000px;}
.xd{left:282.859800px;}
.x6{left:286.920000px;}
.x10{left:311.959050px;}
.xc{left:338.310000px;}
.xf{left:383.376000px;}
.x2{left:414.884700px;}
.xe{left:428.384700px;}
.x8{left:534.255000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.012800pt;}
.ls8{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.012800pt;}
.ls6{letter-spacing:0.228160pt;}
.lsf{letter-spacing:0.283392pt;}
.ls3{letter-spacing:0.286720pt;}
.lsc{letter-spacing:0.425088pt;}
.ls0{letter-spacing:0.467072pt;}
.ls1{letter-spacing:0.482453pt;}
.ls2{letter-spacing:0.482816pt;}
.ls7{letter-spacing:0.503808pt;}
.lsb{letter-spacing:0.566784pt;}
.ls5{letter-spacing:0.593280pt;}
.ls4{letter-spacing:0.604800pt;}
.lse{letter-spacing:0.624512pt;}
.lsd{letter-spacing:0.645120pt;}
.ws2{word-spacing:-17.804800pt;}
.ws0{word-spacing:-17.779200pt;}
.ws4{word-spacing:-16.657920pt;}
.ws5{word-spacing:-16.617600pt;}
.ws1{word-spacing:-15.072256pt;}
.ws3{word-spacing:-15.014528pt;}
.ws6{word-spacing:-14.872832pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-1.049600pt;}
._1{width:1.042912pt;}
.fs1{font-size:42.240000pt;}
.fs4{font-size:52.480000pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:57.600000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:11.620000pt;}
.y1{bottom:16.000000pt;}
.ya{bottom:20.480000pt;}
.y40{bottom:25.386667pt;}
.y2{bottom:25.706693pt;}
.y9{bottom:35.840000pt;}
.y3f{bottom:43.133333pt;}
.y8{bottom:51.840000pt;}
.y3e{bottom:60.880000pt;}
.y7{bottom:70.080000pt;}
.y20{bottom:70.826693pt;}
.y3d{bottom:78.626667pt;}
.y6{bottom:88.640000pt;}
.y3c{bottom:96.373333pt;}
.y1d{bottom:102.186680pt;}
.y24{bottom:102.240000pt;}
.y5{bottom:106.560000pt;}
.y3b{bottom:114.120000pt;}
.y3a{bottom:131.866667pt;}
.y39{bottom:149.613333pt;}
.y38{bottom:167.360000pt;}
.y37{bottom:185.106667pt;}
.y36{bottom:202.853333pt;}
.y35{bottom:220.600000pt;}
.y34{bottom:238.346667pt;}
.y33{bottom:256.093333pt;}
.y32{bottom:273.840000pt;}
.y31{bottom:291.586667pt;}
.y30{bottom:309.333333pt;}
.y2f{bottom:327.080000pt;}
.y2e{bottom:344.826667pt;}
.y2d{bottom:362.573333pt;}
.y2c{bottom:380.320000pt;}
.y2b{bottom:398.066667pt;}
.y2a{bottom:415.813333pt;}
.y29{bottom:433.560000pt;}
.y28{bottom:451.306667pt;}
.y27{bottom:469.053333pt;}
.y26{bottom:486.800133pt;}
.y25{bottom:504.546800pt;}
.y1f{bottom:525.759987pt;}
.y1e{bottom:541.119987pt;}
.y1c{bottom:642.346667pt;}
.y1b{bottom:655.786667pt;}
.y1a{bottom:672.746667pt;}
.y19{bottom:689.706667pt;}
.y23{bottom:704.160000pt;}
.y18{bottom:706.346667pt;}
.y17{bottom:723.306667pt;}
.y16{bottom:740.266667pt;}
.y15{bottom:756.906667pt;}
.y21{bottom:771.360000pt;}
.y14{bottom:772.906667pt;}
.y13{bottom:786.026667pt;}
.y12{bottom:801.386667pt;}
.y11{bottom:815.786667pt;}
.y10{bottom:829.226667pt;}
.yf{bottom:846.506667pt;}
.ye{bottom:859.946667pt;}
.yd{bottom:878.506667pt;}
.yc{bottom:895.466667pt;}
.yb{bottom:907.626667pt;}
.y4{bottom:933.546667pt;}
.y3{bottom:1040.106667pt;}
.h9{height:30.793125pt;}
.hd{height:32.320000pt;}
.h3{height:38.135625pt;}
.h8{height:38.258125pt;}
.ha{height:41.990625pt;}
.h2{height:42.656250pt;}
.hc{height:47.380625pt;}
.h6{height:52.003125pt;}
.he{height:53.645833pt;}
.h7{height:57.781250pt;}
.h5{height:67.026250pt;}
.h4{height:120.000000pt;}
.hf{height:524.960000pt;}
.hb{height:553.280000pt;}
.h1{height:1090.666667pt;}
.h0{height:1122.666667pt;}
.w2{width:198.400000pt;}
.w5{width:462.008000pt;}
.w3{width:482.240000pt;}
.w6{width:516.820000pt;}
.w7{width:655.840000pt;}
.w4{width:658.560000pt;}
.w1{width:761.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x14{left:2.666667pt;}
.x7{left:7.360000pt;}
.x1{left:16.000000pt;}
.x4{left:56.640000pt;}
.x3{left:59.519853pt;}
.x12{left:68.800000pt;}
.x16{left:70.080000pt;}
.x11{left:97.319973pt;}
.xb{left:133.916667pt;}
.x9{left:144.158933pt;}
.x5{left:160.360000pt;}
.x15{left:195.360000pt;}
.xa{left:238.393333pt;}
.x13{left:249.920000pt;}
.xd{left:251.430933pt;}
.x6{left:255.040000pt;}
.x10{left:277.296933pt;}
.xc{left:300.720000pt;}
.xf{left:340.778667pt;}
.x2{left:368.786400pt;}
.xe{left:380.786400pt;}
.x8{left:474.893333pt;}
}




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