
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_653144dc049ae515e83a3f0a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_331929cad429f133f8ec0d12.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9e5a37825b6df9cc13dcee13.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_b96aace885c6ef9bafeb7fd2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_39874c8f6b5f4f0407077820.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b8c29b16d8cc4c61d6af771a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_89bffd7f9edef2b3cbe91820.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_98cd053eed04912300406173.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v1{vertical-align:-66.960000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.v4{vertical-align:27.360000px;}
.lsd{letter-spacing:-1.134000px;}
.ls7{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.274800px;}
.ls10{letter-spacing:-0.262200px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.109440px;}
.ls14{letter-spacing:0.152400px;}
.ls3{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.262080px;}
.ls1{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.662400px;}
.lsc{letter-spacing:0.828000px;}
.ls8{letter-spacing:4.320000px;}
.lsb{letter-spacing:6.480000px;}
.ls13{letter-spacing:6.785280px;}
.ls12{letter-spacing:11.520000px;}
.lsf{letter-spacing:19.440000px;}
.lse{letter-spacing:39.905280px;}
.ls11{letter-spacing:59.345280px;}
.ls0{letter-spacing:207.416640px;}
.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;}
}
.wsb{word-spacing:-66.240000px;}
.ws8{word-spacing:-28.712400px;}
.ws2{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.712400px;}
.ws4{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.297800px;}
.ws9{word-spacing:-15.426000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.580000px;}
.ws7{word-spacing:-13.939200px;}
.ws6{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._2f{margin-left:-4.504320px;}
._5{margin-left:-2.024640px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._b{width:3.078720px;}
._a{width:4.106880px;}
._9{width:5.583360px;}
._8{width:7.258560px;}
._6{width:9.141120px;}
._7{width:10.314720px;}
._14{width:11.761920px;}
._4{width:13.169280px;}
._3{width:14.175360px;}
._1b{width:15.313920px;}
._e{width:17.620800px;}
._f{width:18.849600px;}
._17{width:19.859520px;}
._15{width:21.168960px;}
._23{width:22.890240px;}
._25{width:23.969280px;}
._28{width:25.109760px;}
._26{width:26.496000px;}
._27{width:27.924480px;}
._1c{width:29.609280px;}
._1d{width:30.971520px;}
._36{width:31.991040px;}
._1e{width:33.157440px;}
._2e{width:34.378560px;}
._2d{width:35.939520px;}
._c{width:37.660800px;}
._d{width:38.817600px;}
._24{width:40.870080px;}
._43{width:41.902080px;}
._1a{width:43.056000px;}
._19{width:44.248320px;}
._16{width:46.203840px;}
._35{width:47.260800px;}
._12{width:48.421440px;}
._13{width:49.982400px;}
._34{width:51.969600px;}
._31{width:53.058240px;}
._2c{width:56.776320px;}
._1f{width:57.893760px;}
._20{width:59.423520px;}
._37{width:60.609600px;}
._32{width:61.868160px;}
._39{width:65.113920px;}
._22{width:66.438720px;}
._21{width:67.934400px;}
._33{width:71.075520px;}
._42{width:74.520000px;}
._2b{width:75.978240px;}
._29{width:77.103360px;}
._2a{width:78.598080px;}
._30{width:80.519040px;}
._3a{width:83.197440px;}
._3d{width:87.496320px;}
._18{width:88.497600px;}
._44{width:89.820480px;}
._41{width:91.279680px;}
._3b{width:95.423040px;}
._10{width:100.088640px;}
._11{width:101.717760px;}
._3f{width:103.466880px;}
._38{width:137.911680px;}
._3c{width:159.477120px;}
._40{width:226.247040px;}
._3e{width:231.744960px;}
._2{width:961.680000px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:10.800000px;}
.y71{bottom:13.494000px;}
.y62{bottom:13.500000px;}
.yc9{bottom:13.530000px;}
.yb2{bottom:13.545000px;}
.y69{bottom:13.680000px;}
.yae{bottom:13.860000px;}
.ya{bottom:20.880000px;}
.y64{bottom:27.720000px;}
.yc7{bottom:27.750000px;}
.y6d{bottom:27.900000px;}
.y37{bottom:30.600000px;}
.yc5{bottom:41.934000px;}
.y65{bottom:41.940000px;}
.yc8{bottom:41.970000px;}
.yb0{bottom:41.985000px;}
.y6e{bottom:42.120000px;}
.ybb{bottom:42.300000px;}
.y36{bottom:46.980000px;}
.y38{bottom:48.420000px;}
.y39{bottom:48.600000px;}
.y6{bottom:51.660000px;}
.y7{bottom:53.280000px;}
.yc0{bottom:56.160000px;}
.yb4{bottom:56.340000px;}
.y35{bottom:63.000000px;}
.y5{bottom:68.976000px;}
.ybe{bottom:70.380000px;}
.yb6{bottom:70.560000px;}
.yb1{bottom:70.605000px;}
.ybc{bottom:70.740000px;}
.y34{bottom:79.056000px;}
.y30{bottom:97.596000px;}
.yb5{bottom:99.000000px;}
.yc1{bottom:99.045000px;}
.y73{bottom:101.376000px;}
.ye4{bottom:103.896000px;}
.yac{bottom:106.416000px;}
.y5d{bottom:109.836000px;}
.yc4{bottom:114.516000px;}
.y93{bottom:120.456000px;}
.y2f{bottom:126.036000px;}
.y72{bottom:129.816000px;}
.ye3{bottom:132.336000px;}
.yab{bottom:134.856000px;}
.y5c{bottom:138.456000px;}
.y70{bottom:145.836000px;}
.y92{bottom:148.896000px;}
.y2e{bottom:154.470000px;}
.ye2{bottom:160.770000px;}
.yaa{bottom:163.290000px;}
.y5b{bottom:166.890000px;}
.yc3{bottom:172.290000px;}
.y6f{bottom:174.990000px;}
.y91{bottom:177.330000px;}
.y2d{bottom:182.910000px;}
.ye1{bottom:189.210000px;}
.ya9{bottom:191.730000px;}
.y5a{bottom:195.330000px;}
.y6c{bottom:204.150000px;}
.y90{bottom:205.770000px;}
.y2c{bottom:211.350000px;}
.yc2{bottom:214.950000px;}
.ye0{bottom:217.830000px;}
.ya8{bottom:220.170000px;}
.y59{bottom:223.770000px;}
.ybf{bottom:230.610000px;}
.y8f{bottom:234.210000px;}
.y2b{bottom:239.790000px;}
.ydf{bottom:246.270000px;}
.ya7{bottom:248.610000px;}
.y76{bottom:251.850000px;}
.y58{bottom:252.210000px;}
.y6b{bottom:261.930000px;}
.y8e{bottom:262.650000px;}
.y2a{bottom:268.230000px;}
.yde{bottom:274.710000px;}
.ya6{bottom:277.050000px;}
.y75{bottom:280.290000px;}
.y57{bottom:280.650000px;}
.y6a{bottom:291.090000px;}
.y8d{bottom:291.270000px;}
.y29{bottom:296.850000px;}
.ydd{bottom:303.150000px;}
.ya5{bottom:305.490000px;}
.y60{bottom:308.730000px;}
.y56{bottom:309.090000px;}
.y8c{bottom:319.755000px;}
.y68{bottom:320.295000px;}
.y28{bottom:325.335000px;}
.ydc{bottom:331.635000px;}
.ya4{bottom:334.155000px;}
.y55{bottom:337.575000px;}
.ybd{bottom:345.315000px;}
.y8b{bottom:348.195000px;}
.y67{bottom:349.635000px;}
.y27{bottom:353.775000px;}
.ydb{bottom:360.075000px;}
.ya3{bottom:362.595000px;}
.y54{bottom:366.015000px;}
.y8a{bottom:376.635000px;}
.y66{bottom:378.795000px;}
.y26{bottom:382.215000px;}
.yda{bottom:388.515000px;}
.ya2{bottom:391.035000px;}
.ye7{bottom:394.275000px;}
.y53{bottom:394.635000px;}
.y89{bottom:405.075000px;}
.y63{bottom:407.955000px;}
.y25{bottom:410.655000px;}
.yd9{bottom:416.955000px;}
.ya1{bottom:419.475000px;}
.y52{bottom:423.075000px;}
.yba{bottom:431.355000px;}
.y88{bottom:433.515000px;}
.y24{bottom:438.735000px;}
.y31{bottom:439.095000px;}
.ye5{bottom:445.035000px;}
.yd8{bottom:445.395000px;}
.ya0{bottom:447.915000px;}
.y51{bottom:451.515000px;}
.y87{bottom:461.955000px;}
.y61{bottom:465.735000px;}
.y23{bottom:471.315000px;}
.yd7{bottom:474.015000px;}
.y9f{bottom:476.355000px;}
.y50{bottom:479.955000px;}
.y86{bottom:490.395000px;}
.y22{bottom:499.755000px;}
.yd6{bottom:502.455000px;}
.y9e{bottom:504.795000px;}
.y4f{bottom:508.395000px;}
.yb9{bottom:517.935000px;}
.y85{bottom:518.835000px;}
.y21{bottom:528.195000px;}
.yd5{bottom:530.895000px;}
.y9d{bottom:533.415000px;}
.y4e{bottom:536.835000px;}
.y84{bottom:547.455000px;}
.y20{bottom:556.635000px;}
.yd4{bottom:559.335000px;}
.y9c{bottom:562.935000px;}
.y4d{bottom:565.275000px;}
.yb8{bottom:575.745000px;}
.y83{bottom:575.925000px;}
.y1f{bottom:585.105000px;}
.yd3{bottom:587.805000px;}
.y9b{bottom:591.405000px;}
.y4c{bottom:593.745000px;}
.y82{bottom:604.365000px;}
.y1e{bottom:613.725000px;}
.yd2{bottom:616.245000px;}
.y9a{bottom:619.845000px;}
.y4b{bottom:622.185000px;}
.y81{bottom:632.805000px;}
.yb7{bottom:633.345000px;}
.y1d{bottom:642.165000px;}
.yd1{bottom:644.685000px;}
.y99{bottom:648.465000px;}
.y4a{bottom:650.805000px;}
.y80{bottom:661.245000px;}
.y1c{bottom:670.605000px;}
.yd0{bottom:673.125000px;}
.y98{bottom:677.985000px;}
.y49{bottom:679.245000px;}
.y7f{bottom:689.685000px;}
.yb3{bottom:690.945000px;}
.y1b{bottom:699.045000px;}
.ycf{bottom:701.565000px;}
.y97{bottom:706.425000px;}
.y48{bottom:707.685000px;}
.yce{bottom:717.405000px;}
.y7e{bottom:718.125000px;}
.y1a{bottom:727.485000px;}
.y96{bottom:734.865000px;}
.y47{bottom:736.125000px;}
.y7d{bottom:746.565000px;}
.y19{bottom:755.925000px;}
.y95{bottom:763.305000px;}
.y46{bottom:764.565000px;}
.y7c{bottom:775.005000px;}
.y18{bottom:784.365000px;}
.y94{bottom:791.925000px;}
.y45{bottom:793.005000px;}
.y7b{bottom:803.625000px;}
.yaf{bottom:805.785000px;}
.y17{bottom:818.745000px;}
.y44{bottom:821.490000px;}
.y7a{bottom:831.750000px;}
.ycd{bottom:832.650000px;}
.y16{bottom:841.290000px;}
.y43{bottom:849.930000px;}
.y79{bottom:860.550000px;}
.y15{bottom:875.850000px;}
.y42{bottom:878.370000px;}
.y78{bottom:888.990000px;}
.ycc{bottom:890.430000px;}
.yad{bottom:892.050000px;}
.y14{bottom:898.350000px;}
.y41{bottom:906.630000px;}
.y5f{bottom:906.990000px;}
.y77{bottom:913.470000px;}
.y13{bottom:932.730000px;}
.y5e{bottom:935.070000px;}
.y40{bottom:935.430000px;}
.ycb{bottom:948.030000px;}
.y12{bottom:955.230000px;}
.y3f{bottom:963.870000px;}
.y11{bottom:989.610000px;}
.y3e{bottom:992.310000px;}
.yca{bottom:1005.810000px;}
.y10{bottom:1011.750000px;}
.y3d{bottom:1020.750000px;}
.y4{bottom:1032.810000px;}
.ye6{bottom:1048.830000px;}
.y3c{bottom:1049.190000px;}
.y3{bottom:1052.790000px;}
.yc6{bottom:1063.410000px;}
.y2{bottom:1072.620000px;}
.y3b{bottom:1077.660000px;}
.y74{bottom:1105.740000px;}
.y3a{bottom:1106.100000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1124.460000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1141.740000px;}
.h13{height:28.440000px;}
.h16{height:28.476000px;}
.h15{height:28.620000px;}
.h19{height:28.980000px;}
.h6{height:33.480000px;}
.hb{height:41.250938px;}
.h11{height:47.901094px;}
.h1{height:48.045938px;}
.hd{height:52.971680px;}
.hc{height:53.709961px;}
.h7{height:54.421875px;}
.h14{height:56.880000px;}
.h1c{height:56.916000px;}
.h17{height:57.060000px;}
.h2{height:58.621992px;}
.h10{height:60.679688px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.ha{height:66.757500px;}
.h18{height:68.084282px;}
.h12{height:68.324766px;}
.h8{height:72.562500px;}
.h5{height:72.562519px;}
.h1e{height:85.320000px;}
.h1a{height:85.536000px;}
.h1d{height:85.860000px;}
.hf{height:111.043854px;}
.h1f{height:113.976000px;}
.h1b{height:114.120000px;}
.h4{height:167.250000px;}
.he{height:268.635000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w8{width:63.216000px;}
.wb{width:105.480000px;}
.wf{width:138.600000px;}
.w11{width:154.470000px;}
.wa{width:158.790000px;}
.w10{width:178.410000px;}
.w9{width:211.890000px;}
.wc{width:263.730000px;}
.w12{width:265.710000px;}
.we{width:354.090000px;}
.w3{width:361.335000px;}
.wd{width:435.345000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x2{left:53.999986px;}
.x11{left:80.999986px;}
.xd{left:118.296000px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.x14{left:257.610000px;}
.xe{left:330.915000px;}
.x12{left:436.574986px;}
.x8{left:482.144986px;}
.xf{left:490.425000px;}
.x13{left:509.144986px;}
.x5{left:521.025000px;}
.x15{left:592.125000px;}
.x10{left:596.805000px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.v4{vertical-align:24.320000pt;}
.lsd{letter-spacing:-1.008000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.244267pt;}
.ls10{letter-spacing:-0.233067pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.097280pt;}
.ls14{letter-spacing:0.135467pt;}
.ls3{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.232960pt;}
.ls1{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.588800pt;}
.lsc{letter-spacing:0.736000pt;}
.ls8{letter-spacing:3.840000pt;}
.lsb{letter-spacing:5.760000pt;}
.ls13{letter-spacing:6.031360pt;}
.ls12{letter-spacing:10.240000pt;}
.lsf{letter-spacing:17.280000pt;}
.lse{letter-spacing:35.471360pt;}
.ls11{letter-spacing:52.751360pt;}
.ls0{letter-spacing:184.370347pt;}
.wsb{word-spacing:-58.880000pt;}
.ws8{word-spacing:-25.522133pt;}
.ws2{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.855467pt;}
.ws4{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.486933pt;}
.ws9{word-spacing:-13.712000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.390400pt;}
.ws6{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._2f{margin-left:-4.003840pt;}
._5{margin-left:-1.799680pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._b{width:2.736640pt;}
._a{width:3.650560pt;}
._9{width:4.962987pt;}
._8{width:6.452053pt;}
._6{width:8.125440pt;}
._7{width:9.168640pt;}
._14{width:10.455040pt;}
._4{width:11.706027pt;}
._3{width:12.600320pt;}
._1b{width:13.612373pt;}
._e{width:15.662933pt;}
._f{width:16.755200pt;}
._17{width:17.652907pt;}
._15{width:18.816853pt;}
._23{width:20.346880pt;}
._25{width:21.306027pt;}
._28{width:22.319787pt;}
._26{width:23.552000pt;}
._27{width:24.821760pt;}
._1c{width:26.319360pt;}
._1d{width:27.530240pt;}
._36{width:28.436480pt;}
._1e{width:29.473280pt;}
._2e{width:30.558720pt;}
._2d{width:31.946240pt;}
._c{width:33.476267pt;}
._d{width:34.504533pt;}
._24{width:36.328960pt;}
._43{width:37.246293pt;}
._1a{width:38.272000pt;}
._19{width:39.331840pt;}
._16{width:41.070080pt;}
._35{width:42.009600pt;}
._12{width:43.041280pt;}
._13{width:44.428800pt;}
._34{width:46.195200pt;}
._31{width:47.162880pt;}
._2c{width:50.467840pt;}
._1f{width:51.461120pt;}
._20{width:52.820907pt;}
._37{width:53.875200pt;}
._32{width:54.993920pt;}
._39{width:57.879040pt;}
._22{width:59.056640pt;}
._21{width:60.386133pt;}
._33{width:63.178240pt;}
._42{width:66.240000pt;}
._2b{width:67.536213pt;}
._29{width:68.536320pt;}
._2a{width:69.864960pt;}
._30{width:71.572480pt;}
._3a{width:73.953280pt;}
._3d{width:77.774507pt;}
._18{width:78.664533pt;}
._44{width:79.840427pt;}
._41{width:81.137493pt;}
._3b{width:84.820480pt;}
._10{width:88.967680pt;}
._11{width:90.415787pt;}
._3f{width:91.970560pt;}
._38{width:122.588160pt;}
._3c{width:141.757440pt;}
._40{width:201.108480pt;}
._3e{width:205.995520pt;}
._2{width:854.826667pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:9.600000pt;}
.y71{bottom:11.994667pt;}
.y62{bottom:12.000000pt;}
.yc9{bottom:12.026667pt;}
.yb2{bottom:12.040000pt;}
.y69{bottom:12.160000pt;}
.yae{bottom:12.320000pt;}
.ya{bottom:18.560000pt;}
.y64{bottom:24.640000pt;}
.yc7{bottom:24.666667pt;}
.y6d{bottom:24.800000pt;}
.y37{bottom:27.200000pt;}
.yc5{bottom:37.274667pt;}
.y65{bottom:37.280000pt;}
.yc8{bottom:37.306667pt;}
.yb0{bottom:37.320000pt;}
.y6e{bottom:37.440000pt;}
.ybb{bottom:37.600000pt;}
.y36{bottom:41.760000pt;}
.y38{bottom:43.040000pt;}
.y39{bottom:43.200000pt;}
.y6{bottom:45.920000pt;}
.y7{bottom:47.360000pt;}
.yc0{bottom:49.920000pt;}
.yb4{bottom:50.080000pt;}
.y35{bottom:56.000000pt;}
.y5{bottom:61.312000pt;}
.ybe{bottom:62.560000pt;}
.yb6{bottom:62.720000pt;}
.yb1{bottom:62.760000pt;}
.ybc{bottom:62.880000pt;}
.y34{bottom:70.272000pt;}
.y30{bottom:86.752000pt;}
.yb5{bottom:88.000000pt;}
.yc1{bottom:88.040000pt;}
.y73{bottom:90.112000pt;}
.ye4{bottom:92.352000pt;}
.yac{bottom:94.592000pt;}
.y5d{bottom:97.632000pt;}
.yc4{bottom:101.792000pt;}
.y93{bottom:107.072000pt;}
.y2f{bottom:112.032000pt;}
.y72{bottom:115.392000pt;}
.ye3{bottom:117.632000pt;}
.yab{bottom:119.872000pt;}
.y5c{bottom:123.072000pt;}
.y70{bottom:129.632000pt;}
.y92{bottom:132.352000pt;}
.y2e{bottom:137.306667pt;}
.ye2{bottom:142.906667pt;}
.yaa{bottom:145.146667pt;}
.y5b{bottom:148.346667pt;}
.yc3{bottom:153.146667pt;}
.y6f{bottom:155.546667pt;}
.y91{bottom:157.626667pt;}
.y2d{bottom:162.586667pt;}
.ye1{bottom:168.186667pt;}
.ya9{bottom:170.426667pt;}
.y5a{bottom:173.626667pt;}
.y6c{bottom:181.466667pt;}
.y90{bottom:182.906667pt;}
.y2c{bottom:187.866667pt;}
.yc2{bottom:191.066667pt;}
.ye0{bottom:193.626667pt;}
.ya8{bottom:195.706667pt;}
.y59{bottom:198.906667pt;}
.ybf{bottom:204.986667pt;}
.y8f{bottom:208.186667pt;}
.y2b{bottom:213.146667pt;}
.ydf{bottom:218.906667pt;}
.ya7{bottom:220.986667pt;}
.y76{bottom:223.866667pt;}
.y58{bottom:224.186667pt;}
.y6b{bottom:232.826667pt;}
.y8e{bottom:233.466667pt;}
.y2a{bottom:238.426667pt;}
.yde{bottom:244.186667pt;}
.ya6{bottom:246.266667pt;}
.y75{bottom:249.146667pt;}
.y57{bottom:249.466667pt;}
.y6a{bottom:258.746667pt;}
.y8d{bottom:258.906667pt;}
.y29{bottom:263.866667pt;}
.ydd{bottom:269.466667pt;}
.ya5{bottom:271.546667pt;}
.y60{bottom:274.426667pt;}
.y56{bottom:274.746667pt;}
.y8c{bottom:284.226667pt;}
.y68{bottom:284.706667pt;}
.y28{bottom:289.186667pt;}
.ydc{bottom:294.786667pt;}
.ya4{bottom:297.026667pt;}
.y55{bottom:300.066667pt;}
.ybd{bottom:306.946667pt;}
.y8b{bottom:309.506667pt;}
.y67{bottom:310.786667pt;}
.y27{bottom:314.466667pt;}
.ydb{bottom:320.066667pt;}
.ya3{bottom:322.306667pt;}
.y54{bottom:325.346667pt;}
.y8a{bottom:334.786667pt;}
.y66{bottom:336.706667pt;}
.y26{bottom:339.746667pt;}
.yda{bottom:345.346667pt;}
.ya2{bottom:347.586667pt;}
.ye7{bottom:350.466667pt;}
.y53{bottom:350.786667pt;}
.y89{bottom:360.066667pt;}
.y63{bottom:362.626667pt;}
.y25{bottom:365.026667pt;}
.yd9{bottom:370.626667pt;}
.ya1{bottom:372.866667pt;}
.y52{bottom:376.066667pt;}
.yba{bottom:383.426667pt;}
.y88{bottom:385.346667pt;}
.y24{bottom:389.986667pt;}
.y31{bottom:390.306667pt;}
.ye5{bottom:395.586667pt;}
.yd8{bottom:395.906667pt;}
.ya0{bottom:398.146667pt;}
.y51{bottom:401.346667pt;}
.y87{bottom:410.626667pt;}
.y61{bottom:413.986667pt;}
.y23{bottom:418.946667pt;}
.yd7{bottom:421.346667pt;}
.y9f{bottom:423.426667pt;}
.y50{bottom:426.626667pt;}
.y86{bottom:435.906667pt;}
.y22{bottom:444.226667pt;}
.yd6{bottom:446.626667pt;}
.y9e{bottom:448.706667pt;}
.y4f{bottom:451.906667pt;}
.yb9{bottom:460.386667pt;}
.y85{bottom:461.186667pt;}
.y21{bottom:469.506667pt;}
.yd5{bottom:471.906667pt;}
.y9d{bottom:474.146667pt;}
.y4e{bottom:477.186667pt;}
.y84{bottom:486.626667pt;}
.y20{bottom:494.786667pt;}
.yd4{bottom:497.186667pt;}
.y9c{bottom:500.386667pt;}
.y4d{bottom:502.466667pt;}
.yb8{bottom:511.773333pt;}
.y83{bottom:511.933333pt;}
.y1f{bottom:520.093333pt;}
.yd3{bottom:522.493333pt;}
.y9b{bottom:525.693333pt;}
.y4c{bottom:527.773333pt;}
.y82{bottom:537.213333pt;}
.y1e{bottom:545.533333pt;}
.yd2{bottom:547.773333pt;}
.y9a{bottom:550.973333pt;}
.y4b{bottom:553.053333pt;}
.y81{bottom:562.493333pt;}
.yb7{bottom:562.973333pt;}
.y1d{bottom:570.813333pt;}
.yd1{bottom:573.053333pt;}
.y99{bottom:576.413333pt;}
.y4a{bottom:578.493333pt;}
.y80{bottom:587.773333pt;}
.y1c{bottom:596.093333pt;}
.yd0{bottom:598.333333pt;}
.y98{bottom:602.653333pt;}
.y49{bottom:603.773333pt;}
.y7f{bottom:613.053333pt;}
.yb3{bottom:614.173333pt;}
.y1b{bottom:621.373333pt;}
.ycf{bottom:623.613333pt;}
.y97{bottom:627.933333pt;}
.y48{bottom:629.053333pt;}
.yce{bottom:637.693333pt;}
.y7e{bottom:638.333333pt;}
.y1a{bottom:646.653333pt;}
.y96{bottom:653.213333pt;}
.y47{bottom:654.333333pt;}
.y7d{bottom:663.613333pt;}
.y19{bottom:671.933333pt;}
.y95{bottom:678.493333pt;}
.y46{bottom:679.613333pt;}
.y7c{bottom:688.893333pt;}
.y18{bottom:697.213333pt;}
.y94{bottom:703.933333pt;}
.y45{bottom:704.893333pt;}
.y7b{bottom:714.333333pt;}
.yaf{bottom:716.253333pt;}
.y17{bottom:727.773333pt;}
.y44{bottom:730.213333pt;}
.y7a{bottom:739.333333pt;}
.ycd{bottom:740.133333pt;}
.y16{bottom:747.813333pt;}
.y43{bottom:755.493333pt;}
.y79{bottom:764.933333pt;}
.y15{bottom:778.533333pt;}
.y42{bottom:780.773333pt;}
.y78{bottom:790.213333pt;}
.ycc{bottom:791.493333pt;}
.yad{bottom:792.933333pt;}
.y14{bottom:798.533333pt;}
.y41{bottom:805.893333pt;}
.y5f{bottom:806.213333pt;}
.y77{bottom:811.973333pt;}
.y13{bottom:829.093333pt;}
.y5e{bottom:831.173333pt;}
.y40{bottom:831.493333pt;}
.ycb{bottom:842.693333pt;}
.y12{bottom:849.093333pt;}
.y3f{bottom:856.773333pt;}
.y11{bottom:879.653333pt;}
.y3e{bottom:882.053333pt;}
.yca{bottom:894.053333pt;}
.y10{bottom:899.333333pt;}
.y3d{bottom:907.333333pt;}
.y4{bottom:918.053333pt;}
.ye6{bottom:932.293333pt;}
.y3c{bottom:932.613333pt;}
.y3{bottom:935.813333pt;}
.yc6{bottom:945.253333pt;}
.y2{bottom:953.440000pt;}
.y3b{bottom:957.920000pt;}
.y74{bottom:982.880000pt;}
.y3a{bottom:983.200000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:999.520000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1014.880000pt;}
.h13{height:25.280000pt;}
.h16{height:25.312000pt;}
.h15{height:25.440000pt;}
.h19{height:25.760000pt;}
.h6{height:29.760000pt;}
.hb{height:36.667500pt;}
.h11{height:42.578750pt;}
.h1{height:42.707500pt;}
.hd{height:47.085938pt;}
.hc{height:47.742188pt;}
.h7{height:48.375000pt;}
.h14{height:50.560000pt;}
.h1c{height:50.592000pt;}
.h17{height:50.720000pt;}
.h2{height:52.108438pt;}
.h10{height:53.937500pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.ha{height:59.340000pt;}
.h18{height:60.519362pt;}
.h12{height:60.733125pt;}
.h8{height:64.500000pt;}
.h5{height:64.500017pt;}
.h1e{height:75.840000pt;}
.h1a{height:76.032000pt;}
.h1d{height:76.320000pt;}
.hf{height:98.705648pt;}
.h1f{height:101.312000pt;}
.h1b{height:101.440000pt;}
.h4{height:148.666667pt;}
.he{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w8{width:56.192000pt;}
.wb{width:93.760000pt;}
.wf{width:123.200000pt;}
.w11{width:137.306667pt;}
.wa{width:141.146667pt;}
.w10{width:158.586667pt;}
.w9{width:188.346667pt;}
.wc{width:234.426667pt;}
.w12{width:236.186667pt;}
.we{width:314.746667pt;}
.w3{width:321.186667pt;}
.wd{width:386.973333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x2{left:47.999988pt;}
.x11{left:71.999988pt;}
.xd{left:105.152000pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.x14{left:228.986667pt;}
.xe{left:294.146667pt;}
.x12{left:388.066655pt;}
.x8{left:428.573321pt;}
.xf{left:435.933333pt;}
.x13{left:452.573321pt;}
.x5{left:463.133333pt;}
.x15{left:526.333333pt;}
.x10{left:530.493333pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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