
    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_996ad653e196168698ad9b32.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.763672;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_a499348251b3c48d367df933.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b33783d9eecf11493115e786.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_eddb210b417f9f7a043117f0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_5de20f596118e19d51113d29.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940430;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_82b659e320ea11cdcd7df60e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.962402;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_dfaa8e8346ddafd710c8e013.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941406;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_b2bb47c0d485cc25421bf424.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.961914;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_31baadefd474b457673d7da5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5b561e027d6afaa4d277108b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.875977;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v1{vertical-align:20.879995px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.270880px;}
.ls9{letter-spacing:0.317062px;}
.lsc{letter-spacing:0.358951px;}
.ls0{letter-spacing:0.719446px;}
.ls1{letter-spacing:0.899424px;}
.ls6{letter-spacing:1.036940px;}
.lsb{letter-spacing:3.059438px;}
.ls8{letter-spacing:4.637021px;}
.lsa{letter-spacing:6.796931px;}
.ls5{letter-spacing:9.539447px;}
.ls3{letter-spacing:25.379402px;}
.ls2{letter-spacing:28.259325px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-54.002250px;}
.ws4{word-spacing:-14.940563px;}
.ws1{word-spacing:-13.500563px;}
.ws5{word-spacing:-13.362979px;}
.ws2{word-spacing:-9.720371px;}
.ws3{word-spacing:-9.000349px;}
.ws6{word-spacing:0.000000px;}
._16{margin-left:-4.333868px;}
._e{margin-left:-3.321700px;}
._2{margin-left:-2.236594px;}
._1{margin-left:-1.045239px;}
._0{width:1.226231px;}
._6{width:2.581928px;}
._7{width:3.816127px;}
._4{width:5.165864px;}
._5{width:6.294215px;}
._f{width:7.460243px;}
._12{width:9.330373px;}
._19{width:10.546932px;}
._1a{width:11.614115px;}
._a{width:13.509070px;}
._2d{width:14.666470px;}
._8{width:16.740698px;}
._9{width:17.978399px;}
._b{width:20.060040px;}
._1b{width:21.275549px;}
._13{width:22.549106px;}
._20{width:23.706004px;}
._c{width:24.889872px;}
._d{width:26.119409px;}
._11{width:27.517924px;}
._10{width:28.519190px;}
._1c{width:30.638892px;}
._27{width:31.745774px;}
._26{width:32.798970px;}
._14{width:34.354252px;}
._15{width:35.388294px;}
._30{width:37.180338px;}
._35{width:38.236265px;}
._17{width:39.721863px;}
._18{width:41.152022px;}
._1d{width:44.224065px;}
._33{width:47.607802px;}
._32{width:49.133821px;}
._2b{width:50.444620px;}
._2c{width:51.777884px;}
._29{width:54.384114px;}
._25{width:56.594851px;}
._28{width:57.760580px;}
._1e{width:83.507068px;}
._1f{width:85.080559px;}
._22{width:89.446967px;}
._2e{width:93.245995px;}
._2f{width:94.698586px;}
._23{width:98.645985px;}
._36{width:99.815752px;}
._24{width:100.928402px;}
._31{width:112.065427px;}
._34{width:147.108457px;}
._2a{width:519.501645px;}
._21{width:919.683777px;}
._3{width:1678.389930px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:12.240495px;}
.fs8{font-size:23.760900px;}
.fs1{font-size:36.001395px;}
.fs5{font-size:38.881485px;}
.fs7{font-size:48.241800px;}
.fs0{font-size:54.002250px;}
.fs3{font-size:59.762250px;}
.fs6{font-size:72.002705px;}
.fs4{font-size:90.003596px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.439999px;}
.y67{bottom:2.159999px;}
.y66{bottom:2.879997px;}
.y7{bottom:152.460091px;}
.ybe{bottom:173.160049px;}
.yc6{bottom:173.700096px;}
.y9f{bottom:179.820099px;}
.yb7{bottom:181.440033px;}
.y63{bottom:182.520058px;}
.y3f{bottom:183.960091px;}
.ybd{bottom:187.020058px;}
.ye1{bottom:187.200096px;}
.yc5{bottom:187.380066px;}
.y9e{bottom:196.920043px;}
.y3e{bottom:198.720085px;}
.ybc{bottom:199.260064px;}
.y62{bottom:199.800041px;}
.ybb{bottom:204.840088px;}
.yc4{bottom:205.200096px;}
.ye0{bottom:207.900055px;}
.y9d{bottom:214.200096px;}
.y3d{bottom:216.000068px;}
.y61{bottom:217.080093px;}
.ydf{bottom:227.880066px;}
.y9c{bottom:231.480079px;}
.y3c{bottom:233.280052px;}
.y60{bottom:234.360077px;}
.yde{bottom:243.360077px;}
.y9b{bottom:248.760064px;}
.y3b{bottom:250.380066px;}
.y5f{bottom:251.640060px;}
.ydd{bottom:259.020058px;}
.y9a{bottom:266.040047px;}
.y3a{bottom:267.660049px;}
.y5e{bottom:268.740074px;}
.ydc{bottom:274.500068px;}
.y99{bottom:283.140060px;}
.y39{bottom:284.940033px;}
.y5d{bottom:286.020058px;}
.ydb{bottom:289.980079px;}
.y98{bottom:300.420043px;}
.y38{bottom:302.220085px;}
.y5c{bottom:303.300041px;}
.yda{bottom:305.460091px;}
.y97{bottom:317.700096px;}
.y37{bottom:319.500068px;}
.y5b{bottom:320.580093px;}
.yd9{bottom:321.120072px;}
.y96{bottom:334.980079px;}
.yd8{bottom:336.600083px;}
.y36{bottom:336.780052px;}
.y5a{bottom:337.860077px;}
.yd7{bottom:352.080093px;}
.y95{bottom:352.260064px;}
.y35{bottom:353.880066px;}
.y59{bottom:355.140060px;}
.yd6{bottom:368.280052px;}
.y94{bottom:369.540047px;}
.y34{bottom:371.160049px;}
.y58{bottom:372.240074px;}
.y93{bottom:386.640060px;}
.yd5{bottom:388.260064px;}
.y33{bottom:388.440033px;}
.y57{bottom:389.520058px;}
.y92{bottom:403.920043px;}
.yd4{bottom:404.100083px;}
.y32{bottom:405.720085px;}
.y56{bottom:406.800041px;}
.y91{bottom:421.200096px;}
.yd3{bottom:421.380066px;}
.y31{bottom:423.000068px;}
.y55{bottom:424.080093px;}
.y90{bottom:438.480079px;}
.yd2{bottom:438.660049px;}
.y30{bottom:440.280052px;}
.y54{bottom:440.640060px;}
.y8f{bottom:455.760064px;}
.yd1{bottom:455.940033px;}
.y53{bottom:457.200096px;}
.y2f{bottom:457.380066px;}
.y8e{bottom:473.040047px;}
.yd0{bottom:473.220085px;}
.y2e{bottom:474.660049px;}
.y52{bottom:476.640060px;}
.y8d{bottom:490.140060px;}
.ycf{bottom:490.320099px;}
.y51{bottom:491.040047px;}
.y2d{bottom:491.940033px;}
.y50{bottom:507.420043px;}
.yce{bottom:507.600083px;}
.y2c{bottom:509.220085px;}
.y4f{bottom:523.980079px;}
.y8c{bottom:524.700096px;}
.ycd{bottom:524.880066px;}
.y2b{bottom:526.500068px;}
.y4e{bottom:540.540047px;}
.y8b{bottom:541.980079px;}
.ycc{bottom:542.160049px;}
.y2a{bottom:543.600083px;}
.y4d{bottom:556.920043px;}
.y8a{bottom:559.260064px;}
.ycb{bottom:559.440033px;}
.y29{bottom:560.880066px;}
.y4c{bottom:573.480079px;}
.y89{bottom:576.540047px;}
.yca{bottom:576.720085px;}
.y28{bottom:578.160049px;}
.y119{bottom:587.700096px;}
.y4b{bottom:590.040047px;}
.y88{bottom:593.640060px;}
.yc9{bottom:593.820099px;}
.y27{bottom:595.440033px;}
.y118{bottom:596.520058px;}
.y4a{bottom:606.420043px;}
.y87{bottom:610.920043px;}
.yc8{bottom:611.100083px;}
.y117{bottom:612.000068px;}
.y26{bottom:612.720085px;}
.y49{bottom:622.980079px;}
.y116{bottom:627.660049px;}
.y86{bottom:628.200096px;}
.yc7{bottom:628.380066px;}
.y25{bottom:630.000068px;}
.y48{bottom:639.540047px;}
.y115{bottom:643.140060px;}
.y85{bottom:645.480079px;}
.yc3{bottom:645.660049px;}
.y24{bottom:647.100083px;}
.y47{bottom:655.380066px;}
.y114{bottom:658.620072px;}
.yc2{bottom:662.220085px;}
.y84{bottom:662.760064px;}
.y23{bottom:664.380066px;}
.y46{bottom:669.240074px;}
.y113{bottom:674.100083px;}
.yc1{bottom:675.900055px;}
.y83{bottom:679.860077px;}
.y22{bottom:681.660049px;}
.y45{bottom:683.100083px;}
.yc0{bottom:688.140060px;}
.yf6{bottom:689.580059px;}
.ybf{bottom:693.720051px;}
.y82{bottom:697.140060px;}
.y44{bottom:697.320065px;}
.y21{bottom:698.940067px;}
.yf5{bottom:705.240074px;}
.y112{bottom:712.440067px;}
.y43{bottom:713.880066px;}
.y81{bottom:714.420078px;}
.y20{bottom:716.220051px;}
.yf4{bottom:720.720051px;}
.y111{bottom:727.920078px;}
.y42{bottom:730.440067px;}
.y80{bottom:731.700061px;}
.y1f{bottom:732.780052px;}
.yb6{bottom:733.500068px;}
.yf3{bottom:735.840054px;}
.y110{bottom:743.400055px;}
.y41{bottom:745.020058px;}
.y1e{bottom:747.540081px;}
.y7f{bottom:748.980079px;}
.yb5{bottom:750.600083px;}
.yf2{bottom:751.680073px;}
.y40{bottom:753.480079px;}
.y10f{bottom:759.060070px;}
.y7e{bottom:766.260064px;}
.yf1{bottom:767.340054px;}
.y1d{bottom:767.520058px;}
.yb4{bottom:767.880066px;}
.y10e{bottom:774.540081px;}
.yf0{bottom:782.820065px;}
.y1c{bottom:783.180073px;}
.y7d{bottom:783.360077px;}
.yb3{bottom:785.160049px;}
.y10d{bottom:790.020058px;}
.yef{bottom:798.300076px;}
.y1b{bottom:798.660049px;}
.y7c{bottom:800.640060px;}
.yb2{bottom:802.440067px;}
.y10c{bottom:805.500068px;}
.yee{bottom:813.780052px;}
.y1a{bottom:814.140060px;}
.y7b{bottom:817.920078px;}
.yb1{bottom:819.720051px;}
.y10b{bottom:820.980079px;}
.yed{bottom:829.440067px;}
.y19{bottom:829.620072px;}
.y7a{bottom:835.200061px;}
.y10a{bottom:836.640060px;}
.yb0{bottom:836.820065px;}
.yec{bottom:844.920078px;}
.y18{bottom:845.280052px;}
.y109{bottom:852.120072px;}
.y79{bottom:852.480079px;}
.yaf{bottom:854.100083px;}
.yeb{bottom:860.040081px;}
.y17{bottom:860.760064px;}
.y108{bottom:867.600083px;}
.y78{bottom:869.760064px;}
.yae{bottom:871.380066px;}
.yea{bottom:875.880066px;}
.y16{bottom:876.600083px;}
.y107{bottom:883.080059px;}
.y77{bottom:886.860077px;}
.yad{bottom:888.660049px;}
.ye9{bottom:891.540081px;}
.y15{bottom:893.520058px;}
.y106{bottom:898.740074px;}
.y76{bottom:904.140060px;}
.yac{bottom:905.940067px;}
.ye8{bottom:908.460056px;}
.y14{bottom:909.000068px;}
.y105{bottom:914.220051px;}
.y75{bottom:921.420078px;}
.yab{bottom:923.220051px;}
.y13{bottom:924.480079px;}
.y104{bottom:929.700061px;}
.y74{bottom:938.700061px;}
.y12{bottom:940.140060px;}
.yaa{bottom:940.320065px;}
.y103{bottom:945.180073px;}
.y11{bottom:955.620072px;}
.y73{bottom:955.980079px;}
.ya9{bottom:957.600083px;}
.y102{bottom:960.840054px;}
.y10{bottom:971.100083px;}
.y72{bottom:973.080059px;}
.ya8{bottom:974.880066px;}
.y101{bottom:976.320065px;}
.yf{bottom:986.580059px;}
.y71{bottom:990.360060px;}
.y100{bottom:991.800058px;}
.ya7{bottom:992.160067px;}
.ye{bottom:1002.240074px;}
.yff{bottom:1007.280069px;}
.y70{bottom:1007.640060px;}
.ya6{bottom:1009.440067px;}
.ye7{bottom:1017.360060px;}
.yd{bottom:1018.080059px;}
.yfe{bottom:1022.580059px;}
.y6f{bottom:1024.920061px;}
.ya5{bottom:1026.720068px;}
.ye6{bottom:1033.200061px;}
.yc{bottom:1034.820065px;}
.yfd{bottom:1038.420061px;}
.y6e{bottom:1042.200061px;}
.ya4{bottom:1043.820065px;}
.ye5{bottom:1048.680073px;}
.yb{bottom:1053.720068px;}
.yfc{bottom:1053.900072px;}
.y6d{bottom:1059.480063px;}
.ya3{bottom:1061.100065px;}
.ye4{bottom:1064.340070px;}
.yfb{bottom:1069.380066px;}
.y6c{bottom:1076.220068px;}
.ya2{bottom:1078.380066px;}
.ya{bottom:1079.640060px;}
.ye3{bottom:1079.820065px;}
.yfa{bottom:1085.040064px;}
.y6b{bottom:1093.860060px;}
.ye2{bottom:1094.940067px;}
.ya1{bottom:1095.660067px;}
.yf9{bottom:1100.520058px;}
.y9{bottom:1105.560070px;}
.y6a{bottom:1110.420061px;}
.ya0{bottom:1112.940067px;}
.yf8{bottom:1116.000068px;}
.y69{bottom:1126.980063px;}
.y8{bottom:1130.220068px;}
.yf7{bottom:1131.480063px;}
.yba{bottom:1146.240066px;}
.y68{bottom:1148.940067px;}
.y6{bottom:1149.120063px;}
.y5{bottom:1151.100065px;}
.yb9{bottom:1151.280069px;}
.y3{bottom:1159.380066px;}
.y2{bottom:1166.400064px;}
.y65{bottom:1167.300067px;}
.y64{bottom:1170.180064px;}
.yb8{bottom:1170.360068px;}
.y1{bottom:1184.220068px;}
.h18{height:8.280001px;}
.h7{height:8.546830px;}
.h4{height:13.860000px;}
.h17{height:15.299998px;}
.h1a{height:16.590863px;}
.h14{height:17.368197px;}
.h1c{height:17.867083px;}
.h19{height:25.137693px;}
.h6{height:25.401375px;}
.h10{height:33.684460px;}
.h12{height:35.262683px;}
.h15{height:36.252017px;}
.h13{height:36.275572px;}
.hd{height:37.706649px;}
.h5{height:38.102173px;}
.h16{height:39.130537px;}
.h3{height:39.473324px;}
.h1b{height:39.921585px;}
.h2{height:40.501688px;}
.h8{height:41.728524px;}
.hb{height:43.304287px;}
.h11{height:43.683637px;}
.he{height:44.315473px;}
.hc{height:49.300690px;}
.hf{height:54.142659px;}
.ha{height:63.503513px;}
.h9{height:65.217449px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:8.100013px;}
.w4{width:9.000000px;}
.w3{width:13.499991px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:93.599997px;}
.x1{left:101.700002px;}
.x9{left:111.599997px;}
.x15{left:113.939999px;}
.xa{left:116.099997px;}
.x5{left:126.540003px;}
.xf{left:133.920001px;}
.x8{left:175.680005px;}
.x7{left:216.900003px;}
.x6{left:353.699993px;}
.x10{left:427.319996px;}
.x13{left:442.259994px;}
.x16{left:446.579990px;}
.xb{left:457.019989px;}
.xc{left:471.959988px;}
.xd{left:475.019989px;}
.x14{left:477.360008px;}
.xe{left:479.519989px;}
.x11{left:761.580025px;}
.x4{left:777.059967px;}
.x2{left:795.600014px;}
.x12{left:800.100014px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v1{vertical-align:18.559996pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.240782pt;}
.ls9{letter-spacing:0.281833pt;}
.lsc{letter-spacing:0.319068pt;}
.ls0{letter-spacing:0.639508pt;}
.ls1{letter-spacing:0.799488pt;}
.ls6{letter-spacing:0.921725pt;}
.lsb{letter-spacing:2.719500pt;}
.ls8{letter-spacing:4.121797pt;}
.lsa{letter-spacing:6.041717pt;}
.ls5{letter-spacing:8.479508pt;}
.ls3{letter-spacing:22.559468pt;}
.ls2{letter-spacing:25.119400pt;}
.ws0{word-spacing:-48.002000pt;}
.ws4{word-spacing:-13.280500pt;}
.ws1{word-spacing:-12.000500pt;}
.ws5{word-spacing:-11.878203pt;}
.ws2{word-spacing:-8.640330pt;}
.ws3{word-spacing:-8.000310pt;}
.ws6{word-spacing:0.000000pt;}
._16{margin-left:-3.852327pt;}
._e{margin-left:-2.952622pt;}
._2{margin-left:-1.988083pt;}
._1{margin-left:-0.929101pt;}
._0{width:1.089983pt;}
._6{width:2.295047pt;}
._7{width:3.392113pt;}
._4{width:4.591879pt;}
._5{width:5.594858pt;}
._f{width:6.631327pt;}
._12{width:8.293665pt;}
._19{width:9.375051pt;}
._1a{width:10.323658pt;}
._a{width:12.008062pt;}
._2d{width:13.036862pt;}
._8{width:14.880620pt;}
._9{width:15.980799pt;}
._b{width:17.831146pt;}
._1b{width:18.911599pt;}
._13{width:20.043650pt;}
._20{width:21.072003pt;}
._c{width:22.124331pt;}
._d{width:23.217252pt;}
._11{width:24.460377pt;}
._10{width:25.350391pt;}
._1c{width:27.234570pt;}
._27{width:28.218466pt;}
._26{width:29.154640pt;}
._14{width:30.537113pt;}
._15{width:31.456261pt;}
._30{width:33.049190pt;}
._35{width:33.987792pt;}
._17{width:35.308322pt;}
._18{width:36.579575pt;}
._1d{width:39.310280pt;}
._33{width:42.318046pt;}
._32{width:43.674507pt;}
._2b{width:44.839662pt;}
._2c{width:46.024786pt;}
._29{width:48.341435pt;}
._25{width:50.306534pt;}
._28{width:51.342737pt;}
._1e{width:74.228505pt;}
._1f{width:75.627163pt;}
._22{width:79.508415pt;}
._2e{width:82.885329pt;}
._2f{width:84.176521pt;}
._23{width:87.685320pt;}
._36{width:88.725113pt;}
._24{width:89.714135pt;}
._31{width:99.613713pt;}
._34{width:130.763073pt;}
._2a{width:461.779240pt;}
._21{width:817.496690pt;}
._3{width:1491.902160pt;}
.fs2{font-size:10.880440pt;}
.fs8{font-size:21.120800pt;}
.fs1{font-size:32.001240pt;}
.fs5{font-size:34.561320pt;}
.fs7{font-size:42.881600pt;}
.fs0{font-size:48.002000pt;}
.fs3{font-size:53.122000pt;}
.fs6{font-size:64.002404pt;}
.fs4{font-size:80.003196pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.279999pt;}
.y67{bottom:1.919999pt;}
.y66{bottom:2.559997pt;}
.y7{bottom:135.520081pt;}
.ybe{bottom:153.920044pt;}
.yc6{bottom:154.400086pt;}
.y9f{bottom:159.840088pt;}
.yb7{bottom:161.280030pt;}
.y63{bottom:162.240052pt;}
.y3f{bottom:163.520081pt;}
.ybd{bottom:166.240052pt;}
.ye1{bottom:166.400086pt;}
.yc5{bottom:166.560059pt;}
.y9e{bottom:175.040039pt;}
.y3e{bottom:176.640076pt;}
.ybc{bottom:177.120057pt;}
.y62{bottom:177.600037pt;}
.ybb{bottom:182.080079pt;}
.yc4{bottom:182.400086pt;}
.ye0{bottom:184.800049pt;}
.y9d{bottom:190.400086pt;}
.y3d{bottom:192.000061pt;}
.y61{bottom:192.960083pt;}
.ydf{bottom:202.560059pt;}
.y9c{bottom:205.760071pt;}
.y3c{bottom:207.360047pt;}
.y60{bottom:208.320069pt;}
.yde{bottom:216.320069pt;}
.y9b{bottom:221.120057pt;}
.y3b{bottom:222.560059pt;}
.y5f{bottom:223.680054pt;}
.ydd{bottom:230.240052pt;}
.y9a{bottom:236.480042pt;}
.y3a{bottom:237.920044pt;}
.y5e{bottom:238.880066pt;}
.ydc{bottom:244.000061pt;}
.y99{bottom:251.680054pt;}
.y39{bottom:253.280030pt;}
.y5d{bottom:254.240052pt;}
.ydb{bottom:257.760071pt;}
.y98{bottom:267.040039pt;}
.y38{bottom:268.640076pt;}
.y5c{bottom:269.600037pt;}
.yda{bottom:271.520081pt;}
.y97{bottom:282.400086pt;}
.y37{bottom:284.000061pt;}
.y5b{bottom:284.960083pt;}
.yd9{bottom:285.440064pt;}
.y96{bottom:297.760071pt;}
.yd8{bottom:299.200074pt;}
.y36{bottom:299.360047pt;}
.y5a{bottom:300.320069pt;}
.yd7{bottom:312.960083pt;}
.y95{bottom:313.120057pt;}
.y35{bottom:314.560059pt;}
.y59{bottom:315.680054pt;}
.yd6{bottom:327.360047pt;}
.y94{bottom:328.480042pt;}
.y34{bottom:329.920044pt;}
.y58{bottom:330.880066pt;}
.y93{bottom:343.680054pt;}
.yd5{bottom:345.120057pt;}
.y33{bottom:345.280030pt;}
.y57{bottom:346.240052pt;}
.y92{bottom:359.040039pt;}
.yd4{bottom:359.200074pt;}
.y32{bottom:360.640076pt;}
.y56{bottom:361.600037pt;}
.y91{bottom:374.400086pt;}
.yd3{bottom:374.560059pt;}
.y31{bottom:376.000061pt;}
.y55{bottom:376.960083pt;}
.y90{bottom:389.760071pt;}
.yd2{bottom:389.920044pt;}
.y30{bottom:391.360047pt;}
.y54{bottom:391.680054pt;}
.y8f{bottom:405.120057pt;}
.yd1{bottom:405.280030pt;}
.y53{bottom:406.400086pt;}
.y2f{bottom:406.560059pt;}
.y8e{bottom:420.480042pt;}
.yd0{bottom:420.640076pt;}
.y2e{bottom:421.920044pt;}
.y52{bottom:423.680054pt;}
.y8d{bottom:435.680054pt;}
.ycf{bottom:435.840088pt;}
.y51{bottom:436.480042pt;}
.y2d{bottom:437.280030pt;}
.y50{bottom:451.040039pt;}
.yce{bottom:451.200074pt;}
.y2c{bottom:452.640076pt;}
.y4f{bottom:465.760071pt;}
.y8c{bottom:466.400086pt;}
.ycd{bottom:466.560059pt;}
.y2b{bottom:468.000061pt;}
.y4e{bottom:480.480042pt;}
.y8b{bottom:481.760071pt;}
.ycc{bottom:481.920044pt;}
.y2a{bottom:483.200074pt;}
.y4d{bottom:495.040039pt;}
.y8a{bottom:497.120057pt;}
.ycb{bottom:497.280030pt;}
.y29{bottom:498.560059pt;}
.y4c{bottom:509.760071pt;}
.y89{bottom:512.480042pt;}
.yca{bottom:512.640076pt;}
.y28{bottom:513.920044pt;}
.y119{bottom:522.400086pt;}
.y4b{bottom:524.480042pt;}
.y88{bottom:527.680054pt;}
.yc9{bottom:527.840088pt;}
.y27{bottom:529.280030pt;}
.y118{bottom:530.240052pt;}
.y4a{bottom:539.040039pt;}
.y87{bottom:543.040039pt;}
.yc8{bottom:543.200074pt;}
.y117{bottom:544.000061pt;}
.y26{bottom:544.640076pt;}
.y49{bottom:553.760071pt;}
.y116{bottom:557.920044pt;}
.y86{bottom:558.400086pt;}
.yc7{bottom:558.560059pt;}
.y25{bottom:560.000061pt;}
.y48{bottom:568.480042pt;}
.y115{bottom:571.680054pt;}
.y85{bottom:573.760071pt;}
.yc3{bottom:573.920044pt;}
.y24{bottom:575.200074pt;}
.y47{bottom:582.560059pt;}
.y114{bottom:585.440064pt;}
.yc2{bottom:588.640076pt;}
.y84{bottom:589.120057pt;}
.y23{bottom:590.560059pt;}
.y46{bottom:594.880066pt;}
.y113{bottom:599.200074pt;}
.yc1{bottom:600.800049pt;}
.y83{bottom:604.320069pt;}
.y22{bottom:605.920044pt;}
.y45{bottom:607.200074pt;}
.yc0{bottom:611.680054pt;}
.yf6{bottom:612.960053pt;}
.ybf{bottom:616.640046pt;}
.y82{bottom:619.680054pt;}
.y44{bottom:619.840058pt;}
.y21{bottom:621.280060pt;}
.yf5{bottom:626.880066pt;}
.y112{bottom:633.280060pt;}
.y43{bottom:634.560059pt;}
.y81{bottom:635.040070pt;}
.y20{bottom:636.640046pt;}
.yf4{bottom:640.640046pt;}
.y111{bottom:647.040070pt;}
.y42{bottom:649.280060pt;}
.y80{bottom:650.400055pt;}
.y1f{bottom:651.360047pt;}
.yb6{bottom:652.000061pt;}
.yf3{bottom:654.080048pt;}
.y110{bottom:660.800049pt;}
.y41{bottom:662.240052pt;}
.y1e{bottom:664.480072pt;}
.y7f{bottom:665.760071pt;}
.yb5{bottom:667.200074pt;}
.yf2{bottom:668.160065pt;}
.y40{bottom:669.760071pt;}
.y10f{bottom:674.720063pt;}
.y7e{bottom:681.120057pt;}
.yf1{bottom:682.080048pt;}
.y1d{bottom:682.240052pt;}
.yb4{bottom:682.560059pt;}
.y10e{bottom:688.480072pt;}
.yf0{bottom:695.840058pt;}
.y1c{bottom:696.160065pt;}
.y7d{bottom:696.320069pt;}
.yb3{bottom:697.920044pt;}
.y10d{bottom:702.240052pt;}
.yef{bottom:709.600068pt;}
.y1b{bottom:709.920044pt;}
.y7c{bottom:711.680054pt;}
.yb2{bottom:713.280060pt;}
.y10c{bottom:716.000061pt;}
.yee{bottom:723.360047pt;}
.y1a{bottom:723.680054pt;}
.y7b{bottom:727.040070pt;}
.yb1{bottom:728.640046pt;}
.y10b{bottom:729.760071pt;}
.yed{bottom:737.280060pt;}
.y19{bottom:737.440064pt;}
.y7a{bottom:742.400055pt;}
.y10a{bottom:743.680054pt;}
.yb0{bottom:743.840058pt;}
.yec{bottom:751.040070pt;}
.y18{bottom:751.360047pt;}
.y109{bottom:757.440064pt;}
.y79{bottom:757.760071pt;}
.yaf{bottom:759.200074pt;}
.yeb{bottom:764.480072pt;}
.y17{bottom:765.120057pt;}
.y108{bottom:771.200074pt;}
.y78{bottom:773.120057pt;}
.yae{bottom:774.560059pt;}
.yea{bottom:778.560059pt;}
.y16{bottom:779.200074pt;}
.y107{bottom:784.960053pt;}
.y77{bottom:788.320069pt;}
.yad{bottom:789.920044pt;}
.ye9{bottom:792.480072pt;}
.y15{bottom:794.240052pt;}
.y106{bottom:798.880066pt;}
.y76{bottom:803.680054pt;}
.yac{bottom:805.280060pt;}
.ye8{bottom:807.520050pt;}
.y14{bottom:808.000061pt;}
.y105{bottom:812.640046pt;}
.y75{bottom:819.040070pt;}
.yab{bottom:820.640046pt;}
.y13{bottom:821.760071pt;}
.y104{bottom:826.400055pt;}
.y74{bottom:834.400055pt;}
.y12{bottom:835.680054pt;}
.yaa{bottom:835.840058pt;}
.y103{bottom:840.160065pt;}
.y11{bottom:849.440064pt;}
.y73{bottom:849.760071pt;}
.ya9{bottom:851.200074pt;}
.y102{bottom:854.080048pt;}
.y10{bottom:863.200074pt;}
.y72{bottom:864.960053pt;}
.ya8{bottom:866.560059pt;}
.y101{bottom:867.840058pt;}
.yf{bottom:876.960053pt;}
.y71{bottom:880.320054pt;}
.y100{bottom:881.600052pt;}
.ya7{bottom:881.920060pt;}
.ye{bottom:890.880066pt;}
.yff{bottom:895.360062pt;}
.y70{bottom:895.680054pt;}
.ya6{bottom:897.280060pt;}
.ye7{bottom:904.320054pt;}
.yd{bottom:904.960053pt;}
.yfe{bottom:908.960053pt;}
.y6f{bottom:911.040055pt;}
.ya5{bottom:912.640061pt;}
.ye6{bottom:918.400055pt;}
.yc{bottom:919.840058pt;}
.yfd{bottom:923.040055pt;}
.y6e{bottom:926.400055pt;}
.ya4{bottom:927.840058pt;}
.ye5{bottom:932.160065pt;}
.yb{bottom:936.640061pt;}
.yfc{bottom:936.800064pt;}
.y6d{bottom:941.760056pt;}
.ya3{bottom:943.200058pt;}
.ye4{bottom:946.080063pt;}
.yfb{bottom:950.560059pt;}
.y6c{bottom:956.640061pt;}
.ya2{bottom:958.560059pt;}
.ya{bottom:959.680054pt;}
.ye3{bottom:959.840058pt;}
.yfa{bottom:964.480057pt;}
.y6b{bottom:972.320054pt;}
.ye2{bottom:973.280060pt;}
.ya1{bottom:973.920060pt;}
.yf9{bottom:978.240052pt;}
.y9{bottom:982.720063pt;}
.y6a{bottom:987.040055pt;}
.ya0{bottom:989.280060pt;}
.yf8{bottom:992.000061pt;}
.y69{bottom:1001.760056pt;}
.y8{bottom:1004.640061pt;}
.yf7{bottom:1005.760056pt;}
.yba{bottom:1018.880059pt;}
.y68{bottom:1021.280060pt;}
.y6{bottom:1021.440056pt;}
.y5{bottom:1023.200058pt;}
.yb9{bottom:1023.360062pt;}
.y3{bottom:1030.560059pt;}
.y2{bottom:1036.800057pt;}
.y65{bottom:1037.600060pt;}
.y64{bottom:1040.160057pt;}
.yb8{bottom:1040.320061pt;}
.y1{bottom:1052.640061pt;}
.h18{height:7.360001pt;}
.h7{height:7.597182pt;}
.h4{height:12.320000pt;}
.h17{height:13.599998pt;}
.h1a{height:14.747434pt;}
.h14{height:15.438397pt;}
.h1c{height:15.881852pt;}
.h19{height:22.344616pt;}
.h6{height:22.579000pt;}
.h10{height:29.941742pt;}
.h12{height:31.344607pt;}
.h15{height:32.224015pt;}
.h13{height:32.244953pt;}
.hd{height:33.517021pt;}
.h5{height:33.868599pt;}
.h16{height:34.782699pt;}
.h3{height:35.087399pt;}
.h1b{height:35.485854pt;}
.h2{height:36.001500pt;}
.h8{height:37.092021pt;}
.hb{height:38.492699pt;}
.h11{height:38.829899pt;}
.he{height:39.391531pt;}
.hc{height:43.822836pt;}
.hf{height:48.126808pt;}
.ha{height:56.447567pt;}
.h9{height:57.971066pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:7.200012pt;}
.w4{width:8.000000pt;}
.w3{width:11.999992pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:83.199997pt;}
.x1{left:90.400002pt;}
.x9{left:99.199997pt;}
.x15{left:101.279999pt;}
.xa{left:103.199997pt;}
.x5{left:112.480003pt;}
.xf{left:119.040001pt;}
.x8{left:156.160004pt;}
.x7{left:192.800003pt;}
.x6{left:314.399994pt;}
.x10{left:379.839996pt;}
.x13{left:393.119995pt;}
.x16{left:396.959991pt;}
.xb{left:406.239990pt;}
.xc{left:419.519989pt;}
.xd{left:422.239990pt;}
.x14{left:424.320007pt;}
.xe{left:426.239990pt;}
.x11{left:676.960022pt;}
.x4{left:690.719971pt;}
.x2{left:707.200012pt;}
.x12{left:711.200012pt;}
}




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