
    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_8219989c9d12f1c7ad037901.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9a620c5ddd88487b44e93002.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091309;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5bc741ecf82ef6ac3775b0c3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5d464679713be08b78d6e291.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091309;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_a168c77a6716f319279b8de4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_54ed04d0e14b32199a1870ed.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_9da3ad3702ef1ebd3a6ae5ba.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.995605;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_27219598313d0cc7b7b52c7f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.995605;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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls16{letter-spacing:-0.774000px;}
.ls5{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.460200px;}
.ls7{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.177600px;}
.ls11{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.014400px;}
.ls10{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.206400px;}
.ls6{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.259920px;}
.ls18{letter-spacing:0.300000px;}
.lsa{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.480000px;}
.ls1a{letter-spacing:0.666000px;}
.lsf{letter-spacing:0.666720px;}
.ls1e{letter-spacing:0.900000px;}
.ls14{letter-spacing:5.220000px;}
.ls3{letter-spacing:14.580000px;}
.ls2{letter-spacing:15.300000px;}
.ls8{letter-spacing:15.444000px;}
.ls9{letter-spacing:15.480000px;}
.ls1b{letter-spacing:16.506720px;}
.lse{letter-spacing:46.026720px;}
.ls19{letter-spacing:46.170720px;}
.lsd{letter-spacing:64.026720px;}
.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:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.wsd{word-spacing:-15.606000px;}
.ws7{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.199800px;}
.ws5{word-spacing:-15.146400px;}
.ws9{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.833200px;}
.wsc{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.479800px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._14{margin-left:-8.213760px;}
._11{margin-left:-6.963840px;}
._29{margin-left:-5.932800px;}
._13{margin-left:-4.895760px;}
._16{margin-left:-3.854880px;}
._15{margin-left:-2.607120px;}
._0{margin-left:-1.080000px;}
._12{width:1.053360px;}
._1{width:2.220000px;}
._17{width:3.267120px;}
._19{width:5.171520px;}
._1d{width:6.370320px;}
._1c{width:7.535760px;}
._1b{width:8.545680px;}
._1a{width:9.561600px;}
._6{width:10.800000px;}
._18{width:12.777840px;}
._21{width:13.815360px;}
._20{width:16.336800px;}
._1f{width:17.868240px;}
._f{width:18.948000px;}
._1e{width:20.474400px;}
._24{width:21.656400px;}
._23{width:23.702160px;}
._22{width:24.860160px;}
._27{width:27.996960px;}
._26{width:29.388240px;}
._25{width:30.969360px;}
._2f{width:35.938080px;}
._30{width:37.111440px;}
._2e{width:38.327040px;}
._2d{width:39.342960px;}
._28{width:56.473200px;}
._2a{width:57.735360px;}
._2b{width:66.535200px;}
._7{width:76.284960px;}
._2c{width:91.933200px;}
._10{width:99.660000px;}
._8{width:154.080000px;}
._c{width:195.120000px;}
._e{width:199.584000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._d{width:637.320000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye{bottom:5.760000px;}
.y6{bottom:12.420000px;}
.y8{bottom:18.180000px;}
.yc{bottom:36.000000px;}
.y5{bottom:40.320000px;}
.yb{bottom:57.780000px;}
.y4{bottom:68.400000px;}
.yd{bottom:75.960000px;}
.ya{bottom:79.560000px;}
.y3{bottom:96.330000px;}
.y102{bottom:100.800000px;}
.y3b{bottom:101.340000px;}
.y8c{bottom:105.840000px;}
.ye6{bottom:115.380000px;}
.y105{bottom:115.560000px;}
.yad{bottom:119.160000px;}
.y101{bottom:120.600000px;}
.y66{bottom:120.960000px;}
.y3a{bottom:121.140000px;}
.y8b{bottom:125.640000px;}
.y2{bottom:125.670000px;}
.y104{bottom:134.280000px;}
.ye5{bottom:135.360000px;}
.yac{bottom:138.960000px;}
.y100{bottom:140.400000px;}
.y65{bottom:140.760000px;}
.y39{bottom:140.940000px;}
.y8a{bottom:145.440000px;}
.y103{bottom:152.850000px;}
.ye4{bottom:155.190000px;}
.yab{bottom:158.790000px;}
.yff{bottom:160.410000px;}
.y64{bottom:160.590000px;}
.y38{bottom:160.770000px;}
.y89{bottom:165.270000px;}
.ye3{bottom:174.990000px;}
.yaa{bottom:178.590000px;}
.yfe{bottom:180.210000px;}
.y37{bottom:180.570000px;}
.y88{bottom:185.250000px;}
.ye2{bottom:194.790000px;}
.ya9{bottom:198.570000px;}
.yfd{bottom:200.010000px;}
.y63{bottom:200.370000px;}
.y36{bottom:200.550000px;}
.y87{bottom:205.050000px;}
.ye1{bottom:214.590000px;}
.ya8{bottom:218.370000px;}
.yfc{bottom:219.810000px;}
.y62{bottom:220.170000px;}
.y86{bottom:224.850000px;}
.y35{bottom:229.350000px;}
.ye0{bottom:234.570000px;}
.ybc{bottom:238.170000px;}
.yfb{bottom:239.610000px;}
.y61{bottom:239.970000px;}
.y85{bottom:244.650000px;}
.ya7{bottom:247.170000px;}
.y34{bottom:249.150000px;}
.ydf{bottom:254.370000px;}
.ybb{bottom:257.970000px;}
.yfa{bottom:259.590000px;}
.y60{bottom:259.770000px;}
.ya6{bottom:266.970000px;}
.y33{bottom:268.950000px;}
.y84{bottom:273.450000px;}
.yde{bottom:274.170000px;}
.yba{bottom:277.770000px;}
.yf9{bottom:279.390000px;}
.y5f{bottom:279.750000px;}
.ya5{bottom:286.770000px;}
.y32{bottom:288.750000px;}
.y83{bottom:293.430000px;}
.ydd{bottom:293.970000px;}
.yb9{bottom:297.750000px;}
.yf8{bottom:299.190000px;}
.y5e{bottom:299.550000px;}
.ya4{bottom:306.750000px;}
.y31{bottom:308.730000px;}
.y82{bottom:313.230000px;}
.ydc{bottom:313.770000px;}
.yb8{bottom:317.550000px;}
.yf7{bottom:318.990000px;}
.y5d{bottom:319.350000px;}
.ya3{bottom:326.550000px;}
.y81{bottom:333.030000px;}
.ydb{bottom:333.750000px;}
.yb7{bottom:337.350000px;}
.y30{bottom:337.530000px;}
.yf6{bottom:338.790000px;}
.y5c{bottom:339.150000px;}
.ya2{bottom:346.350000px;}
.y80{bottom:352.830000px;}
.yda{bottom:353.550000px;}
.yb6{bottom:357.150000px;}
.y2f{bottom:357.330000px;}
.yf5{bottom:358.770000px;}
.y5b{bottom:358.950000px;}
.ya1{bottom:366.150000px;}
.y7f{bottom:372.630000px;}
.yd9{bottom:373.350000px;}
.yb5{bottom:376.950000px;}
.y2e{bottom:377.130000px;}
.yf4{bottom:378.570000px;}
.y5a{bottom:378.930000px;}
.ya0{bottom:385.950000px;}
.y7e{bottom:392.610000px;}
.yd8{bottom:393.150000px;}
.y2d{bottom:396.930000px;}
.yf3{bottom:398.370000px;}
.y59{bottom:398.730000px;}
.y9f{bottom:405.975000px;}
.y7d{bottom:412.455000px;}
.yd7{bottom:412.995000px;}
.yf2{bottom:415.695000px;}
.yb4{bottom:416.775000px;}
.y2c{bottom:416.955000px;}
.y58{bottom:418.575000px;}
.y9e{bottom:425.775000px;}
.y7c{bottom:432.255000px;}
.yd6{bottom:432.975000px;}
.yf1{bottom:435.495000px;}
.yb3{bottom:436.575000px;}
.y2b{bottom:436.755000px;}
.y57{bottom:438.375000px;}
.y9d{bottom:445.575000px;}
.yd5{bottom:452.775000px;}
.y7b{bottom:453.135000px;}
.yf0{bottom:455.295000px;}
.yb2{bottom:456.375000px;}
.y2a{bottom:456.555000px;}
.y56{bottom:458.175000px;}
.y9c{bottom:465.375000px;}
.yd4{bottom:472.575000px;}
.y7a{bottom:474.015000px;}
.yef{bottom:475.095000px;}
.yb1{bottom:476.175000px;}
.y29{bottom:476.355000px;}
.y55{bottom:478.155000px;}
.y9b{bottom:485.175000px;}
.yd3{bottom:492.375000px;}
.y79{bottom:495.075000px;}
.y28{bottom:496.155000px;}
.y9a{bottom:505.155000px;}
.y54{bottom:506.955000px;}
.yd2{bottom:512.175000px;}
.yee{bottom:514.875000px;}
.y78{bottom:515.955000px;}
.y27{bottom:516.135000px;}
.y99{bottom:524.955000px;}
.y53{bottom:526.755000px;}
.yd1{bottom:532.155000px;}
.yed{bottom:534.675000px;}
.y77{bottom:535.755000px;}
.y26{bottom:535.935000px;}
.y98{bottom:544.755000px;}
.y52{bottom:546.555000px;}
.yd0{bottom:551.955000px;}
.yec{bottom:554.475000px;}
.y76{bottom:555.555000px;}
.y25{bottom:555.735000px;}
.y97{bottom:564.555000px;}
.y51{bottom:566.355000px;}
.ycf{bottom:571.755000px;}
.yeb{bottom:574.275000px;}
.y75{bottom:575.355000px;}
.y24{bottom:575.535000px;}
.y96{bottom:584.355000px;}
.y50{bottom:586.335000px;}
.yce{bottom:591.555000px;}
.yea{bottom:594.255000px;}
.y23{bottom:595.335000px;}
.y95{bottom:604.335000px;}
.ycd{bottom:611.355000px;}
.ye9{bottom:614.055000px;}
.y4f{bottom:615.135000px;}
.y22{bottom:615.315000px;}
.y94{bottom:624.135000px;}
.ycc{bottom:631.335000px;}
.ye8{bottom:633.855000px;}
.y4e{bottom:634.935000px;}
.y21{bottom:635.115000px;}
.y93{bottom:643.935000px;}
.ycb{bottom:651.165000px;}
.ye7{bottom:653.685000px;}
.y74{bottom:654.765000px;}
.y20{bottom:654.945000px;}
.y4d{bottom:663.765000px;}
.yca{bottom:670.965000px;}
.y92{bottom:672.765000px;}
.y73{bottom:674.565000px;}
.y1f{bottom:674.745000px;}
.y4c{bottom:683.565000px;}
.yc9{bottom:690.765000px;}
.y91{bottom:692.565000px;}
.y1e{bottom:694.545000px;}
.y4b{bottom:703.545000px;}
.yc8{bottom:710.565000px;}
.y90{bottom:712.545000px;}
.y72{bottom:714.345000px;}
.y1d{bottom:714.525000px;}
.y4a{bottom:723.345000px;}
.yc7{bottom:730.545000px;}
.y8f{bottom:732.345000px;}
.y71{bottom:734.145000px;}
.y1c{bottom:734.325000px;}
.y49{bottom:743.145000px;}
.yc6{bottom:750.345000px;}
.y8e{bottom:752.145000px;}
.y1b{bottom:754.125000px;}
.y70{bottom:762.945000px;}
.yc5{bottom:770.145000px;}
.y48{bottom:771.945000px;}
.y1a{bottom:773.925000px;}
.y6f{bottom:782.745000px;}
.yc4{bottom:789.945000px;}
.y47{bottom:791.745000px;}
.y19{bottom:793.725000px;}
.y8d{bottom:800.745000px;}
.y6e{bottom:802.725000px;}
.yc3{bottom:809.745000px;}
.yb0{bottom:811.725000px;}
.y18{bottom:813.705000px;}
.y46{bottom:820.725000px;}
.y6d{bottom:822.525000px;}
.yc2{bottom:829.725000px;}
.yaf{bottom:831.525000px;}
.y17{bottom:833.505000px;}
.y45{bottom:840.525000px;}
.y6c{bottom:842.325000px;}
.yc1{bottom:849.525000px;}
.yae{bottom:851.325000px;}
.y16{bottom:853.305000px;}
.y44{bottom:860.325000px;}
.yc0{bottom:869.325000px;}
.y6b{bottom:871.125000px;}
.y15{bottom:878.325000px;}
.y43{bottom:880.125000px;}
.ybf{bottom:889.125000px;}
.y14{bottom:898.170000px;}
.y42{bottom:899.970000px;}
.ybe{bottom:908.970000px;}
.y13{bottom:918.150000px;}
.y41{bottom:919.950000px;}
.ybd{bottom:928.950000px;}
.y12{bottom:933.270000px;}
.y6a{bottom:939.750000px;}
.y40{bottom:948.750000px;}
.y11{bottom:955.050000px;}
.y69{bottom:959.550000px;}
.y3f{bottom:968.550000px;}
.y10{bottom:976.830000px;}
.y68{bottom:979.350000px;}
.y3e{bottom:988.350000px;}
.y67{bottom:999.150000px;}
.yf{bottom:1001.850000px;}
.y3d{bottom:1008.150000px;}
.y3c{bottom:1028.130000px;}
.y9{bottom:1046.670000px;}
.y1{bottom:1063.050000px;}
.y7{bottom:1097.250000px;}
.h7{height:2.521406px;}
.hb{height:21.240000px;}
.h8{height:33.480000px;}
.he{height:34.038984px;}
.hf{height:42.164648px;}
.h10{height:45.024258px;}
.h4{height:46.736719px;}
.h5{height:52.319180px;}
.hd{height:53.224453px;}
.ha{height:57.992344px;}
.h3{height:63.500977px;}
.h9{height:65.884219px;}
.hc{height:67.565039px;}
.h6{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.w3{width:137.556000px;}
.w2{width:649.410000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:53.100000px;}
.xe{left:69.479987px;}
.x6{left:79.559987px;}
.xd{left:80.999987px;}
.xa{left:86.255987px;}
.xf{left:96.515987px;}
.x4{left:118.470000px;}
.x8{left:140.795987px;}
.xb{left:174.089987px;}
.xc{left:193.349987px;}
.x9{left:360.254987px;}
.x7{left:446.504987px;}
.x3{left:702.510000px;}
.x5{left:829.260000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls16{letter-spacing:-0.688000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.409067pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.157867pt;}
.ls11{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.012800pt;}
.ls10{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.183467pt;}
.ls6{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.231040pt;}
.ls18{letter-spacing:0.266667pt;}
.lsa{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.426667pt;}
.ls1a{letter-spacing:0.592000pt;}
.lsf{letter-spacing:0.592640pt;}
.ls1e{letter-spacing:0.800000pt;}
.ls14{letter-spacing:4.640000pt;}
.ls3{letter-spacing:12.960000pt;}
.ls2{letter-spacing:13.600000pt;}
.ls8{letter-spacing:13.728000pt;}
.ls9{letter-spacing:13.760000pt;}
.ls1b{letter-spacing:14.672640pt;}
.lse{letter-spacing:40.912640pt;}
.ls19{letter-spacing:41.040640pt;}
.lsd{letter-spacing:56.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.wsd{word-spacing:-13.872000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.463467pt;}
.ws9{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.185067pt;}
.wsc{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.870933pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._14{margin-left:-7.301120pt;}
._11{margin-left:-6.190080pt;}
._29{margin-left:-5.273600pt;}
._13{margin-left:-4.351787pt;}
._16{margin-left:-3.426560pt;}
._15{margin-left:-2.317440pt;}
._0{margin-left:-0.960000pt;}
._12{width:0.936320pt;}
._1{width:1.973333pt;}
._17{width:2.904107pt;}
._19{width:4.596907pt;}
._1d{width:5.662507pt;}
._1c{width:6.698453pt;}
._1b{width:7.596160pt;}
._1a{width:8.499200pt;}
._6{width:9.600000pt;}
._18{width:11.358080pt;}
._21{width:12.280320pt;}
._20{width:14.521600pt;}
._1f{width:15.882880pt;}
._f{width:16.842667pt;}
._1e{width:18.199467pt;}
._24{width:19.250133pt;}
._23{width:21.068587pt;}
._22{width:22.097920pt;}
._27{width:24.886187pt;}
._26{width:26.122880pt;}
._25{width:27.528320pt;}
._2f{width:31.944960pt;}
._30{width:32.987947pt;}
._2e{width:34.068480pt;}
._2d{width:34.971520pt;}
._28{width:50.198400pt;}
._2a{width:51.320320pt;}
._2b{width:59.142400pt;}
._7{width:67.808853pt;}
._2c{width:81.718400pt;}
._10{width:88.586667pt;}
._8{width:136.960000pt;}
._c{width:173.440000pt;}
._e{width:177.408000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._d{width:566.506667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:5.120000pt;}
.y6{bottom:11.040000pt;}
.y8{bottom:16.160000pt;}
.yc{bottom:32.000000pt;}
.y5{bottom:35.840000pt;}
.yb{bottom:51.360000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:67.520000pt;}
.ya{bottom:70.720000pt;}
.y3{bottom:85.626667pt;}
.y102{bottom:89.600000pt;}
.y3b{bottom:90.080000pt;}
.y8c{bottom:94.080000pt;}
.ye6{bottom:102.560000pt;}
.y105{bottom:102.720000pt;}
.yad{bottom:105.920000pt;}
.y101{bottom:107.200000pt;}
.y66{bottom:107.520000pt;}
.y3a{bottom:107.680000pt;}
.y8b{bottom:111.680000pt;}
.y2{bottom:111.706667pt;}
.y104{bottom:119.360000pt;}
.ye5{bottom:120.320000pt;}
.yac{bottom:123.520000pt;}
.y100{bottom:124.800000pt;}
.y65{bottom:125.120000pt;}
.y39{bottom:125.280000pt;}
.y8a{bottom:129.280000pt;}
.y103{bottom:135.866667pt;}
.ye4{bottom:137.946667pt;}
.yab{bottom:141.146667pt;}
.yff{bottom:142.586667pt;}
.y64{bottom:142.746667pt;}
.y38{bottom:142.906667pt;}
.y89{bottom:146.906667pt;}
.ye3{bottom:155.546667pt;}
.yaa{bottom:158.746667pt;}
.yfe{bottom:160.186667pt;}
.y37{bottom:160.506667pt;}
.y88{bottom:164.666667pt;}
.ye2{bottom:173.146667pt;}
.ya9{bottom:176.506667pt;}
.yfd{bottom:177.786667pt;}
.y63{bottom:178.106667pt;}
.y36{bottom:178.266667pt;}
.y87{bottom:182.266667pt;}
.ye1{bottom:190.746667pt;}
.ya8{bottom:194.106667pt;}
.yfc{bottom:195.386667pt;}
.y62{bottom:195.706667pt;}
.y86{bottom:199.866667pt;}
.y35{bottom:203.866667pt;}
.ye0{bottom:208.506667pt;}
.ybc{bottom:211.706667pt;}
.yfb{bottom:212.986667pt;}
.y61{bottom:213.306667pt;}
.y85{bottom:217.466667pt;}
.ya7{bottom:219.706667pt;}
.y34{bottom:221.466667pt;}
.ydf{bottom:226.106667pt;}
.ybb{bottom:229.306667pt;}
.yfa{bottom:230.746667pt;}
.y60{bottom:230.906667pt;}
.ya6{bottom:237.306667pt;}
.y33{bottom:239.066667pt;}
.y84{bottom:243.066667pt;}
.yde{bottom:243.706667pt;}
.yba{bottom:246.906667pt;}
.yf9{bottom:248.346667pt;}
.y5f{bottom:248.666667pt;}
.ya5{bottom:254.906667pt;}
.y32{bottom:256.666667pt;}
.y83{bottom:260.826667pt;}
.ydd{bottom:261.306667pt;}
.yb9{bottom:264.666667pt;}
.yf8{bottom:265.946667pt;}
.y5e{bottom:266.266667pt;}
.ya4{bottom:272.666667pt;}
.y31{bottom:274.426667pt;}
.y82{bottom:278.426667pt;}
.ydc{bottom:278.906667pt;}
.yb8{bottom:282.266667pt;}
.yf7{bottom:283.546667pt;}
.y5d{bottom:283.866667pt;}
.ya3{bottom:290.266667pt;}
.y81{bottom:296.026667pt;}
.ydb{bottom:296.666667pt;}
.yb7{bottom:299.866667pt;}
.y30{bottom:300.026667pt;}
.yf6{bottom:301.146667pt;}
.y5c{bottom:301.466667pt;}
.ya2{bottom:307.866667pt;}
.y80{bottom:313.626667pt;}
.yda{bottom:314.266667pt;}
.yb6{bottom:317.466667pt;}
.y2f{bottom:317.626667pt;}
.yf5{bottom:318.906667pt;}
.y5b{bottom:319.066667pt;}
.ya1{bottom:325.466667pt;}
.y7f{bottom:331.226667pt;}
.yd9{bottom:331.866667pt;}
.yb5{bottom:335.066667pt;}
.y2e{bottom:335.226667pt;}
.yf4{bottom:336.506667pt;}
.y5a{bottom:336.826667pt;}
.ya0{bottom:343.066667pt;}
.y7e{bottom:348.986667pt;}
.yd8{bottom:349.466667pt;}
.y2d{bottom:352.826667pt;}
.yf3{bottom:354.106667pt;}
.y59{bottom:354.426667pt;}
.y9f{bottom:360.866667pt;}
.y7d{bottom:366.626667pt;}
.yd7{bottom:367.106667pt;}
.yf2{bottom:369.506667pt;}
.yb4{bottom:370.466667pt;}
.y2c{bottom:370.626667pt;}
.y58{bottom:372.066667pt;}
.y9e{bottom:378.466667pt;}
.y7c{bottom:384.226667pt;}
.yd6{bottom:384.866667pt;}
.yf1{bottom:387.106667pt;}
.yb3{bottom:388.066667pt;}
.y2b{bottom:388.226667pt;}
.y57{bottom:389.666667pt;}
.y9d{bottom:396.066667pt;}
.yd5{bottom:402.466667pt;}
.y7b{bottom:402.786667pt;}
.yf0{bottom:404.706667pt;}
.yb2{bottom:405.666667pt;}
.y2a{bottom:405.826667pt;}
.y56{bottom:407.266667pt;}
.y9c{bottom:413.666667pt;}
.yd4{bottom:420.066667pt;}
.y7a{bottom:421.346667pt;}
.yef{bottom:422.306667pt;}
.yb1{bottom:423.266667pt;}
.y29{bottom:423.426667pt;}
.y55{bottom:425.026667pt;}
.y9b{bottom:431.266667pt;}
.yd3{bottom:437.666667pt;}
.y79{bottom:440.066667pt;}
.y28{bottom:441.026667pt;}
.y9a{bottom:449.026667pt;}
.y54{bottom:450.626667pt;}
.yd2{bottom:455.266667pt;}
.yee{bottom:457.666667pt;}
.y78{bottom:458.626667pt;}
.y27{bottom:458.786667pt;}
.y99{bottom:466.626667pt;}
.y53{bottom:468.226667pt;}
.yd1{bottom:473.026667pt;}
.yed{bottom:475.266667pt;}
.y77{bottom:476.226667pt;}
.y26{bottom:476.386667pt;}
.y98{bottom:484.226667pt;}
.y52{bottom:485.826667pt;}
.yd0{bottom:490.626667pt;}
.yec{bottom:492.866667pt;}
.y76{bottom:493.826667pt;}
.y25{bottom:493.986667pt;}
.y97{bottom:501.826667pt;}
.y51{bottom:503.426667pt;}
.ycf{bottom:508.226667pt;}
.yeb{bottom:510.466667pt;}
.y75{bottom:511.426667pt;}
.y24{bottom:511.586667pt;}
.y96{bottom:519.426667pt;}
.y50{bottom:521.186667pt;}
.yce{bottom:525.826667pt;}
.yea{bottom:528.226667pt;}
.y23{bottom:529.186667pt;}
.y95{bottom:537.186667pt;}
.ycd{bottom:543.426667pt;}
.ye9{bottom:545.826667pt;}
.y4f{bottom:546.786667pt;}
.y22{bottom:546.946667pt;}
.y94{bottom:554.786667pt;}
.ycc{bottom:561.186667pt;}
.ye8{bottom:563.426667pt;}
.y4e{bottom:564.386667pt;}
.y21{bottom:564.546667pt;}
.y93{bottom:572.386667pt;}
.ycb{bottom:578.813333pt;}
.ye7{bottom:581.053333pt;}
.y74{bottom:582.013333pt;}
.y20{bottom:582.173333pt;}
.y4d{bottom:590.013333pt;}
.yca{bottom:596.413333pt;}
.y92{bottom:598.013333pt;}
.y73{bottom:599.613333pt;}
.y1f{bottom:599.773333pt;}
.y4c{bottom:607.613333pt;}
.yc9{bottom:614.013333pt;}
.y91{bottom:615.613333pt;}
.y1e{bottom:617.373333pt;}
.y4b{bottom:625.373333pt;}
.yc8{bottom:631.613333pt;}
.y90{bottom:633.373333pt;}
.y72{bottom:634.973333pt;}
.y1d{bottom:635.133333pt;}
.y4a{bottom:642.973333pt;}
.yc7{bottom:649.373333pt;}
.y8f{bottom:650.973333pt;}
.y71{bottom:652.573333pt;}
.y1c{bottom:652.733333pt;}
.y49{bottom:660.573333pt;}
.yc6{bottom:666.973333pt;}
.y8e{bottom:668.573333pt;}
.y1b{bottom:670.333333pt;}
.y70{bottom:678.173333pt;}
.yc5{bottom:684.573333pt;}
.y48{bottom:686.173333pt;}
.y1a{bottom:687.933333pt;}
.y6f{bottom:695.773333pt;}
.yc4{bottom:702.173333pt;}
.y47{bottom:703.773333pt;}
.y19{bottom:705.533333pt;}
.y8d{bottom:711.773333pt;}
.y6e{bottom:713.533333pt;}
.yc3{bottom:719.773333pt;}
.yb0{bottom:721.533333pt;}
.y18{bottom:723.293333pt;}
.y46{bottom:729.533333pt;}
.y6d{bottom:731.133333pt;}
.yc2{bottom:737.533333pt;}
.yaf{bottom:739.133333pt;}
.y17{bottom:740.893333pt;}
.y45{bottom:747.133333pt;}
.y6c{bottom:748.733333pt;}
.yc1{bottom:755.133333pt;}
.yae{bottom:756.733333pt;}
.y16{bottom:758.493333pt;}
.y44{bottom:764.733333pt;}
.yc0{bottom:772.733333pt;}
.y6b{bottom:774.333333pt;}
.y15{bottom:780.733333pt;}
.y43{bottom:782.333333pt;}
.ybf{bottom:790.333333pt;}
.y14{bottom:798.373333pt;}
.y42{bottom:799.973333pt;}
.ybe{bottom:807.973333pt;}
.y13{bottom:816.133333pt;}
.y41{bottom:817.733333pt;}
.ybd{bottom:825.733333pt;}
.y12{bottom:829.573333pt;}
.y6a{bottom:835.333333pt;}
.y40{bottom:843.333333pt;}
.y11{bottom:848.933333pt;}
.y69{bottom:852.933333pt;}
.y3f{bottom:860.933333pt;}
.y10{bottom:868.293333pt;}
.y68{bottom:870.533333pt;}
.y3e{bottom:878.533333pt;}
.y67{bottom:888.133333pt;}
.yf{bottom:890.533333pt;}
.y3d{bottom:896.133333pt;}
.y3c{bottom:913.893333pt;}
.y9{bottom:930.373333pt;}
.y1{bottom:944.933333pt;}
.y7{bottom:975.333333pt;}
.h7{height:2.241250pt;}
.hb{height:18.880000pt;}
.h8{height:29.760000pt;}
.he{height:30.256875pt;}
.hf{height:37.479688pt;}
.h10{height:40.021563pt;}
.h4{height:41.543750pt;}
.h5{height:46.505938pt;}
.hd{height:47.310625pt;}
.ha{height:51.548750pt;}
.h3{height:56.445312pt;}
.h9{height:58.563750pt;}
.hc{height:60.057813pt;}
.h6{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.w3{width:122.272000pt;}
.w2{width:577.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:47.200000pt;}
.xe{left:61.759988pt;}
.x6{left:70.719988pt;}
.xd{left:71.999988pt;}
.xa{left:76.671988pt;}
.xf{left:85.791988pt;}
.x4{left:105.306667pt;}
.x8{left:125.151988pt;}
.xb{left:154.746655pt;}
.xc{left:171.866655pt;}
.x9{left:320.226655pt;}
.x7{left:396.893322pt;}
.x3{left:624.453333pt;}
.x5{left:737.120000pt;}
}




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