
    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_7dfdf2ee76bb65578e885280.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_d6b9f63459ede9e7b1d43d19.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172363;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_38b2ca0bf3a6acafb6d170db.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_dee117cd3db383f208e072d6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3080fb964b209fd806438085.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_371806be9ad4578494ca3a35.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.776855;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_c4ba6eb8761494fbaa55eff6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_f5f53533de4c8460ce3b6a35.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5b45bd214301ebdd8fad115d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.091309;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_35487ef52e17bb70dd23a1f6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.059082;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_8b75faa87bd7c828972fc7a7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.937012;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_711aad68383a9303ae55a440.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.035156;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:fff;src:url('chunks/assets/font_45a98b83399cb5c0dd09c7b0.woff2')format("woff");}.fff{font-family:fff;line-height:0.738770;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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls9{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.720000px;}
.ls2{letter-spacing:3.600000px;}
.lse{letter-spacing:4.320000px;}
.lsc{letter-spacing:7.200000px;}
.ls3{letter-spacing:12.420000px;}
.ls4{letter-spacing:15.840000px;}
.lsb{letter-spacing:26.640000px;}
.ls1{letter-spacing:33.960000px;}
.ls6{letter-spacing:64.421280px;}
.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;}
}
.ws2{word-spacing:-21.060000px;}
.ws4{word-spacing:-18.432000px;}
.ws7{word-spacing:-18.216000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws6{word-spacing:-15.840000px;}
.ws1{word-spacing:0.000000px;}
._18{margin-left:-7.049520px;}
._17{margin-left:-4.752000px;}
._9{margin-left:-3.312000px;}
._0{margin-left:-1.457280px;}
._1{width:1.602240px;}
._8{width:2.664000px;}
._3{width:3.926160px;}
._11{width:5.832000px;}
._12{width:7.200000px;}
._14{width:8.640000px;}
._13{width:9.648000px;}
._7{width:10.846560px;}
._6{width:11.970000px;}
._e{width:13.650720px;}
._10{width:14.856000px;}
._f{width:16.320000px;}
._d{width:19.368000px;}
._a{width:20.880000px;}
._1d{width:22.276800px;}
._1a{width:24.185280px;}
._c{width:25.704000px;}
._b{width:26.856000px;}
._1b{width:28.080000px;}
._1c{width:29.664000px;}
._5{width:49.629360px;}
._4{width:50.657040px;}
._15{width:51.696000px;}
._16{width:52.764000px;}
._2{width:66.866160px;}
._19{width:123.343488px;}
.fc5{color:rgb(131,60,11);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(57,57,57);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs3{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:54.144000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y71{bottom:1.800000px;}
.y6f{bottom:1.980000px;}
.y8f{bottom:9.720000px;}
.y92{bottom:9.900000px;}
.y99{bottom:10.800000px;}
.ya5{bottom:11.025000px;}
.y6d{bottom:14.580000px;}
.yc3{bottom:17.715000px;}
.y90{bottom:31.140000px;}
.ya4{bottom:32.985000px;}
.y6b{bottom:38.520000px;}
.y9f{bottom:79.200000px;}
.y6{bottom:82.116000px;}
.y5{bottom:109.296000px;}
.y4{bottom:134.496000px;}
.y3{bottom:153.750000px;}
.yb9{bottom:161.820000px;}
.y2{bottom:172.650000px;}
.yba{bottom:177.810000px;}
.ybb{bottom:193.785000px;}
.y2c{bottom:199.650000px;}
.ya9{bottom:202.350000px;}
.y69{bottom:206.670000px;}
.ydb{bottom:207.030000px;}
.y48{bottom:209.370000px;}
.ybc{bottom:209.730000px;}
.yb7{bottom:213.690000px;}
.y2b{bottom:220.350000px;}
.ybd{bottom:225.720000px;}
.ya8{bottom:229.170000px;}
.yda{bottom:233.850000px;}
.y61{bottom:234.930000px;}
.y68{bottom:239.610000px;}
.y47{bottom:240.330000px;}
.y2a{bottom:241.050000px;}
.ybe{bottom:241.710000px;}
.yb6{bottom:244.650000px;}
.y89{bottom:252.930000px;}
.y70{bottom:253.110000px;}
.yd9{bottom:254.550000px;}
.ybf{bottom:257.685000px;}
.y29{bottom:261.750000px;}
.y60{bottom:265.890000px;}
.ya7{bottom:270.750000px;}
.yc0{bottom:273.630000px;}
.yd8{bottom:275.250000px;}
.yb5{bottom:275.790000px;}
.y46{bottom:277.410000px;}
.y28{bottom:282.450000px;}
.y88{bottom:283.890000px;}
.y5f{bottom:297.030000px;}
.yc2{bottom:300.750000px;}
.yd7{bottom:301.890000px;}
.y27{bottom:303.150000px;}
.yb4{bottom:306.750000px;}
.y45{bottom:308.550000px;}
.ya6{bottom:312.510000px;}
.y87{bottom:315.030000px;}
.y26{bottom:323.850000px;}
.yc1{bottom:324.870000px;}
.yd6{bottom:328.530000px;}
.ya3{bottom:331.050000px;}
.y5e{bottom:334.110000px;}
.yb3{bottom:337.935000px;}
.yf6{bottom:344.055000px;}
.y25{bottom:344.595000px;}
.y44{bottom:345.495000px;}
.y86{bottom:346.035000px;}
.yd5{bottom:349.275000px;}
.y5d{bottom:365.115000px;}
.y24{bottom:365.295000px;}
.yb2{bottom:368.895000px;}
.yf5{bottom:370.695000px;}
.yd4{bottom:376.095000px;}
.y43{bottom:376.635000px;}
.y85{bottom:377.175000px;}
.ya1{bottom:384.015000px;}
.y23{bottom:385.995000px;}
.y5c{bottom:396.255000px;}
.yf4{bottom:397.335000px;}
.yb1{bottom:400.035000px;}
.yd3{bottom:402.735000px;}
.y22{bottom:406.695000px;}
.y42{bottom:407.595000px;}
.y84{bottom:408.135000px;}
.ya2{bottom:414.255000px;}
.yf3{bottom:418.035000px;}
.yd2{bottom:423.435000px;}
.y21{bottom:427.395000px;}
.yb0{bottom:430.995000px;}
.y5b{bottom:433.155000px;}
.y83{bottom:439.275000px;}
.y9e{bottom:444.315000px;}
.y41{bottom:444.675000px;}
.yf2{bottom:444.855000px;}
.y20{bottom:448.095000px;}
.yd1{bottom:450.075000px;}
.y5a{bottom:460.515000px;}
.yaf{bottom:462.135000px;}
.y1f{bottom:468.795000px;}
.y82{bottom:470.235000px;}
.yf1{bottom:471.495000px;}
.y40{bottom:475.815000px;}
.yd0{bottom:476.895000px;}
.y1e{bottom:489.495000px;}
.yf0{bottom:492.195000px;}
.y59{bottom:493.095000px;}
.ycf{bottom:497.595000px;}
.y81{bottom:501.375000px;}
.y3f{bottom:506.775000px;}
.y1d{bottom:510.195000px;}
.ya0{bottom:513.615000px;}
.yef{bottom:518.835000px;}
.y6c{bottom:521.715000px;}
.yae{bottom:524.235000px;}
.y58{bottom:530.175000px;}
.y1c{bottom:530.895000px;}
.y80{bottom:532.335000px;}
.y67{bottom:542.055000px;}
.y9c{bottom:543.675000px;}
.y3e{bottom:543.855000px;}
.yee{bottom:548.535000px;}
.yce{bottom:550.875000px;}
.y1b{bottom:551.595000px;}
.yad{bottom:555.195000px;}
.y57{bottom:561.135000px;}
.y7f{bottom:563.475000px;}
.yed{bottom:569.235000px;}
.ycd{bottom:571.575000px;}
.y1a{bottom:572.295000px;}
.y9d{bottom:573.735000px;}
.y3d{bottom:574.995000px;}
.y66{bottom:579.135000px;}
.yac{bottom:581.835000px;}
.yec{bottom:589.935000px;}
.y56{bottom:592.275000px;}
.y19{bottom:592.995000px;}
.y7e{bottom:594.435000px;}
.y9b{bottom:604.005000px;}
.y3c{bottom:605.985000px;}
.y6e{bottom:607.605000px;}
.y65{bottom:612.105000px;}
.y18{bottom:613.725000px;}
.yeb{bottom:616.785000px;}
.ycc{bottom:619.485000px;}
.y55{bottom:623.265000px;}
.yab{bottom:623.625000px;}
.y7d{bottom:625.605000px;}
.y9a{bottom:634.065000px;}
.y17{bottom:634.425000px;}
.y3b{bottom:643.065000px;}
.yea{bottom:643.425000px;}
.ycb{bottom:652.245000px;}
.y16{bottom:655.125000px;}
.y7c{bottom:656.565000px;}
.y54{bottom:660.345000px;}
.y98{bottom:664.125000px;}
.yaa{bottom:665.385000px;}
.y3a{bottom:674.025000px;}
.y15{bottom:675.825000px;}
.yca{bottom:683.205000px;}
.y7b{bottom:687.705000px;}
.ye9{bottom:690.765000px;}
.y53{bottom:691.485000px;}
.y97{bottom:695.085000px;}
.y14{bottom:696.525000px;}
.yb8{bottom:699.120000px;}
.y39{bottom:705.165000px;}
.yc9{bottom:714.345000px;}
.y13{bottom:717.225000px;}
.ye8{bottom:717.405000px;}
.y7a{bottom:718.665000px;}
.y52{bottom:722.445000px;}
.y94{bottom:725.145000px;}
.y38{bottom:736.125000px;}
.y12{bottom:737.925000px;}
.ye7{bottom:738.105000px;}
.yc8{bottom:745.305000px;}
.y79{bottom:745.845000px;}
.y51{bottom:753.405000px;}
.y96{bottom:755.385000px;}
.y11{bottom:758.625000px;}
.ye6{bottom:758.805000px;}
.y37{bottom:767.265000px;}
.yc7{bottom:776.445000px;}
.y78{bottom:778.605000px;}
.y10{bottom:779.325000px;}
.y95{bottom:785.445000px;}
.ye5{bottom:785.625000px;}
.y50{bottom:790.485000px;}
.y36{bottom:798.225000px;}
.yf{bottom:800.025000px;}
.yc6{bottom:807.405000px;}
.ye4{bottom:812.265000px;}
.y77{bottom:815.505000px;}
.y4f{bottom:821.625000px;}
.ye3{bottom:832.965000px;}
.ye{bottom:833.505000px;}
.y35{bottom:835.305000px;}
.yc5{bottom:838.545000px;}
.y91{bottom:845.565000px;}
.y76{bottom:846.645000px;}
.y4e{bottom:852.585000px;}
.ye2{bottom:859.605000px;}
.y34{bottom:866.445000px;}
.yc4{bottom:869.505000px;}
.yd{bottom:869.685000px;}
.y93{bottom:875.850000px;}
.y75{bottom:877.650000px;}
.y4d{bottom:883.770000px;}
.ye1{bottom:886.470000px;}
.yc{bottom:897.270000px;}
.y33{bottom:897.450000px;}
.y6a{bottom:902.490000px;}
.y8e{bottom:905.910000px;}
.ye0{bottom:907.170000px;}
.y74{bottom:908.790000px;}
.y4c{bottom:920.850000px;}
.yb{bottom:924.990000px;}
.ydf{bottom:927.870000px;}
.y32{bottom:930.750000px;}
.y64{bottom:941.010000px;}
.y73{bottom:945.870000px;}
.y4b{bottom:951.810000px;}
.yde{bottom:954.510000px;}
.y31{bottom:960.630000px;}
.y8d{bottom:965.850000px;}
.ya{bottom:973.590000px;}
.y63{bottom:976.830000px;}
.ydd{bottom:981.150000px;}
.y4a{bottom:982.950000px;}
.y8c{bottom:986.550000px;}
.y30{bottom:993.210000px;}
.y9{bottom:1001.130000px;}
.ydc{bottom:1001.850000px;}
.y62{bottom:1007.970000px;}
.y8b{bottom:1013.370000px;}
.y2f{bottom:1013.910000px;}
.y8{bottom:1028.670000px;}
.y2e{bottom:1034.610000px;}
.y72{bottom:1038.930000px;}
.y8a{bottom:1044.690000px;}
.y49{bottom:1045.050000px;}
.y2d{bottom:1055.310000px;}
.y7{bottom:1076.010000px;}
.y1{bottom:1233.900000px;}
.h10{height:13.140000px;}
.hf{height:13.320000px;}
.h15{height:27.000000px;}
.h19{height:27.180000px;}
.h17{height:27.216000px;}
.h1b{height:27.900000px;}
.hd{height:36.000000px;}
.h6{height:43.246406px;}
.h11{height:48.240000px;}
.h23{height:48.761719px;}
.h22{height:50.076000px;}
.h1a{height:53.573906px;}
.h25{height:53.709961px;}
.h26{height:53.853187px;}
.hb{height:54.000000px;}
.hc{height:54.596250px;}
.h1d{height:54.667969px;}
.h1f{height:57.240000px;}
.h13{height:57.276000px;}
.ha{height:58.833281px;}
.h7{height:59.343750px;}
.h3{height:59.383125px;}
.h14{height:60.679688px;}
.h16{height:60.960938px;}
.h12{height:63.210938px;}
.h9{height:63.949219px;}
.h2{height:64.546875px;}
.h4{height:65.884219px;}
.h21{height:66.240000px;}
.he{height:69.432187px;}
.h1c{height:71.613281px;}
.h1e{height:73.722656px;}
.h8{height:74.820586px;}
.h5{height:85.052461px;}
.h20{height:96.300000px;}
.h18{height:117.540000px;}
.h24{height:355.860000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:89.460000px;}
.wa{width:89.676000px;}
.we{width:90.036000px;}
.wd{width:90.360000px;}
.w5{width:147.816000px;}
.w6{width:152.310000px;}
.w7{width:186.690000px;}
.wb{width:187.050000px;}
.w8{width:258.150000px;}
.wc{width:258.870000px;}
.w4{width:568.005000px;}
.w3{width:568.185000px;}
.wf{width:648.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:10.794000px;}
.x16{left:15.300000px;}
.x12{left:21.960000px;}
.x18{left:43.194000px;}
.x1b{left:49.215000px;}
.x1c{left:96.915000px;}
.x2{left:106.415987px;}
.x14{left:118.980000px;}
.x1a{left:120.960000px;}
.x5{left:133.415987px;}
.xf{left:141.165000px;}
.xe{left:147.105000px;}
.x8{left:148.895987px;}
.xd{left:154.110000px;}
.x6{left:160.409987px;}
.x19{left:163.109987px;}
.x1d{left:196.635000px;}
.x1e{left:212.220000px;}
.x7{left:261.929987px;}
.x4{left:270.749987px;}
.x13{left:294.555000px;}
.x11{left:434.234987px;}
.x1{left:467.744987px;}
.x15{left:553.605000px;}
.x17{left:643.785000px;}
.xc{left:722.129987px;}
.xa{left:730.229987px;}
.x9{left:778.289987px;}
.xb{left:783.869987px;}
.x3{left:786.749987px;}
@media print{
.v1{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls2{letter-spacing:3.200000pt;}
.lse{letter-spacing:3.840000pt;}
.lsc{letter-spacing:6.400000pt;}
.ls3{letter-spacing:11.040000pt;}
.ls4{letter-spacing:14.080000pt;}
.lsb{letter-spacing:23.680000pt;}
.ls1{letter-spacing:30.186667pt;}
.ls6{letter-spacing:57.263360pt;}
.ws2{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.384000pt;}
.ws7{word-spacing:-16.192000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws6{word-spacing:-14.080000pt;}
.ws1{word-spacing:0.000000pt;}
._18{margin-left:-6.266240pt;}
._17{margin-left:-4.224000pt;}
._9{margin-left:-2.944000pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.424213pt;}
._8{width:2.368000pt;}
._3{width:3.489920pt;}
._11{width:5.184000pt;}
._12{width:6.400000pt;}
._14{width:7.680000pt;}
._13{width:8.576000pt;}
._7{width:9.641387pt;}
._6{width:10.640000pt;}
._e{width:12.133973pt;}
._10{width:13.205333pt;}
._f{width:14.506667pt;}
._d{width:17.216000pt;}
._a{width:18.560000pt;}
._1d{width:19.801600pt;}
._1a{width:21.498027pt;}
._c{width:22.848000pt;}
._b{width:23.872000pt;}
._1b{width:24.960000pt;}
._1c{width:26.368000pt;}
._5{width:44.114987pt;}
._4{width:45.028480pt;}
._15{width:45.952000pt;}
._16{width:46.901333pt;}
._2{width:59.436587pt;}
._19{width:109.638656pt;}
.fs3{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:48.128000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:1.600000pt;}
.y6f{bottom:1.760000pt;}
.y8f{bottom:8.640000pt;}
.y92{bottom:8.800000pt;}
.y99{bottom:9.600000pt;}
.ya5{bottom:9.800000pt;}
.y6d{bottom:12.960000pt;}
.yc3{bottom:15.746667pt;}
.y90{bottom:27.680000pt;}
.ya4{bottom:29.320000pt;}
.y6b{bottom:34.240000pt;}
.y9f{bottom:70.400000pt;}
.y6{bottom:72.992000pt;}
.y5{bottom:97.152000pt;}
.y4{bottom:119.552000pt;}
.y3{bottom:136.666667pt;}
.yb9{bottom:143.840000pt;}
.y2{bottom:153.466667pt;}
.yba{bottom:158.053333pt;}
.ybb{bottom:172.253333pt;}
.y2c{bottom:177.466667pt;}
.ya9{bottom:179.866667pt;}
.y69{bottom:183.706667pt;}
.ydb{bottom:184.026667pt;}
.y48{bottom:186.106667pt;}
.ybc{bottom:186.426667pt;}
.yb7{bottom:189.946667pt;}
.y2b{bottom:195.866667pt;}
.ybd{bottom:200.640000pt;}
.ya8{bottom:203.706667pt;}
.yda{bottom:207.866667pt;}
.y61{bottom:208.826667pt;}
.y68{bottom:212.986667pt;}
.y47{bottom:213.626667pt;}
.y2a{bottom:214.266667pt;}
.ybe{bottom:214.853333pt;}
.yb6{bottom:217.466667pt;}
.y89{bottom:224.826667pt;}
.y70{bottom:224.986667pt;}
.yd9{bottom:226.266667pt;}
.ybf{bottom:229.053333pt;}
.y29{bottom:232.666667pt;}
.y60{bottom:236.346667pt;}
.ya7{bottom:240.666667pt;}
.yc0{bottom:243.226667pt;}
.yd8{bottom:244.666667pt;}
.yb5{bottom:245.146667pt;}
.y46{bottom:246.586667pt;}
.y28{bottom:251.066667pt;}
.y88{bottom:252.346667pt;}
.y5f{bottom:264.026667pt;}
.yc2{bottom:267.333333pt;}
.yd7{bottom:268.346667pt;}
.y27{bottom:269.466667pt;}
.yb4{bottom:272.666667pt;}
.y45{bottom:274.266667pt;}
.ya6{bottom:277.786667pt;}
.y87{bottom:280.026667pt;}
.y26{bottom:287.866667pt;}
.yc1{bottom:288.773333pt;}
.yd6{bottom:292.026667pt;}
.ya3{bottom:294.266667pt;}
.y5e{bottom:296.986667pt;}
.yb3{bottom:300.386667pt;}
.yf6{bottom:305.826667pt;}
.y25{bottom:306.306667pt;}
.y44{bottom:307.106667pt;}
.y86{bottom:307.586667pt;}
.yd5{bottom:310.466667pt;}
.y5d{bottom:324.546667pt;}
.y24{bottom:324.706667pt;}
.yb2{bottom:327.906667pt;}
.yf5{bottom:329.506667pt;}
.yd4{bottom:334.306667pt;}
.y43{bottom:334.786667pt;}
.y85{bottom:335.266667pt;}
.ya1{bottom:341.346667pt;}
.y23{bottom:343.106667pt;}
.y5c{bottom:352.226667pt;}
.yf4{bottom:353.186667pt;}
.yb1{bottom:355.586667pt;}
.yd3{bottom:357.986667pt;}
.y22{bottom:361.506667pt;}
.y42{bottom:362.306667pt;}
.y84{bottom:362.786667pt;}
.ya2{bottom:368.226667pt;}
.yf3{bottom:371.586667pt;}
.yd2{bottom:376.386667pt;}
.y21{bottom:379.906667pt;}
.yb0{bottom:383.106667pt;}
.y5b{bottom:385.026667pt;}
.y83{bottom:390.466667pt;}
.y9e{bottom:394.946667pt;}
.y41{bottom:395.266667pt;}
.yf2{bottom:395.426667pt;}
.y20{bottom:398.306667pt;}
.yd1{bottom:400.066667pt;}
.y5a{bottom:409.346667pt;}
.yaf{bottom:410.786667pt;}
.y1f{bottom:416.706667pt;}
.y82{bottom:417.986667pt;}
.yf1{bottom:419.106667pt;}
.y40{bottom:422.946667pt;}
.yd0{bottom:423.906667pt;}
.y1e{bottom:435.106667pt;}
.yf0{bottom:437.506667pt;}
.y59{bottom:438.306667pt;}
.ycf{bottom:442.306667pt;}
.y81{bottom:445.666667pt;}
.y3f{bottom:450.466667pt;}
.y1d{bottom:453.506667pt;}
.ya0{bottom:456.546667pt;}
.yef{bottom:461.186667pt;}
.y6c{bottom:463.746667pt;}
.yae{bottom:465.986667pt;}
.y58{bottom:471.266667pt;}
.y1c{bottom:471.906667pt;}
.y80{bottom:473.186667pt;}
.y67{bottom:481.826667pt;}
.y9c{bottom:483.266667pt;}
.y3e{bottom:483.426667pt;}
.yee{bottom:487.586667pt;}
.yce{bottom:489.666667pt;}
.y1b{bottom:490.306667pt;}
.yad{bottom:493.506667pt;}
.y57{bottom:498.786667pt;}
.y7f{bottom:500.866667pt;}
.yed{bottom:505.986667pt;}
.ycd{bottom:508.066667pt;}
.y1a{bottom:508.706667pt;}
.y9d{bottom:509.986667pt;}
.y3d{bottom:511.106667pt;}
.y66{bottom:514.786667pt;}
.yac{bottom:517.186667pt;}
.yec{bottom:524.386667pt;}
.y56{bottom:526.466667pt;}
.y19{bottom:527.106667pt;}
.y7e{bottom:528.386667pt;}
.y9b{bottom:536.893333pt;}
.y3c{bottom:538.653333pt;}
.y6e{bottom:540.093333pt;}
.y65{bottom:544.093333pt;}
.y18{bottom:545.533333pt;}
.yeb{bottom:548.253333pt;}
.ycc{bottom:550.653333pt;}
.y55{bottom:554.013333pt;}
.yab{bottom:554.333333pt;}
.y7d{bottom:556.093333pt;}
.y9a{bottom:563.613333pt;}
.y17{bottom:563.933333pt;}
.y3b{bottom:571.613333pt;}
.yea{bottom:571.933333pt;}
.ycb{bottom:579.773333pt;}
.y16{bottom:582.333333pt;}
.y7c{bottom:583.613333pt;}
.y54{bottom:586.973333pt;}
.y98{bottom:590.333333pt;}
.yaa{bottom:591.453333pt;}
.y3a{bottom:599.133333pt;}
.y15{bottom:600.733333pt;}
.yca{bottom:607.293333pt;}
.y7b{bottom:611.293333pt;}
.ye9{bottom:614.013333pt;}
.y53{bottom:614.653333pt;}
.y97{bottom:617.853333pt;}
.y14{bottom:619.133333pt;}
.yb8{bottom:621.440000pt;}
.y39{bottom:626.813333pt;}
.yc9{bottom:634.973333pt;}
.y13{bottom:637.533333pt;}
.ye8{bottom:637.693333pt;}
.y7a{bottom:638.813333pt;}
.y52{bottom:642.173333pt;}
.y94{bottom:644.573333pt;}
.y38{bottom:654.333333pt;}
.y12{bottom:655.933333pt;}
.ye7{bottom:656.093333pt;}
.yc8{bottom:662.493333pt;}
.y79{bottom:662.973333pt;}
.y51{bottom:669.693333pt;}
.y96{bottom:671.453333pt;}
.y11{bottom:674.333333pt;}
.ye6{bottom:674.493333pt;}
.y37{bottom:682.013333pt;}
.yc7{bottom:690.173333pt;}
.y78{bottom:692.093333pt;}
.y10{bottom:692.733333pt;}
.y95{bottom:698.173333pt;}
.ye5{bottom:698.333333pt;}
.y50{bottom:702.653333pt;}
.y36{bottom:709.533333pt;}
.yf{bottom:711.133333pt;}
.yc6{bottom:717.693333pt;}
.ye4{bottom:722.013333pt;}
.y77{bottom:724.893333pt;}
.y4f{bottom:730.333333pt;}
.ye3{bottom:740.413333pt;}
.ye{bottom:740.893333pt;}
.y35{bottom:742.493333pt;}
.yc5{bottom:745.373333pt;}
.y91{bottom:751.613333pt;}
.y76{bottom:752.573333pt;}
.y4e{bottom:757.853333pt;}
.ye2{bottom:764.093333pt;}
.y34{bottom:770.173333pt;}
.yc4{bottom:772.893333pt;}
.yd{bottom:773.053333pt;}
.y93{bottom:778.533333pt;}
.y75{bottom:780.133333pt;}
.y4d{bottom:785.573333pt;}
.ye1{bottom:787.973333pt;}
.yc{bottom:797.573333pt;}
.y33{bottom:797.733333pt;}
.y6a{bottom:802.213333pt;}
.y8e{bottom:805.253333pt;}
.ye0{bottom:806.373333pt;}
.y74{bottom:807.813333pt;}
.y4c{bottom:818.533333pt;}
.yb{bottom:822.213333pt;}
.ydf{bottom:824.773333pt;}
.y32{bottom:827.333333pt;}
.y64{bottom:836.453333pt;}
.y73{bottom:840.773333pt;}
.y4b{bottom:846.053333pt;}
.yde{bottom:848.453333pt;}
.y31{bottom:853.893333pt;}
.y8d{bottom:858.533333pt;}
.ya{bottom:865.413333pt;}
.y63{bottom:868.293333pt;}
.ydd{bottom:872.133333pt;}
.y4a{bottom:873.733333pt;}
.y8c{bottom:876.933333pt;}
.y30{bottom:882.853333pt;}
.y9{bottom:889.893333pt;}
.ydc{bottom:890.533333pt;}
.y62{bottom:895.973333pt;}
.y8b{bottom:900.773333pt;}
.y2f{bottom:901.253333pt;}
.y8{bottom:914.373333pt;}
.y2e{bottom:919.653333pt;}
.y72{bottom:923.493333pt;}
.y8a{bottom:928.613333pt;}
.y49{bottom:928.933333pt;}
.y2d{bottom:938.053333pt;}
.y7{bottom:956.453333pt;}
.y1{bottom:1096.800000pt;}
.h10{height:11.680000pt;}
.hf{height:11.840000pt;}
.h15{height:24.000000pt;}
.h19{height:24.160000pt;}
.h17{height:24.192000pt;}
.h1b{height:24.800000pt;}
.hd{height:32.000000pt;}
.h6{height:38.441250pt;}
.h11{height:42.880000pt;}
.h23{height:43.343750pt;}
.h22{height:44.512000pt;}
.h1a{height:47.621250pt;}
.h25{height:47.742188pt;}
.h26{height:47.869500pt;}
.hb{height:48.000000pt;}
.hc{height:48.530000pt;}
.h1d{height:48.593750pt;}
.h1f{height:50.880000pt;}
.h13{height:50.912000pt;}
.ha{height:52.296250pt;}
.h7{height:52.750000pt;}
.h3{height:52.785000pt;}
.h14{height:53.937500pt;}
.h16{height:54.187500pt;}
.h12{height:56.187500pt;}
.h9{height:56.843750pt;}
.h2{height:57.375000pt;}
.h4{height:58.563750pt;}
.h21{height:58.880000pt;}
.he{height:61.717500pt;}
.h1c{height:63.656250pt;}
.h1e{height:65.531250pt;}
.h8{height:66.507188pt;}
.h5{height:75.602187pt;}
.h20{height:85.600000pt;}
.h18{height:104.480000pt;}
.h24{height:316.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:79.520000pt;}
.wa{width:79.712000pt;}
.we{width:80.032000pt;}
.wd{width:80.320000pt;}
.w5{width:131.392000pt;}
.w6{width:135.386667pt;}
.w7{width:165.946667pt;}
.wb{width:166.266667pt;}
.w8{width:229.466667pt;}
.wc{width:230.106667pt;}
.w4{width:504.893333pt;}
.w3{width:505.053333pt;}
.wf{width:576.000000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:9.594667pt;}
.x16{left:13.600000pt;}
.x12{left:19.520000pt;}
.x18{left:38.394667pt;}
.x1b{left:43.746667pt;}
.x1c{left:86.146667pt;}
.x2{left:94.591988pt;}
.x14{left:105.760000pt;}
.x1a{left:107.520000pt;}
.x5{left:118.591988pt;}
.xf{left:125.480000pt;}
.xe{left:130.760000pt;}
.x8{left:132.351988pt;}
.xd{left:136.986667pt;}
.x6{left:142.586655pt;}
.x19{left:144.986655pt;}
.x1d{left:174.786667pt;}
.x1e{left:188.640000pt;}
.x7{left:232.826655pt;}
.x4{left:240.666655pt;}
.x13{left:261.826667pt;}
.x11{left:385.986655pt;}
.x1{left:415.773322pt;}
.x15{left:492.093333pt;}
.x17{left:572.253333pt;}
.xc{left:641.893322pt;}
.xa{left:649.093322pt;}
.x9{left:691.813322pt;}
.xb{left:696.773322pt;}
.x3{left:699.333322pt;}
}




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