
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_01bb13037fcf234407769053.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6a3c4cad5fe6d2d8a542d2c5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_495c4397a94ae07433dbfab1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.057129;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_ed616bbc8d35b1818aeaf507.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_a6a1b543928523ef17f75e82.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_1975d3646bb5d9e8f8bcd946.woff')format("woff");}.ff7{font-family:ff7;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1a{letter-spacing:-0.513600px;}
.ls1b{letter-spacing:-0.243600px;}
.lsf{letter-spacing:-0.186600px;}
.ls1c{letter-spacing:-0.178800px;}
.ls17{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.ls18{letter-spacing:-0.125400px;}
.lsa{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls11{letter-spacing:-0.014760px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.049200px;}
.ls14{letter-spacing:0.068400px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls10{letter-spacing:0.115800px;}
.ls19{letter-spacing:0.116400px;}
.ls12{letter-spacing:0.127200px;}
.ls15{letter-spacing:0.143400px;}
.ls6{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls16{letter-spacing:47.726640px;}
.ls13{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsb{word-spacing:-60.120000px;}
.ws4{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.ws14{word-spacing:-13.369800px;}
.wsd{word-spacing:-13.353600px;}
.ws10{word-spacing:-13.342800px;}
.wsc{word-spacing:-13.342200px;}
.ws12{word-spacing:-13.294800px;}
.ws5{word-spacing:-13.275600px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.101000px;}
.wse{word-spacing:-13.072800px;}
.ws15{word-spacing:-13.047600px;}
.ws8{word-spacing:-13.039800px;}
.ws13{word-spacing:-12.982800px;}
.ws11{word-spacing:-12.712800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._3{margin-left:-3.497398px;}
._2{margin-left:-2.238000px;}
._0{margin-left:-1.110000px;}
._1{width:1.097172px;}
._a{width:2.118554px;}
._5{width:3.200160px;}
._4{width:4.208400px;}
._11{width:5.409229px;}
._6{width:6.613200px;}
._7{width:7.844270px;}
._14{width:9.200311px;}
._13{width:10.941840px;}
._e{width:12.084000px;}
._29{width:14.289840px;}
._d{width:15.330600px;}
._b{width:16.352400px;}
._c{width:17.673483px;}
._9{width:19.507201px;}
._8{width:20.560800px;}
._15{width:21.645124px;}
._1f{width:22.697881px;}
._12{width:24.015600px;}
._10{width:25.190400px;}
._f{width:26.661000px;}
._2a{width:27.866400px;}
._20{width:33.246360px;}
._17{width:35.170200px;}
._2b{width:40.338120px;}
._19{width:41.542920px;}
._2c{width:47.163960px;}
._24{width:54.168120px;}
._2e{width:70.641000px;}
._2f{width:72.083880px;}
._26{width:74.067840px;}
._1b{width:77.073840px;}
._28{width:79.478640px;}
._25{width:82.003680px;}
._22{width:95.640840px;}
._1d{width:96.743160px;}
._23{width:115.610760px;}
._21{width:123.606720px;}
._16{width:126.732960px;}
._2d{width:178.436160px;}
._18{width:184.762440px;}
._27{width:224.969040px;}
._1a{width:257.748120px;}
._1c{width:271.381680px;}
._1e{width:351.702000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:7.830000px;}
.y58{bottom:7.920000px;}
.y57{bottom:25.470000px;}
.ya5{bottom:43.110000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ydb{bottom:114.690000px;}
.y9c{bottom:119.550000px;}
.yc4{bottom:124.770000px;}
.yda{bottom:132.240000px;}
.y9b{bottom:137.190000px;}
.yc3{bottom:142.410000px;}
.y26{bottom:146.820000px;}
.yd9{bottom:149.880000px;}
.y9a{bottom:154.740000px;}
.yc2{bottom:159.960000px;}
.y25{bottom:164.370000px;}
.y99{bottom:172.380000px;}
.yd8{bottom:176.430000px;}
.y7e{bottom:177.600000px;}
.y24{bottom:182.010000px;}
.y55{bottom:182.460000px;}
.yee{bottom:184.440000px;}
.yc1{bottom:186.600000px;}
.y98{bottom:198.930000px;}
.y23{bottom:199.560000px;}
.yed{bottom:201.990000px;}
.yd7{bottom:211.980000px;}
.y7d{bottom:213.150000px;}
.y54{bottom:218.100000px;}
.yec{bottom:219.630000px;}
.yc0{bottom:222.150000px;}
.y22{bottom:226.200000px;}
.yd6{bottom:229.620000px;}
.y7c{bottom:230.700000px;}
.y97{bottom:234.480000px;}
.yeb{bottom:237.180000px;}
.ybf{bottom:239.700000px;}
.yd5{bottom:247.170000px;}
.y7b{bottom:248.340000px;}
.y96{bottom:252.120000px;}
.y53{bottom:253.650000px;}
.yea{bottom:254.730000px;}
.ybe{bottom:257.340000px;}
.y21{bottom:261.750000px;}
.yd4{bottom:264.810000px;}
.y7a{bottom:265.890000px;}
.y95{bottom:269.670000px;}
.y52{bottom:271.200000px;}
.ye9{bottom:272.370000px;}
.ybd{bottom:274.890000px;}
.y20{bottom:279.300000px;}
.yd3{bottom:282.360000px;}
.y79{bottom:283.440000px;}
.y94{bottom:287.310000px;}
.y51{bottom:288.840000px;}
.ye8{bottom:289.920000px;}
.ybc{bottom:292.440000px;}
.y1f{bottom:296.940000px;}
.yd2{bottom:299.910000px;}
.y78{bottom:301.080000px;}
.y93{bottom:304.860000px;}
.y50{bottom:306.390000px;}
.ye7{bottom:307.560000px;}
.ybb{bottom:310.080000px;}
.y1e{bottom:314.490000px;}
.yd1{bottom:317.550000px;}
.y77{bottom:318.630000px;}
.y92{bottom:322.410000px;}
.y4f{bottom:323.940000px;}
.ye6{bottom:325.110000px;}
.yba{bottom:327.630000px;}
.y1d{bottom:332.130000px;}
.yd0{bottom:335.100000px;}
.y76{bottom:336.270000px;}
.y91{bottom:340.050000px;}
.y4e{bottom:341.580000px;}
.ye5{bottom:342.660000px;}
.yb9{bottom:345.270000px;}
.y1c{bottom:349.680000px;}
.ycf{bottom:352.740000px;}
.y75{bottom:353.820000px;}
.y4d{bottom:359.130000px;}
.y90{bottom:366.600000px;}
.ye4{bottom:369.570000px;}
.y74{bottom:371.370000px;}
.yb8{bottom:371.820000px;}
.y1b{bottom:376.230000px;}
.y4c{bottom:376.770000px;}
.yce{bottom:379.290000px;}
.y10f{bottom:386.130000px;}
.y4b{bottom:394.320000px;}
.y73{bottom:398.010000px;}
.y8f{bottom:402.240000px;}
.y10e{bottom:403.770000px;}
.yb7{bottom:407.370000px;}
.y1a{bottom:411.870000px;}
.ycd{bottom:414.840000px;}
.ye3{bottom:417.900000px;}
.y8e{bottom:419.790000px;}
.y4a{bottom:420.870000px;}
.y10d{bottom:421.320000px;}
.yb6{bottom:425.010000px;}
.y19{bottom:429.420000px;}
.ycc{bottom:432.480000px;}
.y72{bottom:433.560000px;}
.y8d{bottom:437.340000px;}
.y10c{bottom:438.870000px;}
.yb5{bottom:442.560000px;}
.y18{bottom:447.060000px;}
.ycb{bottom:450.030000px;}
.ye2{bottom:450.120000px;}
.y71{bottom:451.200000px;}
.y8c{bottom:454.980000px;}
.y49{bottom:456.510000px;}
.yb4{bottom:460.200000px;}
.y17{bottom:464.610000px;}
.y10b{bottom:465.510000px;}
.yca{bottom:467.670000px;}
.y70{bottom:468.750000px;}
.y8b{bottom:472.560000px;}
.y48{bottom:474.090000px;}
.yb3{bottom:477.780000px;}
.y16{bottom:482.190000px;}
.y10a{bottom:483.090000px;}
.yc9{bottom:485.250000px;}
.y6f{bottom:486.330000px;}
.y8a{bottom:490.200000px;}
.y47{bottom:491.730000px;}
.yb2{bottom:495.330000px;}
.y15{bottom:499.830000px;}
.y109{bottom:500.730000px;}
.y6e{bottom:503.970000px;}
.y89{bottom:507.750000px;}
.y46{bottom:509.280000px;}
.yc8{bottom:512.160000px;}
.yb1{bottom:512.970000px;}
.y6d{bottom:521.520000px;}
.y14{bottom:526.740000px;}
.y45{bottom:526.830000px;}
.y108{bottom:527.280000px;}
.yb0{bottom:530.520000px;}
.y88{bottom:534.300000px;}
.y6c{bottom:539.160000px;}
.y44{bottom:544.470000px;}
.y107{bottom:544.830000px;}
.yaf{bottom:557.160000px;}
.yc7{bottom:560.400000px;}
.y43{bottom:562.020000px;}
.y106{bottom:562.470000px;}
.y6b{bottom:565.710000px;}
.y87{bottom:569.940000px;}
.y13{bottom:574.980000px;}
.y86{bottom:587.490000px;}
.y42{bottom:588.660000px;}
.y105{bottom:589.020000px;}
.yc6{bottom:592.620000px;}
.yae{bottom:592.710000px;}
.y12{bottom:592.890000px;}
.y6a{bottom:601.260000px;}
.y85{bottom:605.040000px;}
.y104{bottom:606.660000px;}
.yad{bottom:610.260000px;}
.y69{bottom:618.900000px;}
.y84{bottom:622.680000px;}
.y41{bottom:624.210000px;}
.yac{bottom:627.900000px;}
.y11{bottom:629.880000px;}
.y68{bottom:636.450000px;}
.y83{bottom:640.230000px;}
.y40{bottom:641.760000px;}
.yab{bottom:645.450000px;}
.y10{bottom:647.520000px;}
.y67{bottom:654.090000px;}
.y82{bottom:657.870000px;}
.y3f{bottom:659.400000px;}
.yaa{bottom:663.090000px;}
.yf{bottom:665.070000px;}
.y103{bottom:668.400000px;}
.y66{bottom:671.640000px;}
.y3e{bottom:676.950000px;}
.ya9{bottom:680.640000px;}
.ye{bottom:682.710000px;}
.y81{bottom:684.780000px;}
.y102{bottom:685.950000px;}
.y65{bottom:689.190000px;}
.y3d{bottom:694.590000px;}
.yd{bottom:700.260000px;}
.y101{bottom:703.590000px;}
.ya8{bottom:707.550000px;}
.y3c{bottom:712.140000px;}
.y64{bottom:715.830000px;}
.yc{bottom:717.810000px;}
.y100{bottom:721.140000px;}
.y80{bottom:733.020000px;}
.yb{bottom:735.450000px;}
.y3b{bottom:738.690000px;}
.yff{bottom:747.690000px;}
.y63{bottom:751.380000px;}
.ya{bottom:753.000000px;}
.ya7{bottom:753.180000px;}
.y7f{bottom:765.240000px;}
.yfe{bottom:765.330000px;}
.y62{bottom:769.020000px;}
.y3a{bottom:774.330000px;}
.y9{bottom:779.910000px;}
.yfd{bottom:782.880000px;}
.y61{bottom:786.570000px;}
.y39{bottom:791.880000px;}
.ya6{bottom:798.090000px;}
.yfc{bottom:800.520000px;}
.y60{bottom:804.120000px;}
.y38{bottom:809.520000px;}
.y5f{bottom:821.760000px;}
.y37{bottom:827.070000px;}
.y8{bottom:828.240000px;}
.ya4{bottom:843.000000px;}
.y36{bottom:844.620000px;}
.y5e{bottom:848.670000px;}
.ye1{bottom:849.480000px;}
.y35{bottom:862.260000px;}
.y7{bottom:863.790000px;}
.ye0{bottom:867.030000px;}
.yfb{bottom:871.260000px;}
.ydf{bottom:884.670000px;}
.yfa{bottom:888.810000px;}
.y34{bottom:889.170000px;}
.y5c{bottom:894.300000px;}
.y6{bottom:899.610000px;}
.yde{bottom:902.220000px;}
.ya3{bottom:905.550000px;}
.yf9{bottom:915.450000px;}
.ydd{bottom:919.860000px;}
.yf8{bottom:933.000000px;}
.y5{bottom:935.610000px;}
.y33{bottom:937.410000px;}
.y5b{bottom:939.210000px;}
.ya2{bottom:950.460000px;}
.yf7{bottom:950.550000px;}
.y32{bottom:954.960000px;}
.y4{bottom:971.700000px;}
.y31{bottom:972.600000px;}
.yf6{bottom:977.190000px;}
.y5a{bottom:984.120000px;}
.y30{bottom:990.150000px;}
.yf5{bottom:994.740000px;}
.y2f{bottom:1007.790000px;}
.y3{bottom:1009.980000px;}
.ya1{bottom:1016.820000px;}
.yf4{bottom:1021.320000px;}
.y2e{bottom:1025.370000px;}
.y59{bottom:1029.060000px;}
.ydc{bottom:1034.370000px;}
.yc5{bottom:1034.820000px;}
.yf3{bottom:1038.960000px;}
.y2d{bottom:1042.920000px;}
.ya0{bottom:1052.370000px;}
.yf2{bottom:1056.510000px;}
.y2c{bottom:1060.560000px;}
.y9f{bottom:1069.920000px;}
.y56{bottom:1073.970000px;}
.yf1{bottom:1083.150000px;}
.y2b{bottom:1087.110000px;}
.y9e{bottom:1087.560000px;}
.yf0{bottom:1100.700000px;}
.y9d{bottom:1105.110000px;}
.y2a{bottom:1122.750000px;}
.yef{bottom:1127.610000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hb{height:44.190000px;}
.hc{height:44.220000px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h8{height:60.960938px;}
.he{height:61.793886px;}
.hd{height:61.830000px;}
.h9{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:126.390000px;}
.w3{width:135.390000px;}
.w6{width:149.040000px;}
.w8{width:184.050000px;}
.w4{width:213.660000px;}
.wa{width:221.400000px;}
.w9{width:221.610000px;}
.w5{width:255.360000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x11{left:111.239987px;}
.xa{left:195.960000px;}
.x5{left:204.960000px;}
.x2{left:211.079987px;}
.xe{left:226.289987px;}
.x10{left:239.699987px;}
.x9{left:256.079987px;}
.xb{left:380.730000px;}
.x6{left:419.340000px;}
.xc{left:603.060000px;}
.x7{left:675.420000px;}
.xf{left:742.559987px;}
.x8{left:753.809987px;}
.xd{left:760.559987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1a{letter-spacing:-0.456533pt;}
.ls1b{letter-spacing:-0.216533pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls1c{letter-spacing:-0.158933pt;}
.ls17{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls18{letter-spacing:-0.111467pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls11{letter-spacing:-0.013120pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.043733pt;}
.ls14{letter-spacing:0.060800pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls10{letter-spacing:0.102933pt;}
.ls19{letter-spacing:0.103467pt;}
.ls12{letter-spacing:0.113067pt;}
.ls15{letter-spacing:0.127467pt;}
.ls6{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls16{letter-spacing:42.423680pt;}
.ls13{letter-spacing:71.863680pt;}
.wsb{word-spacing:-53.440000pt;}
.ws4{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.ws14{word-spacing:-11.884267pt;}
.wsd{word-spacing:-11.869867pt;}
.ws10{word-spacing:-11.860267pt;}
.wsc{word-spacing:-11.859733pt;}
.ws12{word-spacing:-11.817600pt;}
.ws5{word-spacing:-11.800533pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.645333pt;}
.wse{word-spacing:-11.620267pt;}
.ws15{word-spacing:-11.597867pt;}
.ws8{word-spacing:-11.590933pt;}
.ws13{word-spacing:-11.540267pt;}
.ws11{word-spacing:-11.300267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._3{margin-left:-3.108799pt;}
._2{margin-left:-1.989334pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.975264pt;}
._a{width:1.883159pt;}
._5{width:2.844586pt;}
._4{width:3.740800pt;}
._11{width:4.808203pt;}
._6{width:5.878400pt;}
._7{width:6.972684pt;}
._14{width:8.178055pt;}
._13{width:9.726080pt;}
._e{width:10.741333pt;}
._29{width:12.702080pt;}
._d{width:13.627200pt;}
._b{width:14.535466pt;}
._c{width:15.709763pt;}
._9{width:17.339734pt;}
._8{width:18.276266pt;}
._15{width:19.240110pt;}
._1f{width:20.175894pt;}
._12{width:21.347200pt;}
._10{width:22.391467pt;}
._f{width:23.698667pt;}
._2a{width:24.770133pt;}
._20{width:29.552320pt;}
._17{width:31.262400pt;}
._2b{width:35.856107pt;}
._19{width:36.927040pt;}
._2c{width:41.923520pt;}
._24{width:48.149440pt;}
._2e{width:62.792000pt;}
._2f{width:64.074560pt;}
._26{width:65.838080pt;}
._1b{width:68.510080pt;}
._28{width:70.647680pt;}
._25{width:72.892160pt;}
._22{width:85.014080pt;}
._1d{width:85.993920pt;}
._23{width:102.765120pt;}
._21{width:109.872640pt;}
._16{width:112.651520pt;}
._2d{width:158.609920pt;}
._18{width:164.233280pt;}
._27{width:199.972480pt;}
._1a{width:229.109440pt;}
._1c{width:241.228160pt;}
._1e{width:312.624000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:6.960000pt;}
.y58{bottom:7.040000pt;}
.y57{bottom:22.640000pt;}
.ya5{bottom:38.320000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ydb{bottom:101.946667pt;}
.y9c{bottom:106.266667pt;}
.yc4{bottom:110.906667pt;}
.yda{bottom:117.546667pt;}
.y9b{bottom:121.946667pt;}
.yc3{bottom:126.586667pt;}
.y26{bottom:130.506667pt;}
.yd9{bottom:133.226667pt;}
.y9a{bottom:137.546667pt;}
.yc2{bottom:142.186667pt;}
.y25{bottom:146.106667pt;}
.y99{bottom:153.226667pt;}
.yd8{bottom:156.826667pt;}
.y7e{bottom:157.866667pt;}
.y24{bottom:161.786667pt;}
.y55{bottom:162.186667pt;}
.yee{bottom:163.946667pt;}
.yc1{bottom:165.866667pt;}
.y98{bottom:176.826667pt;}
.y23{bottom:177.386667pt;}
.yed{bottom:179.546667pt;}
.yd7{bottom:188.426667pt;}
.y7d{bottom:189.466667pt;}
.y54{bottom:193.866667pt;}
.yec{bottom:195.226667pt;}
.yc0{bottom:197.466667pt;}
.y22{bottom:201.066667pt;}
.yd6{bottom:204.106667pt;}
.y7c{bottom:205.066667pt;}
.y97{bottom:208.426667pt;}
.yeb{bottom:210.826667pt;}
.ybf{bottom:213.066667pt;}
.yd5{bottom:219.706667pt;}
.y7b{bottom:220.746667pt;}
.y96{bottom:224.106667pt;}
.y53{bottom:225.466667pt;}
.yea{bottom:226.426667pt;}
.ybe{bottom:228.746667pt;}
.y21{bottom:232.666667pt;}
.yd4{bottom:235.386667pt;}
.y7a{bottom:236.346667pt;}
.y95{bottom:239.706667pt;}
.y52{bottom:241.066667pt;}
.ye9{bottom:242.106667pt;}
.ybd{bottom:244.346667pt;}
.y20{bottom:248.266667pt;}
.yd3{bottom:250.986667pt;}
.y79{bottom:251.946667pt;}
.y94{bottom:255.386667pt;}
.y51{bottom:256.746667pt;}
.ye8{bottom:257.706667pt;}
.ybc{bottom:259.946667pt;}
.y1f{bottom:263.946667pt;}
.yd2{bottom:266.586667pt;}
.y78{bottom:267.626667pt;}
.y93{bottom:270.986667pt;}
.y50{bottom:272.346667pt;}
.ye7{bottom:273.386667pt;}
.ybb{bottom:275.626667pt;}
.y1e{bottom:279.546667pt;}
.yd1{bottom:282.266667pt;}
.y77{bottom:283.226667pt;}
.y92{bottom:286.586667pt;}
.y4f{bottom:287.946667pt;}
.ye6{bottom:288.986667pt;}
.yba{bottom:291.226667pt;}
.y1d{bottom:295.226667pt;}
.yd0{bottom:297.866667pt;}
.y76{bottom:298.906667pt;}
.y91{bottom:302.266667pt;}
.y4e{bottom:303.626667pt;}
.ye5{bottom:304.586667pt;}
.yb9{bottom:306.906667pt;}
.y1c{bottom:310.826667pt;}
.ycf{bottom:313.546667pt;}
.y75{bottom:314.506667pt;}
.y4d{bottom:319.226667pt;}
.y90{bottom:325.866667pt;}
.ye4{bottom:328.506667pt;}
.y74{bottom:330.106667pt;}
.yb8{bottom:330.506667pt;}
.y1b{bottom:334.426667pt;}
.y4c{bottom:334.906667pt;}
.yce{bottom:337.146667pt;}
.y10f{bottom:343.226667pt;}
.y4b{bottom:350.506667pt;}
.y73{bottom:353.786667pt;}
.y8f{bottom:357.546667pt;}
.y10e{bottom:358.906667pt;}
.yb7{bottom:362.106667pt;}
.y1a{bottom:366.106667pt;}
.ycd{bottom:368.746667pt;}
.ye3{bottom:371.466667pt;}
.y8e{bottom:373.146667pt;}
.y4a{bottom:374.106667pt;}
.y10d{bottom:374.506667pt;}
.yb6{bottom:377.786667pt;}
.y19{bottom:381.706667pt;}
.ycc{bottom:384.426667pt;}
.y72{bottom:385.386667pt;}
.y8d{bottom:388.746667pt;}
.y10c{bottom:390.106667pt;}
.yb5{bottom:393.386667pt;}
.y18{bottom:397.386667pt;}
.ycb{bottom:400.026667pt;}
.ye2{bottom:400.106667pt;}
.y71{bottom:401.066667pt;}
.y8c{bottom:404.426667pt;}
.y49{bottom:405.786667pt;}
.yb4{bottom:409.066667pt;}
.y17{bottom:412.986667pt;}
.y10b{bottom:413.786667pt;}
.yca{bottom:415.706667pt;}
.y70{bottom:416.666667pt;}
.y8b{bottom:420.053333pt;}
.y48{bottom:421.413333pt;}
.yb3{bottom:424.693333pt;}
.y16{bottom:428.613333pt;}
.y10a{bottom:429.413333pt;}
.yc9{bottom:431.333333pt;}
.y6f{bottom:432.293333pt;}
.y8a{bottom:435.733333pt;}
.y47{bottom:437.093333pt;}
.yb2{bottom:440.293333pt;}
.y15{bottom:444.293333pt;}
.y109{bottom:445.093333pt;}
.y6e{bottom:447.973333pt;}
.y89{bottom:451.333333pt;}
.y46{bottom:452.693333pt;}
.yc8{bottom:455.253333pt;}
.yb1{bottom:455.973333pt;}
.y6d{bottom:463.573333pt;}
.y14{bottom:468.213333pt;}
.y45{bottom:468.293333pt;}
.y108{bottom:468.693333pt;}
.yb0{bottom:471.573333pt;}
.y88{bottom:474.933333pt;}
.y6c{bottom:479.253333pt;}
.y44{bottom:483.973333pt;}
.y107{bottom:484.293333pt;}
.yaf{bottom:495.253333pt;}
.yc7{bottom:498.133333pt;}
.y43{bottom:499.573333pt;}
.y106{bottom:499.973333pt;}
.y6b{bottom:502.853333pt;}
.y87{bottom:506.613333pt;}
.y13{bottom:511.093333pt;}
.y86{bottom:522.213333pt;}
.y42{bottom:523.253333pt;}
.y105{bottom:523.573333pt;}
.yc6{bottom:526.773333pt;}
.yae{bottom:526.853333pt;}
.y12{bottom:527.013333pt;}
.y6a{bottom:534.453333pt;}
.y85{bottom:537.813333pt;}
.y104{bottom:539.253333pt;}
.yad{bottom:542.453333pt;}
.y69{bottom:550.133333pt;}
.y84{bottom:553.493333pt;}
.y41{bottom:554.853333pt;}
.yac{bottom:558.133333pt;}
.y11{bottom:559.893333pt;}
.y68{bottom:565.733333pt;}
.y83{bottom:569.093333pt;}
.y40{bottom:570.453333pt;}
.yab{bottom:573.733333pt;}
.y10{bottom:575.573333pt;}
.y67{bottom:581.413333pt;}
.y82{bottom:584.773333pt;}
.y3f{bottom:586.133333pt;}
.yaa{bottom:589.413333pt;}
.yf{bottom:591.173333pt;}
.y103{bottom:594.133333pt;}
.y66{bottom:597.013333pt;}
.y3e{bottom:601.733333pt;}
.ya9{bottom:605.013333pt;}
.ye{bottom:606.853333pt;}
.y81{bottom:608.693333pt;}
.y102{bottom:609.733333pt;}
.y65{bottom:612.613333pt;}
.y3d{bottom:617.413333pt;}
.yd{bottom:622.453333pt;}
.y101{bottom:625.413333pt;}
.ya8{bottom:628.933333pt;}
.y3c{bottom:633.013333pt;}
.y64{bottom:636.293333pt;}
.yc{bottom:638.053333pt;}
.y100{bottom:641.013333pt;}
.y80{bottom:651.573333pt;}
.yb{bottom:653.733333pt;}
.y3b{bottom:656.613333pt;}
.yff{bottom:664.613333pt;}
.y63{bottom:667.893333pt;}
.ya{bottom:669.333333pt;}
.ya7{bottom:669.493333pt;}
.y7f{bottom:680.213333pt;}
.yfe{bottom:680.293333pt;}
.y62{bottom:683.573333pt;}
.y3a{bottom:688.293333pt;}
.y9{bottom:693.253333pt;}
.yfd{bottom:695.893333pt;}
.y61{bottom:699.173333pt;}
.y39{bottom:703.893333pt;}
.ya6{bottom:709.413333pt;}
.yfc{bottom:711.573333pt;}
.y60{bottom:714.773333pt;}
.y38{bottom:719.573333pt;}
.y5f{bottom:730.453333pt;}
.y37{bottom:735.173333pt;}
.y8{bottom:736.213333pt;}
.ya4{bottom:749.333333pt;}
.y36{bottom:750.773333pt;}
.y5e{bottom:754.373333pt;}
.ye1{bottom:755.093333pt;}
.y35{bottom:766.453333pt;}
.y7{bottom:767.813333pt;}
.ye0{bottom:770.693333pt;}
.yfb{bottom:774.453333pt;}
.ydf{bottom:786.373333pt;}
.yfa{bottom:790.053333pt;}
.y34{bottom:790.373333pt;}
.y5c{bottom:794.933333pt;}
.y6{bottom:799.653333pt;}
.yde{bottom:801.973333pt;}
.ya3{bottom:804.933333pt;}
.yf9{bottom:813.733333pt;}
.ydd{bottom:817.653333pt;}
.yf8{bottom:829.333333pt;}
.y5{bottom:831.653333pt;}
.y33{bottom:833.253333pt;}
.y5b{bottom:834.853333pt;}
.ya2{bottom:844.853333pt;}
.yf7{bottom:844.933333pt;}
.y32{bottom:848.853333pt;}
.y4{bottom:863.733333pt;}
.y31{bottom:864.533333pt;}
.yf6{bottom:868.613333pt;}
.y5a{bottom:874.773333pt;}
.y30{bottom:880.133333pt;}
.yf5{bottom:884.213333pt;}
.y2f{bottom:895.813333pt;}
.y3{bottom:897.760000pt;}
.ya1{bottom:903.840000pt;}
.yf4{bottom:907.840000pt;}
.y2e{bottom:911.440000pt;}
.y59{bottom:914.720000pt;}
.ydc{bottom:919.440000pt;}
.yc5{bottom:919.840000pt;}
.yf3{bottom:923.520000pt;}
.y2d{bottom:927.040000pt;}
.ya0{bottom:935.440000pt;}
.yf2{bottom:939.120000pt;}
.y2c{bottom:942.720000pt;}
.y9f{bottom:951.040000pt;}
.y56{bottom:954.640000pt;}
.yf1{bottom:962.800000pt;}
.y2b{bottom:966.320000pt;}
.y9e{bottom:966.720000pt;}
.yf0{bottom:978.400000pt;}
.y9d{bottom:982.320000pt;}
.y2a{bottom:998.000000pt;}
.yef{bottom:1002.320000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hb{height:39.280000pt;}
.hc{height:39.306667pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h8{height:54.187500pt;}
.he{height:54.927899pt;}
.hd{height:54.960000pt;}
.h9{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:112.346667pt;}
.w3{width:120.346667pt;}
.w6{width:132.480000pt;}
.w8{width:163.600000pt;}
.w4{width:189.920000pt;}
.wa{width:196.800000pt;}
.w9{width:196.986667pt;}
.w5{width:226.986667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x11{left:98.879988pt;}
.xa{left:174.186667pt;}
.x5{left:182.186667pt;}
.x2{left:187.626655pt;}
.xe{left:201.146655pt;}
.x10{left:213.066655pt;}
.x9{left:227.626655pt;}
.xb{left:338.426667pt;}
.x6{left:372.746667pt;}
.xc{left:536.053333pt;}
.x7{left:600.373333pt;}
.xf{left:660.053322pt;}
.x8{left:670.053322pt;}
.xd{left:676.053322pt;}
.x3{left:711.413322pt;}
}




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