
    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_75fd7db416c012009aaa0e03.woff')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_a195779c04ee0774b1327d9d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_68e960934da6e6d2d8a454c0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.932129;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_b108a7fa26ef2a7c84c1ac8b.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_c738b51f3ebc7587f9cd28ef.woff')format("woff");}.ff5{font-family:ff5;line-height:0.870117;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);}
.v1{vertical-align:-5.610000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:97.242000px;}
.ls2{letter-spacing:128.511300px;}
.ls1{letter-spacing:135.141300px;}
.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;}
}
.ws1{word-spacing:-68.630640px;}
.ws2{word-spacing:-29.916000px;}
.ws4{word-spacing:-28.080000px;}
.ws3{word-spacing:-24.939720px;}
.ws5{word-spacing:-23.272986px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-13.541076px;}
._5{margin-left:-6.999228px;}
._8{margin-left:-5.543244px;}
._1{margin-left:-3.457296px;}
._4{margin-left:-2.448918px;}
._0{margin-left:-1.296486px;}
._3{width:1.008378px;}
._6{width:2.454762px;}
._7{width:4.392576px;}
.fc6{color:rgb(0,0,0);}
.fc5{color:rgb(115,114,114);}
.fc4{color:rgb(42,96,153);}
.fc2{color:transparent;}
.fc1{color:rgb(191,0,65);}
.fc3{color:rgb(192,0,0);}
.fc0{color:rgb(49,39,130);}
.fs6{font-size:60.036000px;}
.fs5{font-size:84.018000px;}
.fs4{font-size:95.922000px;}
.fs3{font-size:108.000000px;}
.fs1{font-size:120.078000px;}
.fs0{font-size:144.054000px;}
.fs2{font-size:263.964000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.ya{bottom:0.297000px;}
.y44{bottom:19.347000px;}
.y36{bottom:45.751500px;}
.y27{bottom:58.039500px;}
.y19{bottom:77.088000px;}
.y35{bottom:79.597500px;}
.y26{bottom:90.439500px;}
.y18{bottom:107.277000px;}
.y34{bottom:110.551500px;}
.y25{bottom:124.285500px;}
.y7{bottom:125.560500px;}
.y17{bottom:134.659500px;}
.y33{bottom:144.397500px;}
.y3f{bottom:154.092000px;}
.y24{bottom:155.239500px;}
.y6{bottom:157.960500px;}
.y16{bottom:163.446000px;}
.y32{bottom:175.351500px;}
.y48{bottom:177.222000px;}
.y40{bottom:178.455000px;}
.y3e{bottom:186.492000px;}
.y23{bottom:189.085500px;}
.y15{bottom:193.635000px;}
.y5{bottom:205.369500px;}
.y31{bottom:209.197500px;}
.y3d{bottom:218.892000px;}
.y22{bottom:220.039500px;}
.y14{bottom:221.017500px;}
.y47{bottom:236.239500px;}
.y30{bottom:240.151500px;}
.y13{bottom:251.206500px;}
.y3c{bottom:252.736500px;}
.y21{bottom:253.885500px;}
.y4{bottom:260.050500px;}
.y43{bottom:270.000000px;}
.y2f{bottom:273.997500px;}
.y12{bottom:278.589000px;}
.y20{bottom:284.839500px;}
.y3{bottom:298.914000px;}
.y2e{bottom:306.397500px;}
.y11{bottom:308.778000px;}
.y3b{bottom:316.092000px;}
.y1f{bottom:317.239500px;}
.y46{bottom:325.488000px;}
.y2d{bottom:337.351500px;}
.y10{bottom:337.563000px;}
.y2{bottom:337.776000px;}
.y3a{bottom:349.936500px;}
.y1e{bottom:351.085500px;}
.yf{bottom:364.947000px;}
.y2c{bottom:371.197500px;}
.y45{bottom:379.488000px;}
.y1d{bottom:382.039500px;}
.ye{bottom:395.136000px;}
.y2b{bottom:402.151500px;}
.y39{bottom:413.292000px;}
.y42{bottom:414.099000px;}
.y1c{bottom:415.885500px;}
.yd{bottom:422.518500px;}
.y2a{bottom:435.997500px;}
.y38{bottom:445.692000px;}
.y1b{bottom:446.839500px;}
.yc{bottom:452.707500px;}
.y9{bottom:453.472500px;}
.y29{bottom:466.951500px;}
.y37{bottom:479.536500px;}
.y1a{bottom:480.685500px;}
.y41{bottom:481.152000px;}
.yb{bottom:481.492500px;}
.y28{bottom:500.797500px;}
.y8{bottom:565.767000px;}
.h6{height:19.858500px;}
.he{height:43.502648px;}
.hd{height:43.913051px;}
.hc{height:60.880230px;}
.h8{height:69.505980px;}
.h9{height:73.380330px;}
.h7{height:78.257812px;}
.ha{height:82.620000px;}
.h4{height:91.859670px;}
.h3{height:110.201310px;}
.hb{height:180.186363px;}
.h5{height:201.932460px;}
.h2{height:669.727500px;}
.h1{height:669.750000px;}
.h0{height:669.770079px;}
.w3{width:56.125500px;}
.w2{width:1190.593500px;}
.w0{width:1190.636220px;}
.w1{width:1191.000000px;}
.x8{left:-2.211000px;}
.x0{left:0.000000px;}
.xa{left:34.059000px;}
.x10{left:59.527500px;}
.x1{left:67.606500px;}
.x11{left:72.241500px;}
.x9{left:107.490000px;}
.x6{left:170.079000px;}
.x2{left:298.105500px;}
.xf{left:330.292500px;}
.x5{left:358.653000px;}
.x4{left:386.716500px;}
.x3{left:464.230500px;}
.x7{left:710.802000px;}
.xc{left:829.389000px;}
.xd{left:917.362500px;}
.xb{left:971.149500px;}
.xe{left:1052.575500px;}
@media print{
.v1{vertical-align:-4.986667pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:86.437333pt;}
.ls2{letter-spacing:114.232267pt;}
.ls1{letter-spacing:120.125600pt;}
.ws1{word-spacing:-61.005013pt;}
.ws2{word-spacing:-26.592000pt;}
.ws4{word-spacing:-24.960000pt;}
.ws3{word-spacing:-22.168640pt;}
.ws5{word-spacing:-20.687099pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-12.036512pt;}
._5{margin-left:-6.221536pt;}
._8{margin-left:-4.927328pt;}
._1{margin-left:-3.073152pt;}
._4{margin-left:-2.176816pt;}
._0{margin-left:-1.152432pt;}
._3{width:0.896336pt;}
._6{width:2.182011pt;}
._7{width:3.904512pt;}
.fs6{font-size:53.365333pt;}
.fs5{font-size:74.682667pt;}
.fs4{font-size:85.264000pt;}
.fs3{font-size:96.000000pt;}
.fs1{font-size:106.736000pt;}
.fs0{font-size:128.048000pt;}
.fs2{font-size:234.634667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.ya{bottom:0.264000pt;}
.y44{bottom:17.197333pt;}
.y36{bottom:40.668000pt;}
.y27{bottom:51.590667pt;}
.y19{bottom:68.522667pt;}
.y35{bottom:70.753333pt;}
.y26{bottom:80.390667pt;}
.y18{bottom:95.357333pt;}
.y34{bottom:98.268000pt;}
.y25{bottom:110.476000pt;}
.y7{bottom:111.609333pt;}
.y17{bottom:119.697333pt;}
.y33{bottom:128.353333pt;}
.y3f{bottom:136.970667pt;}
.y24{bottom:137.990667pt;}
.y6{bottom:140.409333pt;}
.y16{bottom:145.285333pt;}
.y32{bottom:155.868000pt;}
.y48{bottom:157.530667pt;}
.y40{bottom:158.626667pt;}
.y3e{bottom:165.770667pt;}
.y23{bottom:168.076000pt;}
.y15{bottom:172.120000pt;}
.y5{bottom:182.550667pt;}
.y31{bottom:185.953333pt;}
.y3d{bottom:194.570667pt;}
.y22{bottom:195.590667pt;}
.y14{bottom:196.460000pt;}
.y47{bottom:209.990667pt;}
.y30{bottom:213.468000pt;}
.y13{bottom:223.294667pt;}
.y3c{bottom:224.654667pt;}
.y21{bottom:225.676000pt;}
.y4{bottom:231.156000pt;}
.y43{bottom:240.000000pt;}
.y2f{bottom:243.553333pt;}
.y12{bottom:247.634667pt;}
.y20{bottom:253.190667pt;}
.y3{bottom:265.701333pt;}
.y2e{bottom:272.353333pt;}
.y11{bottom:274.469333pt;}
.y3b{bottom:280.970667pt;}
.y1f{bottom:281.990667pt;}
.y46{bottom:289.322667pt;}
.y2d{bottom:299.868000pt;}
.y10{bottom:300.056000pt;}
.y2{bottom:300.245333pt;}
.y3a{bottom:311.054667pt;}
.y1e{bottom:312.076000pt;}
.yf{bottom:324.397333pt;}
.y2c{bottom:329.953333pt;}
.y45{bottom:337.322667pt;}
.y1d{bottom:339.590667pt;}
.ye{bottom:351.232000pt;}
.y2b{bottom:357.468000pt;}
.y39{bottom:367.370667pt;}
.y42{bottom:368.088000pt;}
.y1c{bottom:369.676000pt;}
.yd{bottom:375.572000pt;}
.y2a{bottom:387.553333pt;}
.y38{bottom:396.170667pt;}
.y1b{bottom:397.190667pt;}
.yc{bottom:402.406667pt;}
.y9{bottom:403.086667pt;}
.y29{bottom:415.068000pt;}
.y37{bottom:426.254667pt;}
.y1a{bottom:427.276000pt;}
.y41{bottom:427.690667pt;}
.yb{bottom:427.993333pt;}
.y28{bottom:445.153333pt;}
.y8{bottom:502.904000pt;}
.h6{height:17.652000pt;}
.he{height:38.669021pt;}
.hd{height:39.033823pt;}
.hc{height:54.115760pt;}
.h8{height:61.783094pt;}
.h9{height:65.226960pt;}
.h7{height:69.562500pt;}
.ha{height:73.440000pt;}
.h4{height:81.653040pt;}
.h3{height:97.956720pt;}
.hb{height:160.165656pt;}
.h5{height:179.495520pt;}
.h2{height:595.313333pt;}
.h1{height:595.333333pt;}
.h0{height:595.351181pt;}
.w3{width:49.889333pt;}
.w2{width:1058.305333pt;}
.w0{width:1058.343307pt;}
.w1{width:1058.666667pt;}
.x8{left:-1.965333pt;}
.x0{left:0.000000pt;}
.xa{left:30.274667pt;}
.x10{left:52.913333pt;}
.x1{left:60.094667pt;}
.x11{left:64.214667pt;}
.x9{left:95.546667pt;}
.x6{left:151.181333pt;}
.x2{left:264.982667pt;}
.xf{left:293.593333pt;}
.x5{left:318.802667pt;}
.x4{left:343.748000pt;}
.x3{left:412.649333pt;}
.x7{left:631.824000pt;}
.xc{left:737.234667pt;}
.xd{left:815.433333pt;}
.xb{left:863.244000pt;}
.xe{left:935.622667pt;}
}




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