
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_65d75394f1e18d992b6b6deb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_22c1d89ae89e8db983a44597.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919434;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_9cf5a5be1ce26cbdb81255f9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.337190;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_c2acb2af7d22764942f46cf3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.331331;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_989d78aa7f815743498e8514.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.331331;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_aaf3cb8bba50bb0453032543.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921875;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_6a8c35fd8136730224408fdd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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_77f68113a36473ca760be17b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_f6ed499a093e075d2549a402.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.337190;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_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_436cc4c3d1690b2c0c8f99d7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.753906;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls1d{letter-spacing:-0.645098px;}
.ls1f{letter-spacing:-0.341523px;}
.ls21{letter-spacing:-0.322549px;}
.ls16{letter-spacing:-0.280200px;}
.ls1b{letter-spacing:-0.226200px;}
.ls23{letter-spacing:-0.108000px;}
.ls29{letter-spacing:-0.106800px;}
.ls1a{letter-spacing:-0.089400px;}
.ls22{letter-spacing:-0.072000px;}
.ls15{letter-spacing:-0.053280px;}
.ls13{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.018973px;}
.lsf{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.094867px;}
.ls11{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.113841px;}
.ls19{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.170761px;}
.ls1{letter-spacing:0.180000px;}
.lse{letter-spacing:0.221357px;}
.ls24{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.262200px;}
.ls20{letter-spacing:0.265629px;}
.ls17{letter-spacing:0.274800px;}
.ls25{letter-spacing:0.302400px;}
.ls4{letter-spacing:0.303576px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.379470px;}
.ls1c{letter-spacing:0.493800px;}
.ls18{letter-spacing:0.666000px;}
.ls27{letter-spacing:0.979920px;}
.lsa{letter-spacing:1.631719px;}
.ls8{letter-spacing:4.667475px;}
.lsc{letter-spacing:4.793965px;}
.ls7{letter-spacing:5.426414px;}
.lsd{letter-spacing:6.944292px;}
.ls1e{letter-spacing:6.956941px;}
.ls28{letter-spacing:7.866720px;}
.ls5{letter-spacing:13.774744px;}
.ls6{letter-spacing:13.901234px;}
.ls3{letter-spacing:14.533683px;}
.ls26{letter-spacing:41.706720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-19.063440px;}
.ws14{word-spacing:-18.157617px;}
.ws15{word-spacing:-17.226000px;}
.ws6{word-spacing:-16.888080px;}
.ws1{word-spacing:-16.822200px;}
.ws8{word-spacing:-16.757280px;}
.ws5{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.560000px;}
.ws17{word-spacing:-16.506480px;}
.ws4{word-spacing:-16.333080px;}
.wse{word-spacing:-15.918747px;}
.ws10{word-spacing:-15.842853px;}
.wsd{word-spacing:-15.823879px;}
.ws11{word-spacing:-15.501330px;}
.wsf{word-spacing:-15.482357px;}
.ws2{word-spacing:-15.300000px;}
.ws9{word-spacing:-14.940000px;}
.ws13{word-spacing:-13.392000px;}
.wsc{word-spacing:-10.933800px;}
.ws3{word-spacing:-10.808640px;}
.wsb{word-spacing:-10.440000px;}
.wsa{word-spacing:-10.213800px;}
.ws12{word-spacing:-8.928000px;}
.ws16{word-spacing:0.000000px;}
._1{margin-left:-12.133440px;}
._12{margin-left:-8.485920px;}
._4{margin-left:-7.473120px;}
._11{margin-left:-4.840560px;}
._9{margin-left:-2.160546px;}
._0{margin-left:-1.093680px;}
._3{width:1.015920px;}
._7{width:2.259735px;}
._a{width:3.770312px;}
._8{width:5.109275px;}
._6{width:6.748020px;}
._5{width:7.888320px;}
._e{width:9.019440px;}
._c{width:10.221120px;}
._2{width:12.130560px;}
._f{width:13.626000px;}
._d{width:14.700960px;}
._b{width:20.198880px;}
._10{width:199.386720px;}
.fc5{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs9{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs8{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:3.780000px;}
.y39{bottom:4.140000px;}
.y53{bottom:5.010000px;}
.y50{bottom:6.300000px;}
.y2{bottom:9.930000px;}
.y43{bottom:20.160000px;}
.y4{bottom:22.710000px;}
.y38{bottom:24.345000px;}
.y42{bottom:28.080000px;}
.y4f{bottom:29.880000px;}
.y37{bottom:44.505000px;}
.y3{bottom:47.910000px;}
.y4e{bottom:53.454000px;}
.y7{bottom:57.060000px;}
.y41{bottom:57.774000px;}
.y36{bottom:64.485000px;}
.y40{bottom:68.934000px;}
.y4d{bottom:74.514000px;}
.y3f{bottom:80.634000px;}
.y4c{bottom:84.414000px;}
.y35{bottom:84.645000px;}
.y8e{bottom:90.216000px;}
.y3e{bottom:93.774000px;}
.y51{bottom:94.356000px;}
.y4b{bottom:103.314000px;}
.y34{bottom:104.805000px;}
.y8d{bottom:108.576000px;}
.y3a{bottom:114.156000px;}
.y3d{bottom:115.734000px;}
.y4a{bottom:120.954000px;}
.y33{bottom:124.785000px;}
.y8c{bottom:126.756000px;}
.yb3{bottom:127.296000px;}
.y49{bottom:127.434000px;}
.y48{bottom:142.914000px;}
.y32{bottom:144.945000px;}
.y8b{bottom:145.116000px;}
.y47{bottom:158.394000px;}
.y8a{bottom:163.470000px;}
.y31{bottom:164.925000px;}
.y46{bottom:174.054000px;}
.y3c{bottom:177.654000px;}
.y89{bottom:181.650000px;}
.y30{bottom:185.085000px;}
.y3b{bottom:188.274000px;}
.y45{bottom:189.534000px;}
.y88{bottom:200.010000px;}
.y44{bottom:205.014000px;}
.y2f{bottom:205.245000px;}
.y87{bottom:218.370000px;}
.y2e{bottom:225.225000px;}
.yb2{bottom:236.010000px;}
.y86{bottom:237.270000px;}
.y2d{bottom:245.385000px;}
.y85{bottom:257.250000px;}
.yb1{bottom:262.110000px;}
.y2c{bottom:265.545000px;}
.y1d{bottom:270.045000px;}
.y84{bottom:277.410000px;}
.y2b{bottom:285.555000px;}
.yb0{bottom:288.210000px;}
.y1c{bottom:294.195000px;}
.y83{bottom:297.570000px;}
.y2a{bottom:305.715000px;}
.yaf{bottom:314.310000px;}
.y82{bottom:317.550000px;}
.y1b{bottom:318.315000px;}
.y29{bottom:325.875000px;}
.yf{bottom:332.490000px;}
.y81{bottom:337.710000px;}
.yae{bottom:340.635000px;}
.y1a{bottom:342.435000px;}
.y28{bottom:345.855000px;}
.y80{bottom:357.915000px;}
.y27{bottom:366.015000px;}
.y19{bottom:366.555000px;}
.yad{bottom:366.735000px;}
.y7f{bottom:377.895000px;}
.y26{bottom:388.335000px;}
.y18{bottom:390.675000px;}
.yac{bottom:392.835000px;}
.y7d{bottom:398.055000px;}
.y7e{bottom:401.835000px;}
.y25{bottom:411.735000px;}
.y17{bottom:414.975000px;}
.y7c{bottom:418.215000px;}
.yab{bottom:418.935000px;}
.y24{bottom:435.315000px;}
.y7b{bottom:438.195000px;}
.y16{bottom:439.095000px;}
.yaa{bottom:445.035000px;}
.y7a{bottom:458.355000px;}
.y23{bottom:458.895000px;}
.y15{bottom:463.215000px;}
.ya9{bottom:471.135000px;}
.y79{bottom:478.515000px;}
.y22{bottom:482.295000px;}
.y14{bottom:487.335000px;}
.ya8{bottom:497.415000px;}
.y78{bottom:498.495000px;}
.y21{bottom:505.875000px;}
.y13{bottom:511.455000px;}
.y76{bottom:518.655000px;}
.y77{bottom:522.435000px;}
.ya7{bottom:523.515000px;}
.y20{bottom:529.455000px;}
.y12{bottom:535.620000px;}
.y75{bottom:538.815000px;}
.ya6{bottom:549.615000px;}
.y1f{bottom:552.900000px;}
.y74{bottom:558.795000px;}
.y11{bottom:559.740000px;}
.ya5{bottom:575.715000px;}
.y1e{bottom:576.480000px;}
.y73{bottom:578.955000px;}
.y10{bottom:584.040000px;}
.y72{bottom:599.115000px;}
.ya4{bottom:601.815000px;}
.y70{bottom:619.125000px;}
.y71{bottom:622.905000px;}
.ya3{bottom:628.125000px;}
.y6f{bottom:639.285000px;}
.ya2{bottom:654.225000px;}
.y6e{bottom:659.265000px;}
.y6d{bottom:679.425000px;}
.ya1{bottom:680.325000px;}
.y6b{bottom:699.585000px;}
.y6c{bottom:703.365000px;}
.ya0{bottom:706.425000px;}
.y6a{bottom:719.565000px;}
.y9f{bottom:732.525000px;}
.y69{bottom:739.725000px;}
.y9e{bottom:755.745000px;}
.y68{bottom:759.885000px;}
.y9d{bottom:778.785000px;}
.y66{bottom:779.865000px;}
.y67{bottom:783.645000px;}
.y65{bottom:800.025000px;}
.y9c{bottom:804.885000px;}
.y64{bottom:820.185000px;}
.y9b{bottom:830.985000px;}
.y63{bottom:840.165000px;}
.y9a{bottom:857.265000px;}
.y62{bottom:860.325000px;}
.y99{bottom:880.350000px;}
.y60{bottom:880.530000px;}
.y61{bottom:884.310000px;}
.y5f{bottom:900.510000px;}
.y98{bottom:903.570000px;}
.y5e{bottom:920.670000px;}
.y97{bottom:926.790000px;}
.ye{bottom:928.770000px;}
.yd{bottom:933.450000px;}
.y5d{bottom:940.830000px;}
.y96{bottom:946.770000px;}
.yc{bottom:958.290000px;}
.y5b{bottom:960.810000px;}
.y5c{bottom:964.590000px;}
.y95{bottom:966.930000px;}
.y5a{bottom:980.970000px;}
.yb{bottom:984.390000px;}
.y94{bottom:986.910000px;}
.y59{bottom:1001.130000px;}
.ya{bottom:1006.710000px;}
.y93{bottom:1007.070000px;}
.y58{bottom:1021.110000px;}
.y92{bottom:1027.230000px;}
.y9{bottom:1040.370000px;}
.y57{bottom:1041.270000px;}
.y91{bottom:1047.210000px;}
.y55{bottom:1064.310000px;}
.y8f{bottom:1067.370000px;}
.y56{bottom:1068.090000px;}
.y90{bottom:1071.150000px;}
.y8{bottom:1071.870000px;}
.y52{bottom:1075.140000px;}
.y54{bottom:1087.530000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.hd{height:4.064063px;}
.h19{height:4.210313px;}
.h15{height:21.114844px;}
.h1b{height:22.104141px;}
.h14{height:25.136719px;}
.h1d{height:27.720000px;}
.h10{height:29.158594px;}
.hf{height:29.464453px;}
.h18{height:38.100586px;}
.h16{height:38.997070px;}
.h17{height:39.471680px;}
.h7{height:40.132617px;}
.h1f{height:41.215078px;}
.h20{height:41.442891px;}
.h6{height:41.726953px;}
.hc{height:42.164648px;}
.h5{height:46.251562px;}
.hb{height:48.229102px;}
.ha{height:48.579258px;}
.h12{height:57.559570px;}
.h21{height:59.439023px;}
.h11{height:60.338990px;}
.h1a{height:60.672508px;}
.h1c{height:63.349102px;}
.h9{height:63.699258px;}
.h1e{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h8{height:89.792930px;}
.h4{height:117.180000px;}
.h13{height:217.620000px;}
.he{height:593.745000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w5{width:132.660000px;}
.w7{width:162.900000px;}
.w6{width:596.490000px;}
.w3{width:622.410000px;}
.w8{width:893.159973px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2f{left:7.056000px;}
.x1a{left:8.100000px;}
.x4{left:12.780000px;}
.x6{left:16.020000px;}
.x22{left:18.180000px;}
.x18{left:19.620000px;}
.x17{left:22.500000px;}
.x16{left:25.560000px;}
.x24{left:29.160000px;}
.x10{left:43.740000px;}
.x23{left:47.700000px;}
.x11{left:50.760000px;}
.xf{left:54.900000px;}
.x25{left:57.060000px;}
.x27{left:63.045000px;}
.x1e{left:64.845000px;}
.x15{left:67.134000px;}
.x1f{left:68.625000px;}
.x13{left:69.654000px;}
.x14{left:73.254000px;}
.x1{left:78.300000px;}
.x9{left:86.435987px;}
.x2{left:95.790000px;}
.x26{left:102.774000px;}
.x21{left:106.734000px;}
.x12{left:124.554000px;}
.x2d{left:127.125000px;}
.x2e{left:134.685000px;}
.x5{left:141.345000px;}
.x28{left:158.265000px;}
.x29{left:178.605000px;}
.x3{left:182.370000px;}
.x2a{left:202.185000px;}
.x2b{left:217.335000px;}
.x19{left:219.090000px;}
.x46{left:302.474987px;}
.x3d{left:306.794987px;}
.x34{left:308.234987px;}
.x2c{left:311.655000px;}
.x40{left:317.594987px;}
.x3b{left:320.654987px;}
.x47{left:323.714987px;}
.x3f{left:335.774987px;}
.x30{left:337.394987px;}
.x37{left:339.554987px;}
.x33{left:345.674987px;}
.x43{left:347.474987px;}
.x3a{left:349.994987px;}
.xb{left:373.754987px;}
.x1b{left:426.540000px;}
.x45{left:446.684987px;}
.x1c{left:449.940000px;}
.xa{left:497.624987px;}
.x38{left:548.204973px;}
.x39{left:553.784987px;}
.x31{left:557.744973px;}
.x32{left:563.324987px;}
.x3c{left:566.924973px;}
.x41{left:570.164973px;}
.x1d{left:572.550000px;}
.x42{left:575.744987px;}
.x20{left:577.950000px;}
.x35{left:579.344973px;}
.x3e{left:580.784973px;}
.x44{left:582.584987px;}
.x36{left:584.924987px;}
.xc{left:587.084987px;}
.xd{left:597.344987px;}
.x8{left:766.049987px;}
.x7{left:784.439987px;}
.xe{left:806.939987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls1d{letter-spacing:-0.573421pt;}
.ls1f{letter-spacing:-0.303576pt;}
.ls21{letter-spacing:-0.286710pt;}
.ls16{letter-spacing:-0.249067pt;}
.ls1b{letter-spacing:-0.201067pt;}
.ls23{letter-spacing:-0.096000pt;}
.ls29{letter-spacing:-0.094933pt;}
.ls1a{letter-spacing:-0.079467pt;}
.ls22{letter-spacing:-0.064000pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls13{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.016865pt;}
.lsf{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.084327pt;}
.ls11{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.101192pt;}
.ls19{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.151788pt;}
.ls1{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.196762pt;}
.ls24{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.233067pt;}
.ls20{letter-spacing:0.236114pt;}
.ls17{letter-spacing:0.244267pt;}
.ls25{letter-spacing:0.268800pt;}
.ls4{letter-spacing:0.269845pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.337306pt;}
.ls1c{letter-spacing:0.438933pt;}
.ls18{letter-spacing:0.592000pt;}
.ls27{letter-spacing:0.871040pt;}
.lsa{letter-spacing:1.450417pt;}
.ls8{letter-spacing:4.148867pt;}
.lsc{letter-spacing:4.261302pt;}
.ls7{letter-spacing:4.823479pt;}
.lsd{letter-spacing:6.172704pt;}
.ls1e{letter-spacing:6.183948pt;}
.ls28{letter-spacing:6.992640pt;}
.ls5{letter-spacing:12.244217pt;}
.ls6{letter-spacing:12.356652pt;}
.ls3{letter-spacing:12.918829pt;}
.ls26{letter-spacing:37.072640pt;}
.ws7{word-spacing:-16.945280pt;}
.ws14{word-spacing:-16.140104pt;}
.ws15{word-spacing:-15.312000pt;}
.ws6{word-spacing:-15.011627pt;}
.ws1{word-spacing:-14.953067pt;}
.ws8{word-spacing:-14.895360pt;}
.ws5{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.720000pt;}
.ws17{word-spacing:-14.672427pt;}
.ws4{word-spacing:-14.518293pt;}
.wse{word-spacing:-14.149997pt;}
.ws10{word-spacing:-14.082536pt;}
.wsd{word-spacing:-14.065670pt;}
.ws11{word-spacing:-13.778960pt;}
.wsf{word-spacing:-13.762095pt;}
.ws2{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.280000pt;}
.ws13{word-spacing:-11.904000pt;}
.wsc{word-spacing:-9.718933pt;}
.ws3{word-spacing:-9.607680pt;}
.wsb{word-spacing:-9.280000pt;}
.wsa{word-spacing:-9.078933pt;}
.ws12{word-spacing:-7.936000pt;}
.ws16{word-spacing:0.000000pt;}
._1{margin-left:-10.785280pt;}
._12{margin-left:-7.543040pt;}
._4{margin-left:-6.642773pt;}
._11{margin-left:-4.302720pt;}
._9{margin-left:-1.920486pt;}
._0{margin-left:-0.972160pt;}
._3{width:0.903040pt;}
._7{width:2.008654pt;}
._a{width:3.351388pt;}
._8{width:4.541578pt;}
._6{width:5.998240pt;}
._5{width:7.011840pt;}
._e{width:8.017280pt;}
._c{width:9.085440pt;}
._2{width:10.782720pt;}
._f{width:12.112000pt;}
._d{width:13.067520pt;}
._b{width:17.954560pt;}
._10{width:177.232640pt;}
.fs6{font-size:5.120000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs9{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs8{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.360000pt;}
.y39{bottom:3.680000pt;}
.y53{bottom:4.453333pt;}
.y50{bottom:5.600000pt;}
.y2{bottom:8.826667pt;}
.y43{bottom:17.920000pt;}
.y4{bottom:20.186667pt;}
.y38{bottom:21.640000pt;}
.y42{bottom:24.960000pt;}
.y4f{bottom:26.560000pt;}
.y37{bottom:39.560000pt;}
.y3{bottom:42.586667pt;}
.y4e{bottom:47.514667pt;}
.y7{bottom:50.720000pt;}
.y41{bottom:51.354667pt;}
.y36{bottom:57.320000pt;}
.y40{bottom:61.274667pt;}
.y4d{bottom:66.234667pt;}
.y3f{bottom:71.674667pt;}
.y4c{bottom:75.034667pt;}
.y35{bottom:75.240000pt;}
.y8e{bottom:80.192000pt;}
.y3e{bottom:83.354667pt;}
.y51{bottom:83.872000pt;}
.y4b{bottom:91.834667pt;}
.y34{bottom:93.160000pt;}
.y8d{bottom:96.512000pt;}
.y3a{bottom:101.472000pt;}
.y3d{bottom:102.874667pt;}
.y4a{bottom:107.514667pt;}
.y33{bottom:110.920000pt;}
.y8c{bottom:112.672000pt;}
.yb3{bottom:113.152000pt;}
.y49{bottom:113.274667pt;}
.y48{bottom:127.034667pt;}
.y32{bottom:128.840000pt;}
.y8b{bottom:128.992000pt;}
.y47{bottom:140.794667pt;}
.y8a{bottom:145.306667pt;}
.y31{bottom:146.600000pt;}
.y46{bottom:154.714667pt;}
.y3c{bottom:157.914667pt;}
.y89{bottom:161.466667pt;}
.y30{bottom:164.520000pt;}
.y3b{bottom:167.354667pt;}
.y45{bottom:168.474667pt;}
.y88{bottom:177.786667pt;}
.y44{bottom:182.234667pt;}
.y2f{bottom:182.440000pt;}
.y87{bottom:194.106667pt;}
.y2e{bottom:200.200000pt;}
.yb2{bottom:209.786667pt;}
.y86{bottom:210.906667pt;}
.y2d{bottom:218.120000pt;}
.y85{bottom:228.666667pt;}
.yb1{bottom:232.986667pt;}
.y2c{bottom:236.040000pt;}
.y1d{bottom:240.040000pt;}
.y84{bottom:246.586667pt;}
.y2b{bottom:253.826667pt;}
.yb0{bottom:256.186667pt;}
.y1c{bottom:261.506667pt;}
.y83{bottom:264.506667pt;}
.y2a{bottom:271.746667pt;}
.yaf{bottom:279.386667pt;}
.y82{bottom:282.266667pt;}
.y1b{bottom:282.946667pt;}
.y29{bottom:289.666667pt;}
.yf{bottom:295.546667pt;}
.y81{bottom:300.186667pt;}
.yae{bottom:302.786667pt;}
.y1a{bottom:304.386667pt;}
.y28{bottom:307.426667pt;}
.y80{bottom:318.146667pt;}
.y27{bottom:325.346667pt;}
.y19{bottom:325.826667pt;}
.yad{bottom:325.986667pt;}
.y7f{bottom:335.906667pt;}
.y26{bottom:345.186667pt;}
.y18{bottom:347.266667pt;}
.yac{bottom:349.186667pt;}
.y7d{bottom:353.826667pt;}
.y7e{bottom:357.186667pt;}
.y25{bottom:365.986667pt;}
.y17{bottom:368.866667pt;}
.y7c{bottom:371.746667pt;}
.yab{bottom:372.386667pt;}
.y24{bottom:386.946667pt;}
.y7b{bottom:389.506667pt;}
.y16{bottom:390.306667pt;}
.yaa{bottom:395.586667pt;}
.y7a{bottom:407.426667pt;}
.y23{bottom:407.906667pt;}
.y15{bottom:411.746667pt;}
.ya9{bottom:418.786667pt;}
.y79{bottom:425.346667pt;}
.y22{bottom:428.706667pt;}
.y14{bottom:433.186667pt;}
.ya8{bottom:442.146667pt;}
.y78{bottom:443.106667pt;}
.y21{bottom:449.666667pt;}
.y13{bottom:454.626667pt;}
.y76{bottom:461.026667pt;}
.y77{bottom:464.386667pt;}
.ya7{bottom:465.346667pt;}
.y20{bottom:470.626667pt;}
.y12{bottom:476.106667pt;}
.y75{bottom:478.946667pt;}
.ya6{bottom:488.546667pt;}
.y1f{bottom:491.466667pt;}
.y74{bottom:496.706667pt;}
.y11{bottom:497.546667pt;}
.ya5{bottom:511.746667pt;}
.y1e{bottom:512.426667pt;}
.y73{bottom:514.626667pt;}
.y10{bottom:519.146667pt;}
.y72{bottom:532.546667pt;}
.ya4{bottom:534.946667pt;}
.y70{bottom:550.333333pt;}
.y71{bottom:553.693333pt;}
.ya3{bottom:558.333333pt;}
.y6f{bottom:568.253333pt;}
.ya2{bottom:581.533333pt;}
.y6e{bottom:586.013333pt;}
.y6d{bottom:603.933333pt;}
.ya1{bottom:604.733333pt;}
.y6b{bottom:621.853333pt;}
.y6c{bottom:625.213333pt;}
.ya0{bottom:627.933333pt;}
.y6a{bottom:639.613333pt;}
.y9f{bottom:651.133333pt;}
.y69{bottom:657.533333pt;}
.y9e{bottom:671.773333pt;}
.y68{bottom:675.453333pt;}
.y9d{bottom:692.253333pt;}
.y66{bottom:693.213333pt;}
.y67{bottom:696.573333pt;}
.y65{bottom:711.133333pt;}
.y9c{bottom:715.453333pt;}
.y64{bottom:729.053333pt;}
.y9b{bottom:738.653333pt;}
.y63{bottom:746.813333pt;}
.y9a{bottom:762.013333pt;}
.y62{bottom:764.733333pt;}
.y99{bottom:782.533333pt;}
.y60{bottom:782.693333pt;}
.y61{bottom:786.053333pt;}
.y5f{bottom:800.453333pt;}
.y98{bottom:803.173333pt;}
.y5e{bottom:818.373333pt;}
.y97{bottom:823.813333pt;}
.ye{bottom:825.573333pt;}
.yd{bottom:829.733333pt;}
.y5d{bottom:836.293333pt;}
.y96{bottom:841.573333pt;}
.yc{bottom:851.813333pt;}
.y5b{bottom:854.053333pt;}
.y5c{bottom:857.413333pt;}
.y95{bottom:859.493333pt;}
.y5a{bottom:871.973333pt;}
.yb{bottom:875.013333pt;}
.y94{bottom:877.253333pt;}
.y59{bottom:889.893333pt;}
.ya{bottom:894.853333pt;}
.y93{bottom:895.173333pt;}
.y58{bottom:907.653333pt;}
.y92{bottom:913.093333pt;}
.y9{bottom:924.773333pt;}
.y57{bottom:925.573333pt;}
.y91{bottom:930.853333pt;}
.y55{bottom:946.053333pt;}
.y8f{bottom:948.773333pt;}
.y56{bottom:949.413333pt;}
.y90{bottom:952.133333pt;}
.y8{bottom:952.773333pt;}
.y52{bottom:955.680000pt;}
.y54{bottom:966.693333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.hd{height:3.612500pt;}
.h19{height:3.742500pt;}
.h15{height:18.768750pt;}
.h1b{height:19.648125pt;}
.h14{height:22.343750pt;}
.h1d{height:24.640000pt;}
.h10{height:25.918750pt;}
.hf{height:26.190625pt;}
.h18{height:33.867188pt;}
.h16{height:34.664062pt;}
.h17{height:35.085938pt;}
.h7{height:35.673437pt;}
.h1f{height:36.635625pt;}
.h20{height:36.838125pt;}
.h6{height:37.090625pt;}
.hc{height:37.479688pt;}
.h5{height:41.112500pt;}
.hb{height:42.870313pt;}
.ha{height:43.181563pt;}
.h12{height:51.164062pt;}
.h21{height:52.834688pt;}
.h11{height:53.634657pt;}
.h1a{height:53.931118pt;}
.h1c{height:56.310313pt;}
.h9{height:56.621563pt;}
.h1e{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h8{height:79.815937pt;}
.h4{height:104.160000pt;}
.h13{height:193.440000pt;}
.he{height:527.773333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w5{width:117.920000pt;}
.w7{width:144.800000pt;}
.w6{width:530.213333pt;}
.w3{width:553.253333pt;}
.w8{width:793.919976pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:6.272000pt;}
.x1a{left:7.200000pt;}
.x4{left:11.360000pt;}
.x6{left:14.240000pt;}
.x22{left:16.160000pt;}
.x18{left:17.440000pt;}
.x17{left:20.000000pt;}
.x16{left:22.720000pt;}
.x24{left:25.920000pt;}
.x10{left:38.880000pt;}
.x23{left:42.400000pt;}
.x11{left:45.120000pt;}
.xf{left:48.800000pt;}
.x25{left:50.720000pt;}
.x27{left:56.040000pt;}
.x1e{left:57.640000pt;}
.x15{left:59.674667pt;}
.x1f{left:61.000000pt;}
.x13{left:61.914667pt;}
.x14{left:65.114667pt;}
.x1{left:69.600000pt;}
.x9{left:76.831988pt;}
.x2{left:85.146667pt;}
.x26{left:91.354667pt;}
.x21{left:94.874667pt;}
.x12{left:110.714667pt;}
.x2d{left:113.000000pt;}
.x2e{left:119.720000pt;}
.x5{left:125.640000pt;}
.x28{left:140.680000pt;}
.x29{left:158.760000pt;}
.x3{left:162.106667pt;}
.x2a{left:179.720000pt;}
.x2b{left:193.186667pt;}
.x19{left:194.746667pt;}
.x46{left:268.866655pt;}
.x3d{left:272.706655pt;}
.x34{left:273.986655pt;}
.x2c{left:277.026667pt;}
.x40{left:282.306655pt;}
.x3b{left:285.026655pt;}
.x47{left:287.746655pt;}
.x3f{left:298.466655pt;}
.x30{left:299.906655pt;}
.x37{left:301.826655pt;}
.x33{left:307.266655pt;}
.x43{left:308.866655pt;}
.x3a{left:311.106655pt;}
.xb{left:332.226655pt;}
.x1b{left:379.146667pt;}
.x45{left:397.053322pt;}
.x1c{left:399.946667pt;}
.xa{left:442.333322pt;}
.x38{left:487.293310pt;}
.x39{left:492.253322pt;}
.x31{left:495.773310pt;}
.x32{left:500.733322pt;}
.x3c{left:503.933310pt;}
.x41{left:506.813310pt;}
.x1d{left:508.933333pt;}
.x42{left:511.773322pt;}
.x20{left:513.733333pt;}
.x35{left:514.973310pt;}
.x3e{left:516.253310pt;}
.x44{left:517.853322pt;}
.x36{left:519.933322pt;}
.xc{left:521.853322pt;}
.xd{left:530.973322pt;}
.x8{left:680.933322pt;}
.x7{left:697.279988pt;}
.xe{left:717.279988pt;}
}




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