
    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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_aafb2900b96f60a578d66dad.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4197271033485951359c094b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ef1cab8fa1f449f954ff2f8a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9587b35839fb9ef303914d2a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_073952e3e9b30e746e95973e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b0699c1c0907965254b73c82.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_5a5e9fbbfc32afee4a3bce0f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.063477;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:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:14.400000px;}
.v4{vertical-align:21.600000px;}
.v6{vertical-align:26.640000px;}
.v8{vertical-align:41.040000px;}
.v5{vertical-align:48.240000px;}
.v2{vertical-align:54.720000px;}
.v3{vertical-align:81.360000px;}
.ls17{letter-spacing:-0.305400px;}
.ls3{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.216000px;}
.ls1{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.120000px;}
.ls15{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.152400px;}
.lse{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.864000px;}
.lsc{letter-spacing:1.728000px;}
.lsa{letter-spacing:2.016000px;}
.ls6{letter-spacing:2.736000px;}
.ls7{letter-spacing:2.801520px;}
.ls10{letter-spacing:2.808000px;}
.ls11{letter-spacing:2.921520px;}
.ls8{letter-spacing:4.008000px;}
.ls14{letter-spacing:4.376880px;}
.ls13{letter-spacing:5.096880px;}
.ls12{letter-spacing:19.496880px;}
.lsd{letter-spacing:19.656000px;}
.ls5{letter-spacing:20.376000px;}
.ls4{letter-spacing:22.961520px;}
.ls9{letter-spacing:58.241520px;}
.lsf{letter-spacing:197.321520px;}
.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;}
}
.ws8{word-spacing:-72.360000px;}
.ws0{word-spacing:-72.000000px;}
.ws7{word-spacing:-71.712000px;}
.ws9{word-spacing:-59.688000px;}
.ws5{word-spacing:-55.944000px;}
.wsa{word-spacing:-55.824000px;}
.ws6{word-spacing:-51.624000px;}
.wsb{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.712000px;}
.wse{word-spacing:-16.712400px;}
.wsc{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.254600px;}
.ws3{word-spacing:0.000000px;}
._11{margin-left:-4.536000px;}
._4{margin-left:-2.736000px;}
._1{margin-left:-1.008000px;}
._0{width:1.200000px;}
._e{width:2.232000px;}
._14{width:4.104000px;}
._9{width:5.112000px;}
._b{width:6.252000px;}
._a{width:7.272000px;}
._d{width:8.280000px;}
._6{width:9.504000px;}
._7{width:11.040000px;}
._8{width:12.504000px;}
._12{width:13.560000px;}
._13{width:15.120000px;}
._f{width:16.128000px;}
._3{width:19.944000px;}
._2{width:20.952000px;}
._18{width:22.080000px;}
._10{width:23.760000px;}
._5{width:25.056000px;}
._c{width:26.208000px;}
._17{width:27.384000px;}
._19{width:29.436000px;}
._1f{width:30.492000px;}
._15{width:31.680000px;}
._16{width:32.688000px;}
._1a{width:33.720000px;}
._1b{width:35.136000px;}
._1e{width:42.120000px;}
._1c{width:116.280000px;}
._1d{width:117.408000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:51.120000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y82{bottom:6.294000px;}
.y7e{bottom:6.300000px;}
.y80{bottom:6.480000px;}
.ya8{bottom:12.960000px;}
.ya4{bottom:13.140000px;}
.ybb{bottom:14.220000px;}
.yb5{bottom:14.400000px;}
.yc4{bottom:28.080000px;}
.yc2{bottom:28.260000px;}
.ya7{bottom:41.400000px;}
.ya5{bottom:41.580000px;}
.yb6{bottom:45.360000px;}
.yba{bottom:45.390000px;}
.yc1{bottom:50.040000px;}
.y2{bottom:55.440000px;}
.y1{bottom:75.456000px;}
.yac{bottom:108.396000px;}
.y63{bottom:115.236000px;}
.y83{bottom:124.236000px;}
.y2a{bottom:126.936000px;}
.yc9{bottom:134.136000px;}
.y4e{bottom:135.576000px;}
.y62{bottom:146.196000px;}
.y81{bottom:146.736000px;}
.yeb{bottom:147.996000px;}
.y29{bottom:157.890000px;}
.yc8{bottom:165.270000px;}
.yab{bottom:165.990000px;}
.y4d{bottom:166.710000px;}
.y7c{bottom:168.510000px;}
.y7f{bottom:169.230000px;}
.yea{bottom:171.750000px;}
.y61{bottom:177.330000px;}
.y28{bottom:189.030000px;}
.y7d{bottom:191.910000px;}
.ye9{bottom:195.690000px;}
.yc7{bottom:196.230000px;}
.y4c{bottom:197.670000px;}
.y7b{bottom:199.470000px;}
.y60{bottom:208.290000px;}
.yc6{bottom:213.870000px;}
.ye8{bottom:219.450000px;}
.y27{bottom:219.990000px;}
.yaa{bottom:223.590000px;}
.y4b{bottom:228.810000px;}
.y7a{bottom:230.610000px;}
.y5f{bottom:239.430000px;}
.ye7{bottom:243.210000px;}
.y26{bottom:243.750000px;}
.ya9{bottom:252.930000px;}
.yc5{bottom:258.150000px;}
.y4a{bottom:259.770000px;}
.y79{bottom:261.570000px;}
.ye6{bottom:266.970000px;}
.y25{bottom:267.690000px;}
.y5e{bottom:270.390000px;}
.ya6{bottom:282.090000px;}
.y49{bottom:290.910000px;}
.y24{bottom:291.450000px;}
.y78{bottom:292.710000px;}
.y5d{bottom:301.530000px;}
.yc3{bottom:302.610000px;}
.ye5{bottom:314.670000px;}
.y23{bottom:315.210000px;}
.y48{bottom:321.870000px;}
.y77{bottom:323.670000px;}
.y5c{bottom:332.490000px;}
.ye4{bottom:338.475000px;}
.y22{bottom:339.015000px;}
.ya3{bottom:339.735000px;}
.yc0{bottom:346.935000px;}
.y47{bottom:353.055000px;}
.y76{bottom:354.855000px;}
.ye3{bottom:362.235000px;}
.y21{bottom:362.775000px;}
.y5b{bottom:363.675000px;}
.y46{bottom:384.015000px;}
.y75{bottom:385.815000px;}
.ye2{bottom:386.175000px;}
.y20{bottom:386.715000px;}
.y5a{bottom:394.635000px;}
.ye1{bottom:409.935000px;}
.y1f{bottom:410.475000px;}
.ya2{bottom:411.735000px;}
.y45{bottom:415.155000px;}
.y74{bottom:416.955000px;}
.y59{bottom:425.775000px;}
.ybf{bottom:427.575000px;}
.ye0{bottom:433.695000px;}
.y1e{bottom:434.235000px;}
.ya1{bottom:442.875000px;}
.y44{bottom:446.115000px;}
.y73{bottom:447.915000px;}
.y58{bottom:456.735000px;}
.ydf{bottom:457.455000px;}
.y1d{bottom:457.995000px;}
.ybe{bottom:458.535000px;}
.ya0{bottom:473.835000px;}
.y43{bottom:477.075000px;}
.y72{bottom:479.055000px;}
.yde{bottom:481.215000px;}
.y1c{bottom:481.935000px;}
.y57{bottom:487.875000px;}
.ybd{bottom:489.675000px;}
.y9f{bottom:491.295000px;}
.ydd{bottom:505.155000px;}
.y1b{bottom:505.695000px;}
.ybc{bottom:507.135000px;}
.y42{bottom:508.215000px;}
.y71{bottom:510.015000px;}
.y9e{bottom:513.975000px;}
.y56{bottom:518.835000px;}
.ydc{bottom:528.915000px;}
.y1a{bottom:529.455000px;}
.y9d{bottom:536.475000px;}
.y41{bottom:539.175000px;}
.y70{bottom:541.155000px;}
.y55{bottom:549.975000px;}
.ydb{bottom:552.675000px;}
.y19{bottom:553.215000px;}
.y102{bottom:557.895000px;}
.y9c{bottom:559.155000px;}
.y54{bottom:562.035000px;}
.yb9{bottom:569.955000px;}
.y40{bottom:570.315000px;}
.y6f{bottom:572.115000px;}
.yda{bottom:576.435000px;}
.y18{bottom:577.155000px;}
.y9b{bottom:581.655000px;}
.yd9{bottom:600.375000px;}
.y3f{bottom:601.275000px;}
.y6e{bottom:603.075000px;}
.y9a{bottom:604.185000px;}
.y101{bottom:605.445000px;}
.y53{bottom:607.605000px;}
.y17{bottom:608.145000px;}
.yd8{bottom:624.165000px;}
.y99{bottom:626.865000px;}
.y100{bottom:629.385000px;}
.y3e{bottom:632.445000px;}
.yb8{bottom:632.805000px;}
.y6d{bottom:634.245000px;}
.y16{bottom:639.285000px;}
.yd7{bottom:647.925000px;}
.y98{bottom:649.365000px;}
.yff{bottom:653.145000px;}
.y3d{bottom:663.405000px;}
.y6c{bottom:665.565000px;}
.y15{bottom:670.245000px;}
.y52{bottom:670.965000px;}
.yd6{bottom:671.685000px;}
.y97{bottom:672.045000px;}
.yfe{bottom:676.905000px;}
.y3c{bottom:694.545000px;}
.yb7{bottom:695.625000px;}
.y6b{bottom:697.065000px;}
.yfd{bottom:700.665000px;}
.y14{bottom:701.385000px;}
.y51{bottom:702.645000px;}
.y96{bottom:717.045000px;}
.yd5{bottom:719.385000px;}
.yfc{bottom:724.605000px;}
.y3b{bottom:725.505000px;}
.y6a{bottom:728.385000px;}
.y50{bottom:730.365000px;}
.y13{bottom:732.345000px;}
.y95{bottom:739.725000px;}
.y4f{bottom:742.425000px;}
.yd4{bottom:743.145000px;}
.yfb{bottom:748.365000px;}
.y3a{bottom:756.645000px;}
.yb4{bottom:758.445000px;}
.y69{bottom:760.245000px;}
.y94{bottom:762.225000px;}
.y12{bottom:763.485000px;}
.yd3{bottom:766.905000px;}
.yfa{bottom:772.125000px;}
.y93{bottom:784.725000px;}
.y39{bottom:787.605000px;}
.yd2{bottom:790.845000px;}
.y68{bottom:791.565000px;}
.y11{bottom:794.445000px;}
.yf9{bottom:795.885000px;}
.y67{bottom:803.625000px;}
.y92{bottom:807.405000px;}
.yd1{bottom:814.605000px;}
.y38{bottom:818.745000px;}
.yf8{bottom:819.825000px;}
.y10{bottom:825.585000px;}
.y91{bottom:829.905000px;}
.yb3{bottom:835.665000px;}
.yd0{bottom:838.365000px;}
.yf7{bottom:843.585000px;}
.y66{bottom:848.985000px;}
.y37{bottom:849.705000px;}
.y90{bottom:852.585000px;}
.yf{bottom:856.545000px;}
.ycf{bottom:862.125000px;}
.yb2{bottom:866.625000px;}
.yf6{bottom:867.345000px;}
.y8f{bottom:875.130000px;}
.y65{bottom:879.990000px;}
.y36{bottom:880.890000px;}
.yce{bottom:886.110000px;}
.ye{bottom:887.550000px;}
.yf5{bottom:891.150000px;}
.y8e{bottom:897.630000px;}
.yb1{bottom:897.810000px;}
.ycd{bottom:909.870000px;}
.y64{bottom:911.310000px;}
.y35{bottom:911.850000px;}
.yf4{bottom:915.090000px;}
.yb0{bottom:915.270000px;}
.yd{bottom:918.690000px;}
.y8d{bottom:920.310000px;}
.ycc{bottom:933.630000px;}
.yf3{bottom:938.850000px;}
.y8c{bottom:942.810000px;}
.y34{bottom:942.990000px;}
.yc{bottom:949.650000px;}
.ycb{bottom:957.390000px;}
.yf2{bottom:962.610000px;}
.y8b{bottom:965.490000px;}
.yaf{bottom:972.870000px;}
.y33{bottom:973.950000px;}
.yb{bottom:980.790000px;}
.yca{bottom:981.150000px;}
.yf1{bottom:986.370000px;}
.y8a{bottom:987.990000px;}
.y32{bottom:1005.090000px;}
.yf0{bottom:1010.130000px;}
.y89{bottom:1010.490000px;}
.ya{bottom:1011.750000px;}
.yae{bottom:1030.650000px;}
.y88{bottom:1033.170000px;}
.yef{bottom:1034.070000px;}
.y31{bottom:1036.050000px;}
.y9{bottom:1042.890000px;}
.y87{bottom:1055.670000px;}
.yee{bottom:1057.830000px;}
.y30{bottom:1067.190000px;}
.y8{bottom:1073.850000px;}
.y86{bottom:1078.350000px;}
.yed{bottom:1081.590000px;}
.yad{bottom:1088.250000px;}
.y7{bottom:1097.790000px;}
.y2f{bottom:1098.150000px;}
.y85{bottom:1100.850000px;}
.yec{bottom:1105.350000px;}
.y6{bottom:1121.550000px;}
.y84{bottom:1123.350000px;}
.y2e{bottom:1129.290000px;}
.y5{bottom:1145.340000px;}
.y2d{bottom:1150.560000px;}
.y4{bottom:1169.100000px;}
.y2c{bottom:1172.520000px;}
.y3{bottom:1193.040000px;}
.y2b{bottom:1194.300000px;}
.hd{height:21.780000px;}
.h10{height:21.816000px;}
.hf{height:21.960000px;}
.h13{height:28.440000px;}
.h14{height:28.620000px;}
.h1b{height:43.560000px;}
.h19{height:43.596000px;}
.h1a{height:43.740000px;}
.he{height:46.251562px;}
.h7{height:46.736719px;}
.h4{height:50.273438px;}
.h3{height:50.800781px;}
.h15{height:56.880000px;}
.h12{height:56.916000px;}
.h11{height:57.060000px;}
.h6{height:58.429688px;}
.h5{height:59.343750px;}
.ha{height:60.679688px;}
.h16{height:62.100000px;}
.h17{height:62.136000px;}
.h18{height:65.520000px;}
.h2{height:65.884219px;}
.hc{height:69.722578px;}
.h9{height:98.513437px;}
.hb{height:108.919687px;}
.h8{height:124.442578px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:29.160000px;}
.w8{width:40.140000px;}
.wc{width:42.300000px;}
.w9{width:53.136000px;}
.wd{width:56.376000px;}
.w6{width:71.280000px;}
.w13{width:77.940000px;}
.w10{width:88.560000px;}
.w12{width:93.096000px;}
.w5{width:93.456000px;}
.wa{width:97.020000px;}
.we{width:103.500000px;}
.w4{width:197.310000px;}
.w3{width:311.250000px;}
.wf{width:383.655000px;}
.wb{width:470.955000px;}
.w7{width:483.195000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:7.740000px;}
.x2{left:108.035987px;}
.xa{left:153.389987px;}
.x27{left:162.029987px;}
.x11{left:201.449987px;}
.x9{left:220.169987px;}
.xb{left:236.549987px;}
.xf{left:273.269987px;}
.xe{left:283.214987px;}
.xd{left:321.374987px;}
.xc{left:322.454987px;}
.x15{left:327.134987px;}
.x3{left:332.354987px;}
.x12{left:355.214987px;}
.x1d{left:365.474987px;}
.x10{left:366.734987px;}
.x17{left:378.614987px;}
.x13{left:402.554987px;}
.x16{left:412.454987px;}
.x1b{left:420.915000px;}
.x1{left:434.054987px;}
.x8{left:446.474987px;}
.x14{left:458.534987px;}
.x18{left:467.924987px;}
.x23{left:493.305000px;}
.x19{left:514.724987px;}
.x7{left:545.504987px;}
.x6{left:576.464987px;}
.x20{left:580.605000px;}
.x24{left:582.585000px;}
.x5{left:592.484987px;}
.x25{left:612.645000px;}
.x4{left:618.944987px;}
.x21{left:623.805000px;}
.x1e{left:633.525000px;}
.x22{left:680.910000px;}
.x1f{left:687.390000px;}
.x26{left:706.470000px;}
.x1c{left:713.130000px;}
@media print{
.v1{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:12.800000pt;}
.v4{vertical-align:19.200000pt;}
.v6{vertical-align:23.680000pt;}
.v8{vertical-align:36.480000pt;}
.v5{vertical-align:42.880000pt;}
.v2{vertical-align:48.640000pt;}
.v3{vertical-align:72.320000pt;}
.ls17{letter-spacing:-0.271467pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.106667pt;}
.ls15{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.135467pt;}
.lse{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.768000pt;}
.lsc{letter-spacing:1.536000pt;}
.lsa{letter-spacing:1.792000pt;}
.ls6{letter-spacing:2.432000pt;}
.ls7{letter-spacing:2.490240pt;}
.ls10{letter-spacing:2.496000pt;}
.ls11{letter-spacing:2.596907pt;}
.ls8{letter-spacing:3.562667pt;}
.ls14{letter-spacing:3.890560pt;}
.ls13{letter-spacing:4.530560pt;}
.ls12{letter-spacing:17.330560pt;}
.lsd{letter-spacing:17.472000pt;}
.ls5{letter-spacing:18.112000pt;}
.ls4{letter-spacing:20.410240pt;}
.ls9{letter-spacing:51.770240pt;}
.lsf{letter-spacing:175.396907pt;}
.ws8{word-spacing:-64.320000pt;}
.ws0{word-spacing:-64.000000pt;}
.ws7{word-spacing:-63.744000pt;}
.ws9{word-spacing:-53.056000pt;}
.ws5{word-spacing:-49.728000pt;}
.wsa{word-spacing:-49.621333pt;}
.ws6{word-spacing:-45.888000pt;}
.wsb{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.744000pt;}
.wse{word-spacing:-14.855467pt;}
.wsc{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.448533pt;}
.ws3{word-spacing:0.000000pt;}
._11{margin-left:-4.032000pt;}
._4{margin-left:-2.432000pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.066667pt;}
._e{width:1.984000pt;}
._14{width:3.648000pt;}
._9{width:4.544000pt;}
._b{width:5.557333pt;}
._a{width:6.464000pt;}
._d{width:7.360000pt;}
._6{width:8.448000pt;}
._7{width:9.813333pt;}
._8{width:11.114667pt;}
._12{width:12.053333pt;}
._13{width:13.440000pt;}
._f{width:14.336000pt;}
._3{width:17.728000pt;}
._2{width:18.624000pt;}
._18{width:19.626667pt;}
._10{width:21.120000pt;}
._5{width:22.272000pt;}
._c{width:23.296000pt;}
._17{width:24.341333pt;}
._19{width:26.165333pt;}
._1f{width:27.104000pt;}
._15{width:28.160000pt;}
._16{width:29.056000pt;}
._1a{width:29.973333pt;}
._1b{width:31.232000pt;}
._1e{width:37.440000pt;}
._1c{width:103.360000pt;}
._1d{width:104.362667pt;}
.fs2{font-size:45.440000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:5.594667pt;}
.y7e{bottom:5.600000pt;}
.y80{bottom:5.760000pt;}
.ya8{bottom:11.520000pt;}
.ya4{bottom:11.680000pt;}
.ybb{bottom:12.640000pt;}
.yb5{bottom:12.800000pt;}
.yc4{bottom:24.960000pt;}
.yc2{bottom:25.120000pt;}
.ya7{bottom:36.800000pt;}
.ya5{bottom:36.960000pt;}
.yb6{bottom:40.320000pt;}
.yba{bottom:40.346667pt;}
.yc1{bottom:44.480000pt;}
.y2{bottom:49.280000pt;}
.y1{bottom:67.072000pt;}
.yac{bottom:96.352000pt;}
.y63{bottom:102.432000pt;}
.y83{bottom:110.432000pt;}
.y2a{bottom:112.832000pt;}
.yc9{bottom:119.232000pt;}
.y4e{bottom:120.512000pt;}
.y62{bottom:129.952000pt;}
.y81{bottom:130.432000pt;}
.yeb{bottom:131.552000pt;}
.y29{bottom:140.346667pt;}
.yc8{bottom:146.906667pt;}
.yab{bottom:147.546667pt;}
.y4d{bottom:148.186667pt;}
.y7c{bottom:149.786667pt;}
.y7f{bottom:150.426667pt;}
.yea{bottom:152.666667pt;}
.y61{bottom:157.626667pt;}
.y28{bottom:168.026667pt;}
.y7d{bottom:170.586667pt;}
.ye9{bottom:173.946667pt;}
.yc7{bottom:174.426667pt;}
.y4c{bottom:175.706667pt;}
.y7b{bottom:177.306667pt;}
.y60{bottom:185.146667pt;}
.yc6{bottom:190.106667pt;}
.ye8{bottom:195.066667pt;}
.y27{bottom:195.546667pt;}
.yaa{bottom:198.746667pt;}
.y4b{bottom:203.386667pt;}
.y7a{bottom:204.986667pt;}
.y5f{bottom:212.826667pt;}
.ye7{bottom:216.186667pt;}
.y26{bottom:216.666667pt;}
.ya9{bottom:224.826667pt;}
.yc5{bottom:229.466667pt;}
.y4a{bottom:230.906667pt;}
.y79{bottom:232.506667pt;}
.ye6{bottom:237.306667pt;}
.y25{bottom:237.946667pt;}
.y5e{bottom:240.346667pt;}
.ya6{bottom:250.746667pt;}
.y49{bottom:258.586667pt;}
.y24{bottom:259.066667pt;}
.y78{bottom:260.186667pt;}
.y5d{bottom:268.026667pt;}
.yc3{bottom:268.986667pt;}
.ye5{bottom:279.706667pt;}
.y23{bottom:280.186667pt;}
.y48{bottom:286.106667pt;}
.y77{bottom:287.706667pt;}
.y5c{bottom:295.546667pt;}
.ye4{bottom:300.866667pt;}
.y22{bottom:301.346667pt;}
.ya3{bottom:301.986667pt;}
.yc0{bottom:308.386667pt;}
.y47{bottom:313.826667pt;}
.y76{bottom:315.426667pt;}
.ye3{bottom:321.986667pt;}
.y21{bottom:322.466667pt;}
.y5b{bottom:323.266667pt;}
.y46{bottom:341.346667pt;}
.y75{bottom:342.946667pt;}
.ye2{bottom:343.266667pt;}
.y20{bottom:343.746667pt;}
.y5a{bottom:350.786667pt;}
.ye1{bottom:364.386667pt;}
.y1f{bottom:364.866667pt;}
.ya2{bottom:365.986667pt;}
.y45{bottom:369.026667pt;}
.y74{bottom:370.626667pt;}
.y59{bottom:378.466667pt;}
.ybf{bottom:380.066667pt;}
.ye0{bottom:385.506667pt;}
.y1e{bottom:385.986667pt;}
.ya1{bottom:393.666667pt;}
.y44{bottom:396.546667pt;}
.y73{bottom:398.146667pt;}
.y58{bottom:405.986667pt;}
.ydf{bottom:406.626667pt;}
.y1d{bottom:407.106667pt;}
.ybe{bottom:407.586667pt;}
.ya0{bottom:421.186667pt;}
.y43{bottom:424.066667pt;}
.y72{bottom:425.826667pt;}
.yde{bottom:427.746667pt;}
.y1c{bottom:428.386667pt;}
.y57{bottom:433.666667pt;}
.ybd{bottom:435.266667pt;}
.y9f{bottom:436.706667pt;}
.ydd{bottom:449.026667pt;}
.y1b{bottom:449.506667pt;}
.ybc{bottom:450.786667pt;}
.y42{bottom:451.746667pt;}
.y71{bottom:453.346667pt;}
.y9e{bottom:456.866667pt;}
.y56{bottom:461.186667pt;}
.ydc{bottom:470.146667pt;}
.y1a{bottom:470.626667pt;}
.y9d{bottom:476.866667pt;}
.y41{bottom:479.266667pt;}
.y70{bottom:481.026667pt;}
.y55{bottom:488.866667pt;}
.ydb{bottom:491.266667pt;}
.y19{bottom:491.746667pt;}
.y102{bottom:495.906667pt;}
.y9c{bottom:497.026667pt;}
.y54{bottom:499.586667pt;}
.yb9{bottom:506.626667pt;}
.y40{bottom:506.946667pt;}
.y6f{bottom:508.546667pt;}
.yda{bottom:512.386667pt;}
.y18{bottom:513.026667pt;}
.y9b{bottom:517.026667pt;}
.yd9{bottom:533.666667pt;}
.y3f{bottom:534.466667pt;}
.y6e{bottom:536.066667pt;}
.y9a{bottom:537.053333pt;}
.y101{bottom:538.173333pt;}
.y53{bottom:540.093333pt;}
.y17{bottom:540.573333pt;}
.yd8{bottom:554.813333pt;}
.y99{bottom:557.213333pt;}
.y100{bottom:559.453333pt;}
.y3e{bottom:562.173333pt;}
.yb8{bottom:562.493333pt;}
.y6d{bottom:563.773333pt;}
.y16{bottom:568.253333pt;}
.yd7{bottom:575.933333pt;}
.y98{bottom:577.213333pt;}
.yff{bottom:580.573333pt;}
.y3d{bottom:589.693333pt;}
.y6c{bottom:591.613333pt;}
.y15{bottom:595.773333pt;}
.y52{bottom:596.413333pt;}
.yd6{bottom:597.053333pt;}
.y97{bottom:597.373333pt;}
.yfe{bottom:601.693333pt;}
.y3c{bottom:617.373333pt;}
.yb7{bottom:618.333333pt;}
.y6b{bottom:619.613333pt;}
.yfd{bottom:622.813333pt;}
.y14{bottom:623.453333pt;}
.y51{bottom:624.573333pt;}
.y96{bottom:637.373333pt;}
.yd5{bottom:639.453333pt;}
.yfc{bottom:644.093333pt;}
.y3b{bottom:644.893333pt;}
.y6a{bottom:647.453333pt;}
.y50{bottom:649.213333pt;}
.y13{bottom:650.973333pt;}
.y95{bottom:657.533333pt;}
.y4f{bottom:659.933333pt;}
.yd4{bottom:660.573333pt;}
.yfb{bottom:665.213333pt;}
.y3a{bottom:672.573333pt;}
.yb4{bottom:674.173333pt;}
.y69{bottom:675.773333pt;}
.y94{bottom:677.533333pt;}
.y12{bottom:678.653333pt;}
.yd3{bottom:681.693333pt;}
.yfa{bottom:686.333333pt;}
.y93{bottom:697.533333pt;}
.y39{bottom:700.093333pt;}
.yd2{bottom:702.973333pt;}
.y68{bottom:703.613333pt;}
.y11{bottom:706.173333pt;}
.yf9{bottom:707.453333pt;}
.y67{bottom:714.333333pt;}
.y92{bottom:717.693333pt;}
.yd1{bottom:724.093333pt;}
.y38{bottom:727.773333pt;}
.yf8{bottom:728.733333pt;}
.y10{bottom:733.853333pt;}
.y91{bottom:737.693333pt;}
.yb3{bottom:742.813333pt;}
.yd0{bottom:745.213333pt;}
.yf7{bottom:749.853333pt;}
.y66{bottom:754.653333pt;}
.y37{bottom:755.293333pt;}
.y90{bottom:757.853333pt;}
.yf{bottom:761.373333pt;}
.ycf{bottom:766.333333pt;}
.yb2{bottom:770.333333pt;}
.yf6{bottom:770.973333pt;}
.y8f{bottom:777.893333pt;}
.y65{bottom:782.213333pt;}
.y36{bottom:783.013333pt;}
.yce{bottom:787.653333pt;}
.ye{bottom:788.933333pt;}
.yf5{bottom:792.133333pt;}
.y8e{bottom:797.893333pt;}
.yb1{bottom:798.053333pt;}
.ycd{bottom:808.773333pt;}
.y64{bottom:810.053333pt;}
.y35{bottom:810.533333pt;}
.yf4{bottom:813.413333pt;}
.yb0{bottom:813.573333pt;}
.yd{bottom:816.613333pt;}
.y8d{bottom:818.053333pt;}
.ycc{bottom:829.893333pt;}
.yf3{bottom:834.533333pt;}
.y8c{bottom:838.053333pt;}
.y34{bottom:838.213333pt;}
.yc{bottom:844.133333pt;}
.ycb{bottom:851.013333pt;}
.yf2{bottom:855.653333pt;}
.y8b{bottom:858.213333pt;}
.yaf{bottom:864.773333pt;}
.y33{bottom:865.733333pt;}
.yb{bottom:871.813333pt;}
.yca{bottom:872.133333pt;}
.yf1{bottom:876.773333pt;}
.y8a{bottom:878.213333pt;}
.y32{bottom:893.413333pt;}
.yf0{bottom:897.893333pt;}
.y89{bottom:898.213333pt;}
.ya{bottom:899.333333pt;}
.yae{bottom:916.133333pt;}
.y88{bottom:918.373333pt;}
.yef{bottom:919.173333pt;}
.y31{bottom:920.933333pt;}
.y9{bottom:927.013333pt;}
.y87{bottom:938.373333pt;}
.yee{bottom:940.293333pt;}
.y30{bottom:948.613333pt;}
.y8{bottom:954.533333pt;}
.y86{bottom:958.533333pt;}
.yed{bottom:961.413333pt;}
.yad{bottom:967.333333pt;}
.y7{bottom:975.813333pt;}
.y2f{bottom:976.133333pt;}
.y85{bottom:978.533333pt;}
.yec{bottom:982.533333pt;}
.y6{bottom:996.933333pt;}
.y84{bottom:998.533333pt;}
.y2e{bottom:1003.813333pt;}
.y5{bottom:1018.080000pt;}
.y2d{bottom:1022.720000pt;}
.y4{bottom:1039.200000pt;}
.y2c{bottom:1042.240000pt;}
.y3{bottom:1060.480000pt;}
.y2b{bottom:1061.600000pt;}
.hd{height:19.360000pt;}
.h10{height:19.392000pt;}
.hf{height:19.520000pt;}
.h13{height:25.280000pt;}
.h14{height:25.440000pt;}
.h1b{height:38.720000pt;}
.h19{height:38.752000pt;}
.h1a{height:38.880000pt;}
.he{height:41.112500pt;}
.h7{height:41.543750pt;}
.h4{height:44.687500pt;}
.h3{height:45.156250pt;}
.h15{height:50.560000pt;}
.h12{height:50.592000pt;}
.h11{height:50.720000pt;}
.h6{height:51.937500pt;}
.h5{height:52.750000pt;}
.ha{height:53.937500pt;}
.h16{height:55.200000pt;}
.h17{height:55.232000pt;}
.h18{height:58.240000pt;}
.h2{height:58.563750pt;}
.hc{height:61.975625pt;}
.h9{height:87.567500pt;}
.hb{height:96.817500pt;}
.h8{height:110.615625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:25.920000pt;}
.w8{width:35.680000pt;}
.wc{width:37.600000pt;}
.w9{width:47.232000pt;}
.wd{width:50.112000pt;}
.w6{width:63.360000pt;}
.w13{width:69.280000pt;}
.w10{width:78.720000pt;}
.w12{width:82.752000pt;}
.w5{width:83.072000pt;}
.wa{width:86.240000pt;}
.we{width:92.000000pt;}
.w4{width:175.386667pt;}
.w3{width:276.666667pt;}
.wf{width:341.026667pt;}
.wb{width:418.626667pt;}
.w7{width:429.506667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.880000pt;}
.x2{left:96.031988pt;}
.xa{left:136.346655pt;}
.x27{left:144.026655pt;}
.x11{left:179.066655pt;}
.x9{left:195.706655pt;}
.xb{left:210.266655pt;}
.xf{left:242.906655pt;}
.xe{left:251.746655pt;}
.xd{left:285.666655pt;}
.xc{left:286.626655pt;}
.x15{left:290.786655pt;}
.x3{left:295.426655pt;}
.x12{left:315.746655pt;}
.x1d{left:324.866655pt;}
.x10{left:325.986655pt;}
.x17{left:336.546655pt;}
.x13{left:357.826655pt;}
.x16{left:366.626655pt;}
.x1b{left:374.146667pt;}
.x1{left:385.826655pt;}
.x8{left:396.866655pt;}
.x14{left:407.586655pt;}
.x18{left:415.933322pt;}
.x23{left:438.493333pt;}
.x19{left:457.533322pt;}
.x7{left:484.893322pt;}
.x6{left:512.413322pt;}
.x20{left:516.093333pt;}
.x24{left:517.853333pt;}
.x5{left:526.653322pt;}
.x25{left:544.573333pt;}
.x4{left:550.173322pt;}
.x21{left:554.493333pt;}
.x1e{left:563.133333pt;}
.x22{left:605.253333pt;}
.x1f{left:611.013333pt;}
.x26{left:627.973333pt;}
.x1c{left:633.893333pt;}
}




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