
    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_44ce3d3e224ebfb90db8244a.woff')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_f870b53d6b51f3c3362c9047.woff')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_2007b5f85d74ae82d0bcb47b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e95abc4db3d74e82fe49eec0.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3e32f449763e95912f6e292e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')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_d18861fe735072766e52e0f0.woff')format("woff");}.ff9{font-family:ff9;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;}
.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:-20.880000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls4{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.259800px;}
.ls18{letter-spacing:-0.253200px;}
.ls5{letter-spacing:-0.208200px;}
.lse{letter-spacing:-0.206400px;}
.lsf{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.014400px;}
.ls0{letter-spacing:0.037440px;}
.ls13{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.106800px;}
.lsb{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.298800px;}
.ls14{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.511800px;}
.ls17{letter-spacing:16.506720px;}
.ls15{letter-spacing:46.026720px;}
.ls11{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;}
}
.ws2{word-spacing:-23.940000px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.246600px;}
.wsd{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.833200px;}
.wsc{word-spacing:-14.733600px;}
.ws10{word-spacing:-14.686800px;}
.ws7{word-spacing:-14.680200px;}
.ws8{word-spacing:-14.580000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._1{margin-left:-1916.438400px;}
._3{margin-left:-1573.637760px;}
._4{margin-left:-1171.543680px;}
._5{margin-left:-1110.919680px;}
._1f{margin-left:-4.816560px;}
._c{margin-left:-3.764880px;}
._b{margin-left:-2.450160px;}
._2{margin-left:-1.126080px;}
._0{width:1.166400px;}
._6{width:2.969520px;}
._a{width:4.713600px;}
._9{width:5.856480px;}
._8{width:7.449360px;}
._7{width:8.751120px;}
._e{width:10.687680px;}
._d{width:11.892240px;}
._f{width:13.027680px;}
._13{width:16.642080px;}
._14{width:18.257760px;}
._15{width:19.720800px;}
._1a{width:20.818080px;}
._16{width:22.140000px;}
._17{width:23.186880px;}
._19{width:24.470640px;}
._18{width:25.816320px;}
._1e{width:27.102240px;}
._1d{width:28.505520px;}
._25{width:29.789280px;}
._2e{width:31.464720px;}
._10{width:32.777280px;}
._11{width:34.271280px;}
._31{width:35.287200px;}
._24{width:36.482400px;}
._23{width:37.589040px;}
._2a{width:39.083040px;}
._12{width:40.426560px;}
._20{width:41.736240px;}
._1b{width:42.876720px;}
._21{width:44.043120px;}
._26{width:45.217440px;}
._1c{width:47.119680px;}
._22{width:48.348000px;}
._37{width:49.649040px;}
._27{width:50.824800px;}
._34{width:53.514000px;}
._2d{width:56.831760px;}
._2c{width:57.847680px;}
._28{width:61.521840px;}
._35{width:62.568720px;}
._2b{width:64.421280px;}
._2f{width:65.795760px;}
._38{width:68.336640px;}
._29{width:69.589440px;}
._36{width:73.684080px;}
._33{width:100.599840px;}
._32{width:105.117840px;}
._30{width:135.496800px;}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:2.520000px;}
.y9d{bottom:4.680000px;}
.ya0{bottom:4.860000px;}
.yc6{bottom:5.760000px;}
.yc8{bottom:5.940000px;}
.yd1{bottom:5.985000px;}
.y7{bottom:6.300000px;}
.y9{bottom:11.520000px;}
.y8{bottom:12.240000px;}
.yc5{bottom:25.560000px;}
.ya{bottom:36.720000px;}
.y6{bottom:52.380000px;}
.ya2{bottom:78.840000px;}
.ye1{bottom:84.420000px;}
.y39{bottom:90.720000px;}
.yc3{bottom:93.240000px;}
.y71{bottom:93.420000px;}
.yda{bottom:93.600000px;}
.ya1{bottom:98.640000px;}
.ye0{bottom:104.220000px;}
.y8e{bottom:106.020000px;}
.yc2{bottom:109.800000px;}
.yd9{bottom:110.160000px;}
.y38{bottom:110.520000px;}
.y9e{bottom:112.680000px;}
.y70{bottom:113.220000px;}
.ydf{bottom:124.200000px;}
.y8d{bottom:126.000000px;}
.y37{bottom:130.320000px;}
.y6f{bottom:133.020000px;}
.yde{bottom:144.000000px;}
.y8c{bottom:145.800000px;}
.y36{bottom:150.300000px;}
.y6e{bottom:153.030000px;}
.ydd{bottom:163.830000px;}
.y8b{bottom:165.630000px;}
.y35{bottom:170.130000px;}
.y6d{bottom:172.830000px;}
.ydc{bottom:183.630000px;}
.y8a{bottom:185.430000px;}
.y34{bottom:189.930000px;}
.y6c{bottom:192.630000px;}
.ydb{bottom:200.190000px;}
.y9f{bottom:202.350000px;}
.y89{bottom:205.230000px;}
.y9b{bottom:209.025000px;}
.y33{bottom:209.730000px;}
.y6b{bottom:212.430000px;}
.y88{bottom:225.210000px;}
.y32{bottom:229.530000px;}
.y6a{bottom:232.230000px;}
.y87{bottom:245.010000px;}
.y31{bottom:249.510000px;}
.y69{bottom:252.210000px;}
.y30{bottom:269.310000px;}
.y68{bottom:272.010000px;}
.y86{bottom:273.810000px;}
.y2f{bottom:289.110000px;}
.y67{bottom:291.810000px;}
.y85{bottom:293.610000px;}
.yc1{bottom:295.590000px;}
.y2e{bottom:308.910000px;}
.y66{bottom:311.610000px;}
.y84{bottom:313.410000px;}
.yc0{bottom:315.390000px;}
.y2d{bottom:328.710000px;}
.y9a{bottom:329.070000px;}
.y65{bottom:331.410000px;}
.y83{bottom:333.390000px;}
.ybf{bottom:335.370000px;}
.y2c{bottom:348.690000px;}
.y64{bottom:351.390000px;}
.y82{bottom:353.190000px;}
.ybe{bottom:355.170000px;}
.y2b{bottom:368.490000px;}
.y63{bottom:371.190000px;}
.y81{bottom:372.990000px;}
.ybd{bottom:374.970000px;}
.y2a{bottom:388.290000px;}
.y62{bottom:390.990000px;}
.y80{bottom:392.790000px;}
.ybc{bottom:394.770000px;}
.y29{bottom:408.135000px;}
.y61{bottom:410.835000px;}
.y7f{bottom:412.635000px;}
.ybb{bottom:414.615000px;}
.y28{bottom:427.935000px;}
.y60{bottom:430.635000px;}
.y7e{bottom:432.615000px;}
.yba{bottom:434.595000px;}
.yd8{bottom:439.995000px;}
.y27{bottom:447.915000px;}
.y5f{bottom:450.615000px;}
.y7d{bottom:452.415000px;}
.yb9{bottom:454.395000px;}
.yd7{bottom:456.735000px;}
.y26{bottom:467.715000px;}
.y5e{bottom:470.415000px;}
.y7c{bottom:472.215000px;}
.yb8{bottom:474.195000px;}
.y25{bottom:487.515000px;}
.y5d{bottom:490.215000px;}
.y7b{bottom:492.015000px;}
.yb7{bottom:493.995000px;}
.y24{bottom:507.315000px;}
.y5c{bottom:510.015000px;}
.y7a{bottom:511.815000px;}
.yb6{bottom:513.795000px;}
.y23{bottom:527.115000px;}
.y5b{bottom:529.815000px;}
.y79{bottom:531.795000px;}
.yb5{bottom:533.775000px;}
.y22{bottom:547.095000px;}
.y5a{bottom:549.795000px;}
.y78{bottom:551.595000px;}
.yb4{bottom:553.575000px;}
.y21{bottom:566.895000px;}
.y99{bottom:567.075000px;}
.y59{bottom:569.595000px;}
.y77{bottom:571.395000px;}
.yb3{bottom:573.375000px;}
.y98{bottom:583.635000px;}
.y20{bottom:586.695000px;}
.y58{bottom:589.395000px;}
.y76{bottom:591.195000px;}
.yb2{bottom:593.175000px;}
.y1f{bottom:606.495000px;}
.y57{bottom:609.195000px;}
.y75{bottom:610.995000px;}
.yb1{bottom:612.975000px;}
.y1e{bottom:628.635000px;}
.y56{bottom:628.995000px;}
.yb0{bottom:632.955000px;}
.y74{bottom:639.975000px;}
.y1d{bottom:648.435000px;}
.y55{bottom:648.975000px;}
.yaf{bottom:652.785000px;}
.y73{bottom:659.805000px;}
.y1c{bottom:668.265000px;}
.y54{bottom:668.805000px;}
.yae{bottom:672.585000px;}
.y72{bottom:679.605000px;}
.y1b{bottom:688.065000px;}
.y53{bottom:688.605000px;}
.yad{bottom:692.385000px;}
.y1a{bottom:708.045000px;}
.y52{bottom:708.405000px;}
.yac{bottom:712.185000px;}
.y19{bottom:727.845000px;}
.y51{bottom:728.205000px;}
.yab{bottom:732.165000px;}
.y18{bottom:747.645000px;}
.y50{bottom:748.185000px;}
.yaa{bottom:751.965000px;}
.y17{bottom:767.445000px;}
.y4f{bottom:767.985000px;}
.ya9{bottom:771.765000px;}
.y16{bottom:787.245000px;}
.y4e{bottom:787.785000px;}
.ya8{bottom:791.565000px;}
.yd6{bottom:797.145000px;}
.y97{bottom:805.425000px;}
.y15{bottom:807.225000px;}
.y4d{bottom:807.585000px;}
.ya7{bottom:811.365000px;}
.yd5{bottom:811.905000px;}
.y96{bottom:825.225000px;}
.y14{bottom:827.025000px;}
.y4c{bottom:827.385000px;}
.ya6{bottom:831.345000px;}
.yd4{bottom:832.425000px;}
.y95{bottom:845.205000px;}
.y13{bottom:846.825000px;}
.y4b{bottom:847.365000px;}
.ya5{bottom:851.145000px;}
.yd3{bottom:853.125000px;}
.y94{bottom:865.005000px;}
.y12{bottom:866.625000px;}
.y4a{bottom:867.165000px;}
.ya4{bottom:870.945000px;}
.yd2{bottom:873.645000px;}
.y93{bottom:884.805000px;}
.y49{bottom:886.965000px;}
.ya3{bottom:887.505000px;}
.y11{bottom:893.985000px;}
.yd0{bottom:894.165000px;}
.y92{bottom:905.730000px;}
.y48{bottom:906.810000px;}
.y10{bottom:913.830000px;}
.ycf{bottom:914.910000px;}
.y91{bottom:925.530000px;}
.y47{bottom:926.610000px;}
.yf{bottom:933.630000px;}
.y90{bottom:945.510000px;}
.y46{bottom:946.590000px;}
.ye{bottom:948.930000px;}
.yce{bottom:961.170000px;}
.y8f{bottom:965.310000px;}
.y45{bottom:966.390000px;}
.yd{bottom:970.170000px;}
.ycd{bottom:980.970000px;}
.y44{bottom:986.190000px;}
.yc{bottom:993.570000px;}
.ycc{bottom:995.730000px;}
.y43{bottom:1005.990000px;}
.ycb{bottom:1016.250000px;}
.yb{bottom:1025.250000px;}
.y42{bottom:1025.790000px;}
.yca{bottom:1036.950000px;}
.y41{bottom:1045.590000px;}
.y5{bottom:1054.050000px;}
.yc9{bottom:1057.470000px;}
.y40{bottom:1065.570000px;}
.yc7{bottom:1077.990000px;}
.y3f{bottom:1085.370000px;}
.y4{bottom:1087.890000px;}
.yc4{bottom:1098.690000px;}
.y3e{bottom:1105.170000px;}
.y3{bottom:1118.850000px;}
.y3d{bottom:1124.970000px;}
.y3c{bottom:1144.770000px;}
.y2{bottom:1149.660000px;}
.y3b{bottom:1172.880000px;}
.y1{bottom:1181.700000px;}
.y3a{bottom:1193.400000px;}
.h14{height:19.800000px;}
.h13{height:19.980000px;}
.h15{height:20.016000px;}
.h4{height:21.780000px;}
.h7{height:27.432422px;}
.h6{height:29.464453px;}
.hc{height:34.855313px;}
.h12{height:39.600000px;}
.he{height:42.164648px;}
.hf{height:43.506914px;}
.h3{height:46.736719px;}
.ha{height:49.255313px;}
.hb{height:53.224453px;}
.hd{height:53.573906px;}
.h2{height:54.864844px;}
.h5{height:59.383125px;}
.h8{height:65.884219px;}
.h9{height:67.565039px;}
.h11{height:216.390000px;}
.h10{height:223.050000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:32.760000px;}
.w7{width:34.560000px;}
.w9{width:51.660000px;}
.w10{width:54.000000px;}
.w3{width:55.296000px;}
.we{width:63.000000px;}
.wf{width:73.620000px;}
.w15{width:95.040000px;}
.w13{width:104.076000px;}
.wc{width:105.516000px;}
.w12{width:107.460000px;}
.w14{width:116.316000px;}
.wb{width:118.260000px;}
.wd{width:126.936000px;}
.w11{width:147.816000px;}
.wa{width:167.250000px;}
.w8{width:272.730000px;}
.w6{width:277.275000px;}
.w4{width:719.790000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1{left:54.179987px;}
.x2{left:62.100000px;}
.x1c{left:78.839987px;}
.x11{left:80.999987px;}
.x22{left:91.116000px;}
.x29{left:95.256000px;}
.x12{left:108.035987px;}
.x9{left:110.555987px;}
.x4{left:118.296000px;}
.xa{left:131.795987px;}
.xe{left:135.935987px;}
.xc{left:138.095987px;}
.xd{left:141.155987px;}
.x23{left:143.496000px;}
.x2a{left:149.976000px;}
.x16{left:170.670000px;}
.x21{left:181.109987px;}
.x30{left:247.169987px;}
.x8{left:250.059000px;}
.x7{left:255.099000px;}
.x1a{left:264.645000px;}
.x1b{left:267.885000px;}
.x17{left:269.145000px;}
.x1f{left:279.974987px;}
.x1d{left:281.054987px;}
.x2b{left:298.515000px;}
.x24{left:311.655000px;}
.x15{left:344.594987px;}
.x32{left:379.694987px;}
.x10{left:400.934987px;}
.x2c{left:406.695000px;}
.x6{left:429.009000px;}
.x25{left:430.635000px;}
.x5{left:442.329000px;}
.xb{left:446.504987px;}
.x18{left:447.945000px;}
.xf{left:473.504987px;}
.x19{left:482.505000px;}
.x33{left:500.504987px;}
.x2d{left:511.485000px;}
.x13{left:527.504987px;}
.x26{left:536.865000px;}
.x2e{left:628.530000px;}
.x27{left:664.530000px;}
.x20{left:706.649987px;}
.x2f{left:724.290000px;}
.x28{left:728.430000px;}
.x14{left:761.549987px;}
.x31{left:797.549987px;}
.x1e{left:798.629987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.230933pt;}
.ls18{letter-spacing:-0.225067pt;}
.ls5{letter-spacing:-0.185067pt;}
.lse{letter-spacing:-0.183467pt;}
.lsf{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.012800pt;}
.ls0{letter-spacing:0.033280pt;}
.ls13{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.094933pt;}
.lsb{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.265600pt;}
.ls14{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.454933pt;}
.ls17{letter-spacing:14.672640pt;}
.ls15{letter-spacing:40.912640pt;}
.ls11{letter-spacing:56.912640pt;}
.ws2{word-spacing:-21.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.552533pt;}
.wsd{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.185067pt;}
.wsc{word-spacing:-13.096533pt;}
.ws10{word-spacing:-13.054933pt;}
.ws7{word-spacing:-13.049067pt;}
.ws8{word-spacing:-12.960000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._1{margin-left:-1703.500800pt;}
._3{margin-left:-1398.789120pt;}
._4{margin-left:-1041.372160pt;}
._5{margin-left:-987.484160pt;}
._1f{margin-left:-4.281387pt;}
._c{margin-left:-3.346560pt;}
._b{margin-left:-2.177920pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.036800pt;}
._6{width:2.639573pt;}
._a{width:4.189867pt;}
._9{width:5.205760pt;}
._8{width:6.621653pt;}
._7{width:7.778773pt;}
._e{width:9.500160pt;}
._d{width:10.570880pt;}
._f{width:11.580160pt;}
._13{width:14.792960pt;}
._14{width:16.229120pt;}
._15{width:17.529600pt;}
._1a{width:18.504960pt;}
._16{width:19.680000pt;}
._17{width:20.610560pt;}
._19{width:21.751680pt;}
._18{width:22.947840pt;}
._1e{width:24.090880pt;}
._1d{width:25.338240pt;}
._25{width:26.479360pt;}
._2e{width:27.968640pt;}
._10{width:29.135360pt;}
._11{width:30.463360pt;}
._31{width:31.366400pt;}
._24{width:32.428800pt;}
._23{width:33.412480pt;}
._2a{width:34.740480pt;}
._12{width:35.934720pt;}
._20{width:37.098880pt;}
._1b{width:38.112640pt;}
._21{width:39.149440pt;}
._26{width:40.193280pt;}
._1c{width:41.884160pt;}
._22{width:42.976000pt;}
._37{width:44.132480pt;}
._27{width:45.177600pt;}
._34{width:47.568000pt;}
._2d{width:50.517120pt;}
._2c{width:51.420160pt;}
._28{width:54.686080pt;}
._35{width:55.616640pt;}
._2b{width:57.263360pt;}
._2f{width:58.485120pt;}
._38{width:60.743680pt;}
._29{width:61.857280pt;}
._36{width:65.496960pt;}
._33{width:89.422080pt;}
._32{width:93.438080pt;}
._30{width:120.441600pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:2.240000pt;}
.y9d{bottom:4.160000pt;}
.ya0{bottom:4.320000pt;}
.yc6{bottom:5.120000pt;}
.yc8{bottom:5.280000pt;}
.yd1{bottom:5.320000pt;}
.y7{bottom:5.600000pt;}
.y9{bottom:10.240000pt;}
.y8{bottom:10.880000pt;}
.yc5{bottom:22.720000pt;}
.ya{bottom:32.640000pt;}
.y6{bottom:46.560000pt;}
.ya2{bottom:70.080000pt;}
.ye1{bottom:75.040000pt;}
.y39{bottom:80.640000pt;}
.yc3{bottom:82.880000pt;}
.y71{bottom:83.040000pt;}
.yda{bottom:83.200000pt;}
.ya1{bottom:87.680000pt;}
.ye0{bottom:92.640000pt;}
.y8e{bottom:94.240000pt;}
.yc2{bottom:97.600000pt;}
.yd9{bottom:97.920000pt;}
.y38{bottom:98.240000pt;}
.y9e{bottom:100.160000pt;}
.y70{bottom:100.640000pt;}
.ydf{bottom:110.400000pt;}
.y8d{bottom:112.000000pt;}
.y37{bottom:115.840000pt;}
.y6f{bottom:118.240000pt;}
.yde{bottom:128.000000pt;}
.y8c{bottom:129.600000pt;}
.y36{bottom:133.600000pt;}
.y6e{bottom:136.026667pt;}
.ydd{bottom:145.626667pt;}
.y8b{bottom:147.226667pt;}
.y35{bottom:151.226667pt;}
.y6d{bottom:153.626667pt;}
.ydc{bottom:163.226667pt;}
.y8a{bottom:164.826667pt;}
.y34{bottom:168.826667pt;}
.y6c{bottom:171.226667pt;}
.ydb{bottom:177.946667pt;}
.y9f{bottom:179.866667pt;}
.y89{bottom:182.426667pt;}
.y9b{bottom:185.800000pt;}
.y33{bottom:186.426667pt;}
.y6b{bottom:188.826667pt;}
.y88{bottom:200.186667pt;}
.y32{bottom:204.026667pt;}
.y6a{bottom:206.426667pt;}
.y87{bottom:217.786667pt;}
.y31{bottom:221.786667pt;}
.y69{bottom:224.186667pt;}
.y30{bottom:239.386667pt;}
.y68{bottom:241.786667pt;}
.y86{bottom:243.386667pt;}
.y2f{bottom:256.986667pt;}
.y67{bottom:259.386667pt;}
.y85{bottom:260.986667pt;}
.yc1{bottom:262.746667pt;}
.y2e{bottom:274.586667pt;}
.y66{bottom:276.986667pt;}
.y84{bottom:278.586667pt;}
.yc0{bottom:280.346667pt;}
.y2d{bottom:292.186667pt;}
.y9a{bottom:292.506667pt;}
.y65{bottom:294.586667pt;}
.y83{bottom:296.346667pt;}
.ybf{bottom:298.106667pt;}
.y2c{bottom:309.946667pt;}
.y64{bottom:312.346667pt;}
.y82{bottom:313.946667pt;}
.ybe{bottom:315.706667pt;}
.y2b{bottom:327.546667pt;}
.y63{bottom:329.946667pt;}
.y81{bottom:331.546667pt;}
.ybd{bottom:333.306667pt;}
.y2a{bottom:345.146667pt;}
.y62{bottom:347.546667pt;}
.y80{bottom:349.146667pt;}
.ybc{bottom:350.906667pt;}
.y29{bottom:362.786667pt;}
.y61{bottom:365.186667pt;}
.y7f{bottom:366.786667pt;}
.ybb{bottom:368.546667pt;}
.y28{bottom:380.386667pt;}
.y60{bottom:382.786667pt;}
.y7e{bottom:384.546667pt;}
.yba{bottom:386.306667pt;}
.yd8{bottom:391.106667pt;}
.y27{bottom:398.146667pt;}
.y5f{bottom:400.546667pt;}
.y7d{bottom:402.146667pt;}
.yb9{bottom:403.906667pt;}
.yd7{bottom:405.986667pt;}
.y26{bottom:415.746667pt;}
.y5e{bottom:418.146667pt;}
.y7c{bottom:419.746667pt;}
.yb8{bottom:421.506667pt;}
.y25{bottom:433.346667pt;}
.y5d{bottom:435.746667pt;}
.y7b{bottom:437.346667pt;}
.yb7{bottom:439.106667pt;}
.y24{bottom:450.946667pt;}
.y5c{bottom:453.346667pt;}
.y7a{bottom:454.946667pt;}
.yb6{bottom:456.706667pt;}
.y23{bottom:468.546667pt;}
.y5b{bottom:470.946667pt;}
.y79{bottom:472.706667pt;}
.yb5{bottom:474.466667pt;}
.y22{bottom:486.306667pt;}
.y5a{bottom:488.706667pt;}
.y78{bottom:490.306667pt;}
.yb4{bottom:492.066667pt;}
.y21{bottom:503.906667pt;}
.y99{bottom:504.066667pt;}
.y59{bottom:506.306667pt;}
.y77{bottom:507.906667pt;}
.yb3{bottom:509.666667pt;}
.y98{bottom:518.786667pt;}
.y20{bottom:521.506667pt;}
.y58{bottom:523.906667pt;}
.y76{bottom:525.506667pt;}
.yb2{bottom:527.266667pt;}
.y1f{bottom:539.106667pt;}
.y57{bottom:541.506667pt;}
.y75{bottom:543.106667pt;}
.yb1{bottom:544.866667pt;}
.y1e{bottom:558.786667pt;}
.y56{bottom:559.106667pt;}
.yb0{bottom:562.626667pt;}
.y74{bottom:568.866667pt;}
.y1d{bottom:576.386667pt;}
.y55{bottom:576.866667pt;}
.yaf{bottom:580.253333pt;}
.y73{bottom:586.493333pt;}
.y1c{bottom:594.013333pt;}
.y54{bottom:594.493333pt;}
.yae{bottom:597.853333pt;}
.y72{bottom:604.093333pt;}
.y1b{bottom:611.613333pt;}
.y53{bottom:612.093333pt;}
.yad{bottom:615.453333pt;}
.y1a{bottom:629.373333pt;}
.y52{bottom:629.693333pt;}
.yac{bottom:633.053333pt;}
.y19{bottom:646.973333pt;}
.y51{bottom:647.293333pt;}
.yab{bottom:650.813333pt;}
.y18{bottom:664.573333pt;}
.y50{bottom:665.053333pt;}
.yaa{bottom:668.413333pt;}
.y17{bottom:682.173333pt;}
.y4f{bottom:682.653333pt;}
.ya9{bottom:686.013333pt;}
.y16{bottom:699.773333pt;}
.y4e{bottom:700.253333pt;}
.ya8{bottom:703.613333pt;}
.yd6{bottom:708.573333pt;}
.y97{bottom:715.933333pt;}
.y15{bottom:717.533333pt;}
.y4d{bottom:717.853333pt;}
.ya7{bottom:721.213333pt;}
.yd5{bottom:721.693333pt;}
.y96{bottom:733.533333pt;}
.y14{bottom:735.133333pt;}
.y4c{bottom:735.453333pt;}
.ya6{bottom:738.973333pt;}
.yd4{bottom:739.933333pt;}
.y95{bottom:751.293333pt;}
.y13{bottom:752.733333pt;}
.y4b{bottom:753.213333pt;}
.ya5{bottom:756.573333pt;}
.yd3{bottom:758.333333pt;}
.y94{bottom:768.893333pt;}
.y12{bottom:770.333333pt;}
.y4a{bottom:770.813333pt;}
.ya4{bottom:774.173333pt;}
.yd2{bottom:776.573333pt;}
.y93{bottom:786.493333pt;}
.y49{bottom:788.413333pt;}
.ya3{bottom:788.893333pt;}
.y11{bottom:794.653333pt;}
.yd0{bottom:794.813333pt;}
.y92{bottom:805.093333pt;}
.y48{bottom:806.053333pt;}
.y10{bottom:812.293333pt;}
.ycf{bottom:813.253333pt;}
.y91{bottom:822.693333pt;}
.y47{bottom:823.653333pt;}
.yf{bottom:829.893333pt;}
.y90{bottom:840.453333pt;}
.y46{bottom:841.413333pt;}
.ye{bottom:843.493333pt;}
.yce{bottom:854.373333pt;}
.y8f{bottom:858.053333pt;}
.y45{bottom:859.013333pt;}
.yd{bottom:862.373333pt;}
.ycd{bottom:871.973333pt;}
.y44{bottom:876.613333pt;}
.yc{bottom:883.173333pt;}
.ycc{bottom:885.093333pt;}
.y43{bottom:894.213333pt;}
.ycb{bottom:903.333333pt;}
.yb{bottom:911.333333pt;}
.y42{bottom:911.813333pt;}
.yca{bottom:921.733333pt;}
.y41{bottom:929.413333pt;}
.y5{bottom:936.933333pt;}
.yc9{bottom:939.973333pt;}
.y40{bottom:947.173333pt;}
.yc7{bottom:958.213333pt;}
.y3f{bottom:964.773333pt;}
.y4{bottom:967.013333pt;}
.yc4{bottom:976.613333pt;}
.y3e{bottom:982.373333pt;}
.y3{bottom:994.533333pt;}
.y3d{bottom:999.973333pt;}
.y3c{bottom:1017.573333pt;}
.y2{bottom:1021.920000pt;}
.y3b{bottom:1042.560000pt;}
.y1{bottom:1050.400000pt;}
.y3a{bottom:1060.800000pt;}
.h14{height:17.600000pt;}
.h13{height:17.760000pt;}
.h15{height:17.792000pt;}
.h4{height:19.360000pt;}
.h7{height:24.384375pt;}
.h6{height:26.190625pt;}
.hc{height:30.982500pt;}
.h12{height:35.200000pt;}
.he{height:37.479688pt;}
.hf{height:38.672812pt;}
.h3{height:41.543750pt;}
.ha{height:43.782500pt;}
.hb{height:47.310625pt;}
.hd{height:47.621250pt;}
.h2{height:48.768750pt;}
.h5{height:52.785000pt;}
.h8{height:58.563750pt;}
.h9{height:60.057813pt;}
.h11{height:192.346667pt;}
.h10{height:198.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:29.120000pt;}
.w7{width:30.720000pt;}
.w9{width:45.920000pt;}
.w10{width:48.000000pt;}
.w3{width:49.152000pt;}
.we{width:56.000000pt;}
.wf{width:65.440000pt;}
.w15{width:84.480000pt;}
.w13{width:92.512000pt;}
.wc{width:93.792000pt;}
.w12{width:95.520000pt;}
.w14{width:103.392000pt;}
.wb{width:105.120000pt;}
.wd{width:112.832000pt;}
.w11{width:131.392000pt;}
.wa{width:148.666667pt;}
.w8{width:242.426667pt;}
.w6{width:246.466667pt;}
.w4{width:639.813333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1{left:48.159988pt;}
.x2{left:55.200000pt;}
.x1c{left:70.079988pt;}
.x11{left:71.999988pt;}
.x22{left:80.992000pt;}
.x29{left:84.672000pt;}
.x12{left:96.031988pt;}
.x9{left:98.271988pt;}
.x4{left:105.152000pt;}
.xa{left:117.151988pt;}
.xe{left:120.831988pt;}
.xc{left:122.751988pt;}
.xd{left:125.471988pt;}
.x23{left:127.552000pt;}
.x2a{left:133.312000pt;}
.x16{left:151.706667pt;}
.x21{left:160.986655pt;}
.x30{left:219.706655pt;}
.x8{left:222.274667pt;}
.x7{left:226.754667pt;}
.x1a{left:235.240000pt;}
.x1b{left:238.120000pt;}
.x17{left:239.240000pt;}
.x1f{left:248.866655pt;}
.x1d{left:249.826655pt;}
.x2b{left:265.346667pt;}
.x24{left:277.026667pt;}
.x15{left:306.306655pt;}
.x32{left:337.506655pt;}
.x10{left:356.386655pt;}
.x2c{left:361.506667pt;}
.x6{left:381.341333pt;}
.x25{left:382.786667pt;}
.x5{left:393.181333pt;}
.xb{left:396.893322pt;}
.x18{left:398.173333pt;}
.xf{left:420.893322pt;}
.x19{left:428.893333pt;}
.x33{left:444.893322pt;}
.x2d{left:454.653333pt;}
.x13{left:468.893322pt;}
.x26{left:477.213333pt;}
.x2e{left:558.693333pt;}
.x27{left:590.693333pt;}
.x20{left:628.133322pt;}
.x2f{left:643.813333pt;}
.x28{left:647.493333pt;}
.x14{left:676.933322pt;}
.x31{left:708.933322pt;}
.x1e{left:709.893322pt;}
}




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