
    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_fe80ba5a53db5472ab25d93c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.973000;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_17e5c9f7b9c0ebf156bb9112.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936523;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_7e10166e8ce0d3ba5009938d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.932129;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.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004986px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(20,195,175),0 0.015em rgb(20,195,175),0.015em 0 rgb(20,195,175),0 -0.015em  rgb(20,195,175);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(20,195,175);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-36.559014px;}
.ws0{word-spacing:-28.090530px;}
.ws1{word-spacing:0.000000px;}
._b{margin-left:-14.278226px;}
._a{margin-left:-10.690542px;}
._9{margin-left:-9.490798px;}
._1{margin-left:-7.057512px;}
._7{margin-left:-5.712900px;}
._2{margin-left:-4.032864px;}
._6{margin-left:-2.352666px;}
._0{margin-left:-1.344288px;}
._5{width:1.043950px;}
._3{width:2.352666px;}
._8{width:3.401244px;}
._4{width:5.524221px;}
.fc2{color:rgb(20,195,175);}
.fc3{color:rgb(128,128,128);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:113.952000px;}
.fs6{font-size:120.078000px;}
.fs7{font-size:131.982000px;}
.fs0{font-size:144.054000px;}
.fs2{font-size:149.135675px;}
.fs1{font-size:168.036000px;}
.fs5{font-size:188.958000px;}
.fs4{font-size:527.922000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y22{bottom:43.752000px;}
.yb{bottom:171.567000px;}
.ya{bottom:288.835500px;}
.yf{bottom:300.699000px;}
.y46{bottom:356.358000px;}
.y1c{bottom:383.782500px;}
.y45{bottom:393.264000px;}
.y9{bottom:406.318500px;}
.y21{bottom:429.108000px;}
.y44{bottom:430.129500px;}
.y43{bottom:467.035500px;}
.y14{bottom:488.934000px;}
.y42{bottom:503.943000px;}
.y20{bottom:507.387000px;}
.y8{bottom:523.587000px;}
.y41{bottom:540.850500px;}
.y1f{bottom:543.402000px;}
.y27{bottom:553.606500px;}
.y40{bottom:577.758000px;}
.y3f{bottom:614.664000px;}
.y28{bottom:618.235500px;}
.y1b{bottom:618.831000px;}
.y7{bottom:640.899000px;}
.y3e{bottom:651.529500px;}
.y1a{bottom:653.059500px;}
.y2d{bottom:686.352000px;}
.y3d{bottom:688.435500px;}
.y3c{bottom:725.512500px;}
.ye{bottom:728.362500px;}
.y16{bottom:740.479500px;}
.y18{bottom:750.090000px;}
.y6{bottom:758.338500px;}
.y15{bottom:808.299000px;}
.y13{bottom:831.387000px;}
.y3b{bottom:873.099000px;}
.y5{bottom:875.650500px;}
.y10{bottom:895.167000px;}
.y24{bottom:907.752000px;}
.y3a{bottom:910.006500px;}
.y39{bottom:946.912500px;}
.y2e{bottom:969.534000px;}
.y23{bottom:972.978000px;}
.y38{bottom:983.778000px;}
.y4{bottom:992.962500px;}
.y37{bottom:1020.685500px;}
.y2b{bottom:1033.015500px;}
.y17{bottom:1035.099000px;}
.y36{bottom:1057.591500px;}
.y19{bottom:1093.903500px;}
.y26{bottom:1096.879500px;}
.y3{bottom:1110.402000px;}
.y35{bottom:1131.406500px;}
.y2c{bottom:1160.659500px;}
.y29{bottom:1160.787000px;}
.y34{bottom:1168.312500px;}
.y33{bottom:1205.178000px;}
.y25{bottom:1220.187000px;}
.y2a{bottom:1226.479500px;}
.y2{bottom:1233.708000px;}
.y32{bottom:1242.085500px;}
.y31{bottom:1278.991500px;}
.yd{bottom:1359.864000px;}
.y12{bottom:1360.162500px;}
.y30{bottom:1389.712500px;}
.yc{bottom:1410.250500px;}
.y11{bottom:1410.547500px;}
.y2f{bottom:1463.485500px;}
.y1e{bottom:1518.846000px;}
.y1d{bottom:1587.685500px;}
.h6{height:89.452320px;}
.h9{height:94.261230px;}
.ha{height:95.635395px;}
.h3{height:113.082390px;}
.h5{height:117.071505px;}
.h4{height:131.908260px;}
.h8{height:148.332030px;}
.h7{height:414.418770px;}
.h2{height:1785.699000px;}
.h0{height:1785.741732px;}
.h1{height:1785.750000px;}
.w2{width:2508.703500px;}
.w0{width:2508.746457px;}
.w1{width:2508.750000px;}
.x0{left:0.000000px;}
.x1{left:23.386500px;}
.x11{left:185.259000px;}
.x1d{left:188.107500px;}
.x10{left:204.732000px;}
.x15{left:276.888000px;}
.x3{left:303.463500px;}
.x4{left:322.936500px;}
.x17{left:353.253000px;}
.x5{left:404.107500px;}
.x2{left:457.213500px;}
.x16{left:460.659000px;}
.x13{left:636.903000px;}
.x14{left:888.619500px;}
.x8{left:1055.083500px;}
.xf{left:1094.116500px;}
.x18{left:1176.307500px;}
.x12{left:1187.703000px;}
.x7{left:1208.707500px;}
.xb{left:1214.703000px;}
.xc{left:1216.063500px;}
.xa{left:1787.230500px;}
.x6{left:1854.453000px;}
.x19{left:1883.112000px;}
.x1a{left:1948.932000px;}
.x1b{left:1952.121000px;}
.x9{left:1966.960500px;}
.xe{left:1974.613500px;}
.x1c{left:1988.688000px;}
.xd{left:1990.516500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004432pt;}
.ws2{word-spacing:-32.496901pt;}
.ws0{word-spacing:-24.969360pt;}
.ws1{word-spacing:0.000000pt;}
._b{margin-left:-12.691757pt;}
._a{margin-left:-9.502704pt;}
._9{margin-left:-8.436265pt;}
._1{margin-left:-6.273344pt;}
._7{margin-left:-5.078133pt;}
._2{margin-left:-3.584768pt;}
._6{margin-left:-2.091259pt;}
._0{margin-left:-1.194923pt;}
._5{width:0.927955pt;}
._3{width:2.091259pt;}
._8{width:3.023328pt;}
._4{width:4.910418pt;}
.fs3{font-size:101.290667pt;}
.fs6{font-size:106.736000pt;}
.fs7{font-size:117.317333pt;}
.fs0{font-size:128.048000pt;}
.fs2{font-size:132.565044pt;}
.fs1{font-size:149.365333pt;}
.fs5{font-size:167.962667pt;}
.fs4{font-size:469.264000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y22{bottom:38.890667pt;}
.yb{bottom:152.504000pt;}
.ya{bottom:256.742667pt;}
.yf{bottom:267.288000pt;}
.y46{bottom:316.762667pt;}
.y1c{bottom:341.140000pt;}
.y45{bottom:349.568000pt;}
.y9{bottom:361.172000pt;}
.y21{bottom:381.429333pt;}
.y44{bottom:382.337333pt;}
.y43{bottom:415.142667pt;}
.y14{bottom:434.608000pt;}
.y42{bottom:447.949333pt;}
.y20{bottom:451.010667pt;}
.y8{bottom:465.410667pt;}
.y41{bottom:480.756000pt;}
.y1f{bottom:483.024000pt;}
.y27{bottom:492.094667pt;}
.y40{bottom:513.562667pt;}
.y3f{bottom:546.368000pt;}
.y28{bottom:549.542667pt;}
.y1b{bottom:550.072000pt;}
.y7{bottom:569.688000pt;}
.y3e{bottom:579.137333pt;}
.y1a{bottom:580.497333pt;}
.y2d{bottom:610.090667pt;}
.y3d{bottom:611.942667pt;}
.y3c{bottom:644.900000pt;}
.ye{bottom:647.433333pt;}
.y16{bottom:658.204000pt;}
.y18{bottom:666.746667pt;}
.y6{bottom:674.078667pt;}
.y15{bottom:718.488000pt;}
.y13{bottom:739.010667pt;}
.y3b{bottom:776.088000pt;}
.y5{bottom:778.356000pt;}
.y10{bottom:795.704000pt;}
.y24{bottom:806.890667pt;}
.y3a{bottom:808.894667pt;}
.y39{bottom:841.700000pt;}
.y2e{bottom:861.808000pt;}
.y23{bottom:864.869333pt;}
.y38{bottom:874.469333pt;}
.y4{bottom:882.633333pt;}
.y37{bottom:907.276000pt;}
.y2b{bottom:918.236000pt;}
.y17{bottom:920.088000pt;}
.y36{bottom:940.081333pt;}
.y19{bottom:972.358667pt;}
.y26{bottom:975.004000pt;}
.y3{bottom:987.024000pt;}
.y35{bottom:1005.694667pt;}
.y2c{bottom:1031.697333pt;}
.y29{bottom:1031.810667pt;}
.y34{bottom:1038.500000pt;}
.y33{bottom:1071.269333pt;}
.y25{bottom:1084.610667pt;}
.y2a{bottom:1090.204000pt;}
.y2{bottom:1096.629333pt;}
.y32{bottom:1104.076000pt;}
.y31{bottom:1136.881333pt;}
.yd{bottom:1208.768000pt;}
.y12{bottom:1209.033333pt;}
.y30{bottom:1235.300000pt;}
.yc{bottom:1253.556000pt;}
.y11{bottom:1253.820000pt;}
.y2f{bottom:1300.876000pt;}
.y1e{bottom:1350.085333pt;}
.y1d{bottom:1411.276000pt;}
.h6{height:79.513173pt;}
.h9{height:83.787760pt;}
.ha{height:85.009240pt;}
.h3{height:100.517680pt;}
.h5{height:104.063560pt;}
.h4{height:117.251787pt;}
.h8{height:131.850693pt;}
.h7{height:368.372240pt;}
.h2{height:1587.288000pt;}
.h0{height:1587.325984pt;}
.h1{height:1587.333333pt;}
.w2{width:2229.958667pt;}
.w0{width:2229.996850pt;}
.w1{width:2230.000000pt;}
.x0{left:0.000000pt;}
.x1{left:20.788000pt;}
.x11{left:164.674667pt;}
.x1d{left:167.206667pt;}
.x10{left:181.984000pt;}
.x15{left:246.122667pt;}
.x3{left:269.745333pt;}
.x4{left:287.054667pt;}
.x17{left:314.002667pt;}
.x5{left:359.206667pt;}
.x2{left:406.412000pt;}
.x16{left:409.474667pt;}
.x13{left:566.136000pt;}
.x14{left:789.884000pt;}
.x8{left:937.852000pt;}
.xf{left:972.548000pt;}
.x18{left:1045.606667pt;}
.x12{left:1055.736000pt;}
.x7{left:1074.406667pt;}
.xb{left:1079.736000pt;}
.xc{left:1080.945333pt;}
.xa{left:1588.649333pt;}
.x6{left:1648.402667pt;}
.x19{left:1673.877333pt;}
.x1a{left:1732.384000pt;}
.x1b{left:1735.218667pt;}
.x9{left:1748.409333pt;}
.xe{left:1755.212000pt;}
.x1c{left:1767.722667pt;}
.xd{left:1769.348000pt;}
}




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