
    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_c0f38a3774017614d5793932.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.978000;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_812a546938957cd47122b3b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.979000;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_7db5fe955b6e5fdffcf0bec9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.977000;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_46b82acfe65a819af2d97333.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.977000;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_1bdc667afb6e0e77b59d4c9b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.769000;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.243719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243719,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.005400px;}
.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;}
}
.ws0{word-spacing:-10.863875px;}
.ws1{word-spacing:-9.342021px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-4.345550px;}
._0{margin-left:-1.862379px;}
._1{width:1.156779px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,43,61);}
.fs2{font-size:54.000122px;}
.fs0{font-size:62.079288px;}
.fs1{font-size:71.999919px;}
.fs3{font-size:112.872095px;}
.y0{bottom:0.000000px;}
.y51{bottom:60.134201px;}
.y40{bottom:135.184225px;}
.y3f{bottom:148.684741px;}
.yf{bottom:171.622731px;}
.y3e{bottom:177.369220px;}
.ye{bottom:187.142553px;}
.y3d{bottom:190.869736px;}
.y3{bottom:199.629383px;}
.y3c{bottom:204.370253px;}
.y4d{bottom:205.247909px;}
.y4c{bottom:218.747970px;}
.y12{bottom:229.652944px;}
.y4b{bottom:232.247878px;}
.y11{bottom:245.173525px;}
.y4a{bottom:245.747970px;}
.y10{bottom:260.693499px;}
.y3b{bottom:264.531741px;}
.y2{bottom:276.644972px;}
.y3a{bottom:278.032258px;}
.y39{bottom:291.532774px;}
.y1{bottom:292.164794px;}
.y50{bottom:308.642934px;}
.yd{bottom:310.333731px;}
.y4f{bottom:322.143451px;}
.yc{bottom:325.853553px;}
.y4e{bottom:335.642448px;}
.y21{bottom:354.115708px;}
.y5{bottom:362.797472px;}
.y2e{bottom:367.537146px;}
.y20{bottom:367.616225px;}
.y4{bottom:378.317294px;}
.y14{bottom:379.968231px;}
.y2d{bottom:381.036143px;}
.y1f{bottom:381.115222px;}
.y2c{bottom:394.536660px;}
.y1e{bottom:394.615739px;}
.y13{bottom:395.488053px;}
.y2b{bottom:408.037176px;}
.y27{bottom:418.076205px;}
.y26{bottom:431.575203px;}
.y25{bottom:445.075719px;}
.y7{bottom:451.404383px;}
.y15{bottom:454.013142px;}
.y49{bottom:469.693664px;}
.y48{bottom:483.194180px;}
.y47{bottom:496.693178px;}
.y46{bottom:510.193694px;}
.y16{bottom:522.596142px;}
.y45{bottom:523.694211px;}
.y44{bottom:537.193208px;}
.y8{bottom:538.495883px;}
.y43{bottom:550.693725px;}
.y42{bottom:564.194241px;}
.y32{bottom:572.866146px;}
.y41{bottom:577.693239px;}
.y18{bottom:581.499231px;}
.y31{bottom:586.365143px;}
.y17{bottom:597.019053px;}
.y30{bottom:599.865660px;}
.y2f{bottom:613.366176px;}
.y38{bottom:614.078878px;}
.y6{bottom:625.543883px;}
.y37{bottom:627.578970px;}
.y36{bottom:641.079000px;}
.y1a{bottom:649.798731px;}
.y19{bottom:665.318553px;}
.y24{bottom:671.073705px;}
.y23{bottom:684.574221px;}
.y22{bottom:698.074738px;}
.y9{bottom:713.943383px;}
.y35{bottom:725.993878px;}
.y1b{bottom:726.911142px;}
.y34{bottom:739.493970px;}
.y33{bottom:752.994000px;}
.yb{bottom:779.697971px;}
.y1d{bottom:781.458584px;}
.y2a{bottom:782.658289px;}
.y29{bottom:796.158805px;}
.ya{bottom:797.698559px;}
.y1c{bottom:799.459323px;}
.y28{bottom:809.659322px;}
.h4{height:40.878092px;}
.h2{height:46.994021px;}
.h3{height:54.503939px;}
.h5{height:85.444176px;}
.h0{height:893.160000px;}
.h1{height:893.250000px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x9{left:212.557541px;}
.xa{left:228.658279px;}
.x1{left:232.300290px;}
.x3{left:234.219524px;}
.x8{left:239.809612px;}
.x6{left:269.749303px;}
.x7{left:284.930387px;}
.x2{left:286.867177px;}
.x4{left:289.402540px;}
.x5{left:302.966668px;}
.x25{left:447.035579px;}
.x21{left:449.254435px;}
.x1c{left:461.932716px;}
.x1e{left:470.735881px;}
.x2a{left:499.898906px;}
.x24{left:527.156549px;}
.x1f{left:545.391133px;}
.x28{left:556.980000px;}
.x26{left:560.736006px;}
.x22{left:562.290000px;}
.x29{left:566.529626px;}
.x27{left:643.917926px;}
.x23{left:646.594500px;}
.x20{left:688.976635px;}
.x1d{left:701.801179px;}
.x12{left:821.239903px;}
.x14{left:834.004759px;}
.x15{left:835.546073px;}
.x16{left:843.312878px;}
.x18{left:855.194309px;}
.xb{left:857.731735px;}
.x13{left:863.346451px;}
.x17{left:867.021967px;}
.xc{left:877.521146px;}
.x10{left:880.156579px;}
.xd{left:883.935480px;}
.xf{left:885.580750px;}
.x19{left:891.340637px;}
.x1b{left:902.702878px;}
.x11{left:921.037025px;}
.x1a{left:923.084609px;}
.xe{left:947.035330px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004800pt;}
.ws0{word-spacing:-9.656778pt;}
.ws1{word-spacing:-8.304019pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-3.862711pt;}
._0{margin-left:-1.655448pt;}
._1{width:1.028248pt;}
.fs2{font-size:48.000108pt;}
.fs0{font-size:55.181589pt;}
.fs1{font-size:63.999928pt;}
.fs3{font-size:100.330751pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:53.452623pt;}
.y40{bottom:120.163755pt;}
.y3f{bottom:132.164214pt;}
.yf{bottom:152.553539pt;}
.y3e{bottom:157.661529pt;}
.ye{bottom:166.348936pt;}
.y3d{bottom:169.661988pt;}
.y3{bottom:177.448340pt;}
.y3c{bottom:181.662447pt;}
.y4d{bottom:182.442586pt;}
.y4c{bottom:194.442640pt;}
.y12{bottom:204.135950pt;}
.y4b{bottom:206.442559pt;}
.y11{bottom:217.932022pt;}
.y4a{bottom:218.442640pt;}
.y10{bottom:231.727555pt;}
.y3b{bottom:235.139325pt;}
.y2{bottom:245.906642pt;}
.y3a{bottom:247.139785pt;}
.y39{bottom:259.140244pt;}
.y1{bottom:259.702039pt;}
.y50{bottom:274.349275pt;}
.yd{bottom:275.852206pt;}
.y4f{bottom:286.349734pt;}
.yc{bottom:289.647603pt;}
.y4e{bottom:298.348843pt;}
.y21{bottom:314.769518pt;}
.y5{bottom:322.486642pt;}
.y2e{bottom:326.699685pt;}
.y20{bottom:326.769977pt;}
.y4{bottom:336.282039pt;}
.y14{bottom:337.749539pt;}
.y2d{bottom:338.698794pt;}
.y1f{bottom:338.769086pt;}
.y2c{bottom:350.699253pt;}
.y1e{bottom:350.769545pt;}
.y13{bottom:351.544936pt;}
.y2b{bottom:362.699712pt;}
.y27{bottom:371.623293pt;}
.y26{bottom:383.622402pt;}
.y25{bottom:395.622861pt;}
.y7{bottom:401.248340pt;}
.y15{bottom:403.567238pt;}
.y49{bottom:417.505479pt;}
.y48{bottom:429.505938pt;}
.y47{bottom:441.505047pt;}
.y46{bottom:453.505506pt;}
.y16{bottom:464.529904pt;}
.y45{bottom:465.505965pt;}
.y44{bottom:477.505074pt;}
.y8{bottom:478.663007pt;}
.y43{bottom:489.505533pt;}
.y42{bottom:501.505992pt;}
.y32{bottom:509.214352pt;}
.y41{bottom:513.505101pt;}
.y18{bottom:516.888206pt;}
.y31{bottom:521.213460pt;}
.y17{bottom:530.683603pt;}
.y30{bottom:533.213920pt;}
.y2f{bottom:545.214379pt;}
.y38{bottom:545.847892pt;}
.y6{bottom:556.039007pt;}
.y37{bottom:557.847973pt;}
.y36{bottom:569.848000pt;}
.y1a{bottom:577.598872pt;}
.y19{bottom:591.394270pt;}
.y24{bottom:596.509960pt;}
.y23{bottom:608.510419pt;}
.y22{bottom:620.510878pt;}
.y9{bottom:634.616340pt;}
.y35{bottom:645.327892pt;}
.y1b{bottom:646.143238pt;}
.y34{bottom:657.327973pt;}
.y33{bottom:669.328000pt;}
.yb{bottom:693.064863pt;}
.y1d{bottom:694.629852pt;}
.y2a{bottom:695.696257pt;}
.y29{bottom:707.696716pt;}
.ya{bottom:709.065385pt;}
.y1c{bottom:710.630510pt;}
.y28{bottom:719.697175pt;}
.h4{height:36.336082pt;}
.h2{height:41.772463pt;}
.h3{height:48.447946pt;}
.h5{height:75.950378pt;}
.h0{height:793.920000pt;}
.h1{height:794.000000pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x9{left:188.940036pt;}
.xa{left:203.251804pt;}
.x1{left:206.489146pt;}
.x3{left:208.195133pt;}
.x8{left:213.164099pt;}
.x6{left:239.777158pt;}
.x7{left:253.271455pt;}
.x2{left:254.993046pt;}
.x4{left:257.246702pt;}
.x5{left:269.303705pt;}
.x25{left:397.364959pt;}
.x21{left:399.337276pt;}
.x1c{left:410.606859pt;}
.x1e{left:418.431894pt;}
.x2a{left:444.354583pt;}
.x24{left:468.583599pt;}
.x1f{left:484.792118pt;}
.x28{left:495.093333pt;}
.x26{left:498.432005pt;}
.x22{left:499.813333pt;}
.x29{left:503.581890pt;}
.x27{left:572.371490pt;}
.x23{left:574.750667pt;}
.x20{left:612.423676pt;}
.x1d{left:623.823270pt;}
.x12{left:729.991025pt;}
.x14{left:741.337564pt;}
.x15{left:742.707620pt;}
.x16{left:749.611447pt;}
.x18{left:760.172719pt;}
.xb{left:762.428209pt;}
.x13{left:767.419068pt;}
.x17{left:770.686193pt;}
.xc{left:780.018797pt;}
.x10{left:782.361404pt;}
.xd{left:785.720427pt;}
.xf{left:787.182889pt;}
.x19{left:792.302788pt;}
.x1b{left:802.402558pt;}
.x11{left:818.699578pt;}
.x1a{left:820.519652pt;}
.xe{left:841.809182pt;}
}




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