
    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_8eba8e5318694ac5e53a3266.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c8f3c2cc9f0570ee9ab6cb38.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0d6d1258aef42d603ca22edb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.923340;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_00bcc7d925a91b5bce85e415.woff2')format("woff");}.ff4{font-family:ff4;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.900000px;}
.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:-18.144000px;}
.ws4{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:0.000000px;}
._20{margin-left:-5.264640px;}
._c{margin-left:-4.173120px;}
._6{margin-left:-2.302560px;}
._1{margin-left:-1.258560px;}
._0{width:1.434240px;}
._7{width:3.072960px;}
._15{width:4.402560px;}
._12{width:5.639040px;}
._4{width:6.690240px;}
._17{width:7.807680px;}
._d{width:8.809920px;}
._13{width:9.812160px;}
._18{width:11.667360px;}
._b{width:13.645440px;}
._a{width:14.771520px;}
._10{width:15.894720px;}
._16{width:16.937280px;}
._5{width:18.414720px;}
._1b{width:19.514400px;}
._14{width:20.592000px;}
._19{width:21.744000px;}
._1e{width:22.896000px;}
._8{width:24.177600px;}
._9{width:26.006400px;}
._1c{width:27.400320px;}
._1d{width:28.903680px;}
._11{width:30.024000px;}
._1f{width:32.034240px;}
._1a{width:33.310080px;}
._2{width:34.908480px;}
._3{width:36.233280px;}
._e{width:38.304000px;}
._f{width:39.384000px;}
._21{width:40.968000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:56.700000px;}
.ya0{bottom:112.860000px;}
.y85{bottom:116.460000px;}
.y161{bottom:117.540000px;}
.yd2{bottom:118.440000px;}
.y2c{bottom:121.860000px;}
.y10a{bottom:122.040000px;}
.ye6{bottom:123.660000px;}
.y58{bottom:127.800000px;}
.y72{bottom:127.980000px;}
.y9f{bottom:133.560000px;}
.y84{bottom:137.160000px;}
.y160{bottom:138.240000px;}
.yd1{bottom:139.140000px;}
.y2b{bottom:142.560000px;}
.y109{bottom:142.740000px;}
.y138{bottom:143.460000px;}
.ye5{bottom:144.360000px;}
.y57{bottom:148.500000px;}
.y9e{bottom:154.260000px;}
.y83{bottom:157.860000px;}
.y15f{bottom:158.940000px;}
.yd0{bottom:159.840000px;}
.y2a{bottom:163.260000px;}
.y108{bottom:163.440000px;}
.ye4{bottom:165.060000px;}
.y56{bottom:169.200000px;}
.y9d{bottom:174.960000px;}
.y71{bottom:178.560000px;}
.y137{bottom:179.280000px;}
.ycf{bottom:180.540000px;}
.y29{bottom:183.960000px;}
.y107{bottom:184.140000px;}
.ye3{bottom:193.500000px;}
.y82{bottom:193.680000px;}
.y15e{bottom:194.790000px;}
.y9c{bottom:195.690000px;}
.y70{bottom:199.290000px;}
.y136{bottom:200.010000px;}
.yce{bottom:201.270000px;}
.y55{bottom:204.870000px;}
.y81{bottom:214.410000px;}
.y15d{bottom:215.490000px;}
.y9b{bottom:216.390000px;}
.y28{bottom:219.630000px;}
.y106{bottom:219.810000px;}
.y6f{bottom:219.990000px;}
.y121{bottom:221.970000px;}
.y54{bottom:225.570000px;}
.y80{bottom:235.110000px;}
.y135{bottom:235.650000px;}
.ye2{bottom:236.730000px;}
.yb3{bottom:237.090000px;}
.y27{bottom:240.330000px;}
.y105{bottom:240.510000px;}
.y6e{bottom:240.690000px;}
.y53{bottom:246.270000px;}
.y15c{bottom:251.130000px;}
.y9a{bottom:252.030000px;}
.y7f{bottom:255.810000px;}
.ye1{bottom:257.430000px;}
.yb2{bottom:257.790000px;}
.y26{bottom:261.030000px;}
.y104{bottom:261.210000px;}
.y6d{bottom:261.390000px;}
.y52{bottom:266.970000px;}
.y134{bottom:271.290000px;}
.y15b{bottom:271.830000px;}
.y99{bottom:272.730000px;}
.y7e{bottom:276.510000px;}
.ye0{bottom:278.130000px;}
.yb1{bottom:278.490000px;}
.y25{bottom:281.730000px;}
.y103{bottom:281.910000px;}
.y6c{bottom:282.090000px;}
.y51{bottom:287.670000px;}
.y133{bottom:291.990000px;}
.y98{bottom:293.430000px;}
.yb4{bottom:297.210000px;}
.ydf{bottom:298.830000px;}
.yb0{bottom:299.190000px;}
.y24{bottom:302.430000px;}
.y102{bottom:302.610000px;}
.y15a{bottom:307.470000px;}
.y50{bottom:308.370000px;}
.y176{bottom:310.710000px;}
.y7d{bottom:312.150000px;}
.y132{bottom:312.690000px;}
.y97{bottom:314.130000px;}
.y6b{bottom:317.910000px;}
.yde{bottom:319.530000px;}
.ycd{bottom:319.890000px;}
.y23{bottom:323.130000px;}
.y101{bottom:323.310000px;}
.y159{bottom:328.170000px;}
.y4f{bottom:329.070000px;}
.yaf{bottom:329.250000px;}
.y175{bottom:331.410000px;}
.y7c{bottom:332.850000px;}
.y131{bottom:333.390000px;}
.y96{bottom:334.830000px;}
.y6a{bottom:338.610000px;}
.ydd{bottom:340.230000px;}
.ycc{bottom:340.590000px;}
.y22{bottom:343.830000px;}
.y100{bottom:344.010000px;}
.y174{bottom:352.110000px;}
.y7b{bottom:353.550000px;}
.y95{bottom:355.530000px;}
.y4e{bottom:359.310000px;}
.ydc{bottom:360.930000px;}
.y120{bottom:361.110000px;}
.y158{bottom:363.810000px;}
.yff{bottom:364.710000px;}
.y130{bottom:369.210000px;}
.y173{bottom:372.810000px;}
.y7a{bottom:374.250000px;}
.ycb{bottom:376.230000px;}
.y21{bottom:379.650000px;}
.y69{bottom:380.010000px;}
.y157{bottom:384.510000px;}
.yfe{bottom:385.410000px;}
.y94{bottom:391.170000px;}
.y79{bottom:394.950000px;}
.ydb{bottom:396.750000px;}
.yca{bottom:396.930000px;}
.y20{bottom:400.350000px;}
.y68{bottom:400.710000px;}
.y12f{bottom:404.850000px;}
.y156{bottom:405.210000px;}
.yfd{bottom:406.110000px;}
.y172{bottom:408.450000px;}
.y4d{bottom:409.890000px;}
.y93{bottom:411.870000px;}
.y78{bottom:415.650000px;}
.yda{bottom:417.450000px;}
.yc9{bottom:417.630000px;}
.y1f{bottom:421.050000px;}
.yae{bottom:421.410000px;}
.y155{bottom:425.910000px;}
.y171{bottom:429.150000px;}
.y4c{bottom:430.590000px;}
.y92{bottom:432.570000px;}
.y67{bottom:436.395000px;}
.yd9{bottom:438.195000px;}
.yc8{bottom:438.375000px;}
.y12e{bottom:440.535000px;}
.y1e{bottom:441.795000px;}
.yad{bottom:442.155000px;}
.y170{bottom:449.895000px;}
.y4b{bottom:451.335000px;}
.y91{bottom:453.315000px;}
.y66{bottom:457.095000px;}
.yd8{bottom:458.895000px;}
.yc7{bottom:459.075000px;}
.y154{bottom:461.775000px;}
.y1d{bottom:462.495000px;}
.yac{bottom:462.855000px;}
.y4a{bottom:472.035000px;}
.y90{bottom:474.015000px;}
.y12d{bottom:476.355000px;}
.y65{bottom:477.795000px;}
.yd7{bottom:479.595000px;}
.yc6{bottom:479.775000px;}
.y153{bottom:482.475000px;}
.y1c{bottom:483.015000px;}
.yfc{bottom:483.195000px;}
.yab{bottom:483.555000px;}
.y16f{bottom:485.535000px;}
.y49{bottom:492.735000px;}
.y8f{bottom:494.715000px;}
.y12c{bottom:497.055000px;}
.y64{bottom:498.495000px;}
.yd6{bottom:500.295000px;}
.y11f{bottom:500.475000px;}
.y152{bottom:503.175000px;}
.y1b{bottom:503.715000px;}
.yfb{bottom:503.895000px;}
.y16e{bottom:506.235000px;}
.y48{bottom:513.435000px;}
.y8e{bottom:515.415000px;}
.y63{bottom:519.195000px;}
.yd5{bottom:520.995000px;}
.y151{bottom:523.875000px;}
.yfa{bottom:524.595000px;}
.y16d{bottom:526.935000px;}
.y12b{bottom:532.695000px;}
.y1a{bottom:534.135000px;}
.yc5{bottom:536.115000px;}
.y62{bottom:539.895000px;}
.yf9{bottom:545.295000px;}
.yd4{bottom:549.255000px;}
.y8d{bottom:551.055000px;}
.y47{bottom:554.835000px;}
.yc4{bottom:556.815000px;}
.y150{bottom:559.515000px;}
.y11a{bottom:560.415000px;}
.y61{bottom:560.595000px;}
.y16c{bottom:562.755000px;}
.yf8{bottom:565.995000px;}
.y12a{bottom:568.335000px;}
.y8c{bottom:571.755000px;}
.y46{bottom:575.535000px;}
.yc3{bottom:577.515000px;}
.y14f{bottom:580.215000px;}
.y119{bottom:581.115000px;}
.yaa{bottom:581.295000px;}
.y16b{bottom:583.455000px;}
.y8b{bottom:592.455000px;}
.y19{bottom:593.175000px;}
.y45{bottom:596.235000px;}
.yc2{bottom:598.215000px;}
.y14e{bottom:600.915000px;}
.yf7{bottom:601.815000px;}
.ya9{bottom:601.995000px;}
.y129{bottom:604.155000px;}
.y18{bottom:612.255000px;}
.y8a{bottom:613.155000px;}
.y44{bottom:616.935000px;}
.yc1{bottom:618.915000px;}
.y14d{bottom:621.615000px;}
.yf6{bottom:622.515000px;}
.ya8{bottom:622.695000px;}
.y89{bottom:633.855000px;}
.y43{bottom:637.635000px;}
.yc0{bottom:639.615000px;}
.y128{bottom:639.795000px;}
.yf5{bottom:643.215000px;}
.y17{bottom:649.155000px;}
.y88{bottom:654.555000px;}
.y14c{bottom:657.255000px;}
.y60{bottom:658.335000px;}
.y11e{bottom:660.315000px;}
.y127{bottom:660.495000px;}
.yf4{bottom:663.915000px;}
.y16{bottom:668.235000px;}
.y42{bottom:673.485000px;}
.y87{bottom:675.285000px;}
.y14b{bottom:677.985000px;}
.y5f{bottom:679.065000px;}
.yf3{bottom:684.645000px;}
.y15{bottom:687.345000px;}
.y41{bottom:694.185000px;}
.ybf{bottom:695.985000px;}
.y126{bottom:696.165000px;}
.y14a{bottom:698.685000px;}
.y5e{bottom:699.765000px;}
.yf2{bottom:705.345000px;}
.y86{bottom:705.525000px;}
.y14{bottom:706.245000px;}
.y40{bottom:714.885000px;}
.ybe{bottom:716.685000px;}
.y16a{bottom:716.865000px;}
.y5d{bottom:720.465000px;}
.y13{bottom:725.145000px;}
.yf1{bottom:726.045000px;}
.yd3{bottom:726.225000px;}
.y125{bottom:731.805000px;}
.y149{bottom:734.505000px;}
.y3f{bottom:735.585000px;}
.ybd{bottom:737.385000px;}
.y169{bottom:737.565000px;}
.y118{bottom:740.985000px;}
.ya7{bottom:741.165000px;}
.y12{bottom:744.225000px;}
.yf0{bottom:746.745000px;}
.y124{bottom:752.505000px;}
.y148{bottom:755.205000px;}
.y5c{bottom:756.105000px;}
.y3e{bottom:756.285000px;}
.ybc{bottom:758.085000px;}
.y117{bottom:761.685000px;}
.ya6{bottom:761.865000px;}
.y11{bottom:763.125000px;}
.yef{bottom:767.445000px;}
.y123{bottom:773.205000px;}
.y3d{bottom:776.805000px;}
.y11d{bottom:778.785000px;}
.y10{bottom:782.205000px;}
.y116{bottom:782.385000px;}
.ya5{bottom:782.565000px;}
.yee{bottom:788.145000px;}
.y147{bottom:790.845000px;}
.ybb{bottom:793.905000px;}
.y3c{bottom:797.505000px;}
.yf{bottom:801.105000px;}
.y115{bottom:803.085000px;}
.yed{bottom:808.845000px;}
.y11c{bottom:809.025000px;}
.y146{bottom:811.545000px;}
.yba{bottom:814.605000px;}
.y3b{bottom:818.205000px;}
.ye{bottom:820.185000px;}
.y114{bottom:823.785000px;}
.yec{bottom:829.545000px;}
.y145{bottom:832.245000px;}
.y77{bottom:833.325000px;}
.yb9{bottom:835.305000px;}
.y5b{bottom:838.905000px;}
.yd{bottom:839.085000px;}
.y113{bottom:844.485000px;}
.y122{bottom:844.665000px;}
.yeb{bottom:850.245000px;}
.y168{bottom:850.425000px;}
.y3a{bottom:854.025000px;}
.yb8{bottom:856.005000px;}
.yc{bottom:857.985000px;}
.y5a{bottom:859.605000px;}
.y112{bottom:865.185000px;}
.y144{bottom:867.885000px;}
.yea{bottom:870.945000px;}
.y167{bottom:871.125000px;}
.y39{bottom:874.725000px;}
.yb7{bottom:876.705000px;}
.yb{bottom:877.065000px;}
.ya4{bottom:880.305000px;}
.y111{bottom:885.885000px;}
.y143{bottom:888.585000px;}
.y38{bottom:895.425000px;}
.ya{bottom:895.965000px;}
.ya3{bottom:901.005000px;}
.ye9{bottom:906.585000px;}
.yb6{bottom:906.765000px;}
.y142{bottom:909.285000px;}
.y9{bottom:915.090000px;}
.y37{bottom:916.170000px;}
.ya2{bottom:921.750000px;}
.ye8{bottom:927.330000px;}
.y166{bottom:927.510000px;}
.y141{bottom:930.030000px;}
.y8{bottom:933.990000px;}
.y36{bottom:936.870000px;}
.y110{bottom:942.270000px;}
.y11b{bottom:942.450000px;}
.y165{bottom:948.210000px;}
.ye7{bottom:955.590000px;}
.y35{bottom:957.570000px;}
.y7{bottom:962.250000px;}
.y10f{bottom:962.970000px;}
.y140{bottom:965.850000px;}
.y76{bottom:972.510000px;}
.y34{bottom:978.270000px;}
.y10e{bottom:983.670000px;}
.y164{bottom:983.850000px;}
.y13f{bottom:986.550000px;}
.y75{bottom:993.210000px;}
.y33{bottom:998.970000px;}
.y10d{bottom:1004.370000px;}
.y163{bottom:1004.550000px;}
.y13e{bottom:1007.250000px;}
.y6{bottom:1009.410000px;}
.y74{bottom:1013.910000px;}
.y32{bottom:1019.670000px;}
.y10c{bottom:1025.070000px;}
.y162{bottom:1025.250000px;}
.y13d{bottom:1027.950000px;}
.y73{bottom:1034.610000px;}
.y5{bottom:1037.850000px;}
.y31{bottom:1040.370000px;}
.y10b{bottom:1053.510000px;}
.y59{bottom:1055.310000px;}
.ya1{bottom:1061.070000px;}
.y13c{bottom:1063.590000px;}
.y30{bottom:1076.010000px;}
.yb5{bottom:1081.770000px;}
.y13b{bottom:1084.290000px;}
.y4{bottom:1086.990000px;}
.y2f{bottom:1096.710000px;}
.y13a{bottom:1104.990000px;}
.y2e{bottom:1117.410000px;}
.y3{bottom:1132.530000px;}
.y139{bottom:1135.230000px;}
.y2d{bottom:1138.110000px;}
.y1{bottom:1195.740000px;}
.h4{height:47.901094px;}
.h7{height:50.800781px;}
.h2{height:52.066406px;}
.h6{height:54.864844px;}
.h5{height:59.436914px;}
.h3{height:67.565039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:108.035987px;}
.x3{left:155.369987px;}
.x8{left:162.029987px;}
.x4{left:246.089987px;}
.x6{left:346.934987px;}
.x1{left:390.674987px;}
.x5{left:401.294987px;}
.x7{left:412.994987px;}
.xa{left:438.194987px;}
.x2{left:442.334987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.800000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:0.000000pt;}
._20{margin-left:-4.679680pt;}
._c{margin-left:-3.709440pt;}
._6{margin-left:-2.046720pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.274880pt;}
._7{width:2.731520pt;}
._15{width:3.913387pt;}
._12{width:5.012480pt;}
._4{width:5.946880pt;}
._17{width:6.940160pt;}
._d{width:7.831040pt;}
._13{width:8.721920pt;}
._18{width:10.370987pt;}
._b{width:12.129280pt;}
._a{width:13.130240pt;}
._10{width:14.128640pt;}
._16{width:15.055360pt;}
._5{width:16.368640pt;}
._1b{width:17.346133pt;}
._14{width:18.304000pt;}
._19{width:19.328000pt;}
._1e{width:20.352000pt;}
._8{width:21.491200pt;}
._9{width:23.116800pt;}
._1c{width:24.355840pt;}
._1d{width:25.692160pt;}
._11{width:26.688000pt;}
._1f{width:28.474880pt;}
._1a{width:29.608960pt;}
._2{width:31.029760pt;}
._3{width:32.207360pt;}
._e{width:34.048000pt;}
._f{width:35.008000pt;}
._21{width:36.416000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:50.400000pt;}
.ya0{bottom:100.320000pt;}
.y85{bottom:103.520000pt;}
.y161{bottom:104.480000pt;}
.yd2{bottom:105.280000pt;}
.y2c{bottom:108.320000pt;}
.y10a{bottom:108.480000pt;}
.ye6{bottom:109.920000pt;}
.y58{bottom:113.600000pt;}
.y72{bottom:113.760000pt;}
.y9f{bottom:118.720000pt;}
.y84{bottom:121.920000pt;}
.y160{bottom:122.880000pt;}
.yd1{bottom:123.680000pt;}
.y2b{bottom:126.720000pt;}
.y109{bottom:126.880000pt;}
.y138{bottom:127.520000pt;}
.ye5{bottom:128.320000pt;}
.y57{bottom:132.000000pt;}
.y9e{bottom:137.120000pt;}
.y83{bottom:140.320000pt;}
.y15f{bottom:141.280000pt;}
.yd0{bottom:142.080000pt;}
.y2a{bottom:145.120000pt;}
.y108{bottom:145.280000pt;}
.ye4{bottom:146.720000pt;}
.y56{bottom:150.400000pt;}
.y9d{bottom:155.520000pt;}
.y71{bottom:158.720000pt;}
.y137{bottom:159.360000pt;}
.ycf{bottom:160.480000pt;}
.y29{bottom:163.520000pt;}
.y107{bottom:163.680000pt;}
.ye3{bottom:172.000000pt;}
.y82{bottom:172.160000pt;}
.y15e{bottom:173.146667pt;}
.y9c{bottom:173.946667pt;}
.y70{bottom:177.146667pt;}
.y136{bottom:177.786667pt;}
.yce{bottom:178.906667pt;}
.y55{bottom:182.106667pt;}
.y81{bottom:190.586667pt;}
.y15d{bottom:191.546667pt;}
.y9b{bottom:192.346667pt;}
.y28{bottom:195.226667pt;}
.y106{bottom:195.386667pt;}
.y6f{bottom:195.546667pt;}
.y121{bottom:197.306667pt;}
.y54{bottom:200.506667pt;}
.y80{bottom:208.986667pt;}
.y135{bottom:209.466667pt;}
.ye2{bottom:210.426667pt;}
.yb3{bottom:210.746667pt;}
.y27{bottom:213.626667pt;}
.y105{bottom:213.786667pt;}
.y6e{bottom:213.946667pt;}
.y53{bottom:218.906667pt;}
.y15c{bottom:223.226667pt;}
.y9a{bottom:224.026667pt;}
.y7f{bottom:227.386667pt;}
.ye1{bottom:228.826667pt;}
.yb2{bottom:229.146667pt;}
.y26{bottom:232.026667pt;}
.y104{bottom:232.186667pt;}
.y6d{bottom:232.346667pt;}
.y52{bottom:237.306667pt;}
.y134{bottom:241.146667pt;}
.y15b{bottom:241.626667pt;}
.y99{bottom:242.426667pt;}
.y7e{bottom:245.786667pt;}
.ye0{bottom:247.226667pt;}
.yb1{bottom:247.546667pt;}
.y25{bottom:250.426667pt;}
.y103{bottom:250.586667pt;}
.y6c{bottom:250.746667pt;}
.y51{bottom:255.706667pt;}
.y133{bottom:259.546667pt;}
.y98{bottom:260.826667pt;}
.yb4{bottom:264.186667pt;}
.ydf{bottom:265.626667pt;}
.yb0{bottom:265.946667pt;}
.y24{bottom:268.826667pt;}
.y102{bottom:268.986667pt;}
.y15a{bottom:273.306667pt;}
.y50{bottom:274.106667pt;}
.y176{bottom:276.186667pt;}
.y7d{bottom:277.466667pt;}
.y132{bottom:277.946667pt;}
.y97{bottom:279.226667pt;}
.y6b{bottom:282.586667pt;}
.yde{bottom:284.026667pt;}
.ycd{bottom:284.346667pt;}
.y23{bottom:287.226667pt;}
.y101{bottom:287.386667pt;}
.y159{bottom:291.706667pt;}
.y4f{bottom:292.506667pt;}
.yaf{bottom:292.666667pt;}
.y175{bottom:294.586667pt;}
.y7c{bottom:295.866667pt;}
.y131{bottom:296.346667pt;}
.y96{bottom:297.626667pt;}
.y6a{bottom:300.986667pt;}
.ydd{bottom:302.426667pt;}
.ycc{bottom:302.746667pt;}
.y22{bottom:305.626667pt;}
.y100{bottom:305.786667pt;}
.y174{bottom:312.986667pt;}
.y7b{bottom:314.266667pt;}
.y95{bottom:316.026667pt;}
.y4e{bottom:319.386667pt;}
.ydc{bottom:320.826667pt;}
.y120{bottom:320.986667pt;}
.y158{bottom:323.386667pt;}
.yff{bottom:324.186667pt;}
.y130{bottom:328.186667pt;}
.y173{bottom:331.386667pt;}
.y7a{bottom:332.666667pt;}
.ycb{bottom:334.426667pt;}
.y21{bottom:337.466667pt;}
.y69{bottom:337.786667pt;}
.y157{bottom:341.786667pt;}
.yfe{bottom:342.586667pt;}
.y94{bottom:347.706667pt;}
.y79{bottom:351.066667pt;}
.ydb{bottom:352.666667pt;}
.yca{bottom:352.826667pt;}
.y20{bottom:355.866667pt;}
.y68{bottom:356.186667pt;}
.y12f{bottom:359.866667pt;}
.y156{bottom:360.186667pt;}
.yfd{bottom:360.986667pt;}
.y172{bottom:363.066667pt;}
.y4d{bottom:364.346667pt;}
.y93{bottom:366.106667pt;}
.y78{bottom:369.466667pt;}
.yda{bottom:371.066667pt;}
.yc9{bottom:371.226667pt;}
.y1f{bottom:374.266667pt;}
.yae{bottom:374.586667pt;}
.y155{bottom:378.586667pt;}
.y171{bottom:381.466667pt;}
.y4c{bottom:382.746667pt;}
.y92{bottom:384.506667pt;}
.y67{bottom:387.906667pt;}
.yd9{bottom:389.506667pt;}
.yc8{bottom:389.666667pt;}
.y12e{bottom:391.586667pt;}
.y1e{bottom:392.706667pt;}
.yad{bottom:393.026667pt;}
.y170{bottom:399.906667pt;}
.y4b{bottom:401.186667pt;}
.y91{bottom:402.946667pt;}
.y66{bottom:406.306667pt;}
.yd8{bottom:407.906667pt;}
.yc7{bottom:408.066667pt;}
.y154{bottom:410.466667pt;}
.y1d{bottom:411.106667pt;}
.yac{bottom:411.426667pt;}
.y4a{bottom:419.586667pt;}
.y90{bottom:421.346667pt;}
.y12d{bottom:423.426667pt;}
.y65{bottom:424.706667pt;}
.yd7{bottom:426.306667pt;}
.yc6{bottom:426.466667pt;}
.y153{bottom:428.866667pt;}
.y1c{bottom:429.346667pt;}
.yfc{bottom:429.506667pt;}
.yab{bottom:429.826667pt;}
.y16f{bottom:431.586667pt;}
.y49{bottom:437.986667pt;}
.y8f{bottom:439.746667pt;}
.y12c{bottom:441.826667pt;}
.y64{bottom:443.106667pt;}
.yd6{bottom:444.706667pt;}
.y11f{bottom:444.866667pt;}
.y152{bottom:447.266667pt;}
.y1b{bottom:447.746667pt;}
.yfb{bottom:447.906667pt;}
.y16e{bottom:449.986667pt;}
.y48{bottom:456.386667pt;}
.y8e{bottom:458.146667pt;}
.y63{bottom:461.506667pt;}
.yd5{bottom:463.106667pt;}
.y151{bottom:465.666667pt;}
.yfa{bottom:466.306667pt;}
.y16d{bottom:468.386667pt;}
.y12b{bottom:473.506667pt;}
.y1a{bottom:474.786667pt;}
.yc5{bottom:476.546667pt;}
.y62{bottom:479.906667pt;}
.yf9{bottom:484.706667pt;}
.yd4{bottom:488.226667pt;}
.y8d{bottom:489.826667pt;}
.y47{bottom:493.186667pt;}
.yc4{bottom:494.946667pt;}
.y150{bottom:497.346667pt;}
.y11a{bottom:498.146667pt;}
.y61{bottom:498.306667pt;}
.y16c{bottom:500.226667pt;}
.yf8{bottom:503.106667pt;}
.y12a{bottom:505.186667pt;}
.y8c{bottom:508.226667pt;}
.y46{bottom:511.586667pt;}
.yc3{bottom:513.346667pt;}
.y14f{bottom:515.746667pt;}
.y119{bottom:516.546667pt;}
.yaa{bottom:516.706667pt;}
.y16b{bottom:518.626667pt;}
.y8b{bottom:526.626667pt;}
.y19{bottom:527.266667pt;}
.y45{bottom:529.986667pt;}
.yc2{bottom:531.746667pt;}
.y14e{bottom:534.146667pt;}
.yf7{bottom:534.946667pt;}
.ya9{bottom:535.106667pt;}
.y129{bottom:537.026667pt;}
.y18{bottom:544.226667pt;}
.y8a{bottom:545.026667pt;}
.y44{bottom:548.386667pt;}
.yc1{bottom:550.146667pt;}
.y14d{bottom:552.546667pt;}
.yf6{bottom:553.346667pt;}
.ya8{bottom:553.506667pt;}
.y89{bottom:563.426667pt;}
.y43{bottom:566.786667pt;}
.yc0{bottom:568.546667pt;}
.y128{bottom:568.706667pt;}
.yf5{bottom:571.746667pt;}
.y17{bottom:577.026667pt;}
.y88{bottom:581.826667pt;}
.y14c{bottom:584.226667pt;}
.y60{bottom:585.186667pt;}
.y11e{bottom:586.946667pt;}
.y127{bottom:587.106667pt;}
.yf4{bottom:590.146667pt;}
.y16{bottom:593.986667pt;}
.y42{bottom:598.653333pt;}
.y87{bottom:600.253333pt;}
.y14b{bottom:602.653333pt;}
.y5f{bottom:603.613333pt;}
.yf3{bottom:608.573333pt;}
.y15{bottom:610.973333pt;}
.y41{bottom:617.053333pt;}
.ybf{bottom:618.653333pt;}
.y126{bottom:618.813333pt;}
.y14a{bottom:621.053333pt;}
.y5e{bottom:622.013333pt;}
.yf2{bottom:626.973333pt;}
.y86{bottom:627.133333pt;}
.y14{bottom:627.773333pt;}
.y40{bottom:635.453333pt;}
.ybe{bottom:637.053333pt;}
.y16a{bottom:637.213333pt;}
.y5d{bottom:640.413333pt;}
.y13{bottom:644.573333pt;}
.yf1{bottom:645.373333pt;}
.yd3{bottom:645.533333pt;}
.y125{bottom:650.493333pt;}
.y149{bottom:652.893333pt;}
.y3f{bottom:653.853333pt;}
.ybd{bottom:655.453333pt;}
.y169{bottom:655.613333pt;}
.y118{bottom:658.653333pt;}
.ya7{bottom:658.813333pt;}
.y12{bottom:661.533333pt;}
.yf0{bottom:663.773333pt;}
.y124{bottom:668.893333pt;}
.y148{bottom:671.293333pt;}
.y5c{bottom:672.093333pt;}
.y3e{bottom:672.253333pt;}
.ybc{bottom:673.853333pt;}
.y117{bottom:677.053333pt;}
.ya6{bottom:677.213333pt;}
.y11{bottom:678.333333pt;}
.yef{bottom:682.173333pt;}
.y123{bottom:687.293333pt;}
.y3d{bottom:690.493333pt;}
.y11d{bottom:692.253333pt;}
.y10{bottom:695.293333pt;}
.y116{bottom:695.453333pt;}
.ya5{bottom:695.613333pt;}
.yee{bottom:700.573333pt;}
.y147{bottom:702.973333pt;}
.ybb{bottom:705.693333pt;}
.y3c{bottom:708.893333pt;}
.yf{bottom:712.093333pt;}
.y115{bottom:713.853333pt;}
.yed{bottom:718.973333pt;}
.y11c{bottom:719.133333pt;}
.y146{bottom:721.373333pt;}
.yba{bottom:724.093333pt;}
.y3b{bottom:727.293333pt;}
.ye{bottom:729.053333pt;}
.y114{bottom:732.253333pt;}
.yec{bottom:737.373333pt;}
.y145{bottom:739.773333pt;}
.y77{bottom:740.733333pt;}
.yb9{bottom:742.493333pt;}
.y5b{bottom:745.693333pt;}
.yd{bottom:745.853333pt;}
.y113{bottom:750.653333pt;}
.y122{bottom:750.813333pt;}
.yeb{bottom:755.773333pt;}
.y168{bottom:755.933333pt;}
.y3a{bottom:759.133333pt;}
.yb8{bottom:760.893333pt;}
.yc{bottom:762.653333pt;}
.y5a{bottom:764.093333pt;}
.y112{bottom:769.053333pt;}
.y144{bottom:771.453333pt;}
.yea{bottom:774.173333pt;}
.y167{bottom:774.333333pt;}
.y39{bottom:777.533333pt;}
.yb7{bottom:779.293333pt;}
.yb{bottom:779.613333pt;}
.ya4{bottom:782.493333pt;}
.y111{bottom:787.453333pt;}
.y143{bottom:789.853333pt;}
.y38{bottom:795.933333pt;}
.ya{bottom:796.413333pt;}
.ya3{bottom:800.893333pt;}
.ye9{bottom:805.853333pt;}
.yb6{bottom:806.013333pt;}
.y142{bottom:808.253333pt;}
.y9{bottom:813.413333pt;}
.y37{bottom:814.373333pt;}
.ya2{bottom:819.333333pt;}
.ye8{bottom:824.293333pt;}
.y166{bottom:824.453333pt;}
.y141{bottom:826.693333pt;}
.y8{bottom:830.213333pt;}
.y36{bottom:832.773333pt;}
.y110{bottom:837.573333pt;}
.y11b{bottom:837.733333pt;}
.y165{bottom:842.853333pt;}
.ye7{bottom:849.413333pt;}
.y35{bottom:851.173333pt;}
.y7{bottom:855.333333pt;}
.y10f{bottom:855.973333pt;}
.y140{bottom:858.533333pt;}
.y76{bottom:864.453333pt;}
.y34{bottom:869.573333pt;}
.y10e{bottom:874.373333pt;}
.y164{bottom:874.533333pt;}
.y13f{bottom:876.933333pt;}
.y75{bottom:882.853333pt;}
.y33{bottom:887.973333pt;}
.y10d{bottom:892.773333pt;}
.y163{bottom:892.933333pt;}
.y13e{bottom:895.333333pt;}
.y6{bottom:897.253333pt;}
.y74{bottom:901.253333pt;}
.y32{bottom:906.373333pt;}
.y10c{bottom:911.173333pt;}
.y162{bottom:911.333333pt;}
.y13d{bottom:913.733333pt;}
.y73{bottom:919.653333pt;}
.y5{bottom:922.533333pt;}
.y31{bottom:924.773333pt;}
.y10b{bottom:936.453333pt;}
.y59{bottom:938.053333pt;}
.ya1{bottom:943.173333pt;}
.y13c{bottom:945.413333pt;}
.y30{bottom:956.453333pt;}
.yb5{bottom:961.573333pt;}
.y13b{bottom:963.813333pt;}
.y4{bottom:966.213333pt;}
.y2f{bottom:974.853333pt;}
.y13a{bottom:982.213333pt;}
.y2e{bottom:993.253333pt;}
.y3{bottom:1006.693333pt;}
.y139{bottom:1009.093333pt;}
.y2d{bottom:1011.653333pt;}
.y1{bottom:1062.880000pt;}
.h4{height:42.578750pt;}
.h7{height:45.156250pt;}
.h2{height:46.281250pt;}
.h6{height:48.768750pt;}
.h5{height:52.832812pt;}
.h3{height:60.057813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.031988pt;}
.x3{left:138.106655pt;}
.x8{left:144.026655pt;}
.x4{left:218.746655pt;}
.x6{left:308.386655pt;}
.x1{left:347.266655pt;}
.x5{left:356.706655pt;}
.x7{left:367.106655pt;}
.xa{left:389.506655pt;}
.x2{left:393.186655pt;}
}




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