
    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_069234a38e0175bb60618c81.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_4b2cf0e273df27ef416b645b.woff')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_af10fa790fce1fe8731b2deb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_52cdff0e410be17b5c19fe59.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4085d257c45b013d4b300052.woff')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_954943127353e4c99804c76a.woff')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_722bda4295584252e20cee57.woff')format("woff");}.ff7{font-family:ff7;line-height:1.097168;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_82d7e52dbd58e46fdd6909b3.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f09683fb8232a57115b8eb3c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_a19e4a5ebe998db59405a2f8.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8b378ac98fc373077dcd9276.woff')format("woff");}.ffb{font-family:ffb;line-height:0.691406;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_5416d2eedd65613ba805f163.woff')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v2{vertical-align:-82.800000px;}
.v1{vertical-align:-81.360000px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-1.440000px;}
.ls18{letter-spacing:-1.008000px;}
.ls4{letter-spacing:-0.720000px;}
.ls2b{letter-spacing:-0.612000px;}
.ls2e{letter-spacing:-0.596400px;}
.ls13{letter-spacing:-0.504000px;}
.ls7{letter-spacing:-0.414600px;}
.ls6{letter-spacing:-0.397200px;}
.ls20{letter-spacing:-0.360000px;}
.ls2f{letter-spacing:-0.305400px;}
.ls11{letter-spacing:-0.288000px;}
.ls2a{letter-spacing:-0.262200px;}
.ls29{letter-spacing:-0.230400px;}
.ls1b{letter-spacing:-0.216000px;}
.ls32{letter-spacing:-0.158400px;}
.ls17{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.072000px;}
.ls3{letter-spacing:-0.025920px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.025920px;}
.ls19{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.086400px;}
.ls28{letter-spacing:0.109200px;}
.lsa{letter-spacing:0.120000px;}
.ls2c{letter-spacing:0.123600px;}
.ls24{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.167040px;}
.ls25{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.288000px;}
.ls30{letter-spacing:0.305400px;}
.lsf{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.504000px;}
.ls31{letter-spacing:0.567600px;}
.ls27{letter-spacing:0.648000px;}
.lse{letter-spacing:0.720000px;}
.ls1c{letter-spacing:4.320000px;}
.ls16{letter-spacing:5.940000px;}
.ls15{letter-spacing:10.800000px;}
.ls1{letter-spacing:12.240000px;}
.ls22{letter-spacing:15.120000px;}
.ls1d{letter-spacing:17.280000px;}
.ls2d{letter-spacing:34.841280px;}
.ls1f{letter-spacing:36.000000px;}
.ls9{letter-spacing:38.160000px;}
.lsb{letter-spacing:46.800000px;}
.ls1e{letter-spacing:53.424000px;}
.lsc{letter-spacing:56.280000px;}
.ls8{letter-spacing:62.640000px;}
.ls23{letter-spacing:67.961280px;}
.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;}
}
.ws4{word-spacing:-84.060000px;}
.ws0{word-spacing:-19.440000px;}
.ws5{word-spacing:-18.360000px;}
.ws7{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws3{word-spacing:-17.496000px;}
.wsd{word-spacing:-17.127600px;}
.wsb{word-spacing:-16.865400px;}
.ws8{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.297800px;}
.wsa{word-spacing:-16.254600px;}
.wsc{word-spacing:-16.145400px;}
.ws1{word-spacing:0.000000px;}
._1b{margin-left:-3.113760px;}
._10{margin-left:-2.078880px;}
._6{margin-left:-1.008000px;}
._0{width:1.244160px;}
._5{width:2.670960px;}
._d{width:4.012320px;}
._e{width:5.133600px;}
._c{width:7.136640px;}
._b{width:8.147520px;}
._a{width:9.936000px;}
._9{width:11.724480px;}
._7{width:13.446720px;}
._8{width:15.433920px;}
._17{width:16.488000px;}
._13{width:19.368000px;}
._1a{width:20.520000px;}
._19{width:23.514720px;}
._18{width:24.552000px;}
._1c{width:26.694720px;}
._11{width:29.344320px;}
._12{width:31.402560px;}
._14{width:34.848000px;}
._15{width:36.735840px;}
._16{width:39.096000px;}
._f{width:62.066880px;}
._1{width:519.215520px;}
._2{width:736.680000px;}
._4{width:756.300000px;}
._3{width:831.888480px;}
._1d{width:846.300000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs5{font-size:69.822393px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:131.760000px;}
.fs6{font-size:336.240000px;}
.y0{bottom:0.000000px;}
.ye{bottom:0.180000px;}
.y64{bottom:4.320000px;}
.y9c{bottom:4.500000px;}
.y9e{bottom:14.760000px;}
.y9a{bottom:14.940000px;}
.yc{bottom:21.240000px;}
.y9b{bottom:25.200000px;}
.ya6{bottom:25.230000px;}
.ya0{bottom:25.245000px;}
.yd{bottom:31.140000px;}
.yb{bottom:41.940000px;}
.ya2{bottom:45.900000px;}
.y5{bottom:57.600000px;}
.ya{bottom:62.640000px;}
.y4{bottom:86.940000px;}
.y3{bottom:119.880000px;}
.y95{bottom:146.016000px;}
.yca{bottom:149.076000px;}
.y62{bottom:156.450000px;}
.ybc{bottom:157.890000px;}
.y34{bottom:163.470000px;}
.y94{bottom:166.710000px;}
.yc9{bottom:167.970000px;}
.y61{bottom:177.150000px;}
.ybb{bottom:178.590000px;}
.y33{bottom:182.370000px;}
.yc8{bottom:186.870000px;}
.y93{bottom:187.410000px;}
.y60{bottom:197.850000px;}
.yba{bottom:199.290000px;}
.y32{bottom:201.270000px;}
.yc7{bottom:205.950000px;}
.y92{bottom:208.110000px;}
.y5f{bottom:218.550000px;}
.yb9{bottom:219.990000px;}
.y31{bottom:220.350000px;}
.yc6{bottom:224.850000px;}
.y91{bottom:228.810000px;}
.y30{bottom:239.250000px;}
.yb8{bottom:240.690000px;}
.yc5{bottom:243.930000px;}
.y90{bottom:249.510000px;}
.y2f{bottom:258.330000px;}
.yb7{bottom:261.390000px;}
.yc4{bottom:262.830000px;}
.y8f{bottom:270.210000px;}
.y2e{bottom:277.230000px;}
.y5e{bottom:280.650000px;}
.yc3{bottom:281.910000px;}
.yb6{bottom:282.090000px;}
.y8e{bottom:290.910000px;}
.y2d{bottom:296.130000px;}
.yc2{bottom:300.810000px;}
.y5d{bottom:301.350000px;}
.yb5{bottom:302.790000px;}
.y8d{bottom:311.610000px;}
.y2c{bottom:315.210000px;}
.yc1{bottom:319.710000px;}
.y5c{bottom:321.870000px;}
.yb4{bottom:323.490000px;}
.y8c{bottom:332.310000px;}
.y2b{bottom:334.110000px;}
.yc0{bottom:338.790000px;}
.y5b{bottom:342.570000px;}
.yb3{bottom:344.190000px;}
.y8b{bottom:353.010000px;}
.y2a{bottom:353.190000px;}
.ybf{bottom:357.690000px;}
.y5a{bottom:363.270000px;}
.yb2{bottom:364.890000px;}
.y29{bottom:372.090000px;}
.y8a{bottom:373.710000px;}
.ybe{bottom:376.770000px;}
.y59{bottom:384.015000px;}
.yb1{bottom:385.635000px;}
.y28{bottom:391.215000px;}
.y89{bottom:394.455000px;}
.ybd{bottom:395.715000px;}
.y58{bottom:404.715000px;}
.yb0{bottom:406.335000px;}
.y27{bottom:410.115000px;}
.y88{bottom:415.155000px;}
.y57{bottom:425.415000px;}
.yaf{bottom:427.035000px;}
.y26{bottom:429.015000px;}
.y87{bottom:435.855000px;}
.y56{bottom:446.115000px;}
.yae{bottom:447.735000px;}
.y25{bottom:449.355000px;}
.y86{bottom:456.555000px;}
.y55{bottom:466.815000px;}
.y24{bottom:468.255000px;}
.yad{bottom:468.435000px;}
.y85{bottom:477.255000px;}
.y54{bottom:487.515000px;}
.y23{bottom:487.695000px;}
.yac{bottom:489.135000px;}
.y84{bottom:497.955000px;}
.y53{bottom:508.215000px;}
.y22{bottom:508.755000px;}
.yab{bottom:509.835000px;}
.y83{bottom:518.655000px;}
.y52{bottom:528.915000px;}
.yaa{bottom:530.535000px;}
.y21{bottom:531.075000px;}
.y82{bottom:539.355000px;}
.y51{bottom:549.615000px;}
.ya9{bottom:551.235000px;}
.y20{bottom:553.035000px;}
.y81{bottom:560.055000px;}
.y50{bottom:570.315000px;}
.ya8{bottom:571.935000px;}
.y1f{bottom:575.895000px;}
.y80{bottom:580.755000px;}
.ya7{bottom:588.855000px;}
.y4f{bottom:591.015000px;}
.y1e{bottom:597.855000px;}
.y7f{bottom:601.455000px;}
.ya5{bottom:610.275000px;}
.y4e{bottom:611.715000px;}
.y1d{bottom:620.715000px;}
.y7e{bottom:622.155000px;}
.y4d{bottom:632.445000px;}
.y7d{bottom:642.885000px;}
.y1c{bottom:643.245000px;}
.ya4{bottom:652.425000px;}
.y4c{bottom:653.145000px;}
.y7c{bottom:663.585000px;}
.y1b{bottom:665.745000px;}
.y4b{bottom:673.845000px;}
.y7b{bottom:684.285000px;}
.y1a{bottom:687.525000px;}
.y4a{bottom:694.545000px;}
.y7a{bottom:704.985000px;}
.y19{bottom:710.565000px;}
.y49{bottom:715.245000px;}
.y79{bottom:725.685000px;}
.y18{bottom:732.345000px;}
.y48{bottom:735.945000px;}
.ya3{bottom:736.665000px;}
.y78{bottom:746.385000px;}
.y17{bottom:754.665000px;}
.y47{bottom:756.645000px;}
.y77{bottom:767.085000px;}
.yd8{bottom:772.305000px;}
.y16{bottom:775.905000px;}
.y46{bottom:777.345000px;}
.y76{bottom:787.785000px;}
.yd7{bottom:793.005000px;}
.y45{bottom:798.045000px;}
.ya1{bottom:799.665000px;}
.y15{bottom:800.205000px;}
.y75{bottom:808.485000px;}
.yd6{bottom:809.205000px;}
.y44{bottom:818.745000px;}
.y14{bottom:824.325000px;}
.y74{bottom:829.185000px;}
.yd5{bottom:829.905000px;}
.y43{bottom:839.445000px;}
.y13{bottom:848.445000px;}
.y73{bottom:849.885000px;}
.yd4{bottom:854.925000px;}
.y42{bottom:860.145000px;}
.y9f{bottom:862.485000px;}
.y72{bottom:870.585000px;}
.y12{bottom:872.565000px;}
.yd3{bottom:875.265000px;}
.y41{bottom:880.845000px;}
.y71{bottom:891.330000px;}
.yd2{bottom:894.210000px;}
.y11{bottom:896.730000px;}
.y40{bottom:901.590000px;}
.y9d{bottom:904.650000px;}
.y70{bottom:912.030000px;}
.yd1{bottom:913.290000px;}
.y10{bottom:920.850000px;}
.y3f{bottom:922.290000px;}
.yd0{bottom:932.190000px;}
.y6f{bottom:932.730000px;}
.y3e{bottom:942.990000px;}
.yf{bottom:944.790000px;}
.y99{bottom:946.770000px;}
.ycf{bottom:951.270000px;}
.y6e{bottom:953.430000px;}
.y9{bottom:960.990000px;}
.y3d{bottom:963.690000px;}
.yce{bottom:970.170000px;}
.y6d{bottom:974.130000px;}
.y63{bottom:979.890000px;}
.y3c{bottom:984.390000px;}
.ycd{bottom:989.070000px;}
.y6c{bottom:994.830000px;}
.y3b{bottom:1005.090000px;}
.ycc{bottom:1008.150000px;}
.y98{bottom:1014.090000px;}
.y6b{bottom:1015.530000px;}
.ycb{bottom:1027.050000px;}
.y97{bottom:1034.790000px;}
.y6a{bottom:1036.230000px;}
.y8{bottom:1044.150000px;}
.y3a{bottom:1046.130000px;}
.y96{bottom:1055.490000px;}
.y69{bottom:1056.930000px;}
.y39{bottom:1065.030000px;}
.y68{bottom:1077.630000px;}
.y38{bottom:1083.930000px;}
.y7{bottom:1087.350000px;}
.y67{bottom:1098.330000px;}
.y37{bottom:1103.010000px;}
.y66{bottom:1119.030000px;}
.y36{bottom:1121.910000px;}
.y6{bottom:1139.580000px;}
.y65{bottom:1139.760000px;}
.y35{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h1a{height:20.685000px;}
.h1e{height:20.700000px;}
.h15{height:41.385000px;}
.h18{height:41.400000px;}
.h16{height:41.422500px;}
.h19{height:41.430000px;}
.h3{height:45.184219px;}
.hf{height:48.480196px;}
.he{height:56.278125px;}
.h1d{height:58.380469px;}
.h1b{height:61.171875px;}
.h13{height:62.085000px;}
.h17{height:62.100000px;}
.h11{height:63.457031px;}
.h10{height:64.978594px;}
.h4{height:65.010937px;}
.h1c{height:68.084282px;}
.hd{height:70.628906px;}
.h6{height:70.664062px;}
.hb{height:72.562500px;}
.h9{height:72.846211px;}
.h12{height:74.004654px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.hc{height:78.367500px;}
.h8{height:78.825000px;}
.ha{height:84.898125px;}
.h7{height:132.789375px;}
.h14{height:330.001172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:56.194500px;}
.w6{width:56.865000px;}
.w4{width:82.470000px;}
.w8{width:128.181000px;}
.w3{width:180.735000px;}
.wa{width:337.753500px;}
.w7{width:385.440000px;}
.wb{width:401.325000px;}
.w9{width:443.040000px;}
.w2{width:475.843500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.918500px;}
.x20{left:12.405000px;}
.x1c{left:19.785000px;}
.x1f{left:42.690000px;}
.x22{left:54.930000px;}
.x21{left:59.430000px;}
.x28{left:66.810000px;}
.x3{left:77.041500px;}
.x1{left:84.960000px;}
.x8{left:86.790000px;}
.xe{left:94.896000px;}
.x24{left:97.056000px;}
.x23{left:99.396000px;}
.xa{left:127.116000px;}
.x1a{left:141.156000px;}
.xb{left:145.656000px;}
.xc{left:150.150000px;}
.xf{left:156.630000px;}
.x1b{left:160.605000px;}
.x6{left:172.650000px;}
.x2{left:216.030000px;}
.x1d{left:218.205000px;}
.x10{left:283.935000px;}
.x13{left:297.795000px;}
.x26{left:346.935000px;}
.x18{left:357.915000px;}
.x19{left:367.095000px;}
.x25{left:400.755000px;}
.x27{left:414.795000px;}
.x12{left:439.815000px;}
.xd{left:446.505000px;}
.x15{left:449.025000px;}
.x14{left:453.165000px;}
.x17{left:459.825000px;}
.x11{left:467.745000px;}
.x16{left:483.045000px;}
.x5{left:552.900000px;}
.x1e{left:604.380000px;}
.x7{left:733.650000px;}
.x9{left:808.020000px;}
@media print{
.v2{vertical-align:-73.600000pt;}
.v1{vertical-align:-72.320000pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls18{letter-spacing:-0.896000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls2b{letter-spacing:-0.544000pt;}
.ls2e{letter-spacing:-0.530133pt;}
.ls13{letter-spacing:-0.448000pt;}
.ls7{letter-spacing:-0.368533pt;}
.ls6{letter-spacing:-0.353067pt;}
.ls20{letter-spacing:-0.320000pt;}
.ls2f{letter-spacing:-0.271467pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls2a{letter-spacing:-0.233067pt;}
.ls29{letter-spacing:-0.204800pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls32{letter-spacing:-0.140800pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:-0.023040pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.023040pt;}
.ls19{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.076800pt;}
.ls28{letter-spacing:0.097067pt;}
.lsa{letter-spacing:0.106667pt;}
.ls2c{letter-spacing:0.109867pt;}
.ls24{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.148480pt;}
.ls25{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.256000pt;}
.ls30{letter-spacing:0.271467pt;}
.lsf{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.448000pt;}
.ls31{letter-spacing:0.504533pt;}
.ls27{letter-spacing:0.576000pt;}
.lse{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:3.840000pt;}
.ls16{letter-spacing:5.280000pt;}
.ls15{letter-spacing:9.600000pt;}
.ls1{letter-spacing:10.880000pt;}
.ls22{letter-spacing:13.440000pt;}
.ls1d{letter-spacing:15.360000pt;}
.ls2d{letter-spacing:30.970027pt;}
.ls1f{letter-spacing:32.000000pt;}
.ls9{letter-spacing:33.920000pt;}
.lsb{letter-spacing:41.600000pt;}
.ls1e{letter-spacing:47.488000pt;}
.lsc{letter-spacing:50.026667pt;}
.ls8{letter-spacing:55.680000pt;}
.ls23{letter-spacing:60.410027pt;}
.ws4{word-spacing:-74.720000pt;}
.ws0{word-spacing:-17.280000pt;}
.ws5{word-spacing:-16.320000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws3{word-spacing:-15.552000pt;}
.wsd{word-spacing:-15.224533pt;}
.wsb{word-spacing:-14.991467pt;}
.ws8{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.486933pt;}
.wsa{word-spacing:-14.448533pt;}
.wsc{word-spacing:-14.351467pt;}
.ws1{word-spacing:0.000000pt;}
._1b{margin-left:-2.767787pt;}
._10{margin-left:-1.847893pt;}
._6{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._5{width:2.374187pt;}
._d{width:3.566507pt;}
._e{width:4.563200pt;}
._c{width:6.343680pt;}
._b{width:7.242240pt;}
._a{width:8.832000pt;}
._9{width:10.421760pt;}
._7{width:11.952640pt;}
._8{width:13.719040pt;}
._17{width:14.656000pt;}
._13{width:17.216000pt;}
._1a{width:18.240000pt;}
._19{width:20.901973pt;}
._18{width:21.824000pt;}
._1c{width:23.728640pt;}
._11{width:26.083840pt;}
._12{width:27.913387pt;}
._14{width:30.976000pt;}
._15{width:32.654080pt;}
._16{width:34.752000pt;}
._f{width:55.170560pt;}
._1{width:461.524907pt;}
._2{width:654.826667pt;}
._4{width:672.266667pt;}
._3{width:739.456427pt;}
._1d{width:752.266667pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:62.064349pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:117.120000pt;}
.fs6{font-size:298.880000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.160000pt;}
.y64{bottom:3.840000pt;}
.y9c{bottom:4.000000pt;}
.y9e{bottom:13.120000pt;}
.y9a{bottom:13.280000pt;}
.yc{bottom:18.880000pt;}
.y9b{bottom:22.400000pt;}
.ya6{bottom:22.426667pt;}
.ya0{bottom:22.440000pt;}
.yd{bottom:27.680000pt;}
.yb{bottom:37.280000pt;}
.ya2{bottom:40.800000pt;}
.y5{bottom:51.200000pt;}
.ya{bottom:55.680000pt;}
.y4{bottom:77.280000pt;}
.y3{bottom:106.560000pt;}
.y95{bottom:129.792000pt;}
.yca{bottom:132.512000pt;}
.y62{bottom:139.066667pt;}
.ybc{bottom:140.346667pt;}
.y34{bottom:145.306667pt;}
.y94{bottom:148.186667pt;}
.yc9{bottom:149.306667pt;}
.y61{bottom:157.466667pt;}
.ybb{bottom:158.746667pt;}
.y33{bottom:162.106667pt;}
.yc8{bottom:166.106667pt;}
.y93{bottom:166.586667pt;}
.y60{bottom:175.866667pt;}
.yba{bottom:177.146667pt;}
.y32{bottom:178.906667pt;}
.yc7{bottom:183.066667pt;}
.y92{bottom:184.986667pt;}
.y5f{bottom:194.266667pt;}
.yb9{bottom:195.546667pt;}
.y31{bottom:195.866667pt;}
.yc6{bottom:199.866667pt;}
.y91{bottom:203.386667pt;}
.y30{bottom:212.666667pt;}
.yb8{bottom:213.946667pt;}
.yc5{bottom:216.826667pt;}
.y90{bottom:221.786667pt;}
.y2f{bottom:229.626667pt;}
.yb7{bottom:232.346667pt;}
.yc4{bottom:233.626667pt;}
.y8f{bottom:240.186667pt;}
.y2e{bottom:246.426667pt;}
.y5e{bottom:249.466667pt;}
.yc3{bottom:250.586667pt;}
.yb6{bottom:250.746667pt;}
.y8e{bottom:258.586667pt;}
.y2d{bottom:263.226667pt;}
.yc2{bottom:267.386667pt;}
.y5d{bottom:267.866667pt;}
.yb5{bottom:269.146667pt;}
.y8d{bottom:276.986667pt;}
.y2c{bottom:280.186667pt;}
.yc1{bottom:284.186667pt;}
.y5c{bottom:286.106667pt;}
.yb4{bottom:287.546667pt;}
.y8c{bottom:295.386667pt;}
.y2b{bottom:296.986667pt;}
.yc0{bottom:301.146667pt;}
.y5b{bottom:304.506667pt;}
.yb3{bottom:305.946667pt;}
.y8b{bottom:313.786667pt;}
.y2a{bottom:313.946667pt;}
.ybf{bottom:317.946667pt;}
.y5a{bottom:322.906667pt;}
.yb2{bottom:324.346667pt;}
.y29{bottom:330.746667pt;}
.y8a{bottom:332.186667pt;}
.ybe{bottom:334.906667pt;}
.y59{bottom:341.346667pt;}
.yb1{bottom:342.786667pt;}
.y28{bottom:347.746667pt;}
.y89{bottom:350.626667pt;}
.ybd{bottom:351.746667pt;}
.y58{bottom:359.746667pt;}
.yb0{bottom:361.186667pt;}
.y27{bottom:364.546667pt;}
.y88{bottom:369.026667pt;}
.y57{bottom:378.146667pt;}
.yaf{bottom:379.586667pt;}
.y26{bottom:381.346667pt;}
.y87{bottom:387.426667pt;}
.y56{bottom:396.546667pt;}
.yae{bottom:397.986667pt;}
.y25{bottom:399.426667pt;}
.y86{bottom:405.826667pt;}
.y55{bottom:414.946667pt;}
.y24{bottom:416.226667pt;}
.yad{bottom:416.386667pt;}
.y85{bottom:424.226667pt;}
.y54{bottom:433.346667pt;}
.y23{bottom:433.506667pt;}
.yac{bottom:434.786667pt;}
.y84{bottom:442.626667pt;}
.y53{bottom:451.746667pt;}
.y22{bottom:452.226667pt;}
.yab{bottom:453.186667pt;}
.y83{bottom:461.026667pt;}
.y52{bottom:470.146667pt;}
.yaa{bottom:471.586667pt;}
.y21{bottom:472.066667pt;}
.y82{bottom:479.426667pt;}
.y51{bottom:488.546667pt;}
.ya9{bottom:489.986667pt;}
.y20{bottom:491.586667pt;}
.y81{bottom:497.826667pt;}
.y50{bottom:506.946667pt;}
.ya8{bottom:508.386667pt;}
.y1f{bottom:511.906667pt;}
.y80{bottom:516.226667pt;}
.ya7{bottom:523.426667pt;}
.y4f{bottom:525.346667pt;}
.y1e{bottom:531.426667pt;}
.y7f{bottom:534.626667pt;}
.ya5{bottom:542.466667pt;}
.y4e{bottom:543.746667pt;}
.y1d{bottom:551.746667pt;}
.y7e{bottom:553.026667pt;}
.y4d{bottom:562.173333pt;}
.y7d{bottom:571.453333pt;}
.y1c{bottom:571.773333pt;}
.ya4{bottom:579.933333pt;}
.y4c{bottom:580.573333pt;}
.y7c{bottom:589.853333pt;}
.y1b{bottom:591.773333pt;}
.y4b{bottom:598.973333pt;}
.y7b{bottom:608.253333pt;}
.y1a{bottom:611.133333pt;}
.y4a{bottom:617.373333pt;}
.y7a{bottom:626.653333pt;}
.y19{bottom:631.613333pt;}
.y49{bottom:635.773333pt;}
.y79{bottom:645.053333pt;}
.y18{bottom:650.973333pt;}
.y48{bottom:654.173333pt;}
.ya3{bottom:654.813333pt;}
.y78{bottom:663.453333pt;}
.y17{bottom:670.813333pt;}
.y47{bottom:672.573333pt;}
.y77{bottom:681.853333pt;}
.yd8{bottom:686.493333pt;}
.y16{bottom:689.693333pt;}
.y46{bottom:690.973333pt;}
.y76{bottom:700.253333pt;}
.yd7{bottom:704.893333pt;}
.y45{bottom:709.373333pt;}
.ya1{bottom:710.813333pt;}
.y15{bottom:711.293333pt;}
.y75{bottom:718.653333pt;}
.yd6{bottom:719.293333pt;}
.y44{bottom:727.773333pt;}
.y14{bottom:732.733333pt;}
.y74{bottom:737.053333pt;}
.yd5{bottom:737.693333pt;}
.y43{bottom:746.173333pt;}
.y13{bottom:754.173333pt;}
.y73{bottom:755.453333pt;}
.yd4{bottom:759.933333pt;}
.y42{bottom:764.573333pt;}
.y9f{bottom:766.653333pt;}
.y72{bottom:773.853333pt;}
.y12{bottom:775.613333pt;}
.yd3{bottom:778.013333pt;}
.y41{bottom:782.973333pt;}
.y71{bottom:792.293333pt;}
.yd2{bottom:794.853333pt;}
.y11{bottom:797.093333pt;}
.y40{bottom:801.413333pt;}
.y9d{bottom:804.133333pt;}
.y70{bottom:810.693333pt;}
.yd1{bottom:811.813333pt;}
.y10{bottom:818.533333pt;}
.y3f{bottom:819.813333pt;}
.yd0{bottom:828.613333pt;}
.y6f{bottom:829.093333pt;}
.y3e{bottom:838.213333pt;}
.yf{bottom:839.813333pt;}
.y99{bottom:841.573333pt;}
.ycf{bottom:845.573333pt;}
.y6e{bottom:847.493333pt;}
.y9{bottom:854.213333pt;}
.y3d{bottom:856.613333pt;}
.yce{bottom:862.373333pt;}
.y6d{bottom:865.893333pt;}
.y63{bottom:871.013333pt;}
.y3c{bottom:875.013333pt;}
.ycd{bottom:879.173333pt;}
.y6c{bottom:884.293333pt;}
.y3b{bottom:893.413333pt;}
.ycc{bottom:896.133333pt;}
.y98{bottom:901.413333pt;}
.y6b{bottom:902.693333pt;}
.ycb{bottom:912.933333pt;}
.y97{bottom:919.813333pt;}
.y6a{bottom:921.093333pt;}
.y8{bottom:928.133333pt;}
.y3a{bottom:929.893333pt;}
.y96{bottom:938.213333pt;}
.y69{bottom:939.493333pt;}
.y39{bottom:946.693333pt;}
.y68{bottom:957.893333pt;}
.y38{bottom:963.493333pt;}
.y7{bottom:966.533333pt;}
.y67{bottom:976.293333pt;}
.y37{bottom:980.453333pt;}
.y66{bottom:994.693333pt;}
.y36{bottom:997.253333pt;}
.y6{bottom:1012.960000pt;}
.y65{bottom:1013.120000pt;}
.y35{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h1a{height:18.386667pt;}
.h1e{height:18.400000pt;}
.h15{height:36.786667pt;}
.h18{height:36.800000pt;}
.h16{height:36.820000pt;}
.h19{height:36.826667pt;}
.h3{height:40.163750pt;}
.hf{height:43.093508pt;}
.he{height:50.025000pt;}
.h1d{height:51.893750pt;}
.h1b{height:54.375000pt;}
.h13{height:55.186667pt;}
.h17{height:55.200000pt;}
.h11{height:56.406250pt;}
.h10{height:57.758750pt;}
.h4{height:57.787500pt;}
.h1c{height:60.519362pt;}
.hd{height:62.781250pt;}
.h6{height:62.812500pt;}
.hb{height:64.500000pt;}
.h9{height:64.752187pt;}
.h12{height:65.781915pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.hc{height:69.660000pt;}
.h8{height:70.066667pt;}
.ha{height:75.465000pt;}
.h7{height:118.035000pt;}
.h14{height:293.334375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:49.950667pt;}
.w6{width:50.546667pt;}
.w4{width:73.306667pt;}
.w8{width:113.938667pt;}
.w3{width:160.653333pt;}
.wa{width:300.225333pt;}
.w7{width:342.613333pt;}
.wb{width:356.733333pt;}
.w9{width:393.813333pt;}
.w2{width:422.972000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.038667pt;}
.x20{left:11.026667pt;}
.x1c{left:17.586667pt;}
.x1f{left:37.946667pt;}
.x22{left:48.826667pt;}
.x21{left:52.826667pt;}
.x28{left:59.386667pt;}
.x3{left:68.481333pt;}
.x1{left:75.520000pt;}
.x8{left:77.146667pt;}
.xe{left:84.352000pt;}
.x24{left:86.272000pt;}
.x23{left:88.352000pt;}
.xa{left:112.992000pt;}
.x1a{left:125.472000pt;}
.xb{left:129.472000pt;}
.xc{left:133.466667pt;}
.xf{left:139.226667pt;}
.x1b{left:142.760000pt;}
.x6{left:153.466667pt;}
.x2{left:192.026667pt;}
.x1d{left:193.960000pt;}
.x10{left:252.386667pt;}
.x13{left:264.706667pt;}
.x26{left:308.386667pt;}
.x18{left:318.146667pt;}
.x19{left:326.306667pt;}
.x25{left:356.226667pt;}
.x27{left:368.706667pt;}
.x12{left:390.946667pt;}
.xd{left:396.893333pt;}
.x15{left:399.133333pt;}
.x14{left:402.813333pt;}
.x17{left:408.733333pt;}
.x11{left:415.773333pt;}
.x16{left:429.373333pt;}
.x5{left:491.466667pt;}
.x1e{left:537.226667pt;}
.x7{left:652.133333pt;}
.x9{left:718.240000pt;}
}




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