
    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_1616b5d212cf623daf933af1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.929199;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_af754507a51c4d36d37e65e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.925781;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_ec1bbe0831e936ec93270d1e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942383;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_505774404154ed4b61791a4a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912598;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);}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.976000px;}
.v4{vertical-align:21.978000px;}
.v2{vertical-align:25.974000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.009186px;}
.ls0{letter-spacing:0.016200px;}
.ls5{letter-spacing:0.024000px;}
.ls6{letter-spacing:0.343154px;}
.ls4{letter-spacing:0.390377px;}
.ls3{letter-spacing:0.513157px;}
.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:-14.520000px;}
.ws0{word-spacing:-13.860000px;}
.ws6{word-spacing:-11.880000px;}
.ws1{word-spacing:-10.004280px;}
.ws5{word-spacing:-8.465160px;}
.ws3{word-spacing:-6.926040px;}
.ws4{word-spacing:0.000000px;}
._26{margin-left:-8.641800px;}
._17{margin-left:-7.503300px;}
._11{margin-left:-5.737200px;}
._13{margin-left:-4.314600px;}
._0{margin-left:-3.191400px;}
._1{margin-left:-1.278900px;}
._2{width:1.302600px;}
._3{width:2.514300px;}
._d{width:3.797400px;}
._c{width:4.874400px;}
._10{width:6.085200px;}
._b{width:7.680900px;}
._a{width:8.698800px;}
._5{width:10.586400px;}
._7{width:12.137400px;}
._6{width:13.224900px;}
._9{width:16.176600px;}
._8{width:18.064200px;}
._4{width:19.681200px;}
._f{width:21.601800px;}
._1a{width:22.908600px;}
._e{width:24.024000px;}
._16{width:25.218600px;}
._1b{width:27.020400px;}
._1c{width:28.287600px;}
._18{width:29.409600px;}
._14{width:30.848400px;}
._12{width:32.696400px;}
._1d{width:33.975300px;}
._1e{width:35.369400px;}
._1f{width:37.737300px;}
._23{width:39.098400px;}
._19{width:40.227000px;}
._20{width:46.879800px;}
._24{width:48.026700px;}
._25{width:55.049100px;}
._15{width:73.454400px;}
._22{width:94.637400px;}
._21{width:121.029300px;}
.fc4{color:rgb(17,17,17);}
.fc3{color:rgb(32,33,36);}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:31.482000px;}
.fs2{font-size:36.729000px;}
.fs8{font-size:38.478000px;}
.fs4{font-size:45.474000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:210.472500px;}
.y4e{bottom:244.488000px;}
.ycf{bottom:248.983500px;}
.y100{bottom:249.318000px;}
.y137{bottom:251.568000px;}
.y25{bottom:252.724500px;}
.y10b{bottom:257.568000px;}
.y120{bottom:260.568000px;}
.y6e{bottom:260.688000px;}
.y4d{bottom:265.183500px;}
.yff{bottom:268.068000px;}
.y24{bottom:268.924500px;}
.y136{bottom:270.318000px;}
.y10a{bottom:276.318000px;}
.y4c{bottom:276.888000px;}
.y11f{bottom:279.318000px;}
.y6d{bottom:281.383500px;}
.y23{bottom:285.124500px;}
.yfe{bottom:286.818000px;}
.y135{bottom:289.068000px;}
.y4b{bottom:293.088000px;}
.y109{bottom:295.068000px;}
.yc6{bottom:297.583500px;}
.y11e{bottom:298.068000px;}
.yfd{bottom:305.568000px;}
.y22{bottom:305.820000px;}
.y141{bottom:307.818000px;}
.y6c{bottom:309.288000px;}
.y4a{bottom:313.783500px;}
.y108{bottom:313.818000px;}
.y134{bottom:316.818000px;}
.y21{bottom:322.020000px;}
.yfc{bottom:324.318000px;}
.y49{bottom:325.488000px;}
.y11d{bottom:325.818000px;}
.y81{bottom:329.983500px;}
.y107{bottom:332.568000px;}
.y133{bottom:335.568000px;}
.yc5{bottom:341.268000px;}
.ya2{bottom:341.568000px;}
.y6b{bottom:341.688000px;}
.yfb{bottom:343.068000px;}
.y11c{bottom:344.568000px;}
.y48{bottom:346.183500px;}
.y106{bottom:351.318000px;}
.y20{bottom:353.334000px;}
.y140{bottom:354.318000px;}
.y47{bottom:357.888000px;}
.yc4{bottom:360.018000px;}
.ya1{bottom:360.318000px;}
.yfa{bottom:361.818000px;}
.y82{bottom:362.383500px;}
.y11b{bottom:363.318000px;}
.y105{bottom:370.068000px;}
.yce{bottom:370.818000px;}
.y1f{bottom:372.084000px;}
.y46{bottom:374.088000px;}
.y6a{bottom:378.583500px;}
.yc3{bottom:378.768000px;}
.ya0{bottom:379.068000px;}
.y132{bottom:382.068000px;}
.y161{bottom:383.334000px;}
.yf1{bottom:387.168000px;}
.y104{bottom:388.818000px;}
.ycd{bottom:389.568000px;}
.y11a{bottom:391.068000px;}
.y80{bottom:391.518000px;}
.y45{bottom:394.783500px;}
.yc2{bottom:397.518000px;}
.y9f{bottom:397.818000px;}
.y1e{bottom:399.834000px;}
.y131{bottom:400.818000px;}
.y160{bottom:402.084000px;}
.yf0{bottom:405.918000px;}
.y72{bottom:406.488000px;}
.y103{bottom:407.568000px;}
.ycc{bottom:408.318000px;}
.y119{bottom:409.818000px;}
.y7f{bottom:410.718000px;}
.yc1{bottom:416.268000px;}
.y9e{bottom:416.568000px;}
.y1d{bottom:418.584000px;}
.y13f{bottom:419.568000px;}
.y71{bottom:422.688000px;}
.yef{bottom:424.368000px;}
.y102{bottom:426.318000px;}
.ycb{bottom:427.068000px;}
.y130{bottom:428.568000px;}
.y15f{bottom:429.834000px;}
.y7e{bottom:429.918000px;}
.y44{bottom:430.059000px;}
.yc0{bottom:435.018000px;}
.y9d{bottom:435.318000px;}
.y1c{bottom:437.334000px;}
.y118{bottom:437.568000px;}
.y70{bottom:438.888000px;}
.yee{bottom:442.818000px;}
.yd3{bottom:443.383500px;}
.y101{bottom:445.068000px;}
.yca{bottom:445.818000px;}
.y12f{bottom:447.318000px;}
.y15e{bottom:448.584000px;}
.y7d{bottom:449.118000px;}
.y9c{bottom:454.068000px;}
.yd5{bottom:455.088000px;}
.y1b{bottom:456.084000px;}
.y117{bottom:456.318000px;}
.y6f{bottom:459.583500px;}
.y43{bottom:460.809000px;}
.yed{bottom:461.268000px;}
.ybf{bottom:462.768000px;}
.yc9{bottom:464.568000px;}
.y12e{bottom:466.068000px;}
.y15d{bottom:467.334000px;}
.y7c{bottom:468.318000px;}
.y9b{bottom:472.818000px;}
.y1a{bottom:474.834000px;}
.y116{bottom:475.068000px;}
.yd4{bottom:475.783500px;}
.y42{bottom:479.559000px;}
.yec{bottom:479.718000px;}
.ybe{bottom:481.218000px;}
.y69{bottom:483.318000px;}
.y13e{bottom:484.818000px;}
.y15c{bottom:486.084000px;}
.yd2{bottom:487.488000px;}
.y7b{bottom:487.518000px;}
.y9a{bottom:491.568000px;}
.y19{bottom:493.584000px;}
.y115{bottom:493.818000px;}
.yeb{bottom:498.168000px;}
.y41{bottom:498.309000px;}
.ybd{bottom:499.668000px;}
.y68{bottom:502.068000px;}
.y13d{bottom:503.568000px;}
.yd1{bottom:503.688000px;}
.y15b{bottom:504.834000px;}
.y7a{bottom:506.718000px;}
.y99{bottom:510.318000px;}
.y18{bottom:512.334000px;}
.y114{bottom:512.568000px;}
.yea{bottom:516.618000px;}
.y40{bottom:517.059000px;}
.ybc{bottom:518.118000px;}
.yd0{bottom:519.888000px;}
.y67{bottom:520.818000px;}
.y15a{bottom:523.584000px;}
.y79{bottom:525.918000px;}
.y98{bottom:529.068000px;}
.y17{bottom:531.084000px;}
.y12d{bottom:531.318000px;}
.ye9{bottom:535.068000px;}
.y3f{bottom:535.809000px;}
.ybb{bottom:536.568000px;}
.y66{bottom:539.568000px;}
.y113{bottom:540.318000px;}
.y159{bottom:542.334000px;}
.y78{bottom:545.118000px;}
.y97{bottom:547.818000px;}
.yc8{bottom:548.568000px;}
.y16{bottom:549.834000px;}
.y12c{bottom:550.068000px;}
.ye8{bottom:553.518000px;}
.y3e{bottom:554.559000px;}
.yba{bottom:555.018000px;}
.yf9{bottom:558.318000px;}
.y112{bottom:559.068000px;}
.y158{bottom:561.084000px;}
.y77{bottom:564.318000px;}
.y96{bottom:566.568000px;}
.y65{bottom:567.318000px;}
.y15{bottom:568.584000px;}
.ye7{bottom:571.968000px;}
.y3d{bottom:573.309000px;}
.yb9{bottom:573.468000px;}
.yf8{bottom:577.068000px;}
.y111{bottom:577.818000px;}
.y157{bottom:579.834000px;}
.y76{bottom:583.518000px;}
.y95{bottom:585.318000px;}
.y14{bottom:587.334000px;}
.ye6{bottom:590.418000px;}
.yb8{bottom:591.918000px;}
.y3c{bottom:592.059000px;}
.yc7{bottom:594.318000px;}
.yf7{bottom:595.818000px;}
.y12b{bottom:596.568000px;}
.y156{bottom:598.584000px;}
.y75{bottom:602.718000px;}
.y94{bottom:604.068000px;}
.y110{bottom:605.568000px;}
.y13{bottom:606.084000px;}
.ye5{bottom:608.868000px;}
.yb7{bottom:610.368000px;}
.y3b{bottom:610.809000px;}
.y64{bottom:613.068000px;}
.yf6{bottom:614.568000px;}
.y155{bottom:617.334000px;}
.y74{bottom:621.918000px;}
.y93{bottom:622.818000px;}
.y10f{bottom:624.318000px;}
.y12{bottom:624.834000px;}
.ye4{bottom:627.318000px;}
.yb6{bottom:628.818000px;}
.y3a{bottom:629.559000px;}
.y63{bottom:631.818000px;}
.yf5{bottom:633.318000px;}
.y154{bottom:636.084000px;}
.y73{bottom:641.118000px;}
.y92{bottom:641.568000px;}
.y10e{bottom:643.068000px;}
.y11{bottom:643.584000px;}
.ye3{bottom:645.768000px;}
.yb5{bottom:647.268000px;}
.y39{bottom:648.309000px;}
.y62{bottom:650.568000px;}
.yf4{bottom:652.068000px;}
.y153{bottom:654.834000px;}
.y91{bottom:660.318000px;}
.y10d{bottom:661.818000px;}
.y10{bottom:662.334000px;}
.ye2{bottom:664.218000px;}
.yb4{bottom:665.718000px;}
.y38{bottom:667.059000px;}
.y61{bottom:669.318000px;}
.yf3{bottom:670.818000px;}
.y152{bottom:673.584000px;}
.y90{bottom:679.068000px;}
.yf{bottom:681.084000px;}
.ye1{bottom:682.668000px;}
.yb3{bottom:684.168000px;}
.y37{bottom:685.809000px;}
.y60{bottom:688.068000px;}
.y10c{bottom:689.568000px;}
.y151{bottom:692.334000px;}
.y8f{bottom:697.818000px;}
.yf2{bottom:698.568000px;}
.ye{bottom:699.834000px;}
.ye0{bottom:701.118000px;}
.yb2{bottom:702.618000px;}
.y36{bottom:704.559000px;}
.y5f{bottom:706.818000px;}
.y12a{bottom:708.318000px;}
.y150{bottom:711.084000px;}
.y8e{bottom:716.568000px;}
.yd{bottom:718.584000px;}
.ydf{bottom:719.568000px;}
.yb1{bottom:721.068000px;}
.y35{bottom:723.309000px;}
.y5e{bottom:725.568000px;}
.y13c{bottom:727.068000px;}
.y14f{bottom:729.834000px;}
.y8d{bottom:735.318000px;}
.y129{bottom:736.068000px;}
.yc{bottom:737.334000px;}
.yde{bottom:738.018000px;}
.yb0{bottom:739.518000px;}
.y34{bottom:742.059000px;}
.y5d{bottom:744.318000px;}
.y14e{bottom:748.584000px;}
.y8c{bottom:754.068000px;}
.y128{bottom:754.818000px;}
.yb{bottom:756.084000px;}
.ydd{bottom:756.468000px;}
.yaf{bottom:757.968000px;}
.y33{bottom:760.809000px;}
.y5c{bottom:763.068000px;}
.y14d{bottom:767.334000px;}
.y8b{bottom:772.818000px;}
.y127{bottom:773.568000px;}
.ydc{bottom:774.918000px;}
.yae{bottom:776.418000px;}
.y32{bottom:779.559000px;}
.y5b{bottom:781.818000px;}
.y147{bottom:783.318000px;}
.y14c{bottom:786.084000px;}
.y8a{bottom:791.568000px;}
.y13b{bottom:792.318000px;}
.ydb{bottom:793.368000px;}
.yad{bottom:794.868000px;}
.y31{bottom:798.309000px;}
.y5a{bottom:800.568000px;}
.y126{bottom:801.318000px;}
.y146{bottom:802.068000px;}
.y14b{bottom:804.834000px;}
.y89{bottom:810.318000px;}
.y13a{bottom:811.068000px;}
.yda{bottom:811.818000px;}
.yac{bottom:813.318000px;}
.y59{bottom:819.318000px;}
.ya{bottom:819.834000px;}
.y125{bottom:820.068000px;}
.y30{bottom:829.059000px;}
.y88{bottom:829.068000px;}
.y145{bottom:829.818000px;}
.yd9{bottom:830.268000px;}
.yab{bottom:831.768000px;}
.y14a{bottom:832.584000px;}
.y58{bottom:838.068000px;}
.y9{bottom:838.584000px;}
.y124{bottom:838.818000px;}
.y2f{bottom:847.809000px;}
.y87{bottom:847.818000px;}
.y144{bottom:848.568000px;}
.yd8{bottom:848.718000px;}
.yaa{bottom:850.218000px;}
.y57{bottom:856.818000px;}
.y123{bottom:857.568000px;}
.y149{bottom:864.834000px;}
.y2e{bottom:866.559000px;}
.y86{bottom:866.568000px;}
.yd7{bottom:867.168000px;}
.y143{bottom:867.318000px;}
.ya9{bottom:868.668000px;}
.y56{bottom:875.568000px;}
.y139{bottom:876.318000px;}
.y148{bottom:883.584000px;}
.y2d{bottom:885.309000px;}
.y85{bottom:885.318000px;}
.yd6{bottom:885.618000px;}
.ya8{bottom:887.118000px;}
.y55{bottom:894.318000px;}
.y138{bottom:895.068000px;}
.y2c{bottom:904.059000px;}
.y84{bottom:904.068000px;}
.ya7{bottom:905.568000px;}
.y54{bottom:913.068000px;}
.y142{bottom:913.818000px;}
.y2b{bottom:922.809000px;}
.y83{bottom:922.818000px;}
.ya6{bottom:924.018000px;}
.y53{bottom:931.818000px;}
.y8{bottom:932.334000px;}
.y2a{bottom:941.559000px;}
.y122{bottom:941.568000px;}
.ya5{bottom:942.468000px;}
.y52{bottom:950.568000px;}
.y7{bottom:951.084000px;}
.y29{bottom:960.309000px;}
.y121{bottom:960.318000px;}
.ya4{bottom:960.918000px;}
.y51{bottom:969.318000px;}
.y6{bottom:969.834000px;}
.y28{bottom:979.059000px;}
.y50{bottom:988.068000px;}
.ya3{bottom:988.368000px;}
.y5{bottom:988.584000px;}
.y3{bottom:992.719500px;}
.y27{bottom:1006.809000px;}
.y4f{bottom:1006.818000px;}
.y4{bottom:1007.334000px;}
.y2{bottom:1008.919500px;}
.y26{bottom:1043.977500px;}
.ha{height:22.381734px;}
.hc{height:34.125000px;}
.h3{height:38.206055px;}
.hb{height:38.390625px;}
.h5{height:44.573730px;}
.h2{height:44.789062px;}
.h10{height:45.619629px;}
.hd{height:46.148438px;}
.h9{height:46.696289px;}
.he{height:46.921875px;}
.h4{height:47.572244px;}
.h8{height:47.791992px;}
.hf{height:49.333453px;}
.h6{height:56.481445px;}
.h7{height:58.902683px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:180.708000px;}
.x8{left:197.716500px;}
.x5{left:202.330500px;}
.x6{left:213.526500px;}
.x7{left:231.732000px;}
.x9{left:285.115500px;}
.xa{left:412.230000px;}
.x3{left:471.261000px;}
.x2{left:483.541500px;}
.x1{left:694.762500px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.645333pt;}
.v4{vertical-align:19.536000pt;}
.v2{vertical-align:23.088000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.008165pt;}
.ls0{letter-spacing:0.014400pt;}
.ls5{letter-spacing:0.021333pt;}
.ls6{letter-spacing:0.305026pt;}
.ls4{letter-spacing:0.347002pt;}
.ls3{letter-spacing:0.456139pt;}
.ws2{word-spacing:-12.906667pt;}
.ws0{word-spacing:-12.320000pt;}
.ws6{word-spacing:-10.560000pt;}
.ws1{word-spacing:-8.892693pt;}
.ws5{word-spacing:-7.524587pt;}
.ws3{word-spacing:-6.156480pt;}
.ws4{word-spacing:0.000000pt;}
._26{margin-left:-7.681600pt;}
._17{margin-left:-6.669600pt;}
._11{margin-left:-5.099733pt;}
._13{margin-left:-3.835200pt;}
._0{margin-left:-2.836800pt;}
._1{margin-left:-1.136800pt;}
._2{width:1.157867pt;}
._3{width:2.234933pt;}
._d{width:3.375467pt;}
._c{width:4.332800pt;}
._10{width:5.409067pt;}
._b{width:6.827467pt;}
._a{width:7.732267pt;}
._5{width:9.410133pt;}
._7{width:10.788800pt;}
._6{width:11.755467pt;}
._9{width:14.379200pt;}
._8{width:16.057067pt;}
._4{width:17.494400pt;}
._f{width:19.201600pt;}
._1a{width:20.363200pt;}
._e{width:21.354667pt;}
._16{width:22.416533pt;}
._1b{width:24.018133pt;}
._1c{width:25.144533pt;}
._18{width:26.141867pt;}
._14{width:27.420800pt;}
._12{width:29.063467pt;}
._1d{width:30.200267pt;}
._1e{width:31.439467pt;}
._1f{width:33.544267pt;}
._23{width:34.754133pt;}
._19{width:35.757333pt;}
._20{width:41.670933pt;}
._24{width:42.690400pt;}
._25{width:48.932533pt;}
._15{width:65.292800pt;}
._22{width:84.122133pt;}
._21{width:107.581600pt;}
.fs6{font-size:27.984000pt;}
.fs2{font-size:32.648000pt;}
.fs8{font-size:34.202667pt;}
.fs4{font-size:40.421333pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:187.086667pt;}
.y4e{bottom:217.322667pt;}
.ycf{bottom:221.318667pt;}
.y100{bottom:221.616000pt;}
.y137{bottom:223.616000pt;}
.y25{bottom:224.644000pt;}
.y10b{bottom:228.949333pt;}
.y120{bottom:231.616000pt;}
.y6e{bottom:231.722667pt;}
.y4d{bottom:235.718667pt;}
.yff{bottom:238.282667pt;}
.y24{bottom:239.044000pt;}
.y136{bottom:240.282667pt;}
.y10a{bottom:245.616000pt;}
.y4c{bottom:246.122667pt;}
.y11f{bottom:248.282667pt;}
.y6d{bottom:250.118667pt;}
.y23{bottom:253.444000pt;}
.yfe{bottom:254.949333pt;}
.y135{bottom:256.949333pt;}
.y4b{bottom:260.522667pt;}
.y109{bottom:262.282667pt;}
.yc6{bottom:264.518667pt;}
.y11e{bottom:264.949333pt;}
.yfd{bottom:271.616000pt;}
.y22{bottom:271.840000pt;}
.y141{bottom:273.616000pt;}
.y6c{bottom:274.922667pt;}
.y4a{bottom:278.918667pt;}
.y108{bottom:278.949333pt;}
.y134{bottom:281.616000pt;}
.y21{bottom:286.240000pt;}
.yfc{bottom:288.282667pt;}
.y49{bottom:289.322667pt;}
.y11d{bottom:289.616000pt;}
.y81{bottom:293.318667pt;}
.y107{bottom:295.616000pt;}
.y133{bottom:298.282667pt;}
.yc5{bottom:303.349333pt;}
.ya2{bottom:303.616000pt;}
.y6b{bottom:303.722667pt;}
.yfb{bottom:304.949333pt;}
.y11c{bottom:306.282667pt;}
.y48{bottom:307.718667pt;}
.y106{bottom:312.282667pt;}
.y20{bottom:314.074667pt;}
.y140{bottom:314.949333pt;}
.y47{bottom:318.122667pt;}
.yc4{bottom:320.016000pt;}
.ya1{bottom:320.282667pt;}
.yfa{bottom:321.616000pt;}
.y82{bottom:322.118667pt;}
.y11b{bottom:322.949333pt;}
.y105{bottom:328.949333pt;}
.yce{bottom:329.616000pt;}
.y1f{bottom:330.741333pt;}
.y46{bottom:332.522667pt;}
.y6a{bottom:336.518667pt;}
.yc3{bottom:336.682667pt;}
.ya0{bottom:336.949333pt;}
.y132{bottom:339.616000pt;}
.y161{bottom:340.741333pt;}
.yf1{bottom:344.149333pt;}
.y104{bottom:345.616000pt;}
.ycd{bottom:346.282667pt;}
.y11a{bottom:347.616000pt;}
.y80{bottom:348.016000pt;}
.y45{bottom:350.918667pt;}
.yc2{bottom:353.349333pt;}
.y9f{bottom:353.616000pt;}
.y1e{bottom:355.408000pt;}
.y131{bottom:356.282667pt;}
.y160{bottom:357.408000pt;}
.yf0{bottom:360.816000pt;}
.y72{bottom:361.322667pt;}
.y103{bottom:362.282667pt;}
.ycc{bottom:362.949333pt;}
.y119{bottom:364.282667pt;}
.y7f{bottom:365.082667pt;}
.yc1{bottom:370.016000pt;}
.y9e{bottom:370.282667pt;}
.y1d{bottom:372.074667pt;}
.y13f{bottom:372.949333pt;}
.y71{bottom:375.722667pt;}
.yef{bottom:377.216000pt;}
.y102{bottom:378.949333pt;}
.ycb{bottom:379.616000pt;}
.y130{bottom:380.949333pt;}
.y15f{bottom:382.074667pt;}
.y7e{bottom:382.149333pt;}
.y44{bottom:382.274667pt;}
.yc0{bottom:386.682667pt;}
.y9d{bottom:386.949333pt;}
.y1c{bottom:388.741333pt;}
.y118{bottom:388.949333pt;}
.y70{bottom:390.122667pt;}
.yee{bottom:393.616000pt;}
.yd3{bottom:394.118667pt;}
.y101{bottom:395.616000pt;}
.yca{bottom:396.282667pt;}
.y12f{bottom:397.616000pt;}
.y15e{bottom:398.741333pt;}
.y7d{bottom:399.216000pt;}
.y9c{bottom:403.616000pt;}
.yd5{bottom:404.522667pt;}
.y1b{bottom:405.408000pt;}
.y117{bottom:405.616000pt;}
.y6f{bottom:408.518667pt;}
.y43{bottom:409.608000pt;}
.yed{bottom:410.016000pt;}
.ybf{bottom:411.349333pt;}
.yc9{bottom:412.949333pt;}
.y12e{bottom:414.282667pt;}
.y15d{bottom:415.408000pt;}
.y7c{bottom:416.282667pt;}
.y9b{bottom:420.282667pt;}
.y1a{bottom:422.074667pt;}
.y116{bottom:422.282667pt;}
.yd4{bottom:422.918667pt;}
.y42{bottom:426.274667pt;}
.yec{bottom:426.416000pt;}
.ybe{bottom:427.749333pt;}
.y69{bottom:429.616000pt;}
.y13e{bottom:430.949333pt;}
.y15c{bottom:432.074667pt;}
.yd2{bottom:433.322667pt;}
.y7b{bottom:433.349333pt;}
.y9a{bottom:436.949333pt;}
.y19{bottom:438.741333pt;}
.y115{bottom:438.949333pt;}
.yeb{bottom:442.816000pt;}
.y41{bottom:442.941333pt;}
.ybd{bottom:444.149333pt;}
.y68{bottom:446.282667pt;}
.y13d{bottom:447.616000pt;}
.yd1{bottom:447.722667pt;}
.y15b{bottom:448.741333pt;}
.y7a{bottom:450.416000pt;}
.y99{bottom:453.616000pt;}
.y18{bottom:455.408000pt;}
.y114{bottom:455.616000pt;}
.yea{bottom:459.216000pt;}
.y40{bottom:459.608000pt;}
.ybc{bottom:460.549333pt;}
.yd0{bottom:462.122667pt;}
.y67{bottom:462.949333pt;}
.y15a{bottom:465.408000pt;}
.y79{bottom:467.482667pt;}
.y98{bottom:470.282667pt;}
.y17{bottom:472.074667pt;}
.y12d{bottom:472.282667pt;}
.ye9{bottom:475.616000pt;}
.y3f{bottom:476.274667pt;}
.ybb{bottom:476.949333pt;}
.y66{bottom:479.616000pt;}
.y113{bottom:480.282667pt;}
.y159{bottom:482.074667pt;}
.y78{bottom:484.549333pt;}
.y97{bottom:486.949333pt;}
.yc8{bottom:487.616000pt;}
.y16{bottom:488.741333pt;}
.y12c{bottom:488.949333pt;}
.ye8{bottom:492.016000pt;}
.y3e{bottom:492.941333pt;}
.yba{bottom:493.349333pt;}
.yf9{bottom:496.282667pt;}
.y112{bottom:496.949333pt;}
.y158{bottom:498.741333pt;}
.y77{bottom:501.616000pt;}
.y96{bottom:503.616000pt;}
.y65{bottom:504.282667pt;}
.y15{bottom:505.408000pt;}
.ye7{bottom:508.416000pt;}
.y3d{bottom:509.608000pt;}
.yb9{bottom:509.749333pt;}
.yf8{bottom:512.949333pt;}
.y111{bottom:513.616000pt;}
.y157{bottom:515.408000pt;}
.y76{bottom:518.682667pt;}
.y95{bottom:520.282667pt;}
.y14{bottom:522.074667pt;}
.ye6{bottom:524.816000pt;}
.yb8{bottom:526.149333pt;}
.y3c{bottom:526.274667pt;}
.yc7{bottom:528.282667pt;}
.yf7{bottom:529.616000pt;}
.y12b{bottom:530.282667pt;}
.y156{bottom:532.074667pt;}
.y75{bottom:535.749333pt;}
.y94{bottom:536.949333pt;}
.y110{bottom:538.282667pt;}
.y13{bottom:538.741333pt;}
.ye5{bottom:541.216000pt;}
.yb7{bottom:542.549333pt;}
.y3b{bottom:542.941333pt;}
.y64{bottom:544.949333pt;}
.yf6{bottom:546.282667pt;}
.y155{bottom:548.741333pt;}
.y74{bottom:552.816000pt;}
.y93{bottom:553.616000pt;}
.y10f{bottom:554.949333pt;}
.y12{bottom:555.408000pt;}
.ye4{bottom:557.616000pt;}
.yb6{bottom:558.949333pt;}
.y3a{bottom:559.608000pt;}
.y63{bottom:561.616000pt;}
.yf5{bottom:562.949333pt;}
.y154{bottom:565.408000pt;}
.y73{bottom:569.882667pt;}
.y92{bottom:570.282667pt;}
.y10e{bottom:571.616000pt;}
.y11{bottom:572.074667pt;}
.ye3{bottom:574.016000pt;}
.yb5{bottom:575.349333pt;}
.y39{bottom:576.274667pt;}
.y62{bottom:578.282667pt;}
.yf4{bottom:579.616000pt;}
.y153{bottom:582.074667pt;}
.y91{bottom:586.949333pt;}
.y10d{bottom:588.282667pt;}
.y10{bottom:588.741333pt;}
.ye2{bottom:590.416000pt;}
.yb4{bottom:591.749333pt;}
.y38{bottom:592.941333pt;}
.y61{bottom:594.949333pt;}
.yf3{bottom:596.282667pt;}
.y152{bottom:598.741333pt;}
.y90{bottom:603.616000pt;}
.yf{bottom:605.408000pt;}
.ye1{bottom:606.816000pt;}
.yb3{bottom:608.149333pt;}
.y37{bottom:609.608000pt;}
.y60{bottom:611.616000pt;}
.y10c{bottom:612.949333pt;}
.y151{bottom:615.408000pt;}
.y8f{bottom:620.282667pt;}
.yf2{bottom:620.949333pt;}
.ye{bottom:622.074667pt;}
.ye0{bottom:623.216000pt;}
.yb2{bottom:624.549333pt;}
.y36{bottom:626.274667pt;}
.y5f{bottom:628.282667pt;}
.y12a{bottom:629.616000pt;}
.y150{bottom:632.074667pt;}
.y8e{bottom:636.949333pt;}
.yd{bottom:638.741333pt;}
.ydf{bottom:639.616000pt;}
.yb1{bottom:640.949333pt;}
.y35{bottom:642.941333pt;}
.y5e{bottom:644.949333pt;}
.y13c{bottom:646.282667pt;}
.y14f{bottom:648.741333pt;}
.y8d{bottom:653.616000pt;}
.y129{bottom:654.282667pt;}
.yc{bottom:655.408000pt;}
.yde{bottom:656.016000pt;}
.yb0{bottom:657.349333pt;}
.y34{bottom:659.608000pt;}
.y5d{bottom:661.616000pt;}
.y14e{bottom:665.408000pt;}
.y8c{bottom:670.282667pt;}
.y128{bottom:670.949333pt;}
.yb{bottom:672.074667pt;}
.ydd{bottom:672.416000pt;}
.yaf{bottom:673.749333pt;}
.y33{bottom:676.274667pt;}
.y5c{bottom:678.282667pt;}
.y14d{bottom:682.074667pt;}
.y8b{bottom:686.949333pt;}
.y127{bottom:687.616000pt;}
.ydc{bottom:688.816000pt;}
.yae{bottom:690.149333pt;}
.y32{bottom:692.941333pt;}
.y5b{bottom:694.949333pt;}
.y147{bottom:696.282667pt;}
.y14c{bottom:698.741333pt;}
.y8a{bottom:703.616000pt;}
.y13b{bottom:704.282667pt;}
.ydb{bottom:705.216000pt;}
.yad{bottom:706.549333pt;}
.y31{bottom:709.608000pt;}
.y5a{bottom:711.616000pt;}
.y126{bottom:712.282667pt;}
.y146{bottom:712.949333pt;}
.y14b{bottom:715.408000pt;}
.y89{bottom:720.282667pt;}
.y13a{bottom:720.949333pt;}
.yda{bottom:721.616000pt;}
.yac{bottom:722.949333pt;}
.y59{bottom:728.282667pt;}
.ya{bottom:728.741333pt;}
.y125{bottom:728.949333pt;}
.y30{bottom:736.941333pt;}
.y88{bottom:736.949333pt;}
.y145{bottom:737.616000pt;}
.yd9{bottom:738.016000pt;}
.yab{bottom:739.349333pt;}
.y14a{bottom:740.074667pt;}
.y58{bottom:744.949333pt;}
.y9{bottom:745.408000pt;}
.y124{bottom:745.616000pt;}
.y2f{bottom:753.608000pt;}
.y87{bottom:753.616000pt;}
.y144{bottom:754.282667pt;}
.yd8{bottom:754.416000pt;}
.yaa{bottom:755.749333pt;}
.y57{bottom:761.616000pt;}
.y123{bottom:762.282667pt;}
.y149{bottom:768.741333pt;}
.y2e{bottom:770.274667pt;}
.y86{bottom:770.282667pt;}
.yd7{bottom:770.816000pt;}
.y143{bottom:770.949333pt;}
.ya9{bottom:772.149333pt;}
.y56{bottom:778.282667pt;}
.y139{bottom:778.949333pt;}
.y148{bottom:785.408000pt;}
.y2d{bottom:786.941333pt;}
.y85{bottom:786.949333pt;}
.yd6{bottom:787.216000pt;}
.ya8{bottom:788.549333pt;}
.y55{bottom:794.949333pt;}
.y138{bottom:795.616000pt;}
.y2c{bottom:803.608000pt;}
.y84{bottom:803.616000pt;}
.ya7{bottom:804.949333pt;}
.y54{bottom:811.616000pt;}
.y142{bottom:812.282667pt;}
.y2b{bottom:820.274667pt;}
.y83{bottom:820.282667pt;}
.ya6{bottom:821.349333pt;}
.y53{bottom:828.282667pt;}
.y8{bottom:828.741333pt;}
.y2a{bottom:836.941333pt;}
.y122{bottom:836.949333pt;}
.ya5{bottom:837.749333pt;}
.y52{bottom:844.949333pt;}
.y7{bottom:845.408000pt;}
.y29{bottom:853.608000pt;}
.y121{bottom:853.616000pt;}
.ya4{bottom:854.149333pt;}
.y51{bottom:861.616000pt;}
.y6{bottom:862.074667pt;}
.y28{bottom:870.274667pt;}
.y50{bottom:878.282667pt;}
.ya3{bottom:878.549333pt;}
.y5{bottom:878.741333pt;}
.y3{bottom:882.417333pt;}
.y27{bottom:894.941333pt;}
.y4f{bottom:894.949333pt;}
.y4{bottom:895.408000pt;}
.y2{bottom:896.817333pt;}
.y26{bottom:927.980000pt;}
.ha{height:19.894875pt;}
.hc{height:30.333333pt;}
.h3{height:33.960938pt;}
.hb{height:34.125000pt;}
.h5{height:39.621094pt;}
.h2{height:39.812500pt;}
.h10{height:40.550781pt;}
.hd{height:41.020833pt;}
.h9{height:41.507812pt;}
.he{height:41.708333pt;}
.h4{height:42.286439pt;}
.h8{height:42.481771pt;}
.hf{height:43.851958pt;}
.h6{height:50.205729pt;}
.h7{height:52.357940pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:160.629333pt;}
.x8{left:175.748000pt;}
.x5{left:179.849333pt;}
.x6{left:189.801333pt;}
.x7{left:205.984000pt;}
.x9{left:253.436000pt;}
.xa{left:366.426667pt;}
.x3{left:418.898667pt;}
.x2{left:429.814667pt;}
.x1{left:617.566667pt;}
}




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