
    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_5d0ed4ef00f445560971528e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.929000;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_c672e08bc4772b4381b3830f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093750;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_61cfba6c409d73ba4ff3be29.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.918000;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_4bba5135273b6db659925c4c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.094238;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_dc017a255b68bcfe6d7e7695.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000011px;}
.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;}
}
.ws0{word-spacing:-18.703125px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-5.114323px;}
._1{margin-left:-3.373074px;}
._0{margin-left:-1.474304px;}
._4{width:8.296875px;}
._2{width:44.507812px;}
.fc2{color:rgb(0,80,111);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(17,85,204);}
.fc0{color:rgb(200,55,55);}
.fs1{font-size:59.999999px;}
.fs2{font-size:66.000002px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:96.000003px;}
.fs0{font-size:114.000003px;}
.y0{bottom:0.000000px;}
.y1c{bottom:74.273442px;}
.y1b{bottom:113.786126px;}
.y36{bottom:156.507935px;}
.y53{bottom:156.591062px;}
.y35{bottom:184.697574px;}
.y52{bottom:184.780512px;}
.y1a{bottom:209.648157px;}
.y34{bottom:212.887212px;}
.y51{bottom:227.970342px;}
.y6a{bottom:229.488642px;}
.y33{bottom:241.076667px;}
.y19{bottom:252.837893px;}
.y50{bottom:256.160162px;}
.y32{bottom:269.266482px;}
.y69{bottom:272.678472px;}
.y18{bottom:281.027345px;}
.y4f{bottom:284.349612px;}
.y68{bottom:300.867919px;}
.y17{bottom:309.216984px;}
.y31{bottom:312.625664px;}
.y4e{bottom:327.708989px;}
.y67{bottom:329.057377px;}
.y16{bottom:337.406622px;}
.y66{bottom:357.247197px;}
.y30{bottom:360.745604px;}
.y4d{bottom:375.659177px;}
.y15{bottom:380.596257px;}
.y65{bottom:400.437016px;}
.y4c{bottom:403.848627px;}
.y2f{bottom:408.695987px;}
.y14{bottom:408.785802px;}
.y64{bottom:428.626467px;}
.y4b{bottom:432.038457px;}
.y2e{bottom:436.885437px;}
.y13{bottom:436.975437px;}
.y4a{bottom:460.227905px;}
.y12{bottom:465.165072px;}
.y63{bottom:471.985469px;}
.y2d{bottom:480.075252px;}
.y49{bottom:488.417732px;}
.y2c{bottom:508.264707px;}
.y11{bottom:508.354611px;}
.y48{bottom:516.607182px;}
.y62{bottom:520.105589px;}
.y10{bottom:536.544156px;}
.y47{bottom:544.796637px;}
.y2b{bottom:551.623904px;}
.yf{bottom:564.733795px;}
.y61{bottom:568.056140px;}
.y46{bottom:572.986456px;}
.ye{bottom:592.923434px;}
.y60{bottom:596.245599px;}
.y2a{bottom:599.744024px;}
.y45{bottom:601.175907px;}
.yd{bottom:621.113022px;}
.y5f{bottom:624.435049px;}
.y44{bottom:629.365542px;}
.y29{bottom:647.694218px;}
.y5e{bottom:652.624508px;}
.y43{bottom:657.555182px;}
.yc{bottom:664.302613px;}
.y28{bottom:675.884037px;}
.y5d{bottom:680.814320px;}
.y42{bottom:685.744632px;}
.yb{bottom:692.492252px;}
.y27{bottom:704.073489px;}
.y5c{bottom:709.004147px;}
.y41{bottom:713.934447px;}
.ya{bottom:720.681789px;}
.y26{bottom:732.263127px;}
.y5b{bottom:737.193597px;}
.y40{bottom:742.123902px;}
.y9{bottom:748.871427px;}
.y3f{bottom:770.313537px;}
.y25{bottom:775.622504px;}
.y5a{bottom:780.383059px;}
.y8{bottom:792.061022px;}
.y3e{bottom:798.503172px;}
.y59{bottom:808.572878px;}
.y7{bottom:820.250610px;}
.y24{bottom:823.742429px;}
.y3d{bottom:826.692627px;}
.y58{bottom:836.762330px;}
.y6{bottom:848.440198px;}
.y3c{bottom:854.882262px;}
.y57{bottom:864.952157px;}
.y23{bottom:871.692811px;}
.y5{bottom:876.629819px;}
.y56{bottom:893.141607px;}
.y22{bottom:899.882262px;}
.y3b{bottom:903.866638px;}
.y4{bottom:904.819407px;}
.y21{bottom:928.071990px;}
.y55{bottom:936.500975px;}
.y3{bottom:948.178664px;}
.y20{bottom:956.261535px;}
.y3a{bottom:976.191834px;}
.y1f{bottom:984.451083px;}
.y54{bottom:984.620726px;}
.y2{bottom:994.637284px;}
.y39{bottom:1004.381652px;}
.y1e{bottom:1012.640808px;}
.y38{bottom:1032.571291px;}
.y1{bottom:1036.499998px;}
.y1d{bottom:1055.999999px;}
.y37{bottom:1060.760742px;}
.h2{height:56.299806px;}
.h4{height:61.417969px;}
.h5{height:61.488281px;}
.h3{height:68.160002px;}
.h1{height:83.220002px;}
.h6{height:148.025385px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x3{left:135.000000px;}
.x5{left:155.250000px;}
.x4{left:162.000000px;}
.x2{left:459.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000010pt;}
.ws0{word-spacing:-16.625000pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-4.546065pt;}
._1{margin-left:-2.998288pt;}
._0{margin-left:-1.310492pt;}
._4{width:7.375000pt;}
._2{width:39.562500pt;}
.fs1{font-size:53.333332pt;}
.fs2{font-size:58.666668pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:85.333336pt;}
.fs0{font-size:101.333336pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:66.020837pt;}
.y1b{bottom:101.143223pt;}
.y36{bottom:139.118164pt;}
.y53{bottom:139.192055pt;}
.y35{bottom:164.175621pt;}
.y52{bottom:164.249344pt;}
.y1a{bottom:186.353917pt;}
.y34{bottom:189.233077pt;}
.y51{bottom:202.640304pt;}
.y6a{bottom:203.989904pt;}
.y33{bottom:214.290370pt;}
.y19{bottom:224.744794pt;}
.y50{bottom:227.697921pt;}
.y32{bottom:239.347984pt;}
.y69{bottom:242.380864pt;}
.y18{bottom:249.802084pt;}
.y4f{bottom:252.755210pt;}
.y68{bottom:267.438151pt;}
.y17{bottom:274.859541pt;}
.y31{bottom:277.889479pt;}
.y4e{bottom:291.296879pt;}
.y67{bottom:292.495447pt;}
.y16{bottom:299.916997pt;}
.y66{bottom:317.553064pt;}
.y30{bottom:320.662759pt;}
.y4d{bottom:333.919268pt;}
.y15{bottom:338.307784pt;}
.y65{bottom:355.944015pt;}
.y4c{bottom:358.976557pt;}
.y2f{bottom:363.285321pt;}
.y14{bottom:363.365157pt;}
.y64{bottom:381.001304pt;}
.y4b{bottom:384.034184pt;}
.y2e{bottom:388.342610pt;}
.y13{bottom:388.422610pt;}
.y4a{bottom:409.091471pt;}
.y12{bottom:413.480064pt;}
.y63{bottom:419.542639pt;}
.y2d{bottom:426.733557pt;}
.y49{bottom:434.149095pt;}
.y2c{bottom:451.790850pt;}
.y11{bottom:451.870766pt;}
.y48{bottom:459.206384pt;}
.y62{bottom:462.316079pt;}
.y10{bottom:476.928139pt;}
.y47{bottom:484.263677pt;}
.y2b{bottom:490.332359pt;}
.yf{bottom:501.985596pt;}
.y61{bottom:504.938791pt;}
.y46{bottom:509.321295pt;}
.ye{bottom:527.043053pt;}
.y60{bottom:529.996088pt;}
.y2a{bottom:533.105799pt;}
.y45{bottom:534.378584pt;}
.yd{bottom:552.100464pt;}
.y5f{bottom:555.053377pt;}
.y44{bottom:559.436037pt;}
.y29{bottom:575.728194pt;}
.y5e{bottom:580.110674pt;}
.y43{bottom:584.493495pt;}
.yc{bottom:590.491211pt;}
.y28{bottom:600.785811pt;}
.y5d{bottom:605.168284pt;}
.y42{bottom:609.550784pt;}
.yb{bottom:615.548668pt;}
.y27{bottom:625.843101pt;}
.y5c{bottom:630.225908pt;}
.y41{bottom:634.608397pt;}
.ya{bottom:640.606034pt;}
.y26{bottom:650.900557pt;}
.y5b{bottom:655.283197pt;}
.y40{bottom:659.665690pt;}
.y9{bottom:665.663490pt;}
.y3f{bottom:684.723144pt;}
.y25{bottom:689.442226pt;}
.y5a{bottom:693.673830pt;}
.y8{bottom:704.054242pt;}
.y3e{bottom:709.780597pt;}
.y59{bottom:718.731447pt;}
.y7{bottom:729.111653pt;}
.y24{bottom:732.215493pt;}
.y3d{bottom:734.837890pt;}
.y58{bottom:743.788737pt;}
.y6{bottom:754.169065pt;}
.y3c{bottom:759.895344pt;}
.y57{bottom:768.846361pt;}
.y23{bottom:774.838055pt;}
.y5{bottom:779.226506pt;}
.y56{bottom:793.903650pt;}
.y22{bottom:799.895344pt;}
.y3b{bottom:803.437012pt;}
.y4{bottom:804.283917pt;}
.y21{bottom:824.952880pt;}
.y55{bottom:832.445311pt;}
.y3{bottom:842.825479pt;}
.y20{bottom:850.010253pt;}
.y3a{bottom:867.726074pt;}
.y1f{bottom:875.067629pt;}
.y54{bottom:875.218423pt;}
.y2{bottom:884.122031pt;}
.y39{bottom:892.783691pt;}
.y1e{bottom:900.125162pt;}
.y38{bottom:917.841148pt;}
.y1{bottom:921.333332pt;}
.y1d{bottom:938.666666pt;}
.y37{bottom:942.898437pt;}
.h2{height:50.044272pt;}
.h4{height:54.593750pt;}
.h5{height:54.656250pt;}
.h3{height:60.586669pt;}
.h1{height:73.973335pt;}
.h6{height:131.578120pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x3{left:120.000000pt;}
.x5{left:138.000000pt;}
.x4{left:144.000000pt;}
.x2{left:408.000000pt;}
}




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