
    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_5aa3626fdb2034119bbb8b56.woff')format("woff");}.ff1{font-family:ff1;line-height:0.968000;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_f09ac0eb639f19b7ef71380b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_06e4fd7b7dd8073b43756b02.woff')format("woff");}.ff3{font-family:ff3;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;}
.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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws3{word-spacing:-20.013696px;}
.ws1{word-spacing:-15.010272px;}
.ws0{word-spacing:-0.048020px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-7.984374px;}
._6{margin-left:-6.647780px;}
._4{margin-left:-5.346337px;}
._3{margin-left:-3.974596px;}
._1{margin-left:-2.004887px;}
._0{width:2.929231px;}
._2{width:2112.034098px;}
.fc2{color:rgb(142,142,142);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:48.020172px;}
.fs1{font-size:54.026428px;}
.fs3{font-size:63.030832px;}
.fs5{font-size:72.035237px;}
.fs6{font-size:81.039641px;}
.fs4{font-size:90.044046px;}
.fs2{font-size:108.052855px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.502195px;}
.y61{bottom:18.008566px;}
.y7{bottom:22.511005px;}
.y1{bottom:26.360536px;}
.y60{bottom:61.905039px;}
.y17{bottom:63.030798px;}
.y2{bottom:63.073928px;}
.y18{bottom:63.074014px;}
.y3d{bottom:63.074212px;}
.y16{bottom:87.792911px;}
.y5f{bottom:104.675960px;}
.y3c{bottom:106.927222px;}
.y15{bottom:112.555023px;}
.y3b{bottom:131.689334px;}
.y14{bottom:138.442686px;}
.y5e{bottom:148.572433px;}
.y3a{bottom:156.451447px;}
.y13{bottom:163.204799px;}
.y5d{bottom:173.334545px;}
.y39{bottom:182.339110px;}
.y12{bottom:189.092462px;}
.y38{bottom:207.101223px;}
.y5c{bottom:216.105467px;}
.y11{bottom:229.612283px;}
.y37{bottom:232.988886px;}
.y10{bottom:256.625496px;}
.y36{bottom:257.750998px;}
.y5b{bottom:260.001939px;}
.yf{bottom:283.638710px;}
.y5a{bottom:284.764052px;}
.y35{bottom:300.521920px;}
.y59{bottom:310.651715px;}
.y34{bottom:326.409583px;}
.y58{bottom:335.413828px;}
.ye{bottom:336.539587px;}
.y33{bottom:351.171696px;}
.yd{bottom:357.925048px;}
.y32{bottom:377.059359px;}
.y57{bottom:378.184750px;}
.yc{bottom:380.436060px;}
.yb{bottom:401.821520px;}
.y56{bottom:404.072413px;}
.y31{bottom:419.830281px;}
.ya{bottom:424.332532px;}
.y55{bottom:428.834525px;}
.y30{bottom:444.592394px;}
.y9{bottom:446.843543px;}
.y54{bottom:454.722189px;}
.y2f{bottom:470.480057px;}
.y2e{bottom:495.242169px;}
.y53{bottom:497.493110px;}
.y2d{bottom:520.004282px;}
.y52{bottom:540.264032px;}
.y2c{bottom:545.891945px;}
.y51{bottom:566.151695px;}
.y2b{bottom:586.411766px;}
.y50{bottom:590.913808px;}
.y4f{bottom:616.801471px;}
.y2a{bottom:634.810440px;}
.y4e{bottom:641.563584px;}
.y29{bottom:659.572553px;}
.y4d{bottom:684.334505px;}
.y28{bottom:684.334666px;}
.y4c{bottom:710.222169px;}
.y27{bottom:710.222329px;}
.y4b{bottom:734.984281px;}
.y26{bottom:734.984441px;}
.y4a{bottom:759.746394px;}
.y25{bottom:759.746554px;}
.y49{bottom:785.634057px;}
.y24{bottom:803.643026px;}
.y48{bottom:810.396170px;}
.y23{bottom:828.405139px;}
.y47{bottom:836.283833px;}
.y22{bottom:854.292802px;}
.y46{bottom:861.045945px;}
.y21{bottom:879.054915px;}
.y45{bottom:901.565766px;}
.y20{bottom:903.817027px;}
.y1f{bottom:944.336848px;}
.y44{bottom:949.964441px;}
.y43{bottom:974.726553px;}
.y3{bottom:975.852313px;}
.y1e{bottom:992.735523px;}
.y42{bottom:999.488666px;}
.y1d{bottom:1017.497635px;}
.y41{bottom:1043.385138px;}
.y1c{bottom:1043.385298px;}
.y5{bottom:1058.017505px;}
.y6{bottom:1062.562810px;}
.y40{bottom:1068.147251px;}
.y1b{bottom:1068.147411px;}
.y4{bottom:1090.658471px;}
.y3f{bottom:1094.034914px;}
.y1a{bottom:1094.035074px;}
.y3e{bottom:1118.797027px;}
.y19{bottom:1118.797187px;}
.h6{height:36.017610px;}
.h2{height:37.599795px;}
.h4{height:39.359097px;}
.h7{height:45.918946px;}
.hc{height:52.443622px;}
.h9{height:52.478795px;}
.ha{height:58.999075px;}
.h8{height:65.554528px;}
.h5{height:78.665433px;}
.hb{height:1136.805937px;}
.h3{height:1136.806045px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w3{width:714.724602px;}
.w2{width:766.499908px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:22.124099px;}
.x3{left:26.397678px;}
.x9{left:31.990258px;}
.x6{left:35.067935px;}
.x8{left:37.547664px;}
.x7{left:39.904285px;}
.x2{left:62.999997px;}
.xb{left:70.522778px;}
.x4{left:88.887665px;}
.xa{left:346.018873px;}
.x1{left:816.671190px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-17.789952pt;}
.ws1{word-spacing:-13.342464pt;}
.ws0{word-spacing:-0.042685pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-7.097221pt;}
._6{margin-left:-5.909138pt;}
._4{margin-left:-4.752300pt;}
._3{margin-left:-3.532974pt;}
._1{margin-left:-1.782122pt;}
._0{width:2.603760pt;}
._2{width:1877.363643pt;}
.fs0{font-size:42.684598pt;}
.fs1{font-size:48.023491pt;}
.fs3{font-size:56.027406pt;}
.fs5{font-size:64.031321pt;}
.fs6{font-size:72.035237pt;}
.fs4{font-size:80.039152pt;}
.fs2{font-size:96.046982pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.001952pt;}
.y61{bottom:16.007614pt;}
.y7{bottom:20.009782pt;}
.y1{bottom:23.431587pt;}
.y60{bottom:55.026701pt;}
.y17{bottom:56.027376pt;}
.y2{bottom:56.065714pt;}
.y18{bottom:56.065791pt;}
.y3d{bottom:56.065967pt;}
.y16{bottom:78.038143pt;}
.y5f{bottom:93.045298pt;}
.y3c{bottom:95.046419pt;}
.y15{bottom:100.048909pt;}
.y3b{bottom:117.057186pt;}
.y14{bottom:123.060166pt;}
.y5e{bottom:132.064385pt;}
.y3a{bottom:139.067953pt;}
.y13{bottom:145.070932pt;}
.y5d{bottom:154.075151pt;}
.y39{bottom:162.079209pt;}
.y12{bottom:168.082189pt;}
.y38{bottom:184.089976pt;}
.y5c{bottom:192.093748pt;}
.y11{bottom:204.099807pt;}
.y37{bottom:207.101232pt;}
.y10{bottom:228.111552pt;}
.y36{bottom:229.111999pt;}
.y5b{bottom:231.112835pt;}
.yf{bottom:252.123298pt;}
.y5a{bottom:253.123602pt;}
.y35{bottom:267.130596pt;}
.y59{bottom:276.134858pt;}
.y34{bottom:290.141852pt;}
.y58{bottom:298.145625pt;}
.ye{bottom:299.146300pt;}
.y33{bottom:312.152619pt;}
.yd{bottom:318.155598pt;}
.y32{bottom:335.163875pt;}
.y57{bottom:336.164222pt;}
.yc{bottom:338.165386pt;}
.yb{bottom:357.174685pt;}
.y56{bottom:359.175478pt;}
.y31{bottom:373.182472pt;}
.ya{bottom:377.184473pt;}
.y55{bottom:381.186245pt;}
.y30{bottom:395.193239pt;}
.y9{bottom:397.194261pt;}
.y54{bottom:404.197501pt;}
.y2f{bottom:418.204495pt;}
.y2e{bottom:440.215262pt;}
.y53{bottom:442.216098pt;}
.y2d{bottom:462.226028pt;}
.y52{bottom:480.234695pt;}
.y2c{bottom:485.237285pt;}
.y51{bottom:503.245951pt;}
.y2b{bottom:521.254903pt;}
.y50{bottom:525.256718pt;}
.y4f{bottom:548.267974pt;}
.y2a{bottom:564.275947pt;}
.y4e{bottom:570.278741pt;}
.y29{bottom:586.286714pt;}
.y4d{bottom:608.297338pt;}
.y28{bottom:608.297481pt;}
.y4c{bottom:631.308594pt;}
.y27{bottom:631.308737pt;}
.y4b{bottom:653.319361pt;}
.y26{bottom:653.319503pt;}
.y4a{bottom:675.330128pt;}
.y25{bottom:675.330270pt;}
.y49{bottom:698.341384pt;}
.y24{bottom:714.349357pt;}
.y48{bottom:720.352151pt;}
.y23{bottom:736.360124pt;}
.y47{bottom:743.363407pt;}
.y22{bottom:759.371380pt;}
.y46{bottom:765.374174pt;}
.y21{bottom:781.382146pt;}
.y45{bottom:801.391792pt;}
.y20{bottom:803.392913pt;}
.y1f{bottom:839.410532pt;}
.y44{bottom:844.412836pt;}
.y43{bottom:866.423603pt;}
.y3{bottom:867.424278pt;}
.y1e{bottom:882.431576pt;}
.y42{bottom:888.434370pt;}
.y1d{bottom:904.442342pt;}
.y41{bottom:927.453456pt;}
.y1c{bottom:927.453599pt;}
.y5{bottom:940.460004pt;}
.y6{bottom:944.500275pt;}
.y40{bottom:949.464223pt;}
.y1b{bottom:949.464365pt;}
.y4{bottom:969.474197pt;}
.y3f{bottom:972.475479pt;}
.y1a{bottom:972.475622pt;}
.y3e{bottom:994.486246pt;}
.y19{bottom:994.486388pt;}
.h6{height:32.015653pt;}
.h2{height:33.422040pt;}
.h4{height:34.985864pt;}
.h7{height:40.816841pt;}
.hc{height:46.616553pt;}
.h9{height:46.647818pt;}
.ha{height:52.443622pt;}
.h8{height:58.270691pt;}
.h5{height:69.924829pt;}
.hb{height:1010.494166pt;}
.h3{height:1010.494262pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w3{width:635.310758pt;}
.w2{width:681.333252pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:19.665866pt;}
.x3{left:23.464603pt;}
.x9{left:28.435785pt;}
.x6{left:31.171498pt;}
.x8{left:33.375701pt;}
.x7{left:35.470476pt;}
.x2{left:55.999998pt;}
.xb{left:62.686914pt;}
.x4{left:79.011258pt;}
.xa{left:307.572332pt;}
.x1{left:725.929947pt;}
}




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