
    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_e1866cffae42f002e6ef948e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919434;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_dde30480d4d0cfc38ef8649b.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9129191e7d7abe1240cc2597.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2bc12fed9825c3f1a23042c3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.693359;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_a9ac12c96fc871c0f041648a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_f24fd2a5a21effac0e5b93ec.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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;}
.ls7{letter-spacing:-0.014400px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.014400px;}
.ls9{letter-spacing:0.015600px;}
.ls0{letter-spacing:0.224040px;}
.ls1{letter-spacing:0.224400px;}
.ls5{letter-spacing:0.348336px;}
.ls3{letter-spacing:0.484128px;}
.ls4{letter-spacing:0.537264px;}
.ls6{letter-spacing:0.608112px;}
.lsa{letter-spacing:8.894400px;}
.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;}
}
.ws7{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.985600px;}
.ws3{word-spacing:-0.596304px;}
.ws1{word-spacing:-0.543168px;}
.ws4{word-spacing:-0.407376px;}
.ws2{word-spacing:-0.283440px;}
.ws0{word-spacing:-0.072000px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.184340px;}
._3{width:1.116000px;}
._4{width:2.347200px;}
._6{width:3.379860px;}
._8{width:4.457880px;}
._2{width:5.565600px;}
._5{width:7.164000px;}
._7{width:8.356200px;}
._11{width:9.812400px;}
._9{width:10.900800px;}
._c{width:12.924000px;}
._12{width:13.966740px;}
._d{width:15.055200px;}
._1{width:16.106400px;}
._f{width:19.038660px;}
._13{width:20.322660px;}
._a{width:21.448800px;}
._b{width:23.812260px;}
._e{width:25.000020px;}
._10{width:34.394400px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.040000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.195045px;}
.y2{bottom:24.435045px;}
.y1{bottom:54.000000px;}
.y26{bottom:94.635045px;}
.y46{bottom:114.075000px;}
.y25{bottom:125.595000px;}
.y45{bottom:145.395000px;}
.y24{bottom:156.555000px;}
.y44{bottom:176.355000px;}
.y23{bottom:187.515000px;}
.y43{bottom:207.315000px;}
.y22{bottom:218.835000px;}
.y42{bottom:238.275000px;}
.y21{bottom:249.795000px;}
.y41{bottom:269.595000px;}
.y20{bottom:280.755000px;}
.y40{bottom:300.555000px;}
.y1f{bottom:311.715000px;}
.y3f{bottom:331.515000px;}
.y1e{bottom:343.035000px;}
.y3e{bottom:362.475000px;}
.y1d{bottom:373.995000px;}
.y3d{bottom:393.795000px;}
.y1c{bottom:404.955000px;}
.y3c{bottom:424.755000px;}
.y1b{bottom:435.915000px;}
.y3b{bottom:455.715000px;}
.y1a{bottom:467.235000px;}
.y3a{bottom:486.675000px;}
.y19{bottom:498.195000px;}
.y39{bottom:517.995000px;}
.y18{bottom:529.155000px;}
.y38{bottom:548.955000px;}
.y17{bottom:560.115000px;}
.y37{bottom:579.915000px;}
.y16{bottom:591.435000px;}
.y36{bottom:610.875000px;}
.y15{bottom:622.395000px;}
.y35{bottom:642.195000px;}
.y14{bottom:653.355000px;}
.y34{bottom:673.155000px;}
.y13{bottom:684.315000px;}
.y33{bottom:704.115000px;}
.y12{bottom:715.635000px;}
.y32{bottom:735.075000px;}
.y11{bottom:746.595000px;}
.y31{bottom:766.395000px;}
.y10{bottom:777.555000px;}
.y30{bottom:802.035000px;}
.yf{bottom:823.995000px;}
.y2f{bottom:837.675000px;}
.ye{bottom:857.475000px;}
.y2e{bottom:868.635000px;}
.yd{bottom:888.435000px;}
.y2d{bottom:899.595000px;}
.yc{bottom:919.395000px;}
.y2c{bottom:930.915000px;}
.yb{bottom:950.355000px;}
.y2b{bottom:961.875000px;}
.ya{bottom:971.235000px;}
.y9{bottom:991.755000px;}
.y2a{bottom:992.835000px;}
.y8{bottom:1012.635000px;}
.y29{bottom:1023.795000px;}
.y7{bottom:1033.155000px;}
.y6{bottom:1053.315000px;}
.y28{bottom:1055.115000px;}
.y5{bottom:1070.955000px;}
.y27{bottom:1086.075000px;}
.y4{bottom:1088.595000px;}
.h6{height:39.350391px;}
.h4{height:41.397188px;}
.h5{height:42.262031px;}
.h7{height:48.796875px;}
.h8{height:50.027344px;}
.h3{height:50.484375px;}
.h2{height:1154.835000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:865.935000px;}
.w0{width:892.935000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:13.500000px;}
.x3{left:113.760135px;}
.xc{left:145.710150px;}
.x4{left:148.127250px;}
.xb{left:156.285300px;}
.x5{left:161.117400px;}
.x9{left:253.472850px;}
.x8{left:289.424550px;}
.xa{left:291.424050px;}
.x6{left:331.647150px;}
.x7{left:432.659850px;}
.x2{left:741.593250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.012800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.012800pt;}
.ls9{letter-spacing:0.013867pt;}
.ls0{letter-spacing:0.199147pt;}
.ls1{letter-spacing:0.199467pt;}
.ls5{letter-spacing:0.309632pt;}
.ls3{letter-spacing:0.430336pt;}
.ls4{letter-spacing:0.477568pt;}
.ls6{letter-spacing:0.540544pt;}
.lsa{letter-spacing:7.906133pt;}
.ws7{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.987200pt;}
.ws3{word-spacing:-0.530048pt;}
.ws1{word-spacing:-0.482816pt;}
.ws4{word-spacing:-0.362112pt;}
.ws2{word-spacing:-0.251947pt;}
.ws0{word-spacing:-0.064000pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-1.052747pt;}
._3{width:0.992000pt;}
._4{width:2.086400pt;}
._6{width:3.004320pt;}
._8{width:3.962560pt;}
._2{width:4.947200pt;}
._5{width:6.368000pt;}
._7{width:7.427733pt;}
._11{width:8.722133pt;}
._9{width:9.689600pt;}
._c{width:11.488000pt;}
._12{width:12.414880pt;}
._d{width:13.382400pt;}
._1{width:14.316800pt;}
._f{width:16.923253pt;}
._13{width:18.064587pt;}
._a{width:19.065600pt;}
._b{width:21.166453pt;}
._e{width:22.222240pt;}
._10{width:30.572800pt;}
.fs1{font-size:52.480000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.840040pt;}
.y2{bottom:21.720040pt;}
.y1{bottom:48.000000pt;}
.y26{bottom:84.120040pt;}
.y46{bottom:101.400000pt;}
.y25{bottom:111.640000pt;}
.y45{bottom:129.240000pt;}
.y24{bottom:139.160000pt;}
.y44{bottom:156.760000pt;}
.y23{bottom:166.680000pt;}
.y43{bottom:184.280000pt;}
.y22{bottom:194.520000pt;}
.y42{bottom:211.800000pt;}
.y21{bottom:222.040000pt;}
.y41{bottom:239.640000pt;}
.y20{bottom:249.560000pt;}
.y40{bottom:267.160000pt;}
.y1f{bottom:277.080000pt;}
.y3f{bottom:294.680000pt;}
.y1e{bottom:304.920000pt;}
.y3e{bottom:322.200000pt;}
.y1d{bottom:332.440000pt;}
.y3d{bottom:350.040000pt;}
.y1c{bottom:359.960000pt;}
.y3c{bottom:377.560000pt;}
.y1b{bottom:387.480000pt;}
.y3b{bottom:405.080000pt;}
.y1a{bottom:415.320000pt;}
.y3a{bottom:432.600000pt;}
.y19{bottom:442.840000pt;}
.y39{bottom:460.440000pt;}
.y18{bottom:470.360000pt;}
.y38{bottom:487.960000pt;}
.y17{bottom:497.880000pt;}
.y37{bottom:515.480000pt;}
.y16{bottom:525.720000pt;}
.y36{bottom:543.000000pt;}
.y15{bottom:553.240000pt;}
.y35{bottom:570.840000pt;}
.y14{bottom:580.760000pt;}
.y34{bottom:598.360000pt;}
.y13{bottom:608.280000pt;}
.y33{bottom:625.880000pt;}
.y12{bottom:636.120000pt;}
.y32{bottom:653.400000pt;}
.y11{bottom:663.640000pt;}
.y31{bottom:681.240000pt;}
.y10{bottom:691.160000pt;}
.y30{bottom:712.920000pt;}
.yf{bottom:732.440000pt;}
.y2f{bottom:744.600000pt;}
.ye{bottom:762.200000pt;}
.y2e{bottom:772.120000pt;}
.yd{bottom:789.720000pt;}
.y2d{bottom:799.640000pt;}
.yc{bottom:817.240000pt;}
.y2c{bottom:827.480000pt;}
.yb{bottom:844.760000pt;}
.y2b{bottom:855.000000pt;}
.ya{bottom:863.320000pt;}
.y9{bottom:881.560000pt;}
.y2a{bottom:882.520000pt;}
.y8{bottom:900.120000pt;}
.y29{bottom:910.040000pt;}
.y7{bottom:918.360000pt;}
.y6{bottom:936.280000pt;}
.y28{bottom:937.880000pt;}
.y5{bottom:951.960000pt;}
.y27{bottom:965.400000pt;}
.y4{bottom:967.640000pt;}
.h6{height:34.978125pt;}
.h4{height:36.797500pt;}
.h5{height:37.566250pt;}
.h7{height:43.375000pt;}
.h8{height:44.468750pt;}
.h3{height:44.875000pt;}
.h2{height:1026.520000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:769.720000pt;}
.w0{width:793.720000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:12.000000pt;}
.x3{left:101.120120pt;}
.xc{left:129.520133pt;}
.x4{left:131.668667pt;}
.xb{left:138.920267pt;}
.x5{left:143.215467pt;}
.x9{left:225.309200pt;}
.x8{left:257.266267pt;}
.xa{left:259.043600pt;}
.x6{left:294.797467pt;}
.x7{left:384.586533pt;}
.x2{left:659.194000pt;}
}




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