
    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_7e27675718f86b0df3f0e73b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.766602;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_2f3fa7b589abdf1d8ee4bedb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.977539;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_fc4af3ac8e5fbf3e3b268ba0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.800293;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_99628b0e5eab96f215f2342b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_994a74fba133a3cfbc3540f9.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4a70c968767d0d02a2b2f3bf.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4917990df829429517e3175f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.944824;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_7b1fd6b1e135ca8c6e34d5be.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5c7e8117bc511d289a1e9371.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_709e1d6314a11f8c40bfb4ba.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_f90ada7a1074b1b68f326b36.woff')format("woff");}.ffe{font-family:ffe;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.576000px;}
.lse{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsd{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.576000px;}
.ls6{letter-spacing:21.744000px;}
.ls3{letter-spacing:33.960000px;}
.ls9{letter-spacing:51.762720px;}
.lsc{letter-spacing:64.002720px;}
.ls5{letter-spacing:100.026720px;}
.lsa{letter-spacing:100.746720px;}
.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:-59.760000px;}
.ws5{word-spacing:-18.576000px;}
.ws3{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.712000px;}
.ws6{word-spacing:-17.424000px;}
.ws0{word-spacing:-13.447440px;}
.ws2{word-spacing:0.000000px;}
._18{margin-left:-5.112000px;}
._13{margin-left:-3.868858px;}
._e{margin-left:-2.808000px;}
._0{margin-left:-1.243142px;}
._1{width:1.238842px;}
._9{width:3.240000px;}
._11{width:4.737158px;}
._f{width:5.976000px;}
._3{width:7.128000px;}
._10{width:8.133158px;}
._a{width:9.864000px;}
._5{width:11.376000px;}
._6{width:13.017158px;}
._14{width:14.342842px;}
._4{width:16.075142px;}
._d{width:19.080000px;}
._12{width:20.304000px;}
._17{width:21.744000px;}
._16{width:22.987142px;}
._b{width:24.192000px;}
._c{width:25.776000px;}
._19{width:27.038284px;}
._7{width:28.584000px;}
._8{width:29.808000px;}
._15{width:31.104000px;}
._1a{width:33.120000px;}
._1d{width:36.576000px;}
._1c{width:37.910284px;}
._1b{width:38.952000px;}
._2{width:146.082865px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(91,155,213);}
.fc1{color:rgb(0,176,240);}
.fc4{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.000000px;}
.fs2{font-size:56.920429px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:88.795869px;}
.y0{bottom:0.000000px;}
.y4{bottom:68.580000px;}
.y68{bottom:120.096000px;}
.yca{bottom:125.676000px;}
.yd0{bottom:125.856000px;}
.y88{bottom:126.036000px;}
.y9f{bottom:126.576000px;}
.yb2{bottom:126.936000px;}
.y51{bottom:127.116000px;}
.y10d{bottom:127.836000px;}
.yfa{bottom:139.356000px;}
.y28{bottom:145.656000px;}
.yc9{bottom:146.376000px;}
.y87{bottom:146.556000px;}
.yd7{bottom:146.916000px;}
.y9e{bottom:147.276000px;}
.yb1{bottom:147.636000px;}
.y50{bottom:147.816000px;}
.y10c{bottom:148.536000px;}
.y67{bottom:159.330000px;}
.yf9{bottom:160.050000px;}
.yc8{bottom:167.070000px;}
.y86{bottom:167.250000px;}
.y9d{bottom:167.970000px;}
.yb0{bottom:168.330000px;}
.y4f{bottom:168.510000px;}
.y10b{bottom:169.230000px;}
.yf8{bottom:180.750000px;}
.y27{bottom:187.410000px;}
.yc7{bottom:187.770000px;}
.y85{bottom:187.950000px;}
.y9c{bottom:188.670000px;}
.yaf{bottom:189.030000px;}
.y4e{bottom:189.210000px;}
.y10a{bottom:189.930000px;}
.y66{bottom:201.090000px;}
.yf7{bottom:201.450000px;}
.ye5{bottom:208.470000px;}
.y84{bottom:208.650000px;}
.yd6{bottom:209.370000px;}
.yae{bottom:209.550000px;}
.y4d{bottom:209.910000px;}
.y109{bottom:210.630000px;}
.yf6{bottom:222.150000px;}
.y26{bottom:229.170000px;}
.yc6{bottom:229.350000px;}
.ycf{bottom:229.710000px;}
.yd5{bottom:230.070000px;}
.y9b{bottom:230.250000px;}
.ydf{bottom:230.610000px;}
.y108{bottom:231.330000px;}
.y65{bottom:242.850000px;}
.ye4{bottom:250.050000px;}
.y83{bottom:250.410000px;}
.yd4{bottom:250.770000px;}
.y9a{bottom:250.950000px;}
.yde{bottom:251.310000px;}
.y4c{bottom:251.670000px;}
.y107{bottom:252.030000px;}
.y12a{bottom:255.450000px;}
.y64{bottom:263.550000px;}
.y25{bottom:270.750000px;}
.yc5{bottom:271.110000px;}
.yd8{bottom:271.470000px;}
.y99{bottom:271.650000px;}
.yad{bottom:272.010000px;}
.y4b{bottom:272.370000px;}
.y106{bottom:272.550000px;}
.y129{bottom:276.150000px;}
.y63{bottom:284.250000px;}
.yf2{bottom:291.450000px;}
.yc4{bottom:291.810000px;}
.y82{bottom:292.170000px;}
.y98{bottom:292.350000px;}
.yac{bottom:292.710000px;}
.y4a{bottom:293.070000px;}
.y105{bottom:293.250000px;}
.y62{bottom:304.950000px;}
.yf1{bottom:312.150000px;}
.y24{bottom:312.510000px;}
.y81{bottom:312.870000px;}
.y97{bottom:313.050000px;}
.yab{bottom:313.410000px;}
.y49{bottom:313.770000px;}
.y104{bottom:313.950000px;}
.y128{bottom:321.510000px;}
.y61{bottom:325.650000px;}
.yf0{bottom:332.850000px;}
.yc3{bottom:333.210000px;}
.y80{bottom:333.570000px;}
.y96{bottom:333.750000px;}
.y48{bottom:334.470000px;}
.y103{bottom:334.650000px;}
.y60{bottom:346.395000px;}
.yef{bottom:353.595000px;}
.yc2{bottom:353.955000px;}
.y23{bottom:354.315000px;}
.y95{bottom:354.495000px;}
.y47{bottom:355.215000px;}
.y102{bottom:355.395000px;}
.yf5{bottom:367.275000px;}
.y127{bottom:367.815000px;}
.yee{bottom:374.295000px;}
.yc1{bottom:374.655000px;}
.y94{bottom:375.195000px;}
.y46{bottom:375.915000px;}
.y101{bottom:376.095000px;}
.y5f{bottom:387.975000px;}
.y22{bottom:395.895000px;}
.ya5{bottom:396.615000px;}
.ydd{bottom:396.795000px;}
.y5e{bottom:408.675000px;}
.y126{bottom:413.895000px;}
.yed{bottom:416.055000px;}
.yc0{bottom:416.415000px;}
.y7f{bottom:416.595000px;}
.y93{bottom:416.955000px;}
.ya4{bottom:417.315000px;}
.y45{bottom:417.495000px;}
.y5d{bottom:429.375000px;}
.y7e{bottom:437.295000px;}
.y21{bottom:437.655000px;}
.ya3{bottom:438.015000px;}
.y44{bottom:438.195000px;}
.y5c{bottom:450.075000px;}
.yec{bottom:457.815000px;}
.y7d{bottom:457.995000px;}
.yd3{bottom:458.355000px;}
.y92{bottom:458.715000px;}
.y43{bottom:458.895000px;}
.y100{bottom:459.255000px;}
.y125{bottom:460.155000px;}
.y5b{bottom:470.775000px;}
.y7c{bottom:478.695000px;}
.yd2{bottom:479.055000px;}
.y20{bottom:479.415000px;}
.y42{bottom:479.595000px;}
.y124{bottom:480.855000px;}
.yf4{bottom:491.475000px;}
.ybf{bottom:499.395000px;}
.yd1{bottom:499.755000px;}
.y91{bottom:500.115000px;}
.y41{bottom:500.295000px;}
.yff{bottom:501.015000px;}
.y123{bottom:501.555000px;}
.y5a{bottom:512.535000px;}
.ybe{bottom:520.095000px;}
.y7b{bottom:520.455000px;}
.y90{bottom:520.815000px;}
.y1f{bottom:520.995000px;}
.yfe{bottom:521.715000px;}
.y122{bottom:522.255000px;}
.yf3{bottom:537.015000px;}
.ye3{bottom:540.795000px;}
.yce{bottom:541.155000px;}
.ya2{bottom:541.695000px;}
.y40{bottom:542.055000px;}
.yfd{bottom:542.415000px;}
.y121{bottom:542.955000px;}
.y59{bottom:554.295000px;}
.ye2{bottom:561.495000px;}
.ybd{bottom:561.855000px;}
.y7a{bottom:562.215000px;}
.y8f{bottom:562.395000px;}
.y1e{bottom:562.755000px;}
.yfc{bottom:563.115000px;}
.y120{bottom:563.655000px;}
.y58{bottom:574.995000px;}
.yeb{bottom:582.195000px;}
.ybc{bottom:582.555000px;}
.y79{bottom:582.915000px;}
.y8e{bottom:583.095000px;}
.y3f{bottom:583.455000px;}
.ydc{bottom:583.815000px;}
.y11f{bottom:584.355000px;}
.y57{bottom:595.695000px;}
.yea{bottom:602.895000px;}
.ybb{bottom:603.255000px;}
.y78{bottom:603.645000px;}
.y8d{bottom:603.825000px;}
.y3e{bottom:604.185000px;}
.y1d{bottom:604.545000px;}
.y11e{bottom:605.085000px;}
.y56{bottom:616.245000px;}
.yba{bottom:623.985000px;}
.y77{bottom:624.345000px;}
.y8c{bottom:624.525000px;}
.y3d{bottom:624.885000px;}
.y1c{bottom:625.245000px;}
.y11d{bottom:625.785000px;}
.y55{bottom:636.945000px;}
.yb9{bottom:644.685000px;}
.y76{bottom:645.045000px;}
.y8b{bottom:645.225000px;}
.y3c{bottom:645.585000px;}
.ydb{bottom:645.945000px;}
.yfb{bottom:646.125000px;}
.y11c{bottom:646.485000px;}
.y54{bottom:657.645000px;}
.y75{bottom:665.745000px;}
.y8a{bottom:665.925000px;}
.y3b{bottom:666.285000px;}
.yda{bottom:666.645000px;}
.y1b{bottom:666.825000px;}
.y11b{bottom:667.185000px;}
.y53{bottom:678.345000px;}
.yb8{bottom:686.445000px;}
.y89{bottom:686.625000px;}
.y3a{bottom:686.985000px;}
.yd9{bottom:687.345000px;}
.y1a{bottom:687.525000px;}
.y11a{bottom:687.885000px;}
.ye1{bottom:707.145000px;}
.y74{bottom:707.325000px;}
.y39{bottom:707.685000px;}
.y19{bottom:708.225000px;}
.y119{bottom:708.585000px;}
.y52{bottom:723.885000px;}
.ye0{bottom:727.845000px;}
.y73{bottom:728.025000px;}
.y38{bottom:728.385000px;}
.ya1{bottom:728.745000px;}
.y18{bottom:728.925000px;}
.y118{bottom:729.285000px;}
.ye9{bottom:748.545000px;}
.y72{bottom:748.725000px;}
.yaa{bottom:749.085000px;}
.ya0{bottom:749.445000px;}
.y17{bottom:749.625000px;}
.y117{bottom:749.985000px;}
.ye8{bottom:769.245000px;}
.y71{bottom:769.425000px;}
.ya9{bottom:769.785000px;}
.y37{bottom:770.145000px;}
.y16{bottom:770.325000px;}
.y116{bottom:770.685000px;}
.y70{bottom:790.125000px;}
.ya8{bottom:790.485000px;}
.y36{bottom:790.845000px;}
.y15{bottom:791.025000px;}
.y115{bottom:791.385000px;}
.ycd{bottom:810.825000px;}
.ya7{bottom:811.185000px;}
.y35{bottom:811.545000px;}
.y14{bottom:811.725000px;}
.y114{bottom:812.085000px;}
.y6f{bottom:831.885000px;}
.y34{bottom:832.245000px;}
.y13{bottom:832.425000px;}
.y113{bottom:832.785000px;}
.yb7{bottom:852.585000px;}
.y33{bottom:852.945000px;}
.y12{bottom:853.125000px;}
.y112{bottom:853.485000px;}
.yb6{bottom:873.330000px;}
.y32{bottom:873.690000px;}
.y11{bottom:873.870000px;}
.y111{bottom:874.230000px;}
.yb5{bottom:894.030000px;}
.y6e{bottom:894.390000px;}
.y10{bottom:894.570000px;}
.y110{bottom:894.930000px;}
.yb4{bottom:914.730000px;}
.y6d{bottom:915.090000px;}
.yf{bottom:915.270000px;}
.y10f{bottom:915.630000px;}
.yb3{bottom:935.430000px;}
.y6c{bottom:935.790000px;}
.y31{bottom:935.970000px;}
.y10e{bottom:936.330000px;}
.ye7{bottom:956.130000px;}
.y6b{bottom:956.490000px;}
.y30{bottom:956.670000px;}
.ye{bottom:957.030000px;}
.y6a{bottom:977.190000px;}
.y2f{bottom:977.370000px;}
.yd{bottom:977.730000px;}
.ye6{bottom:997.710000px;}
.ya6{bottom:997.890000px;}
.y2e{bottom:998.070000px;}
.yc{bottom:998.430000px;}
.ycc{bottom:1018.410000px;}
.y2d{bottom:1018.770000px;}
.yb{bottom:1019.130000px;}
.ycb{bottom:1039.110000px;}
.y2c{bottom:1039.470000px;}
.ya{bottom:1039.830000px;}
.y2b{bottom:1060.170000px;}
.y9{bottom:1060.530000px;}
.y2a{bottom:1080.870000px;}
.y8{bottom:1081.230000px;}
.y29{bottom:1101.570000px;}
.y7{bottom:1101.930000px;}
.y6{bottom:1122.630000px;}
.y69{bottom:1143.180000px;}
.y5{bottom:1143.360000px;}
.y3{bottom:1162.800000px;}
.y2{bottom:1180.260000px;}
.y1{bottom:1217.520000px;}
.h2{height:40.790039px;}
.h4{height:45.386260px;}
.h7{height:50.273438px;}
.h6{height:50.800781px;}
.h9{height:52.171875px;}
.hb{height:52.417969px;}
.h5{height:56.900391px;}
.h8{height:59.343750px;}
.ha{height:59.439023px;}
.h3{height:70.802565px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.xb{left:135.035987px;}
.xe{left:138.095987px;}
.x3{left:139.895987px;}
.x2{left:142.775987px;}
.xd{left:144.035987px;}
.xc{left:162.029987px;}
.x10{left:167.969987px;}
.xf{left:174.089987px;}
.x12{left:198.029987px;}
.x11{left:203.969987px;}
.x7{left:211.169987px;}
.x16{left:216.029987px;}
.x14{left:228.089987px;}
.x13{left:234.029987px;}
.x4{left:251.489987px;}
.x15{left:264.089987px;}
.x8{left:326.234987px;}
.x6{left:334.874987px;}
.xa{left:358.454987px;}
.x5{left:396.254987px;}
.x9{left:446.474987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.512000pt;}
.lse{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsd{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.512000pt;}
.ls6{letter-spacing:19.328000pt;}
.ls3{letter-spacing:30.186667pt;}
.ls9{letter-spacing:46.011307pt;}
.lsc{letter-spacing:56.891307pt;}
.ls5{letter-spacing:88.912640pt;}
.lsa{letter-spacing:89.552640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws5{word-spacing:-16.512000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws6{word-spacing:-15.488000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws2{word-spacing:0.000000pt;}
._18{margin-left:-4.544000pt;}
._13{margin-left:-3.438985pt;}
._e{margin-left:-2.496000pt;}
._0{margin-left:-1.105015pt;}
._1{width:1.101192pt;}
._9{width:2.880000pt;}
._11{width:4.210808pt;}
._f{width:5.312000pt;}
._3{width:6.336000pt;}
._10{width:7.229474pt;}
._a{width:8.768000pt;}
._5{width:10.112000pt;}
._6{width:11.570808pt;}
._14{width:12.749192pt;}
._4{width:14.289015pt;}
._d{width:16.960000pt;}
._12{width:18.048000pt;}
._17{width:19.328000pt;}
._16{width:20.433015pt;}
._b{width:21.504000pt;}
._c{width:22.912000pt;}
._19{width:24.034031pt;}
._7{width:25.408000pt;}
._8{width:26.496000pt;}
._15{width:27.648000pt;}
._1a{width:29.440000pt;}
._1d{width:32.512000pt;}
._1c{width:33.698031pt;}
._1b{width:34.624000pt;}
._2{width:129.851436pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:50.595937pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:78.929661pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:60.960000pt;}
.y68{bottom:106.752000pt;}
.yca{bottom:111.712000pt;}
.yd0{bottom:111.872000pt;}
.y88{bottom:112.032000pt;}
.y9f{bottom:112.512000pt;}
.yb2{bottom:112.832000pt;}
.y51{bottom:112.992000pt;}
.y10d{bottom:113.632000pt;}
.yfa{bottom:123.872000pt;}
.y28{bottom:129.472000pt;}
.yc9{bottom:130.112000pt;}
.y87{bottom:130.272000pt;}
.yd7{bottom:130.592000pt;}
.y9e{bottom:130.912000pt;}
.yb1{bottom:131.232000pt;}
.y50{bottom:131.392000pt;}
.y10c{bottom:132.032000pt;}
.y67{bottom:141.626667pt;}
.yf9{bottom:142.266667pt;}
.yc8{bottom:148.506667pt;}
.y86{bottom:148.666667pt;}
.y9d{bottom:149.306667pt;}
.yb0{bottom:149.626667pt;}
.y4f{bottom:149.786667pt;}
.y10b{bottom:150.426667pt;}
.yf8{bottom:160.666667pt;}
.y27{bottom:166.586667pt;}
.yc7{bottom:166.906667pt;}
.y85{bottom:167.066667pt;}
.y9c{bottom:167.706667pt;}
.yaf{bottom:168.026667pt;}
.y4e{bottom:168.186667pt;}
.y10a{bottom:168.826667pt;}
.y66{bottom:178.746667pt;}
.yf7{bottom:179.066667pt;}
.ye5{bottom:185.306667pt;}
.y84{bottom:185.466667pt;}
.yd6{bottom:186.106667pt;}
.yae{bottom:186.266667pt;}
.y4d{bottom:186.586667pt;}
.y109{bottom:187.226667pt;}
.yf6{bottom:197.466667pt;}
.y26{bottom:203.706667pt;}
.yc6{bottom:203.866667pt;}
.ycf{bottom:204.186667pt;}
.yd5{bottom:204.506667pt;}
.y9b{bottom:204.666667pt;}
.ydf{bottom:204.986667pt;}
.y108{bottom:205.626667pt;}
.y65{bottom:215.866667pt;}
.ye4{bottom:222.266667pt;}
.y83{bottom:222.586667pt;}
.yd4{bottom:222.906667pt;}
.y9a{bottom:223.066667pt;}
.yde{bottom:223.386667pt;}
.y4c{bottom:223.706667pt;}
.y107{bottom:224.026667pt;}
.y12a{bottom:227.066667pt;}
.y64{bottom:234.266667pt;}
.y25{bottom:240.666667pt;}
.yc5{bottom:240.986667pt;}
.yd8{bottom:241.306667pt;}
.y99{bottom:241.466667pt;}
.yad{bottom:241.786667pt;}
.y4b{bottom:242.106667pt;}
.y106{bottom:242.266667pt;}
.y129{bottom:245.466667pt;}
.y63{bottom:252.666667pt;}
.yf2{bottom:259.066667pt;}
.yc4{bottom:259.386667pt;}
.y82{bottom:259.706667pt;}
.y98{bottom:259.866667pt;}
.yac{bottom:260.186667pt;}
.y4a{bottom:260.506667pt;}
.y105{bottom:260.666667pt;}
.y62{bottom:271.066667pt;}
.yf1{bottom:277.466667pt;}
.y24{bottom:277.786667pt;}
.y81{bottom:278.106667pt;}
.y97{bottom:278.266667pt;}
.yab{bottom:278.586667pt;}
.y49{bottom:278.906667pt;}
.y104{bottom:279.066667pt;}
.y128{bottom:285.786667pt;}
.y61{bottom:289.466667pt;}
.yf0{bottom:295.866667pt;}
.yc3{bottom:296.186667pt;}
.y80{bottom:296.506667pt;}
.y96{bottom:296.666667pt;}
.y48{bottom:297.306667pt;}
.y103{bottom:297.466667pt;}
.y60{bottom:307.906667pt;}
.yef{bottom:314.306667pt;}
.yc2{bottom:314.626667pt;}
.y23{bottom:314.946667pt;}
.y95{bottom:315.106667pt;}
.y47{bottom:315.746667pt;}
.y102{bottom:315.906667pt;}
.yf5{bottom:326.466667pt;}
.y127{bottom:326.946667pt;}
.yee{bottom:332.706667pt;}
.yc1{bottom:333.026667pt;}
.y94{bottom:333.506667pt;}
.y46{bottom:334.146667pt;}
.y101{bottom:334.306667pt;}
.y5f{bottom:344.866667pt;}
.y22{bottom:351.906667pt;}
.ya5{bottom:352.546667pt;}
.ydd{bottom:352.706667pt;}
.y5e{bottom:363.266667pt;}
.y126{bottom:367.906667pt;}
.yed{bottom:369.826667pt;}
.yc0{bottom:370.146667pt;}
.y7f{bottom:370.306667pt;}
.y93{bottom:370.626667pt;}
.ya4{bottom:370.946667pt;}
.y45{bottom:371.106667pt;}
.y5d{bottom:381.666667pt;}
.y7e{bottom:388.706667pt;}
.y21{bottom:389.026667pt;}
.ya3{bottom:389.346667pt;}
.y44{bottom:389.506667pt;}
.y5c{bottom:400.066667pt;}
.yec{bottom:406.946667pt;}
.y7d{bottom:407.106667pt;}
.yd3{bottom:407.426667pt;}
.y92{bottom:407.746667pt;}
.y43{bottom:407.906667pt;}
.y100{bottom:408.226667pt;}
.y125{bottom:409.026667pt;}
.y5b{bottom:418.466667pt;}
.y7c{bottom:425.506667pt;}
.yd2{bottom:425.826667pt;}
.y20{bottom:426.146667pt;}
.y42{bottom:426.306667pt;}
.y124{bottom:427.426667pt;}
.yf4{bottom:436.866667pt;}
.ybf{bottom:443.906667pt;}
.yd1{bottom:444.226667pt;}
.y91{bottom:444.546667pt;}
.y41{bottom:444.706667pt;}
.yff{bottom:445.346667pt;}
.y123{bottom:445.826667pt;}
.y5a{bottom:455.586667pt;}
.ybe{bottom:462.306667pt;}
.y7b{bottom:462.626667pt;}
.y90{bottom:462.946667pt;}
.y1f{bottom:463.106667pt;}
.yfe{bottom:463.746667pt;}
.y122{bottom:464.226667pt;}
.yf3{bottom:477.346667pt;}
.ye3{bottom:480.706667pt;}
.yce{bottom:481.026667pt;}
.ya2{bottom:481.506667pt;}
.y40{bottom:481.826667pt;}
.yfd{bottom:482.146667pt;}
.y121{bottom:482.626667pt;}
.y59{bottom:492.706667pt;}
.ye2{bottom:499.106667pt;}
.ybd{bottom:499.426667pt;}
.y7a{bottom:499.746667pt;}
.y8f{bottom:499.906667pt;}
.y1e{bottom:500.226667pt;}
.yfc{bottom:500.546667pt;}
.y120{bottom:501.026667pt;}
.y58{bottom:511.106667pt;}
.yeb{bottom:517.506667pt;}
.ybc{bottom:517.826667pt;}
.y79{bottom:518.146667pt;}
.y8e{bottom:518.306667pt;}
.y3f{bottom:518.626667pt;}
.ydc{bottom:518.946667pt;}
.y11f{bottom:519.426667pt;}
.y57{bottom:529.506667pt;}
.yea{bottom:535.906667pt;}
.ybb{bottom:536.226667pt;}
.y78{bottom:536.573333pt;}
.y8d{bottom:536.733333pt;}
.y3e{bottom:537.053333pt;}
.y1d{bottom:537.373333pt;}
.y11e{bottom:537.853333pt;}
.y56{bottom:547.773333pt;}
.yba{bottom:554.653333pt;}
.y77{bottom:554.973333pt;}
.y8c{bottom:555.133333pt;}
.y3d{bottom:555.453333pt;}
.y1c{bottom:555.773333pt;}
.y11d{bottom:556.253333pt;}
.y55{bottom:566.173333pt;}
.yb9{bottom:573.053333pt;}
.y76{bottom:573.373333pt;}
.y8b{bottom:573.533333pt;}
.y3c{bottom:573.853333pt;}
.ydb{bottom:574.173333pt;}
.yfb{bottom:574.333333pt;}
.y11c{bottom:574.653333pt;}
.y54{bottom:584.573333pt;}
.y75{bottom:591.773333pt;}
.y8a{bottom:591.933333pt;}
.y3b{bottom:592.253333pt;}
.yda{bottom:592.573333pt;}
.y1b{bottom:592.733333pt;}
.y11b{bottom:593.053333pt;}
.y53{bottom:602.973333pt;}
.yb8{bottom:610.173333pt;}
.y89{bottom:610.333333pt;}
.y3a{bottom:610.653333pt;}
.yd9{bottom:610.973333pt;}
.y1a{bottom:611.133333pt;}
.y11a{bottom:611.453333pt;}
.ye1{bottom:628.573333pt;}
.y74{bottom:628.733333pt;}
.y39{bottom:629.053333pt;}
.y19{bottom:629.533333pt;}
.y119{bottom:629.853333pt;}
.y52{bottom:643.453333pt;}
.ye0{bottom:646.973333pt;}
.y73{bottom:647.133333pt;}
.y38{bottom:647.453333pt;}
.ya1{bottom:647.773333pt;}
.y18{bottom:647.933333pt;}
.y118{bottom:648.253333pt;}
.ye9{bottom:665.373333pt;}
.y72{bottom:665.533333pt;}
.yaa{bottom:665.853333pt;}
.ya0{bottom:666.173333pt;}
.y17{bottom:666.333333pt;}
.y117{bottom:666.653333pt;}
.ye8{bottom:683.773333pt;}
.y71{bottom:683.933333pt;}
.ya9{bottom:684.253333pt;}
.y37{bottom:684.573333pt;}
.y16{bottom:684.733333pt;}
.y116{bottom:685.053333pt;}
.y70{bottom:702.333333pt;}
.ya8{bottom:702.653333pt;}
.y36{bottom:702.973333pt;}
.y15{bottom:703.133333pt;}
.y115{bottom:703.453333pt;}
.ycd{bottom:720.733333pt;}
.ya7{bottom:721.053333pt;}
.y35{bottom:721.373333pt;}
.y14{bottom:721.533333pt;}
.y114{bottom:721.853333pt;}
.y6f{bottom:739.453333pt;}
.y34{bottom:739.773333pt;}
.y13{bottom:739.933333pt;}
.y113{bottom:740.253333pt;}
.yb7{bottom:757.853333pt;}
.y33{bottom:758.173333pt;}
.y12{bottom:758.333333pt;}
.y112{bottom:758.653333pt;}
.yb6{bottom:776.293333pt;}
.y32{bottom:776.613333pt;}
.y11{bottom:776.773333pt;}
.y111{bottom:777.093333pt;}
.yb5{bottom:794.693333pt;}
.y6e{bottom:795.013333pt;}
.y10{bottom:795.173333pt;}
.y110{bottom:795.493333pt;}
.yb4{bottom:813.093333pt;}
.y6d{bottom:813.413333pt;}
.yf{bottom:813.573333pt;}
.y10f{bottom:813.893333pt;}
.yb3{bottom:831.493333pt;}
.y6c{bottom:831.813333pt;}
.y31{bottom:831.973333pt;}
.y10e{bottom:832.293333pt;}
.ye7{bottom:849.893333pt;}
.y6b{bottom:850.213333pt;}
.y30{bottom:850.373333pt;}
.ye{bottom:850.693333pt;}
.y6a{bottom:868.613333pt;}
.y2f{bottom:868.773333pt;}
.yd{bottom:869.093333pt;}
.ye6{bottom:886.853333pt;}
.ya6{bottom:887.013333pt;}
.y2e{bottom:887.173333pt;}
.yc{bottom:887.493333pt;}
.ycc{bottom:905.253333pt;}
.y2d{bottom:905.573333pt;}
.yb{bottom:905.893333pt;}
.ycb{bottom:923.653333pt;}
.y2c{bottom:923.973333pt;}
.ya{bottom:924.293333pt;}
.y2b{bottom:942.373333pt;}
.y9{bottom:942.693333pt;}
.y2a{bottom:960.773333pt;}
.y8{bottom:961.093333pt;}
.y29{bottom:979.173333pt;}
.y7{bottom:979.493333pt;}
.y6{bottom:997.893333pt;}
.y69{bottom:1016.160000pt;}
.y5{bottom:1016.320000pt;}
.y3{bottom:1033.600000pt;}
.y2{bottom:1049.120000pt;}
.y1{bottom:1082.240000pt;}
.h2{height:36.257812pt;}
.h4{height:40.343342pt;}
.h7{height:44.687500pt;}
.h6{height:45.156250pt;}
.h9{height:46.375000pt;}
.hb{height:46.593750pt;}
.h5{height:50.578125pt;}
.h8{height:52.750000pt;}
.ha{height:52.834688pt;}
.h3{height:62.935614pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.xb{left:120.031988pt;}
.xe{left:122.751988pt;}
.x3{left:124.351988pt;}
.x2{left:126.911988pt;}
.xd{left:128.031988pt;}
.xc{left:144.026655pt;}
.x10{left:149.306655pt;}
.xf{left:154.746655pt;}
.x12{left:176.026655pt;}
.x11{left:181.306655pt;}
.x7{left:187.706655pt;}
.x16{left:192.026655pt;}
.x14{left:202.746655pt;}
.x13{left:208.026655pt;}
.x4{left:223.546655pt;}
.x15{left:234.746655pt;}
.x8{left:289.986655pt;}
.x6{left:297.666655pt;}
.xa{left:318.626655pt;}
.x5{left:352.226655pt;}
.x9{left:396.866655pt;}
}




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