
    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_03d8333eafaf07f3510c45f6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_8fdf9bcc8bfe4b0e41479b3c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_3922257b8b31e07e5ae6de33.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2cbe5e4c7cc25cc82cfcc6cb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_a319fa95dbcbf5c75831d7df.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c03998cb2cc2e8aa5281c905.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5a41c7b8dc096b2293561b2c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_b3892d0b7fd41ae6c1eaf9bb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_f4d19be243c39079055ab1a9.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_3864b9c7f2bd11c685062c7f.woff')format("woff");}.ffa{font-family:ffa;line-height:1.065430;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.424000px;}
.lsc{letter-spacing:-0.243600px;}
.ls15{letter-spacing:-0.186600px;}
.lsb{letter-spacing:-0.186000px;}
.ls8{letter-spacing:-0.138000px;}
.lsd{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls13{letter-spacing:-0.084600px;}
.ls9{letter-spacing:-0.084000px;}
.ls16{letter-spacing:-0.011160px;}
.ls4{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.011160px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls2{letter-spacing:0.056160px;}
.ls11{letter-spacing:0.064800px;}
.lse{letter-spacing:0.074160px;}
.ls7{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.104280px;}
.ls1a{letter-spacing:0.118200px;}
.ls18{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.173400px;}
.lsa{letter-spacing:0.174000px;}
.ls3{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.200160px;}
.ls1c{letter-spacing:47.726640px;}
.ls12{letter-spacing:63.566640px;}
.ls1b{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws22{word-spacing:-60.120000px;}
.ws0{word-spacing:-21.345120px;}
.ws2{word-spacing:-14.493600px;}
.ws1d{word-spacing:-14.372400px;}
.ws20{word-spacing:-13.425600px;}
.ws4{word-spacing:-13.400400px;}
.ws1b{word-spacing:-13.399800px;}
.ws21{word-spacing:-13.344600px;}
.ws1e{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws1f{word-spacing:-13.215240px;}
.ws5{word-spacing:-13.040400px;}
.ws1c{word-spacing:-13.039800px;}
.ws6{word-spacing:-12.982800px;}
.ws1{word-spacing:-11.880000px;}
.ws14{word-spacing:-0.480000px;}
.ws18{word-spacing:-0.300000px;}
.ws17{word-spacing:-0.240000px;}
.wsc{word-spacing:-0.180000px;}
.wsa{word-spacing:-0.144000px;}
.wsb{word-spacing:-0.126000px;}
.ws8{word-spacing:-0.102000px;}
.ws9{word-spacing:0.000000px;}
.ws1a{word-spacing:0.030000px;}
.wse{word-spacing:0.090000px;}
.ws15{word-spacing:0.096000px;}
.ws12{word-spacing:0.120000px;}
.ws11{word-spacing:0.132000px;}
.wsf{word-spacing:0.168000px;}
.ws16{word-spacing:0.180000px;}
.ws19{word-spacing:0.216000px;}
.ws13{word-spacing:0.240000px;}
.ws10{word-spacing:0.252000px;}
.wsd{word-spacing:0.360000px;}
.ws7{word-spacing:4.304880px;}
._11{margin-left:-6.257865px;}
._e{margin-left:-5.050080px;}
._15{margin-left:-3.908040px;}
._3{margin-left:-2.765400px;}
._1{margin-left:-1.004032px;}
._0{width:1.025985px;}
._2{width:2.915790px;}
._5{width:4.418610px;}
._a{width:5.924966px;}
._9{width:7.033800px;}
._7{width:8.898000px;}
._8{width:10.821600px;}
._6{width:12.146033px;}
._b{width:14.548800px;}
._4{width:15.751200px;}
._d{width:17.494920px;}
._c{width:23.386680px;}
._14{width:24.390712px;}
._f{width:25.551000px;}
._10{width:41.182200px;}
._12{width:102.684960px;}
._13{width:103.707000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:43.482000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y97{bottom:7.830000px;}
.yb2{bottom:7.860000px;}
.y94{bottom:7.920000px;}
.y89{bottom:8.190000px;}
.y8b{bottom:8.730000px;}
.y2{bottom:62.877000px;}
.y29{bottom:74.190000px;}
.y1{bottom:96.357000px;}
.yad{bottom:128.820000px;}
.y27{bottom:132.600000px;}
.y85{bottom:138.090000px;}
.y59{bottom:141.150000px;}
.y26{bottom:150.150000px;}
.y84{bottom:155.640000px;}
.y58{bottom:158.790000px;}
.yd4{bottom:160.230000px;}
.yac{bottom:164.370000px;}
.y25{bottom:167.790000px;}
.y57{bottom:177.150000px;}
.yd3{bottom:177.780000px;}
.yab{bottom:181.920000px;}
.y83{bottom:191.280000px;}
.y56{bottom:195.600000px;}
.y24{bottom:203.340000px;}
.yd2{bottom:204.690000px;}
.y82{bottom:208.830000px;}
.yaa{bottom:216.840000px;}
.y23{bottom:220.890000px;}
.y55{bottom:223.050000px;}
.y81{bottom:226.380000px;}
.ya9{bottom:228.990000px;}
.y22{bottom:238.530000px;}
.yd1{bottom:242.040000px;}
.y80{bottom:244.020000px;}
.y21{bottom:256.080000px;}
.ya8{bottom:256.350000px;}
.yf8{bottom:257.430000px;}
.y54{bottom:258.960000px;}
.y7f{bottom:270.570000px;}
.y20{bottom:273.630000px;}
.yf7{bottom:275.070000px;}
.ya7{bottom:283.710000px;}
.yd0{bottom:290.370000px;}
.y1f{bottom:291.270000px;}
.yf6{bottom:301.620000px;}
.y7e{bottom:306.030000px;}
.y53{bottom:307.200000px;}
.ycf{bottom:307.920000px;}
.y1e{bottom:308.820000px;}
.ya6{bottom:310.980000px;}
.yf5{bottom:319.260000px;}
.y7d{bottom:323.670000px;}
.y52{bottom:324.840000px;}
.y1d{bottom:335.730000px;}
.yf4{bottom:336.810000px;}
.y7c{bottom:342.120000px;}
.y51{bottom:342.390000px;}
.yce{bottom:343.470000px;}
.ya5{bottom:359.670000px;}
.y7b{bottom:359.760000px;}
.y50{bottom:359.940000px;}
.ycd{bottom:361.110000px;}
.yf3{bottom:363.360000px;}
.y7a{bottom:377.310000px;}
.ycc{bottom:378.660000px;}
.yf2{bottom:381.000000px;}
.y1c{bottom:384.330000px;}
.ya4{bottom:395.310000px;}
.y4f{bottom:395.580000px;}
.y79{bottom:395.760000px;}
.yf1{bottom:398.550000px;}
.ya3{bottom:412.860000px;}
.y4e{bottom:413.130000px;}
.y78{bottom:413.310000px;}
.ycb{bottom:414.300000px;}
.y1b{bottom:421.410000px;}
.yf0{bottom:425.190000px;}
.ya2{bottom:430.500000px;}
.y4d{bottom:430.770000px;}
.y77{bottom:430.860000px;}
.yca{bottom:431.850000px;}
.y1a{bottom:438.960000px;}
.yef{bottom:442.740000px;}
.y4c{bottom:448.320000px;}
.yc9{bottom:449.400000px;}
.y19{bottom:456.510000px;}
.y76{bottom:458.310000px;}
.yee{bottom:460.290000px;}
.ya1{bottom:465.330000px;}
.y4b{bottom:465.870000px;}
.yc8{bottom:467.040000px;}
.y18{bottom:474.180000px;}
.ya0{bottom:477.510000px;}
.y4a{bottom:483.540000px;}
.yed{bottom:486.960000px;}
.y17{bottom:491.730000px;}
.y75{bottom:493.890000px;}
.yc7{bottom:493.980000px;}
.y49{bottom:501.090000px;}
.yec{bottom:504.510000px;}
.y9f{bottom:504.870000px;}
.y16{bottom:509.370000px;}
.y74{bottom:512.340000px;}
.y48{bottom:518.730000px;}
.yeb{bottom:522.150000px;}
.y9e{bottom:532.230000px;}
.y73{bottom:539.700000px;}
.yc6{bottom:542.220000px;}
.y15{bottom:544.920000px;}
.yea{bottom:548.700000px;}
.y47{bottom:554.280000px;}
.y9d{bottom:559.500000px;}
.yc5{bottom:559.770000px;}
.y14{bottom:562.470000px;}
.ye9{bottom:566.250000px;}
.y46{bottom:571.830000px;}
.y72{bottom:575.250000px;}
.yc4{bottom:577.410000px;}
.y13{bottom:580.110000px;}
.y9c{bottom:586.860000px;}
.y45{bottom:589.470000px;}
.ye8{bottom:592.890000px;}
.y71{bottom:593.700000px;}
.yc3{bottom:594.960000px;}
.y12{bottom:597.660000px;}
.y44{bottom:607.020000px;}
.ye7{bottom:610.440000px;}
.y70{bottom:612.150000px;}
.y11{bottom:615.210000px;}
.ye6{bottom:628.080000px;}
.yc2{bottom:630.600000px;}
.y43{bottom:633.930000px;}
.y9b{bottom:635.550000px;}
.y6f{bottom:639.600000px;}
.yc1{bottom:648.150000px;}
.y10{bottom:650.850000px;}
.ye5{bottom:654.630000px;}
.yc0{bottom:665.700000px;}
.yf{bottom:668.400000px;}
.y9a{bottom:671.190000px;}
.ye4{bottom:672.180000px;}
.y6e{bottom:675.150000px;}
.y42{bottom:682.260000px;}
.ybf{bottom:683.340000px;}
.ye{bottom:686.040000px;}
.y99{bottom:688.740000px;}
.ye3{bottom:689.820000px;}
.y6d{bottom:693.600000px;}
.y41{bottom:699.810000px;}
.yd{bottom:703.590000px;}
.y6c{bottom:711.960000px;}
.ye2{bottom:716.370000px;}
.y40{bottom:717.360000px;}
.ybe{bottom:718.890000px;}
.yc{bottom:721.140000px;}
.y98{bottom:723.570000px;}
.y6b{bottom:730.410000px;}
.ye1{bottom:733.920000px;}
.y3f{bottom:735.000000px;}
.y96{bottom:735.810000px;}
.ybd{bottom:736.530000px;}
.yb{bottom:738.780000px;}
.ye0{bottom:751.560000px;}
.y3e{bottom:752.550000px;}
.ybc{bottom:754.080000px;}
.ya{bottom:756.330000px;}
.y6a{bottom:757.860000px;}
.y95{bottom:763.080000px;}
.y3d{bottom:770.190000px;}
.ybb{bottom:771.630000px;}
.ydf{bottom:778.110000px;}
.y9{bottom:783.330000px;}
.y3c{bottom:787.740000px;}
.y93{bottom:790.440000px;}
.y69{bottom:793.410000px;}
.yde{bottom:795.750000px;}
.y3b{bottom:805.290000px;}
.yba{bottom:807.270000px;}
.y68{bottom:811.050000px;}
.ydd{bottom:822.660000px;}
.y3a{bottom:822.930000px;}
.yb9{bottom:824.820000px;}
.y67{bottom:828.600000px;}
.y8{bottom:829.840500px;}
.y92{bottom:839.130000px;}
.yb8{bottom:842.460000px;}
.y66{bottom:846.150000px;}
.y39{bottom:858.480000px;}
.y65{bottom:863.790000px;}
.y7{bottom:865.155000px;}
.yb7{bottom:869.370000px;}
.ydc{bottom:870.900000px;}
.y91{bottom:874.770000px;}
.y38{bottom:876.030000px;}
.y64{bottom:890.340000px;}
.y90{bottom:892.320000px;}
.y37{bottom:893.670000px;}
.ydb{bottom:897.810000px;}
.y6{bottom:900.469500px;}
.y36{bottom:911.220000px;}
.yb6{bottom:917.610000px;}
.y63{bottom:925.890000px;}
.y8f{bottom:927.150000px;}
.y35{bottom:928.860000px;}
.yda{bottom:934.800000px;}
.yb5{bottom:935.160000px;}
.y5{bottom:935.967000px;}
.y8e{bottom:939.390000px;}
.y62{bottom:943.530000px;}
.y61{bottom:961.080000px;}
.yd9{bottom:961.710000px;}
.y34{bottom:964.410000px;}
.y8d{bottom:967.020000px;}
.yb4{bottom:970.080000px;}
.y4{bottom:971.688000px;}
.y33{bottom:981.960000px;}
.yb3{bottom:982.230000px;}
.y60{bottom:987.630000px;}
.y8c{bottom:995.280000px;}
.yd8{bottom:998.790000px;}
.y32{bottom:999.600000px;}
.yb1{bottom:1009.590000px;}
.y3{bottom:1012.230000px;}
.yd7{bottom:1016.370000px;}
.y31{bottom:1017.180000px;}
.y5f{bottom:1023.210000px;}
.y8a{bottom:1023.480000px;}
.y30{bottom:1034.820000px;}
.yb0{bottom:1036.890000px;}
.y5e{bottom:1040.850000px;}
.y88{bottom:1051.650000px;}
.yd6{bottom:1051.920000px;}
.y2f{bottom:1052.370000px;}
.y5d{bottom:1059.300000px;}
.yaf{bottom:1064.250000px;}
.yd5{bottom:1069.560000px;}
.y2e{bottom:1069.920000px;}
.y5c{bottom:1076.850000px;}
.y2d{bottom:1087.560000px;}
.yae{bottom:1091.610000px;}
.y5b{bottom:1095.300000px;}
.y87{bottom:1100.700000px;}
.y2c{bottom:1105.110000px;}
.y5a{bottom:1112.850000px;}
.y2b{bottom:1122.750000px;}
.y86{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hf{height:26.550000px;}
.h10{height:26.580000px;}
.he{height:26.640000px;}
.ha{height:26.910000px;}
.hb{height:27.450000px;}
.hc{height:27.480000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hd{height:40.539023px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h9{height:61.793886px;}
.h8{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:22.770000px;}
.we{width:32.760000px;}
.wf{width:35.940000px;}
.wc{width:40.770000px;}
.wb{width:40.890000px;}
.w5{width:43.470000px;}
.wa{width:44.100000px;}
.w8{width:48.720000px;}
.wd{width:50.940000px;}
.w4{width:51.780000px;}
.w6{width:120.960000px;}
.w9{width:146.340000px;}
.w3{width:153.990000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:3.870000px;}
.x7{left:7.740000px;}
.x1{left:67.900500px;}
.x4{left:95.039987px;}
.x1c{left:111.239987px;}
.x5{left:122.039987px;}
.x2{left:209.819987px;}
.x10{left:264.630000px;}
.xa{left:274.439987px;}
.x16{left:287.219987px;}
.x6{left:321.240000px;}
.xb{left:349.680000px;}
.x17{left:363.630000px;}
.x1b{left:381.449987px;}
.xf{left:410.249987px;}
.x11{left:411.780000px;}
.x18{left:415.380000px;}
.x19{left:448.860000px;}
.x12{left:456.600000px;}
.xd{left:471.360000px;}
.x8{left:476.040000px;}
.x1a{left:493.680000px;}
.xe{left:494.940000px;}
.x13{left:501.420000px;}
.x9{left:528.540000px;}
.x14{left:543.030000px;}
.x15{left:584.610000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.154667pt;}
.lsc{letter-spacing:-0.216533pt;}
.ls15{letter-spacing:-0.165867pt;}
.lsb{letter-spacing:-0.165333pt;}
.ls8{letter-spacing:-0.122667pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls13{letter-spacing:-0.075200pt;}
.ls9{letter-spacing:-0.074667pt;}
.ls16{letter-spacing:-0.009920pt;}
.ls4{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.009920pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls2{letter-spacing:0.049920pt;}
.ls11{letter-spacing:0.057600pt;}
.lse{letter-spacing:0.065920pt;}
.ls7{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.092693pt;}
.ls1a{letter-spacing:0.105067pt;}
.ls18{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.154133pt;}
.lsa{letter-spacing:0.154667pt;}
.ls3{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.177920pt;}
.ls1c{letter-spacing:42.423680pt;}
.ls12{letter-spacing:56.503680pt;}
.ls1b{letter-spacing:71.863680pt;}
.ws22{word-spacing:-53.440000pt;}
.ws0{word-spacing:-18.973440pt;}
.ws2{word-spacing:-12.883200pt;}
.ws1d{word-spacing:-12.775467pt;}
.ws20{word-spacing:-11.933867pt;}
.ws4{word-spacing:-11.911467pt;}
.ws1b{word-spacing:-11.910933pt;}
.ws21{word-spacing:-11.861867pt;}
.ws1e{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws1f{word-spacing:-11.746880pt;}
.ws5{word-spacing:-11.591467pt;}
.ws1c{word-spacing:-11.590933pt;}
.ws6{word-spacing:-11.540267pt;}
.ws1{word-spacing:-10.560000pt;}
.ws14{word-spacing:-0.426667pt;}
.ws18{word-spacing:-0.266667pt;}
.ws17{word-spacing:-0.213333pt;}
.wsc{word-spacing:-0.160000pt;}
.wsa{word-spacing:-0.128000pt;}
.wsb{word-spacing:-0.112000pt;}
.ws8{word-spacing:-0.090667pt;}
.ws9{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.026667pt;}
.wse{word-spacing:0.080000pt;}
.ws15{word-spacing:0.085333pt;}
.ws12{word-spacing:0.106667pt;}
.ws11{word-spacing:0.117333pt;}
.wsf{word-spacing:0.149333pt;}
.ws16{word-spacing:0.160000pt;}
.ws19{word-spacing:0.192000pt;}
.ws13{word-spacing:0.213333pt;}
.ws10{word-spacing:0.224000pt;}
.wsd{word-spacing:0.320000pt;}
.ws7{word-spacing:3.826560pt;}
._11{margin-left:-5.562547pt;}
._e{margin-left:-4.488960pt;}
._15{margin-left:-3.473814pt;}
._3{margin-left:-2.458133pt;}
._1{margin-left:-0.892473pt;}
._0{width:0.911987pt;}
._2{width:2.591813pt;}
._5{width:3.927653pt;}
._a{width:5.266637pt;}
._9{width:6.252266pt;}
._7{width:7.909334pt;}
._8{width:9.619200pt;}
._6{width:10.796473pt;}
._b{width:12.932266pt;}
._4{width:14.001066pt;}
._d{width:15.551040pt;}
._c{width:20.788160pt;}
._14{width:21.680633pt;}
._f{width:22.712000pt;}
._10{width:36.606400pt;}
._12{width:91.275520pt;}
._13{width:92.184000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:38.650667pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:6.960000pt;}
.yb2{bottom:6.986667pt;}
.y94{bottom:7.040000pt;}
.y89{bottom:7.280000pt;}
.y8b{bottom:7.760000pt;}
.y2{bottom:55.890667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:85.650667pt;}
.yad{bottom:114.506667pt;}
.y27{bottom:117.866667pt;}
.y85{bottom:122.746667pt;}
.y59{bottom:125.466667pt;}
.y26{bottom:133.466667pt;}
.y84{bottom:138.346667pt;}
.y58{bottom:141.146667pt;}
.yd4{bottom:142.426667pt;}
.yac{bottom:146.106667pt;}
.y25{bottom:149.146667pt;}
.y57{bottom:157.466667pt;}
.yd3{bottom:158.026667pt;}
.yab{bottom:161.706667pt;}
.y83{bottom:170.026667pt;}
.y56{bottom:173.866667pt;}
.y24{bottom:180.746667pt;}
.yd2{bottom:181.946667pt;}
.y82{bottom:185.626667pt;}
.yaa{bottom:192.746667pt;}
.y23{bottom:196.346667pt;}
.y55{bottom:198.266667pt;}
.y81{bottom:201.226667pt;}
.ya9{bottom:203.546667pt;}
.y22{bottom:212.026667pt;}
.yd1{bottom:215.146667pt;}
.y80{bottom:216.906667pt;}
.y21{bottom:227.626667pt;}
.ya8{bottom:227.866667pt;}
.yf8{bottom:228.826667pt;}
.y54{bottom:230.186667pt;}
.y7f{bottom:240.506667pt;}
.y20{bottom:243.226667pt;}
.yf7{bottom:244.506667pt;}
.ya7{bottom:252.186667pt;}
.yd0{bottom:258.106667pt;}
.y1f{bottom:258.906667pt;}
.yf6{bottom:268.106667pt;}
.y7e{bottom:272.026667pt;}
.y53{bottom:273.066667pt;}
.ycf{bottom:273.706667pt;}
.y1e{bottom:274.506667pt;}
.ya6{bottom:276.426667pt;}
.yf5{bottom:283.786667pt;}
.y7d{bottom:287.706667pt;}
.y52{bottom:288.746667pt;}
.y1d{bottom:298.426667pt;}
.yf4{bottom:299.386667pt;}
.y7c{bottom:304.106667pt;}
.y51{bottom:304.346667pt;}
.yce{bottom:305.306667pt;}
.ya5{bottom:319.706667pt;}
.y7b{bottom:319.786667pt;}
.y50{bottom:319.946667pt;}
.ycd{bottom:320.986667pt;}
.yf3{bottom:322.986667pt;}
.y7a{bottom:335.386667pt;}
.ycc{bottom:336.586667pt;}
.yf2{bottom:338.666667pt;}
.y1c{bottom:341.626667pt;}
.ya4{bottom:351.386667pt;}
.y4f{bottom:351.626667pt;}
.y79{bottom:351.786667pt;}
.yf1{bottom:354.266667pt;}
.ya3{bottom:366.986667pt;}
.y4e{bottom:367.226667pt;}
.y78{bottom:367.386667pt;}
.ycb{bottom:368.266667pt;}
.y1b{bottom:374.586667pt;}
.yf0{bottom:377.946667pt;}
.ya2{bottom:382.666667pt;}
.y4d{bottom:382.906667pt;}
.y77{bottom:382.986667pt;}
.yca{bottom:383.866667pt;}
.y1a{bottom:390.186667pt;}
.yef{bottom:393.546667pt;}
.y4c{bottom:398.506667pt;}
.yc9{bottom:399.466667pt;}
.y19{bottom:405.786667pt;}
.y76{bottom:407.386667pt;}
.yee{bottom:409.146667pt;}
.ya1{bottom:413.626667pt;}
.y4b{bottom:414.106667pt;}
.yc8{bottom:415.146667pt;}
.y18{bottom:421.493333pt;}
.ya0{bottom:424.453333pt;}
.y4a{bottom:429.813333pt;}
.yed{bottom:432.853333pt;}
.y17{bottom:437.093333pt;}
.y75{bottom:439.013333pt;}
.yc7{bottom:439.093333pt;}
.y49{bottom:445.413333pt;}
.yec{bottom:448.453333pt;}
.y9f{bottom:448.773333pt;}
.y16{bottom:452.773333pt;}
.y74{bottom:455.413333pt;}
.y48{bottom:461.093333pt;}
.yeb{bottom:464.133333pt;}
.y9e{bottom:473.093333pt;}
.y73{bottom:479.733333pt;}
.yc6{bottom:481.973333pt;}
.y15{bottom:484.373333pt;}
.yea{bottom:487.733333pt;}
.y47{bottom:492.693333pt;}
.y9d{bottom:497.333333pt;}
.yc5{bottom:497.573333pt;}
.y14{bottom:499.973333pt;}
.ye9{bottom:503.333333pt;}
.y46{bottom:508.293333pt;}
.y72{bottom:511.333333pt;}
.yc4{bottom:513.253333pt;}
.y13{bottom:515.653333pt;}
.y9c{bottom:521.653333pt;}
.y45{bottom:523.973333pt;}
.ye8{bottom:527.013333pt;}
.y71{bottom:527.733333pt;}
.yc3{bottom:528.853333pt;}
.y12{bottom:531.253333pt;}
.y44{bottom:539.573333pt;}
.ye7{bottom:542.613333pt;}
.y70{bottom:544.133333pt;}
.y11{bottom:546.853333pt;}
.ye6{bottom:558.293333pt;}
.yc2{bottom:560.533333pt;}
.y43{bottom:563.493333pt;}
.y9b{bottom:564.933333pt;}
.y6f{bottom:568.533333pt;}
.yc1{bottom:576.133333pt;}
.y10{bottom:578.533333pt;}
.ye5{bottom:581.893333pt;}
.yc0{bottom:591.733333pt;}
.yf{bottom:594.133333pt;}
.y9a{bottom:596.613333pt;}
.ye4{bottom:597.493333pt;}
.y6e{bottom:600.133333pt;}
.y42{bottom:606.453333pt;}
.ybf{bottom:607.413333pt;}
.ye{bottom:609.813333pt;}
.y99{bottom:612.213333pt;}
.ye3{bottom:613.173333pt;}
.y6d{bottom:616.533333pt;}
.y41{bottom:622.053333pt;}
.yd{bottom:625.413333pt;}
.y6c{bottom:632.853333pt;}
.ye2{bottom:636.773333pt;}
.y40{bottom:637.653333pt;}
.ybe{bottom:639.013333pt;}
.yc{bottom:641.013333pt;}
.y98{bottom:643.173333pt;}
.y6b{bottom:649.253333pt;}
.ye1{bottom:652.373333pt;}
.y3f{bottom:653.333333pt;}
.y96{bottom:654.053333pt;}
.ybd{bottom:654.693333pt;}
.yb{bottom:656.693333pt;}
.ye0{bottom:668.053333pt;}
.y3e{bottom:668.933333pt;}
.ybc{bottom:670.293333pt;}
.ya{bottom:672.293333pt;}
.y6a{bottom:673.653333pt;}
.y95{bottom:678.293333pt;}
.y3d{bottom:684.613333pt;}
.ybb{bottom:685.893333pt;}
.ydf{bottom:691.653333pt;}
.y9{bottom:696.293333pt;}
.y3c{bottom:700.213333pt;}
.y93{bottom:702.613333pt;}
.y69{bottom:705.253333pt;}
.yde{bottom:707.333333pt;}
.y3b{bottom:715.813333pt;}
.yba{bottom:717.573333pt;}
.y68{bottom:720.933333pt;}
.ydd{bottom:731.253333pt;}
.y3a{bottom:731.493333pt;}
.yb9{bottom:733.173333pt;}
.y67{bottom:736.533333pt;}
.y8{bottom:737.636000pt;}
.y92{bottom:745.893333pt;}
.yb8{bottom:748.853333pt;}
.y66{bottom:752.133333pt;}
.y39{bottom:763.093333pt;}
.y65{bottom:767.813333pt;}
.y7{bottom:769.026667pt;}
.yb7{bottom:772.773333pt;}
.ydc{bottom:774.133333pt;}
.y91{bottom:777.573333pt;}
.y38{bottom:778.693333pt;}
.y64{bottom:791.413333pt;}
.y90{bottom:793.173333pt;}
.y37{bottom:794.373333pt;}
.ydb{bottom:798.053333pt;}
.y6{bottom:800.417333pt;}
.y36{bottom:809.973333pt;}
.yb6{bottom:815.653333pt;}
.y63{bottom:823.013333pt;}
.y8f{bottom:824.133333pt;}
.y35{bottom:825.653333pt;}
.yda{bottom:830.933333pt;}
.yb5{bottom:831.253333pt;}
.y5{bottom:831.970667pt;}
.y8e{bottom:835.013333pt;}
.y62{bottom:838.693333pt;}
.y61{bottom:854.293333pt;}
.yd9{bottom:854.853333pt;}
.y34{bottom:857.253333pt;}
.y8d{bottom:859.573333pt;}
.yb4{bottom:862.293333pt;}
.y4{bottom:863.722667pt;}
.y33{bottom:872.853333pt;}
.yb3{bottom:873.093333pt;}
.y60{bottom:877.893333pt;}
.y8c{bottom:884.693333pt;}
.yd8{bottom:887.813333pt;}
.y32{bottom:888.533333pt;}
.yb1{bottom:897.413333pt;}
.y3{bottom:899.760000pt;}
.yd7{bottom:903.440000pt;}
.y31{bottom:904.160000pt;}
.y5f{bottom:909.520000pt;}
.y8a{bottom:909.760000pt;}
.y30{bottom:919.840000pt;}
.yb0{bottom:921.680000pt;}
.y5e{bottom:925.200000pt;}
.y88{bottom:934.800000pt;}
.yd6{bottom:935.040000pt;}
.y2f{bottom:935.440000pt;}
.y5d{bottom:941.600000pt;}
.yaf{bottom:946.000000pt;}
.yd5{bottom:950.720000pt;}
.y2e{bottom:951.040000pt;}
.y5c{bottom:957.200000pt;}
.y2d{bottom:966.720000pt;}
.yae{bottom:970.320000pt;}
.y5b{bottom:973.600000pt;}
.y87{bottom:978.400000pt;}
.y2c{bottom:982.320000pt;}
.y5a{bottom:989.200000pt;}
.y2b{bottom:998.000000pt;}
.y86{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.h10{height:23.626667pt;}
.he{height:23.680000pt;}
.ha{height:23.920000pt;}
.hb{height:24.400000pt;}
.hc{height:24.426667pt;}
.h2{height:26.686563pt;}
.h3{height:33.867188pt;}
.hd{height:36.034687pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h9{height:54.927899pt;}
.h8{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:20.240000pt;}
.we{width:29.120000pt;}
.wf{width:31.946667pt;}
.wc{width:36.240000pt;}
.wb{width:36.346667pt;}
.w5{width:38.640000pt;}
.wa{width:39.200000pt;}
.w8{width:43.306667pt;}
.wd{width:45.280000pt;}
.w4{width:46.026667pt;}
.w6{width:107.520000pt;}
.w9{width:130.080000pt;}
.w3{width:136.880000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:3.440000pt;}
.x7{left:6.880000pt;}
.x1{left:60.356000pt;}
.x4{left:84.479988pt;}
.x1c{left:98.879988pt;}
.x5{left:108.479988pt;}
.x2{left:186.506655pt;}
.x10{left:235.226667pt;}
.xa{left:243.946655pt;}
.x16{left:255.306655pt;}
.x6{left:285.546667pt;}
.xb{left:310.826667pt;}
.x17{left:323.226667pt;}
.x1b{left:339.066655pt;}
.xf{left:364.666655pt;}
.x11{left:366.026667pt;}
.x18{left:369.226667pt;}
.x19{left:398.986667pt;}
.x12{left:405.866667pt;}
.xd{left:418.986667pt;}
.x8{left:423.146667pt;}
.x1a{left:438.826667pt;}
.xe{left:439.946667pt;}
.x13{left:445.706667pt;}
.x9{left:469.813333pt;}
.x14{left:482.693333pt;}
.x15{left:519.653333pt;}
.x3{left:711.413322pt;}
}




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