
    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_b12b59121e3b24e1be61f798.woff')format("woff");}.ff1{font-family:ff1;line-height:0.729004;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_cb831bfc45030f6d94299355.woff')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_4a09d979a5af1a8f53ee66cb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_92613d095aabe9f462617ac5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.943359;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_740f33845257763d13bd2ff4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.943359;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_338bc7ed668d0073f2a433f1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_558373c4ed46bd5a6bb1146a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_58d34bbbdbabb6d56c5172c9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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:ff9;src:url('chunks/assets/font_417a081f685b05a40759e424.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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:ffa;src:url('chunks/assets/font_917564cfd808ffca5985cf83.woff')format("woff");}.ffa{font-family:ffa;line-height:1.097168;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:ffb;src:url('chunks/assets/font_b266d9eca8af01abadea32c5.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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:ffc;src:url('chunks/assets/font_eca31778cc97de641467f0ee.woff')format("woff");}.ffc{font-family:ffc;line-height:0.942383;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:ffd;src:url('chunks/assets/font_e16afc4261726a2b2deb270d.woff')format("woff");}.ffd{font-family:ffd;line-height:1.372070;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;}
.ls5{letter-spacing:-1.440000px;}
.ls4{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.600000px;}
.ls22{letter-spacing:-0.552000px;}
.ls6{letter-spacing:-0.516000px;}
.ls18{letter-spacing:-0.504000px;}
.ls2d{letter-spacing:-0.348000px;}
.ls27{letter-spacing:-0.276000px;}
.ls3{letter-spacing:-0.240000px;}
.ls15{letter-spacing:-0.096000px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.060000px;}
.ls1f{letter-spacing:0.096000px;}
.ls16{letter-spacing:0.120000px;}
.ls21{letter-spacing:0.126000px;}
.ls2e{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.240000px;}
.ls19{letter-spacing:0.264000px;}
.ls8{letter-spacing:0.300000px;}
.ls1b{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.378000px;}
.ls2f{letter-spacing:0.444000px;}
.ls0{letter-spacing:0.480000px;}
.ls2a{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.600000px;}
.ls10{letter-spacing:0.660000px;}
.ls20{letter-spacing:0.762000px;}
.ls1e{letter-spacing:0.780000px;}
.ls23{letter-spacing:0.822000px;}
.lsb{letter-spacing:0.828000px;}
.ls28{letter-spacing:0.882000px;}
.ls24{letter-spacing:1.140000px;}
.ls1d{letter-spacing:1.500000px;}
.lsf{letter-spacing:1.800000px;}
.ls32{letter-spacing:3.900000px;}
.ls26{letter-spacing:4.200000px;}
.ls7{letter-spacing:5.580000px;}
.ls31{letter-spacing:6.300000px;}
.ls30{letter-spacing:7.440000px;}
.ls14{letter-spacing:10.200000px;}
.ls1c{letter-spacing:11.400000px;}
.ls11{letter-spacing:13.920000px;}
.ls1a{letter-spacing:15.000000px;}
.ls33{letter-spacing:16.200000px;}
.ls34{letter-spacing:16.260000px;}
.ls17{letter-spacing:23.340000px;}
.lse{letter-spacing:24.600000px;}
.ls29{letter-spacing:26.640000px;}
.ls2c{letter-spacing:29.100000px;}
.ls1{letter-spacing:47.580000px;}
.ls12{letter-spacing:51.120000px;}
.ls25{letter-spacing:53.400000px;}
.ls2b{letter-spacing:68.700000px;}
.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:-72.000000px;}
.ws5{word-spacing:-24.480000px;}
.ws1{word-spacing:-24.240000px;}
.ws2{word-spacing:-23.760000px;}
.ws4{word-spacing:-23.040000px;}
.ws6{word-spacing:-22.800000px;}
.wse{word-spacing:-21.096000px;}
.ws9{word-spacing:-21.000000px;}
.ws10{word-spacing:-20.724000px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.100000px;}
.wsb{word-spacing:-16.878000px;}
.wsf{word-spacing:-16.626000px;}
.wsa{word-spacing:-16.500000px;}
.ws11{word-spacing:-16.152000px;}
.wsd{word-spacing:-15.996000px;}
.ws7{word-spacing:-0.084000px;}
.ws8{word-spacing:0.000000px;}
._43{margin-left:-7.332000px;}
._42{margin-left:-6.234000px;}
._19{margin-left:-5.136000px;}
._a{margin-left:-3.792000px;}
._3{margin-left:-2.376000px;}
._0{margin-left:-1.152000px;}
._2{width:1.296000px;}
._1{width:2.688000px;}
._18{width:3.876000px;}
._16{width:5.268000px;}
._17{width:6.348000px;}
._23{width:7.620000px;}
._e{width:9.300000px;}
._d{width:10.320000px;}
._1f{width:11.784000px;}
._5{width:13.080000px;}
._12{width:14.772000px;}
._13{width:16.014000px;}
._c{width:17.160000px;}
._b{width:18.168000px;}
._21{width:19.302000px;}
._3f{width:21.744000px;}
._8{width:22.824000px;}
._9{width:24.624000px;}
._1b{width:26.184000px;}
._1a{width:27.228000px;}
._34{width:28.368000px;}
._10{width:29.400000px;}
._f{width:30.636000px;}
._2e{width:32.088000px;}
._11{width:33.114000px;}
._1c{width:34.944000px;}
._22{width:36.084000px;}
._27{width:38.028000px;}
._2f{width:39.156000px;}
._15{width:40.482000px;}
._14{width:41.622000px;}
._28{width:42.786000px;}
._2d{width:43.800000px;}
._20{width:44.940000px;}
._6{width:46.872000px;}
._35{width:47.988000px;}
._7{width:49.224000px;}
._37{width:50.238000px;}
._1d{width:51.468000px;}
._1e{width:52.752000px;}
._2b{width:54.348000px;}
._2c{width:55.410000px;}
._29{width:57.306000px;}
._24{width:58.536000px;}
._25{width:59.652000px;}
._26{width:60.768000px;}
._2a{width:62.268000px;}
._30{width:64.416000px;}
._31{width:65.712000px;}
._40{width:67.650000px;}
._41{width:69.312000px;}
._38{width:70.980000px;}
._3c{width:75.240000px;}
._3d{width:76.296000px;}
._33{width:77.916000px;}
._32{width:79.860000px;}
._36{width:82.380000px;}
._3a{width:89.640000px;}
._39{width:91.080000px;}
._3b{width:92.826000px;}
._3e{width:163.068000px;}
._4{width:1422.174000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:42.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:57.037500px;}
.y4{bottom:92.137500px;}
.y89{bottom:120.937500px;}
.y22{bottom:134.137500px;}
.y2d{bottom:138.937500px;}
.y21{bottom:139.537500px;}
.y88{bottom:139.837500px;}
.y2a{bottom:154.530000px;}
.y87{bottom:158.730000px;}
.y29{bottom:159.930000px;}
.y35{bottom:166.545000px;}
.y20{bottom:168.675000px;}
.y34{bottom:171.975000px;}
.y3d{bottom:174.675000px;}
.y2c{bottom:175.275000px;}
.y86{bottom:177.975000px;}
.y3c{bottom:180.075000px;}
.y47{bottom:186.675000px;}
.y28{bottom:189.075000px;}
.y49{bottom:192.075000px;}
.y85{bottom:196.875000px;}
.y33{bottom:198.675000px;}
.y32{bottom:204.075000px;}
.y3b{bottom:207.075000px;}
.y78{bottom:209.175000px;}
.y2b{bottom:211.575000px;}
.y43{bottom:212.475000px;}
.y84{bottom:215.775000px;}
.y48{bottom:221.175000px;}
.y3a{bottom:227.175000px;}
.y39{bottom:232.575000px;}
.y31{bottom:233.175000px;}
.y83{bottom:234.675000px;}
.y60{bottom:239.175000px;}
.y42{bottom:241.575000px;}
.y93{bottom:243.675000px;}
.y5f{bottom:244.575000px;}
.y6a{bottom:246.975000px;}
.y75{bottom:247.275000px;}
.y1f{bottom:247.575000px;}
.y74{bottom:252.675000px;}
.y82{bottom:253.875000px;}
.y53{bottom:259.275000px;}
.y38{bottom:261.675000px;}
.y92{bottom:262.875000px;}
.y91{bottom:268.275000px;}
.y81{bottom:272.775000px;}
.y5e{bottom:273.675000px;}
.y52{bottom:279.675000px;}
.y69{bottom:283.275000px;}
.y1e{bottom:283.875000px;}
.y73{bottom:285.075000px;}
.y90{bottom:290.775000px;}
.y80{bottom:291.675000px;}
.y7f{bottom:297.075000px;}
.y51{bottom:299.775000px;}
.y50{bottom:305.175000px;}
.y8f{bottom:309.675000px;}
.y7e{bottom:310.575000px;}
.y72{bottom:311.775000px;}
.y77{bottom:314.175000px;}
.y8e{bottom:315.075000px;}
.y68{bottom:319.575000px;}
.y1d{bottom:320.175000px;}
.y7d{bottom:329.775000px;}
.y71{bottom:332.175000px;}
.y4f{bottom:334.275000px;}
.y8d{bottom:337.575000px;}
.y7c{bottom:348.720000px;}
.y70{bottom:352.320000px;}
.y67{bottom:355.920000px;}
.y1c{bottom:356.505000px;}
.y8c{bottom:356.820000px;}
.y6f{bottom:357.705000px;}
.y8b{bottom:362.220000px;}
.y30{bottom:364.005000px;}
.y7b{bottom:367.605000px;}
.y7a{bottom:373.005000px;}
.y6e{bottom:386.820000px;}
.y8a{bottom:391.305000px;}
.y66{bottom:391.905000px;}
.y1b{bottom:392.505000px;}
.y37{bottom:400.005000px;}
.y79{bottom:402.120000px;}
.y65{bottom:428.205000px;}
.y1a{bottom:428.820000px;}
.y3f{bottom:436.320000px;}
.y64{bottom:464.505000px;}
.y19{bottom:465.120000px;}
.y44{bottom:472.605000px;}
.y63{bottom:500.820000px;}
.y18{bottom:501.405000px;}
.y41{bottom:508.950000px;}
.y62{bottom:536.850000px;}
.y16{bottom:537.450000px;}
.y17{bottom:544.950000px;}
.y61{bottom:573.150000px;}
.y15{bottom:573.750000px;}
.y76{bottom:581.250000px;}
.y5c{bottom:609.450000px;}
.y14{bottom:610.050000px;}
.y5d{bottom:616.950000px;}
.y27{bottom:617.550000px;}
.y5b{bottom:645.750000px;}
.y13{bottom:646.350000px;}
.y5a{bottom:681.780000px;}
.y12{bottom:682.380000px;}
.y2f{bottom:689.880000px;}
.y59{bottom:718.080000px;}
.y11{bottom:718.695000px;}
.y94{bottom:721.995000px;}
.y58{bottom:754.380000px;}
.y10{bottom:754.980000px;}
.y3e{bottom:762.495000px;}
.y57{bottom:790.695000px;}
.yf{bottom:791.295000px;}
.y40{bottom:798.795000px;}
.y56{bottom:826.695000px;}
.ye{bottom:827.295000px;}
.y4e{bottom:834.795000px;}
.y4d{bottom:863.025000px;}
.yd{bottom:863.625000px;}
.y46{bottom:871.125000px;}
.y4c{bottom:899.325000px;}
.yc{bottom:899.925000px;}
.y6c{bottom:907.425000px;}
.y4b{bottom:935.625000px;}
.yb{bottom:936.225000px;}
.y36{bottom:943.725000px;}
.ya{bottom:971.625000px;}
.y26{bottom:972.225000px;}
.y4a{bottom:1007.925000px;}
.y9{bottom:1008.525000px;}
.y2e{bottom:1016.070000px;}
.y8{bottom:1044.255000px;}
.y25{bottom:1044.870000px;}
.y6b{bottom:1051.755000px;}
.y55{bottom:1052.355000px;}
.y7{bottom:1080.255000px;}
.y24{bottom:1080.870000px;}
.y45{bottom:1088.370000px;}
.y6{bottom:1116.570000px;}
.y23{bottom:1117.155000px;}
.y6d{bottom:1124.070000px;}
.y54{bottom:1124.655000px;}
.y3{bottom:1154.370000px;}
.y2{bottom:1190.100000px;}
.y1{bottom:1226.400000px;}
.hc{height:41.220703px;}
.h4{height:47.340820px;}
.ha{height:52.998047px;}
.h10{height:54.421875px;}
.h5{height:55.623047px;}
.he{height:58.168945px;}
.hf{height:59.267578px;}
.hd{height:64.775391px;}
.hb{height:65.645508px;}
.h12{height:65.838867px;}
.h2{height:68.859375px;}
.h3{height:72.562500px;}
.h8{height:74.033203px;}
.h7{height:82.441406px;}
.h11{height:83.794922px;}
.h6{height:84.656250px;}
.h9{height:1262.662335px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:893.062500px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.537500px;}
.x5{left:135.037500px;}
.x2f{left:140.137500px;}
.xe{left:148.800000px;}
.xf{left:154.245000px;}
.x1{left:157.830000px;}
.x26{left:159.630000px;}
.x6{left:160.830000px;}
.x1d{left:163.230000px;}
.x4a{left:165.030000px;}
.x28{left:167.130000px;}
.x7{left:170.130000px;}
.x48{left:175.192500px;}
.x51{left:184.537500px;}
.x3d{left:187.275000px;}
.x49{left:189.075000px;}
.x12{left:190.575000px;}
.x52{left:198.375000px;}
.x5a{left:211.275000px;}
.x10{left:221.437500px;}
.x31{left:223.575000px;}
.x11{left:228.375000px;}
.x3a{left:233.137500px;}
.x35{left:238.275000px;}
.x3b{left:246.975000px;}
.x3c{left:251.175000px;}
.x40{left:252.675000px;}
.x20{left:259.837500px;}
.x9{left:262.275000px;}
.x4{left:263.775000px;}
.x21{left:266.775000px;}
.x2e{left:269.175000px;}
.x3e{left:278.137500px;}
.x3f{left:291.975000px;}
.x36{left:297.682500px;}
.x37{left:311.520000px;}
.x2c{left:313.582500px;}
.x8{left:326.520000px;}
.x30{left:328.020000px;}
.x38{left:336.382500px;}
.x50{left:339.720000px;}
.xd{left:343.620000px;}
.x4c{left:350.467500px;}
.x39{left:352.020000px;}
.x4d{left:364.320000px;}
.x4e{left:370.882500px;}
.x5b{left:376.582500px;}
.x4f{left:384.720000px;}
.x5c{left:390.405000px;}
.x17{left:394.582500px;}
.x18{left:401.505000px;}
.xa{left:404.820000px;}
.x32{left:424.950000px;}
.x5d{left:436.612500px;}
.x53{left:447.112500px;}
.x5e{left:450.450000px;}
.x29{left:457.612500px;}
.x54{left:460.950000px;}
.x2a{left:471.450000px;}
.x1e{left:487.912500px;}
.x1f{left:494.850000px;}
.x2d{left:510.150000px;}
.x41{left:524.850000px;}
.x24{left:578.557500px;}
.x44{left:588.157500px;}
.x25{left:592.380000px;}
.x45{left:601.995000px;}
.x2{left:614.880000px;}
.x1b{left:644.557500px;}
.x1c{left:653.280000px;}
.x59{left:664.987500px;}
.x33{left:678.187500px;}
.x57{left:679.987500px;}
.x2b{left:682.687500px;}
.x34{left:692.025000px;}
.x58{left:693.825000px;}
.x13{left:696.187500px;}
.x14{left:703.125000px;}
.x22{left:705.787500px;}
.x27{left:710.325000px;}
.x55{left:716.625000px;}
.x46{left:717.825000px;}
.x23{left:719.625000px;}
.x15{left:721.087500px;}
.x16{left:728.025000px;}
.x42{left:762.787500px;}
.x4b{left:768.487500px;}
.x43{left:776.670000px;}
.xb{left:781.432500px;}
.xc{left:788.370000px;}
.x47{left:807.532500px;}
.x56{left:809.617500px;}
.x19{left:817.417500px;}
.x1a{left:824.370000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.280000pt;}
.ls4{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls22{letter-spacing:-0.490667pt;}
.ls6{letter-spacing:-0.458667pt;}
.ls18{letter-spacing:-0.448000pt;}
.ls2d{letter-spacing:-0.309333pt;}
.ls27{letter-spacing:-0.245333pt;}
.ls3{letter-spacing:-0.213333pt;}
.ls15{letter-spacing:-0.085333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.053333pt;}
.ls1f{letter-spacing:0.085333pt;}
.ls16{letter-spacing:0.106667pt;}
.ls21{letter-spacing:0.112000pt;}
.ls2e{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.213333pt;}
.ls19{letter-spacing:0.234667pt;}
.ls8{letter-spacing:0.266667pt;}
.ls1b{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.336000pt;}
.ls2f{letter-spacing:0.394667pt;}
.ls0{letter-spacing:0.426667pt;}
.ls2a{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.533333pt;}
.ls10{letter-spacing:0.586667pt;}
.ls20{letter-spacing:0.677333pt;}
.ls1e{letter-spacing:0.693333pt;}
.ls23{letter-spacing:0.730667pt;}
.lsb{letter-spacing:0.736000pt;}
.ls28{letter-spacing:0.784000pt;}
.ls24{letter-spacing:1.013333pt;}
.ls1d{letter-spacing:1.333333pt;}
.lsf{letter-spacing:1.600000pt;}
.ls32{letter-spacing:3.466667pt;}
.ls26{letter-spacing:3.733333pt;}
.ls7{letter-spacing:4.960000pt;}
.ls31{letter-spacing:5.600000pt;}
.ls30{letter-spacing:6.613333pt;}
.ls14{letter-spacing:9.066667pt;}
.ls1c{letter-spacing:10.133333pt;}
.ls11{letter-spacing:12.373333pt;}
.ls1a{letter-spacing:13.333333pt;}
.ls33{letter-spacing:14.400000pt;}
.ls34{letter-spacing:14.453333pt;}
.ls17{letter-spacing:20.746667pt;}
.lse{letter-spacing:21.866667pt;}
.ls29{letter-spacing:23.680000pt;}
.ls2c{letter-spacing:25.866667pt;}
.ls1{letter-spacing:42.293333pt;}
.ls12{letter-spacing:45.440000pt;}
.ls25{letter-spacing:47.466667pt;}
.ls2b{letter-spacing:61.066667pt;}
.ws3{word-spacing:-64.000000pt;}
.ws5{word-spacing:-21.760000pt;}
.ws1{word-spacing:-21.546667pt;}
.ws2{word-spacing:-21.120000pt;}
.ws4{word-spacing:-20.480000pt;}
.ws6{word-spacing:-20.266667pt;}
.wse{word-spacing:-18.752000pt;}
.ws9{word-spacing:-18.666667pt;}
.ws10{word-spacing:-18.421333pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.200000pt;}
.wsb{word-spacing:-15.002667pt;}
.wsf{word-spacing:-14.778667pt;}
.wsa{word-spacing:-14.666667pt;}
.ws11{word-spacing:-14.357333pt;}
.wsd{word-spacing:-14.218667pt;}
.ws7{word-spacing:-0.074667pt;}
.ws8{word-spacing:0.000000pt;}
._43{margin-left:-6.517333pt;}
._42{margin-left:-5.541333pt;}
._19{margin-left:-4.565333pt;}
._a{margin-left:-3.370667pt;}
._3{margin-left:-2.112000pt;}
._0{margin-left:-1.024000pt;}
._2{width:1.152000pt;}
._1{width:2.389333pt;}
._18{width:3.445333pt;}
._16{width:4.682667pt;}
._17{width:5.642667pt;}
._23{width:6.773333pt;}
._e{width:8.266667pt;}
._d{width:9.173333pt;}
._1f{width:10.474667pt;}
._5{width:11.626667pt;}
._12{width:13.130667pt;}
._13{width:14.234667pt;}
._c{width:15.253333pt;}
._b{width:16.149333pt;}
._21{width:17.157333pt;}
._3f{width:19.328000pt;}
._8{width:20.288000pt;}
._9{width:21.888000pt;}
._1b{width:23.274667pt;}
._1a{width:24.202667pt;}
._34{width:25.216000pt;}
._10{width:26.133333pt;}
._f{width:27.232000pt;}
._2e{width:28.522667pt;}
._11{width:29.434667pt;}
._1c{width:31.061333pt;}
._22{width:32.074667pt;}
._27{width:33.802667pt;}
._2f{width:34.805333pt;}
._15{width:35.984000pt;}
._14{width:36.997333pt;}
._28{width:38.032000pt;}
._2d{width:38.933333pt;}
._20{width:39.946667pt;}
._6{width:41.664000pt;}
._35{width:42.656000pt;}
._7{width:43.754667pt;}
._37{width:44.656000pt;}
._1d{width:45.749333pt;}
._1e{width:46.890667pt;}
._2b{width:48.309333pt;}
._2c{width:49.253333pt;}
._29{width:50.938667pt;}
._24{width:52.032000pt;}
._25{width:53.024000pt;}
._26{width:54.016000pt;}
._2a{width:55.349333pt;}
._30{width:57.258667pt;}
._31{width:58.410667pt;}
._40{width:60.133333pt;}
._41{width:61.610667pt;}
._38{width:63.093333pt;}
._3c{width:66.880000pt;}
._3d{width:67.818667pt;}
._33{width:69.258667pt;}
._32{width:70.986667pt;}
._36{width:73.226667pt;}
._3a{width:79.680000pt;}
._39{width:80.960000pt;}
._3b{width:82.512000pt;}
._3e{width:144.949333pt;}
._4{width:1264.154667pt;}
.fs5{font-size:37.333333pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:50.700000pt;}
.y4{bottom:81.900000pt;}
.y89{bottom:107.500000pt;}
.y22{bottom:119.233333pt;}
.y2d{bottom:123.500000pt;}
.y21{bottom:124.033333pt;}
.y88{bottom:124.300000pt;}
.y2a{bottom:137.360000pt;}
.y87{bottom:141.093333pt;}
.y29{bottom:142.160000pt;}
.y35{bottom:148.040000pt;}
.y20{bottom:149.933333pt;}
.y34{bottom:152.866667pt;}
.y3d{bottom:155.266667pt;}
.y2c{bottom:155.800000pt;}
.y86{bottom:158.200000pt;}
.y3c{bottom:160.066667pt;}
.y47{bottom:165.933333pt;}
.y28{bottom:168.066667pt;}
.y49{bottom:170.733333pt;}
.y85{bottom:175.000000pt;}
.y33{bottom:176.600000pt;}
.y32{bottom:181.400000pt;}
.y3b{bottom:184.066667pt;}
.y78{bottom:185.933333pt;}
.y2b{bottom:188.066667pt;}
.y43{bottom:188.866667pt;}
.y84{bottom:191.800000pt;}
.y48{bottom:196.600000pt;}
.y3a{bottom:201.933333pt;}
.y39{bottom:206.733333pt;}
.y31{bottom:207.266667pt;}
.y83{bottom:208.600000pt;}
.y60{bottom:212.600000pt;}
.y42{bottom:214.733333pt;}
.y93{bottom:216.600000pt;}
.y5f{bottom:217.400000pt;}
.y6a{bottom:219.533333pt;}
.y75{bottom:219.800000pt;}
.y1f{bottom:220.066667pt;}
.y74{bottom:224.600000pt;}
.y82{bottom:225.666667pt;}
.y53{bottom:230.466667pt;}
.y38{bottom:232.600000pt;}
.y92{bottom:233.666667pt;}
.y91{bottom:238.466667pt;}
.y81{bottom:242.466667pt;}
.y5e{bottom:243.266667pt;}
.y52{bottom:248.600000pt;}
.y69{bottom:251.800000pt;}
.y1e{bottom:252.333333pt;}
.y73{bottom:253.400000pt;}
.y90{bottom:258.466667pt;}
.y80{bottom:259.266667pt;}
.y7f{bottom:264.066667pt;}
.y51{bottom:266.466667pt;}
.y50{bottom:271.266667pt;}
.y8f{bottom:275.266667pt;}
.y7e{bottom:276.066667pt;}
.y72{bottom:277.133333pt;}
.y77{bottom:279.266667pt;}
.y8e{bottom:280.066667pt;}
.y68{bottom:284.066667pt;}
.y1d{bottom:284.600000pt;}
.y7d{bottom:293.133333pt;}
.y71{bottom:295.266667pt;}
.y4f{bottom:297.133333pt;}
.y8d{bottom:300.066667pt;}
.y7c{bottom:309.973333pt;}
.y70{bottom:313.173333pt;}
.y67{bottom:316.373333pt;}
.y1c{bottom:316.893333pt;}
.y8c{bottom:317.173333pt;}
.y6f{bottom:317.960000pt;}
.y8b{bottom:321.973333pt;}
.y30{bottom:323.560000pt;}
.y7b{bottom:326.760000pt;}
.y7a{bottom:331.560000pt;}
.y6e{bottom:343.840000pt;}
.y8a{bottom:347.826667pt;}
.y66{bottom:348.360000pt;}
.y1b{bottom:348.893333pt;}
.y37{bottom:355.560000pt;}
.y79{bottom:357.440000pt;}
.y65{bottom:380.626667pt;}
.y1a{bottom:381.173333pt;}
.y3f{bottom:387.840000pt;}
.y64{bottom:412.893333pt;}
.y19{bottom:413.440000pt;}
.y44{bottom:420.093333pt;}
.y63{bottom:445.173333pt;}
.y18{bottom:445.693333pt;}
.y41{bottom:452.400000pt;}
.y62{bottom:477.200000pt;}
.y16{bottom:477.733333pt;}
.y17{bottom:484.400000pt;}
.y61{bottom:509.466667pt;}
.y15{bottom:510.000000pt;}
.y76{bottom:516.666667pt;}
.y5c{bottom:541.733333pt;}
.y14{bottom:542.266667pt;}
.y5d{bottom:548.400000pt;}
.y27{bottom:548.933333pt;}
.y5b{bottom:574.000000pt;}
.y13{bottom:574.533333pt;}
.y5a{bottom:606.026667pt;}
.y12{bottom:606.560000pt;}
.y2f{bottom:613.226667pt;}
.y59{bottom:638.293333pt;}
.y11{bottom:638.840000pt;}
.y94{bottom:641.773333pt;}
.y58{bottom:670.560000pt;}
.y10{bottom:671.093333pt;}
.y3e{bottom:677.773333pt;}
.y57{bottom:702.840000pt;}
.yf{bottom:703.373333pt;}
.y40{bottom:710.040000pt;}
.y56{bottom:734.840000pt;}
.ye{bottom:735.373333pt;}
.y4e{bottom:742.040000pt;}
.y4d{bottom:767.133333pt;}
.yd{bottom:767.666667pt;}
.y46{bottom:774.333333pt;}
.y4c{bottom:799.400000pt;}
.yc{bottom:799.933333pt;}
.y6c{bottom:806.600000pt;}
.y4b{bottom:831.666667pt;}
.yb{bottom:832.200000pt;}
.y36{bottom:838.866667pt;}
.ya{bottom:863.666667pt;}
.y26{bottom:864.200000pt;}
.y4a{bottom:895.933333pt;}
.y9{bottom:896.466667pt;}
.y2e{bottom:903.173333pt;}
.y8{bottom:928.226667pt;}
.y25{bottom:928.773333pt;}
.y6b{bottom:934.893333pt;}
.y55{bottom:935.426667pt;}
.y7{bottom:960.226667pt;}
.y24{bottom:960.773333pt;}
.y45{bottom:967.440000pt;}
.y6{bottom:992.506667pt;}
.y23{bottom:993.026667pt;}
.y6d{bottom:999.173333pt;}
.y54{bottom:999.693333pt;}
.y3{bottom:1026.106667pt;}
.y2{bottom:1057.866667pt;}
.y1{bottom:1090.133333pt;}
.hc{height:36.640625pt;}
.h4{height:42.080729pt;}
.ha{height:47.109375pt;}
.h10{height:48.375000pt;}
.h5{height:49.442708pt;}
.he{height:51.705729pt;}
.hf{height:52.682292pt;}
.hd{height:57.578125pt;}
.hb{height:58.351562pt;}
.h12{height:58.523438pt;}
.h2{height:61.208333pt;}
.h3{height:64.500000pt;}
.h8{height:65.807292pt;}
.h7{height:73.281250pt;}
.h11{height:74.484375pt;}
.h6{height:75.250000pt;}
.h9{height:1122.366520pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.833333pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.366667pt;}
.x5{left:120.033333pt;}
.x2f{left:124.566667pt;}
.xe{left:132.266667pt;}
.xf{left:137.106667pt;}
.x1{left:140.293333pt;}
.x26{left:141.893333pt;}
.x6{left:142.960000pt;}
.x1d{left:145.093333pt;}
.x4a{left:146.693333pt;}
.x28{left:148.560000pt;}
.x7{left:151.226667pt;}
.x48{left:155.726667pt;}
.x51{left:164.033333pt;}
.x3d{left:166.466667pt;}
.x49{left:168.066667pt;}
.x12{left:169.400000pt;}
.x52{left:176.333333pt;}
.x5a{left:187.800000pt;}
.x10{left:196.833333pt;}
.x31{left:198.733333pt;}
.x11{left:203.000000pt;}
.x3a{left:207.233333pt;}
.x35{left:211.800000pt;}
.x3b{left:219.533333pt;}
.x3c{left:223.266667pt;}
.x40{left:224.600000pt;}
.x20{left:230.966667pt;}
.x9{left:233.133333pt;}
.x4{left:234.466667pt;}
.x21{left:237.133333pt;}
.x2e{left:239.266667pt;}
.x3e{left:247.233333pt;}
.x3f{left:259.533333pt;}
.x36{left:264.606667pt;}
.x37{left:276.906667pt;}
.x2c{left:278.740000pt;}
.x8{left:290.240000pt;}
.x30{left:291.573333pt;}
.x38{left:299.006667pt;}
.x50{left:301.973333pt;}
.xd{left:305.440000pt;}
.x4c{left:311.526667pt;}
.x39{left:312.906667pt;}
.x4d{left:323.840000pt;}
.x4e{left:329.673333pt;}
.x5b{left:334.740000pt;}
.x4f{left:341.973333pt;}
.x5c{left:347.026667pt;}
.x17{left:350.740000pt;}
.x18{left:356.893333pt;}
.xa{left:359.840000pt;}
.x32{left:377.733333pt;}
.x5d{left:388.100000pt;}
.x53{left:397.433333pt;}
.x5e{left:400.400000pt;}
.x29{left:406.766667pt;}
.x54{left:409.733333pt;}
.x2a{left:419.066667pt;}
.x1e{left:433.700000pt;}
.x1f{left:439.866667pt;}
.x2d{left:453.466667pt;}
.x41{left:466.533333pt;}
.x24{left:514.273333pt;}
.x44{left:522.806667pt;}
.x25{left:526.560000pt;}
.x45{left:535.106667pt;}
.x2{left:546.560000pt;}
.x1b{left:572.940000pt;}
.x1c{left:580.693333pt;}
.x59{left:591.100000pt;}
.x33{left:602.833333pt;}
.x57{left:604.433333pt;}
.x2b{left:606.833333pt;}
.x34{left:615.133333pt;}
.x58{left:616.733333pt;}
.x13{left:618.833333pt;}
.x14{left:625.000000pt;}
.x22{left:627.366667pt;}
.x27{left:631.400000pt;}
.x55{left:637.000000pt;}
.x46{left:638.066667pt;}
.x23{left:639.666667pt;}
.x15{left:640.966667pt;}
.x16{left:647.133333pt;}
.x42{left:678.033333pt;}
.x4b{left:683.100000pt;}
.x43{left:690.373333pt;}
.xb{left:694.606667pt;}
.xc{left:700.773333pt;}
.x47{left:717.806667pt;}
.x56{left:719.660000pt;}
.x19{left:726.593333pt;}
.x1a{left:732.773333pt;}
}




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