
    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_83ee6a0a5940997faa41f0f5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_a5b7004d9d333223d5c6cff2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.907000;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_afee7d3b694546cf630f0000.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_c802b67094db7acbb4ccc20a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914000;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_f8a7c80045d1eb1d36e6dab6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_0896a84bfbf997f7374d6c8d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.706000;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:ff7;src:url('chunks/assets/font_720a25d07deded863f998d24.woff')format("woff");}.ff7{font-family:ff7;line-height:0.999000;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:ff8;src:url('chunks/assets/font_592587762bbd703e1e0b356c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.895000;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);}
.v2{vertical-align:-23.754000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.028000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:2.984915px;}
.ls1{letter-spacing:2.988465px;}
.ls0{letter-spacing:2.990915px;}
.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;}
}
.ws20{word-spacing:-15.359443px;}
.ws9{word-spacing:-1.587053px;}
.ws1d{word-spacing:-1.318061px;}
.ws1{word-spacing:-0.103292px;}
.ws6{word-spacing:-0.065455px;}
.ws4{word-spacing:-0.047821px;}
.ws1e{word-spacing:0.000000px;}
.ws1b{word-spacing:0.511085px;}
.ws18{word-spacing:1.533254px;}
.ws7{word-spacing:4.061779px;}
.ws1f{word-spacing:4.868755px;}
.ws10{word-spacing:5.137747px;}
.ws19{word-spacing:5.729530px;}
.wsf{word-spacing:6.267514px;}
.wsa{word-spacing:6.859296px;}
.wsc{word-spacing:7.020691px;}
.wsb{word-spacing:7.666272px;}
.ws16{word-spacing:8.688442px;}
.ws14{word-spacing:10.087200px;}
.ws1a{word-spacing:10.517587px;}
.ws8{word-spacing:10.571386px;}
.ws12{word-spacing:10.678982px;}
.ws11{word-spacing:11.163168px;}
.wse{word-spacing:11.970144px;}
.ws1c{word-spacing:12.292934px;}
.ws13{word-spacing:13.584096px;}
.ws17{word-spacing:13.637894px;}
.wsd{word-spacing:14.982854px;}
.ws22{word-spacing:16.880672px;}
.ws21{word-spacing:16.881547px;}
.ws15{word-spacing:18.210758px;}
.ws5{word-spacing:21.730927px;}
.ws3{word-spacing:23.312640px;}
.ws2{word-spacing:23.384371px;}
.ws0{word-spacing:31.091012px;}
._1{margin-left:-8.160100px;}
._2{margin-left:-5.881958px;}
._5{margin-left:-4.016947px;}
._6{margin-left:-2.965097px;}
._4{margin-left:-1.880108px;}
._7{width:1.560154px;}
._0{width:2.685602px;}
._3{width:46.808796px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y23{bottom:283.819500px;}
.y22{bottom:330.324000px;}
.y21{bottom:346.824000px;}
.y20{bottom:363.324000px;}
.y1f{bottom:379.824000px;}
.y1e{bottom:396.324000px;}
.y1d{bottom:412.824000px;}
.y1c{bottom:429.324000px;}
.y1b{bottom:445.824000px;}
.y1a{bottom:462.324000px;}
.y19{bottom:478.824000px;}
.y18{bottom:495.324000px;}
.y17{bottom:511.824000px;}
.y16{bottom:528.324000px;}
.y15{bottom:544.824000px;}
.y14{bottom:561.324000px;}
.y13{bottom:577.824000px;}
.y12{bottom:594.324000px;}
.y11{bottom:610.824000px;}
.y10{bottom:627.324000px;}
.yf{bottom:643.824000px;}
.ye{bottom:660.324000px;}
.yd{bottom:676.824000px;}
.yc{bottom:693.324000px;}
.yb{bottom:714.307500px;}
.ya{bottom:772.611000px;}
.y9{bottom:786.922500px;}
.y8{bottom:807.172500px;}
.y7{bottom:827.422500px;}
.y6{bottom:883.537500px;}
.y5{bottom:903.787500px;}
.y4{bottom:929.976000px;}
.y3{bottom:954.748500px;}
.y2{bottom:1006.386000px;}
.y1{bottom:1040.136000px;}
.y27{bottom:1077.396000px;}
.y26{bottom:1091.646000px;}
.y25{bottom:1120.839000px;}
.y24{bottom:1137.339000px;}
.h6{height:33.617882px;}
.h4{height:35.865450px;}
.h7{height:37.658880px;}
.h8{height:40.348800px;}
.h9{height:44.831700px;}
.h5{height:49.090950px;}
.h3{height:61.893450px;}
.h2{height:72.511265px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:172.336500px;}
.xa{left:185.971500px;}
.x1{left:189.084000px;}
.x6{left:198.382500px;}
.x3{left:214.486500px;}
.xc{left:222.757500px;}
.x7{left:254.064000px;}
.x8{left:337.018500px;}
.x2{left:391.123500px;}
.x9{left:397.623000px;}
.x5{left:408.973500px;}
.xb{left:424.327500px;}
.xd{left:461.113500px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.136000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:2.653258pt;}
.ls1{letter-spacing:2.656414pt;}
.ls0{letter-spacing:2.658591pt;}
.ws20{word-spacing:-13.652838pt;}
.ws9{word-spacing:-1.410714pt;}
.ws1d{word-spacing:-1.171610pt;}
.ws1{word-spacing:-0.091815pt;}
.ws6{word-spacing:-0.058182pt;}
.ws4{word-spacing:-0.042507pt;}
.ws1e{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.454298pt;}
.ws18{word-spacing:1.362893pt;}
.ws7{word-spacing:3.610470pt;}
.ws1f{word-spacing:4.327782pt;}
.ws10{word-spacing:4.566886pt;}
.ws19{word-spacing:5.092915pt;}
.wsf{word-spacing:5.571123pt;}
.wsa{word-spacing:6.097152pt;}
.wsc{word-spacing:6.240614pt;}
.wsb{word-spacing:6.814464pt;}
.ws16{word-spacing:7.723059pt;}
.ws14{word-spacing:8.966400pt;}
.ws1a{word-spacing:9.348966pt;}
.ws8{word-spacing:9.396787pt;}
.ws12{word-spacing:9.492429pt;}
.ws11{word-spacing:9.922816pt;}
.wse{word-spacing:10.640128pt;}
.ws1c{word-spacing:10.927053pt;}
.ws13{word-spacing:12.074752pt;}
.ws17{word-spacing:12.122573pt;}
.wsd{word-spacing:13.318093pt;}
.ws22{word-spacing:15.005042pt;}
.ws21{word-spacing:15.005819pt;}
.ws15{word-spacing:16.187341pt;}
.ws5{word-spacing:19.316380pt;}
.ws3{word-spacing:20.722347pt;}
.ws2{word-spacing:20.786108pt;}
.ws0{word-spacing:27.636455pt;}
._1{margin-left:-7.253422pt;}
._2{margin-left:-5.228407pt;}
._5{margin-left:-3.570620pt;}
._6{margin-left:-2.635642pt;}
._4{margin-left:-1.671207pt;}
._7{width:1.386803pt;}
._0{width:2.387202pt;}
._3{width:41.607818pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:252.284000pt;}
.y22{bottom:293.621333pt;}
.y21{bottom:308.288000pt;}
.y20{bottom:322.954667pt;}
.y1f{bottom:337.621333pt;}
.y1e{bottom:352.288000pt;}
.y1d{bottom:366.954667pt;}
.y1c{bottom:381.621333pt;}
.y1b{bottom:396.288000pt;}
.y1a{bottom:410.954667pt;}
.y19{bottom:425.621333pt;}
.y18{bottom:440.288000pt;}
.y17{bottom:454.954667pt;}
.y16{bottom:469.621333pt;}
.y15{bottom:484.288000pt;}
.y14{bottom:498.954667pt;}
.y13{bottom:513.621333pt;}
.y12{bottom:528.288000pt;}
.y11{bottom:542.954667pt;}
.y10{bottom:557.621333pt;}
.yf{bottom:572.288000pt;}
.ye{bottom:586.954667pt;}
.yd{bottom:601.621333pt;}
.yc{bottom:616.288000pt;}
.yb{bottom:634.940000pt;}
.ya{bottom:686.765333pt;}
.y9{bottom:699.486667pt;}
.y8{bottom:717.486667pt;}
.y7{bottom:735.486667pt;}
.y6{bottom:785.366667pt;}
.y5{bottom:803.366667pt;}
.y4{bottom:826.645333pt;}
.y3{bottom:848.665333pt;}
.y2{bottom:894.565333pt;}
.y1{bottom:924.565333pt;}
.y27{bottom:957.685333pt;}
.y26{bottom:970.352000pt;}
.y25{bottom:996.301333pt;}
.y24{bottom:1010.968000pt;}
.h6{height:29.882562pt;}
.h4{height:31.880400pt;}
.h7{height:33.474560pt;}
.h8{height:35.865600pt;}
.h9{height:39.850400pt;}
.h5{height:43.636400pt;}
.h3{height:55.016400pt;}
.h2{height:64.454458pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:153.188000pt;}
.xa{left:165.308000pt;}
.x1{left:168.074667pt;}
.x6{left:176.340000pt;}
.x3{left:190.654667pt;}
.xc{left:198.006667pt;}
.x7{left:225.834667pt;}
.x8{left:299.572000pt;}
.x2{left:347.665333pt;}
.x9{left:353.442667pt;}
.x5{left:363.532000pt;}
.xb{left:377.180000pt;}
.xd{left:409.878667pt;}
}




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