
    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_f5ccfdf4a1fe09cbf15a48d8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_b84ea7a5c8412b8b689f38c0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_ea62c87bc910bf7afdebf769.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_da99a352699d78c1501c4f46.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a6f04a495b779942630cd956.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_258a9e2d17ba1df34ecf0819.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_7cb042fd15c14350345414b4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937988;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_d5ecfb623ba9a42e57d67dbb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.097168;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_9fc66b4d52f8002ad0840858.woff2')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_b40a01279d19c4aad7a05392.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.758789;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:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.690000px;}
.ls21{letter-spacing:-0.428400px;}
.ls29{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.288000px;}
.ls24{letter-spacing:-0.216000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.028080px;}
.ls28{letter-spacing:0.037440px;}
.ls1d{letter-spacing:0.049440px;}
.ls5{letter-spacing:0.072000px;}
.ls2a{letter-spacing:0.144000px;}
.lse{letter-spacing:0.252720px;}
.ls10{letter-spacing:0.341400px;}
.ls4{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.432000px;}
.ls1b{letter-spacing:0.504000px;}
.ls15{letter-spacing:0.648000px;}
.ls14{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.750000px;}
.ls18{letter-spacing:0.756000px;}
.ls16{letter-spacing:0.864000px;}
.ls9{letter-spacing:1.080000px;}
.lsd{letter-spacing:1.190640px;}
.lsb{letter-spacing:1.224000px;}
.ls8{letter-spacing:1.684800px;}
.ls17{letter-spacing:2.160000px;}
.lsa{letter-spacing:4.140000px;}
.lsf{letter-spacing:9.180000px;}
.lsc{letter-spacing:9.900000px;}
.ls11{letter-spacing:11.340000px;}
.ls26{letter-spacing:16.560000px;}
.ls27{letter-spacing:17.280000px;}
.ls12{letter-spacing:30.384000px;}
.ls20{letter-spacing:36.540000px;}
.ls1{letter-spacing:41.040000px;}
.ls0{letter-spacing:43.200000px;}
.ls13{letter-spacing:48.960000px;}
.ls1f{letter-spacing:50.340000px;}
.ls25{letter-spacing:54.144000px;}
.ls23{letter-spacing:56.280000px;}
.ls22{letter-spacing:65.340000px;}
.ls2{letter-spacing:65.700000px;}
.ls1e{letter-spacing:122.021280px;}
.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;}
}
.ws7{word-spacing:-21.816000px;}
.ws0{word-spacing:-21.420000px;}
.ws8{word-spacing:-21.401400px;}
.wsd{word-spacing:-21.097440px;}
.ws4{word-spacing:-21.088080px;}
.ws3{word-spacing:-21.060000px;}
.ws5{word-spacing:-20.370000px;}
.wsa{word-spacing:-18.720000px;}
.wsb{word-spacing:-18.648000px;}
.wsc{word-spacing:-18.432000px;}
.wsf{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.712000px;}
.wse{word-spacing:-17.640000px;}
.ws6{word-spacing:0.000000px;}
._3a{margin-left:-12.816000px;}
._0{margin-left:-1.010880px;}
._1{width:1.598880px;}
._f{width:2.734800px;}
._2e{width:4.079280px;}
._21{width:5.271360px;}
._1a{width:7.076160px;}
._1b{width:8.255520px;}
._25{width:10.000080px;}
._16{width:11.288160px;}
._26{width:12.788040px;}
._e{width:14.405040px;}
._1e{width:16.494000px;}
._1d{width:17.713920px;}
._17{width:19.712160px;}
._45{width:21.497760px;}
._14{width:22.660560px;}
._13{width:23.671440px;}
._1c{width:25.777440px;}
._20{width:27.126960px;}
._1f{width:28.189920px;}
._22{width:30.329760px;}
._4{width:31.392000px;}
._4a{width:32.853600px;}
._5{width:34.044000px;}
._38{width:36.223200px;}
._10{width:37.655280px;}
._49{width:39.022560px;}
._8{width:40.176000px;}
._9{width:41.880000px;}
._36{width:43.092720px;}
._44{width:44.856000px;}
._2d{width:46.524480px;}
._11{width:49.785840px;}
._12{width:50.880960px;}
._3b{width:52.704000px;}
._37{width:53.913600px;}
._47{width:56.016000px;}
._32{width:57.138240px;}
._a{width:59.544000px;}
._b{width:60.576000px;}
._15{width:62.062560px;}
._7{width:63.866880px;}
._6{width:65.160000px;}
._18{width:66.203280px;}
._c{width:67.680000px;}
._d{width:68.976000px;}
._39{width:70.930080px;}
._24{width:74.177040px;}
._23{width:75.246480px;}
._43{width:83.232000px;}
._3{width:91.130880px;}
._2{width:92.712000px;}
._19{width:95.528160px;}
._28{width:97.488000px;}
._34{width:101.808000px;}
._3c{width:108.072000px;}
._2b{width:123.192000px;}
._2a{width:124.200000px;}
._42{width:131.832000px;}
._27{width:155.592000px;}
._31{width:156.600000px;}
._3f{width:175.500000px;}
._3d{width:181.944000px;}
._40{width:183.996000px;}
._29{width:200.304000px;}
._33{width:202.248000px;}
._41{width:204.336000px;}
._2c{width:226.440000px;}
._2f{width:228.888000px;}
._46{width:263.592000px;}
._48{width:279.432000px;}
._3e{width:303.408000px;}
._35{width:350.064000px;}
._30{width:356.112000px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc6{color:transparent;}
.fc2{color:rgb(7,57,118);}
.fc7{color:rgb(34,34,34);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y43{bottom:3.960000px;}
.y8e{bottom:7.920000px;}
.y91{bottom:9.540000px;}
.yae{bottom:10.440000px;}
.y9d{bottom:10.980000px;}
.y95{bottom:11.160000px;}
.ya6{bottom:11.520000px;}
.y4{bottom:12.240000px;}
.ya9{bottom:12.645000px;}
.y97{bottom:14.580000px;}
.y8a{bottom:16.920000px;}
.y57{bottom:23.805000px;}
.y5d{bottom:24.654000px;}
.y4e{bottom:24.660000px;}
.y42{bottom:24.690000px;}
.y54{bottom:24.705000px;}
.y3{bottom:28.296000px;}
.y8d{bottom:28.620000px;}
.y90{bottom:30.240000px;}
.yab{bottom:30.960000px;}
.yad{bottom:31.140000px;}
.y2{bottom:31.176000px;}
.y9c{bottom:31.680000px;}
.y94{bottom:31.860000px;}
.ya5{bottom:32.220000px;}
.ya8{bottom:33.345000px;}
.y96{bottom:35.280000px;}
.y56{bottom:44.505000px;}
.y5c{bottom:45.354000px;}
.y4d{bottom:45.360000px;}
.y53{bottom:45.405000px;}
.y8c{bottom:49.320000px;}
.y9b{bottom:52.380000px;}
.y93{bottom:52.560000px;}
.y52{bottom:65.925000px;}
.y5b{bottom:66.054000px;}
.y4c{bottom:66.060000px;}
.y9a{bottom:73.080000px;}
.y5e{bottom:73.296000px;}
.yb2{bottom:74.736000px;}
.y82{bottom:78.336000px;}
.yac{bottom:79.560000px;}
.y51{bottom:86.625000px;}
.y5a{bottom:86.754000px;}
.y49{bottom:89.100000px;}
.y99{bottom:93.780000px;}
.y2e{bottom:94.356000px;}
.yb1{bottom:102.456000px;}
.y81{bottom:106.056000px;}
.y59{bottom:107.454000px;}
.y48{bottom:109.800000px;}
.ya3{bottom:118.125000px;}
.y2d{bottom:122.076000px;}
.yb0{bottom:130.176000px;}
.y47{bottom:130.500000px;}
.y80{bottom:133.776000px;}
.y58{bottom:136.116000px;}
.ya2{bottom:138.825000px;}
.y2c{bottom:149.796000px;}
.y46{bottom:151.020000px;}
.yaf{bottom:154.290000px;}
.ya1{bottom:159.525000px;}
.y7f{bottom:161.670000px;}
.y45{bottom:171.720000px;}
.y9f{bottom:174.630000px;}
.y2b{bottom:177.690000px;}
.ya0{bottom:180.225000px;}
.y7e{bottom:189.390000px;}
.y88{bottom:192.450000px;}
.y2a{bottom:205.410000px;}
.y87{bottom:213.150000px;}
.y7d{bottom:217.110000px;}
.yaa{bottom:223.230000px;}
.y29{bottom:233.130000px;}
.y86{bottom:233.850000px;}
.y7c{bottom:245.010000px;}
.y85{bottom:254.550000px;}
.y28{bottom:260.850000px;}
.y50{bottom:261.210000px;}
.ya7{bottom:271.830000px;}
.y7b{bottom:272.730000px;}
.y27{bottom:288.795000px;}
.y7a{bottom:300.495000px;}
.y26{bottom:316.515000px;}
.ya4{bottom:322.635000px;}
.y55{bottom:323.175000px;}
.y79{bottom:328.215000px;}
.y25{bottom:344.235000px;}
.y78{bottom:356.115000px;}
.y44{bottom:365.475000px;}
.y24{bottom:371.955000px;}
.y9e{bottom:372.315000px;}
.y77{bottom:383.835000px;}
.y23{bottom:399.855000px;}
.y4f{bottom:407.595000px;}
.yc9{bottom:409.575000px;}
.y76{bottom:411.555000px;}
.y98{bottom:414.435000px;}
.y22{bottom:427.575000px;}
.y75{bottom:439.275000px;}
.yc8{bottom:445.755000px;}
.y4b{bottom:449.715000px;}
.y21{bottom:455.295000px;}
.y74{bottom:467.175000px;}
.yc7{bottom:481.935000px;}
.y20{bottom:483.195000px;}
.y73{bottom:494.895000px;}
.y1f{bottom:510.915000px;}
.yc6{bottom:518.115000px;}
.y72{bottom:522.615000px;}
.y84{bottom:525.675000px;}
.y4a{bottom:533.235000px;}
.y1e{bottom:538.635000px;}
.yc5{bottom:541.695000px;}
.y71{bottom:550.515000px;}
.y41{bottom:554.835000px;}
.yc4{bottom:562.395000px;}
.y1d{bottom:566.385000px;}
.y70{bottom:578.265000px;}
.y92{bottom:578.445000px;}
.yc3{bottom:583.125000px;}
.y1c{bottom:594.285000px;}
.yc2{bottom:603.825000px;}
.y40{bottom:605.085000px;}
.y6f{bottom:605.985000px;}
.y1b{bottom:622.005000px;}
.yc1{bottom:624.525000px;}
.y3f{bottom:632.805000px;}
.y6e{bottom:633.705000px;}
.yc0{bottom:645.225000px;}
.y1a{bottom:645.585000px;}
.y8f{bottom:648.645000px;}
.y3e{bottom:660.705000px;}
.y6d{bottom:661.605000px;}
.ybf{bottom:665.925000px;}
.y19{bottom:666.285000px;}
.ybe{bottom:686.625000px;}
.y18{bottom:686.985000px;}
.y3d{bottom:688.425000px;}
.y6c{bottom:689.325000px;}
.y8b{bottom:696.345000px;}
.ybd{bottom:707.325000px;}
.y17{bottom:707.685000px;}
.y3c{bottom:716.145000px;}
.y6b{bottom:717.045000px;}
.ybc{bottom:728.025000px;}
.y16{bottom:728.385000px;}
.y3b{bottom:743.865000px;}
.y6a{bottom:744.945000px;}
.ybb{bottom:748.725000px;}
.y15{bottom:749.085000px;}
.y89{bottom:763.305000px;}
.yba{bottom:769.425000px;}
.y14{bottom:769.785000px;}
.y3a{bottom:771.765000px;}
.y69{bottom:772.665000px;}
.yb9{bottom:790.125000px;}
.y13{bottom:790.485000px;}
.y83{bottom:797.685000px;}
.y39{bottom:799.485000px;}
.y68{bottom:800.385000px;}
.yb8{bottom:810.825000px;}
.y12{bottom:811.185000px;}
.y38{bottom:827.205000px;}
.y67{bottom:828.105000px;}
.yb7{bottom:831.525000px;}
.y11{bottom:831.885000px;}
.yb6{bottom:852.270000px;}
.y10{bottom:852.630000px;}
.y37{bottom:855.150000px;}
.y66{bottom:856.050000px;}
.yb5{bottom:872.970000px;}
.yf{bottom:873.330000px;}
.y36{bottom:882.870000px;}
.y65{bottom:883.770000px;}
.yb4{bottom:893.670000px;}
.y35{bottom:910.590000px;}
.y64{bottom:911.490000px;}
.ye{bottom:914.730000px;}
.yb3{bottom:916.170000px;}
.yd{bottom:935.430000px;}
.y34{bottom:938.310000px;}
.y63{bottom:939.210000px;}
.yc{bottom:956.130000px;}
.y33{bottom:966.210000px;}
.y62{bottom:967.110000px;}
.yb{bottom:976.830000px;}
.y32{bottom:993.930000px;}
.y61{bottom:994.830000px;}
.ya{bottom:997.530000px;}
.y9{bottom:1018.230000px;}
.y31{bottom:1021.650000px;}
.y60{bottom:1026.330000px;}
.y8{bottom:1038.210000px;}
.y5f{bottom:1041.090000px;}
.y30{bottom:1049.550000px;}
.y7{bottom:1056.750000px;}
.y2f{bottom:1077.270000px;}
.y6{bottom:1080.870000px;}
.y5{bottom:1104.990000px;}
.y1{bottom:1190.160000px;}
.h12{height:20.700000px;}
.h3{height:31.860000px;}
.h1c{height:33.660000px;}
.h14{height:41.400000px;}
.hc{height:41.436000px;}
.h1e{height:46.980000px;}
.h25{height:47.700000px;}
.h27{height:47.880000px;}
.h23{height:48.960000px;}
.h24{height:50.076000px;}
.h20{height:52.056000px;}
.h19{height:58.651172px;}
.h9{height:59.343750px;}
.h6{height:60.226875px;}
.h16{height:61.236000px;}
.h18{height:62.100000px;}
.he{height:62.261719px;}
.h11{height:63.457031px;}
.h1d{height:66.060000px;}
.h1f{height:69.300000px;}
.h8{height:70.628906px;}
.h7{height:70.664062px;}
.hd{height:72.562500px;}
.h5{height:72.846211px;}
.h10{height:74.004654px;}
.ha{height:74.244727px;}
.hb{height:82.635820px;}
.h2{height:82.676953px;}
.h13{height:82.800000px;}
.h4{height:84.898125px;}
.h1a{height:86.585445px;}
.h26{height:96.300000px;}
.h15{height:103.356000px;}
.h21{height:110.520000px;}
.h17{height:124.200000px;}
.hf{height:188.460000px;}
.h22{height:196.950000px;}
.h1b{height:271.290000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:29.916000px;}
.w8{width:39.276000px;}
.w3{width:75.996000px;}
.w6{width:180.030000px;}
.wb{width:211.890000px;}
.w5{width:221.430000px;}
.w9{width:222.510000px;}
.wa{width:243.930000px;}
.w7{width:297.030000px;}
.wc{width:679.785000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x16{left:8.820000px;}
.x3{left:27.360000px;}
.x10{left:50.076000px;}
.xf{left:77.400000px;}
.x1{left:84.959987px;}
.x15{left:87.690000px;}
.x17{left:95.615987px;}
.x1c{left:98.490000px;}
.x11{left:108.036000px;}
.x19{left:117.396000px;}
.x4{left:124.955987px;}
.xd{left:127.475987px;}
.x5{left:138.275987px;}
.x6{left:202.169987px;}
.x9{left:268.229987px;}
.x12{left:330.195000px;}
.x1a{left:340.635000px;}
.xb{left:354.494987px;}
.xa{left:367.454987px;}
.x8{left:371.774987px;}
.x2{left:409.215000px;}
.x1d{left:419.474987px;}
.x7{left:446.474987px;}
.xc{left:467.714987px;}
.x14{left:510.945000px;}
.x1b{left:585.285000px;}
.x18{left:686.849987px;}
.xe{left:691.889987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.613333pt;}
.ls21{letter-spacing:-0.380800pt;}
.ls29{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.256000pt;}
.ls24{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.024960pt;}
.ls28{letter-spacing:0.033280pt;}
.ls1d{letter-spacing:0.043947pt;}
.ls5{letter-spacing:0.064000pt;}
.ls2a{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.224640pt;}
.ls10{letter-spacing:0.303467pt;}
.ls4{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:0.448000pt;}
.ls15{letter-spacing:0.576000pt;}
.ls14{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.666667pt;}
.ls18{letter-spacing:0.672000pt;}
.ls16{letter-spacing:0.768000pt;}
.ls9{letter-spacing:0.960000pt;}
.lsd{letter-spacing:1.058347pt;}
.lsb{letter-spacing:1.088000pt;}
.ls8{letter-spacing:1.497600pt;}
.ls17{letter-spacing:1.920000pt;}
.lsa{letter-spacing:3.680000pt;}
.lsf{letter-spacing:8.160000pt;}
.lsc{letter-spacing:8.800000pt;}
.ls11{letter-spacing:10.080000pt;}
.ls26{letter-spacing:14.720000pt;}
.ls27{letter-spacing:15.360000pt;}
.ls12{letter-spacing:27.008000pt;}
.ls20{letter-spacing:32.480000pt;}
.ls1{letter-spacing:36.480000pt;}
.ls0{letter-spacing:38.400000pt;}
.ls13{letter-spacing:43.520000pt;}
.ls1f{letter-spacing:44.746667pt;}
.ls25{letter-spacing:48.128000pt;}
.ls23{letter-spacing:50.026667pt;}
.ls22{letter-spacing:58.080000pt;}
.ls2{letter-spacing:58.400000pt;}
.ls1e{letter-spacing:108.463360pt;}
.ws7{word-spacing:-19.392000pt;}
.ws0{word-spacing:-19.040000pt;}
.ws8{word-spacing:-19.023467pt;}
.wsd{word-spacing:-18.753280pt;}
.ws4{word-spacing:-18.744960pt;}
.ws3{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.106667pt;}
.wsa{word-spacing:-16.640000pt;}
.wsb{word-spacing:-16.576000pt;}
.wsc{word-spacing:-16.384000pt;}
.wsf{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.744000pt;}
.wse{word-spacing:-15.680000pt;}
.ws6{word-spacing:0.000000pt;}
._3a{margin-left:-11.392000pt;}
._0{margin-left:-0.898560pt;}
._1{width:1.421227pt;}
._f{width:2.430933pt;}
._2e{width:3.626027pt;}
._21{width:4.685653pt;}
._1a{width:6.289920pt;}
._1b{width:7.338240pt;}
._25{width:8.888960pt;}
._16{width:10.033920pt;}
._26{width:11.367147pt;}
._e{width:12.804480pt;}
._1e{width:14.661333pt;}
._1d{width:15.745707pt;}
._17{width:17.521920pt;}
._45{width:19.109120pt;}
._14{width:20.142720pt;}
._13{width:21.041280pt;}
._1c{width:22.913280pt;}
._20{width:24.112853pt;}
._1f{width:25.057707pt;}
._22{width:26.959787pt;}
._4{width:27.904000pt;}
._4a{width:29.203200pt;}
._5{width:30.261333pt;}
._38{width:32.198400pt;}
._10{width:33.471360pt;}
._49{width:34.686720pt;}
._8{width:35.712000pt;}
._9{width:37.226667pt;}
._36{width:38.304640pt;}
._44{width:39.872000pt;}
._2d{width:41.355093pt;}
._11{width:44.254080pt;}
._12{width:45.227520pt;}
._3b{width:46.848000pt;}
._37{width:47.923200pt;}
._47{width:49.792000pt;}
._32{width:50.789547pt;}
._a{width:52.928000pt;}
._b{width:53.845333pt;}
._15{width:55.166720pt;}
._7{width:56.770560pt;}
._6{width:57.920000pt;}
._18{width:58.847360pt;}
._c{width:60.160000pt;}
._d{width:61.312000pt;}
._39{width:63.048960pt;}
._24{width:65.935147pt;}
._23{width:66.885760pt;}
._43{width:73.984000pt;}
._3{width:81.005227pt;}
._2{width:82.410667pt;}
._19{width:84.913920pt;}
._28{width:86.656000pt;}
._34{width:90.496000pt;}
._3c{width:96.064000pt;}
._2b{width:109.504000pt;}
._2a{width:110.400000pt;}
._42{width:117.184000pt;}
._27{width:138.304000pt;}
._31{width:139.200000pt;}
._3f{width:156.000000pt;}
._3d{width:161.728000pt;}
._40{width:163.552000pt;}
._29{width:178.048000pt;}
._33{width:179.776000pt;}
._41{width:181.632000pt;}
._2c{width:201.280000pt;}
._2f{width:203.456000pt;}
._46{width:234.304000pt;}
._48{width:248.384000pt;}
._3e{width:269.696000pt;}
._35{width:311.168000pt;}
._30{width:316.544000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:3.520000pt;}
.y8e{bottom:7.040000pt;}
.y91{bottom:8.480000pt;}
.yae{bottom:9.280000pt;}
.y9d{bottom:9.760000pt;}
.y95{bottom:9.920000pt;}
.ya6{bottom:10.240000pt;}
.y4{bottom:10.880000pt;}
.ya9{bottom:11.240000pt;}
.y97{bottom:12.960000pt;}
.y8a{bottom:15.040000pt;}
.y57{bottom:21.160000pt;}
.y5d{bottom:21.914667pt;}
.y4e{bottom:21.920000pt;}
.y42{bottom:21.946667pt;}
.y54{bottom:21.960000pt;}
.y3{bottom:25.152000pt;}
.y8d{bottom:25.440000pt;}
.y90{bottom:26.880000pt;}
.yab{bottom:27.520000pt;}
.yad{bottom:27.680000pt;}
.y2{bottom:27.712000pt;}
.y9c{bottom:28.160000pt;}
.y94{bottom:28.320000pt;}
.ya5{bottom:28.640000pt;}
.ya8{bottom:29.640000pt;}
.y96{bottom:31.360000pt;}
.y56{bottom:39.560000pt;}
.y5c{bottom:40.314667pt;}
.y4d{bottom:40.320000pt;}
.y53{bottom:40.360000pt;}
.y8c{bottom:43.840000pt;}
.y9b{bottom:46.560000pt;}
.y93{bottom:46.720000pt;}
.y52{bottom:58.600000pt;}
.y5b{bottom:58.714667pt;}
.y4c{bottom:58.720000pt;}
.y9a{bottom:64.960000pt;}
.y5e{bottom:65.152000pt;}
.yb2{bottom:66.432000pt;}
.y82{bottom:69.632000pt;}
.yac{bottom:70.720000pt;}
.y51{bottom:77.000000pt;}
.y5a{bottom:77.114667pt;}
.y49{bottom:79.200000pt;}
.y99{bottom:83.360000pt;}
.y2e{bottom:83.872000pt;}
.yb1{bottom:91.072000pt;}
.y81{bottom:94.272000pt;}
.y59{bottom:95.514667pt;}
.y48{bottom:97.600000pt;}
.ya3{bottom:105.000000pt;}
.y2d{bottom:108.512000pt;}
.yb0{bottom:115.712000pt;}
.y47{bottom:116.000000pt;}
.y80{bottom:118.912000pt;}
.y58{bottom:120.992000pt;}
.ya2{bottom:123.400000pt;}
.y2c{bottom:133.152000pt;}
.y46{bottom:134.240000pt;}
.yaf{bottom:137.146667pt;}
.ya1{bottom:141.800000pt;}
.y7f{bottom:143.706667pt;}
.y45{bottom:152.640000pt;}
.y9f{bottom:155.226667pt;}
.y2b{bottom:157.946667pt;}
.ya0{bottom:160.200000pt;}
.y7e{bottom:168.346667pt;}
.y88{bottom:171.066667pt;}
.y2a{bottom:182.586667pt;}
.y87{bottom:189.466667pt;}
.y7d{bottom:192.986667pt;}
.yaa{bottom:198.426667pt;}
.y29{bottom:207.226667pt;}
.y86{bottom:207.866667pt;}
.y7c{bottom:217.786667pt;}
.y85{bottom:226.266667pt;}
.y28{bottom:231.866667pt;}
.y50{bottom:232.186667pt;}
.ya7{bottom:241.626667pt;}
.y7b{bottom:242.426667pt;}
.y27{bottom:256.706667pt;}
.y7a{bottom:267.106667pt;}
.y26{bottom:281.346667pt;}
.ya4{bottom:286.786667pt;}
.y55{bottom:287.266667pt;}
.y79{bottom:291.746667pt;}
.y25{bottom:305.986667pt;}
.y78{bottom:316.546667pt;}
.y44{bottom:324.866667pt;}
.y24{bottom:330.626667pt;}
.y9e{bottom:330.946667pt;}
.y77{bottom:341.186667pt;}
.y23{bottom:355.426667pt;}
.y4f{bottom:362.306667pt;}
.yc9{bottom:364.066667pt;}
.y76{bottom:365.826667pt;}
.y98{bottom:368.386667pt;}
.y22{bottom:380.066667pt;}
.y75{bottom:390.466667pt;}
.yc8{bottom:396.226667pt;}
.y4b{bottom:399.746667pt;}
.y21{bottom:404.706667pt;}
.y74{bottom:415.266667pt;}
.yc7{bottom:428.386667pt;}
.y20{bottom:429.506667pt;}
.y73{bottom:439.906667pt;}
.y1f{bottom:454.146667pt;}
.yc6{bottom:460.546667pt;}
.y72{bottom:464.546667pt;}
.y84{bottom:467.266667pt;}
.y4a{bottom:473.986667pt;}
.y1e{bottom:478.786667pt;}
.yc5{bottom:481.506667pt;}
.y71{bottom:489.346667pt;}
.y41{bottom:493.186667pt;}
.yc4{bottom:499.906667pt;}
.y1d{bottom:503.453333pt;}
.y70{bottom:514.013333pt;}
.y92{bottom:514.173333pt;}
.yc3{bottom:518.333333pt;}
.y1c{bottom:528.253333pt;}
.yc2{bottom:536.733333pt;}
.y40{bottom:537.853333pt;}
.y6f{bottom:538.653333pt;}
.y1b{bottom:552.893333pt;}
.yc1{bottom:555.133333pt;}
.y3f{bottom:562.493333pt;}
.y6e{bottom:563.293333pt;}
.yc0{bottom:573.533333pt;}
.y1a{bottom:573.853333pt;}
.y8f{bottom:576.573333pt;}
.y3e{bottom:587.293333pt;}
.y6d{bottom:588.093333pt;}
.ybf{bottom:591.933333pt;}
.y19{bottom:592.253333pt;}
.ybe{bottom:610.333333pt;}
.y18{bottom:610.653333pt;}
.y3d{bottom:611.933333pt;}
.y6c{bottom:612.733333pt;}
.y8b{bottom:618.973333pt;}
.ybd{bottom:628.733333pt;}
.y17{bottom:629.053333pt;}
.y3c{bottom:636.573333pt;}
.y6b{bottom:637.373333pt;}
.ybc{bottom:647.133333pt;}
.y16{bottom:647.453333pt;}
.y3b{bottom:661.213333pt;}
.y6a{bottom:662.173333pt;}
.ybb{bottom:665.533333pt;}
.y15{bottom:665.853333pt;}
.y89{bottom:678.493333pt;}
.yba{bottom:683.933333pt;}
.y14{bottom:684.253333pt;}
.y3a{bottom:686.013333pt;}
.y69{bottom:686.813333pt;}
.yb9{bottom:702.333333pt;}
.y13{bottom:702.653333pt;}
.y83{bottom:709.053333pt;}
.y39{bottom:710.653333pt;}
.y68{bottom:711.453333pt;}
.yb8{bottom:720.733333pt;}
.y12{bottom:721.053333pt;}
.y38{bottom:735.293333pt;}
.y67{bottom:736.093333pt;}
.yb7{bottom:739.133333pt;}
.y11{bottom:739.453333pt;}
.yb6{bottom:757.573333pt;}
.y10{bottom:757.893333pt;}
.y37{bottom:760.133333pt;}
.y66{bottom:760.933333pt;}
.yb5{bottom:775.973333pt;}
.yf{bottom:776.293333pt;}
.y36{bottom:784.773333pt;}
.y65{bottom:785.573333pt;}
.yb4{bottom:794.373333pt;}
.y35{bottom:809.413333pt;}
.y64{bottom:810.213333pt;}
.ye{bottom:813.093333pt;}
.yb3{bottom:814.373333pt;}
.yd{bottom:831.493333pt;}
.y34{bottom:834.053333pt;}
.y63{bottom:834.853333pt;}
.yc{bottom:849.893333pt;}
.y33{bottom:858.853333pt;}
.y62{bottom:859.653333pt;}
.yb{bottom:868.293333pt;}
.y32{bottom:883.493333pt;}
.y61{bottom:884.293333pt;}
.ya{bottom:886.693333pt;}
.y9{bottom:905.093333pt;}
.y31{bottom:908.133333pt;}
.y60{bottom:912.293333pt;}
.y8{bottom:922.853333pt;}
.y5f{bottom:925.413333pt;}
.y30{bottom:932.933333pt;}
.y7{bottom:939.333333pt;}
.y2f{bottom:957.573333pt;}
.y6{bottom:960.773333pt;}
.y5{bottom:982.213333pt;}
.y1{bottom:1057.920000pt;}
.h12{height:18.400000pt;}
.h3{height:28.320000pt;}
.h1c{height:29.920000pt;}
.h14{height:36.800000pt;}
.hc{height:36.832000pt;}
.h1e{height:41.760000pt;}
.h25{height:42.400000pt;}
.h27{height:42.560000pt;}
.h23{height:43.520000pt;}
.h24{height:44.512000pt;}
.h20{height:46.272000pt;}
.h19{height:52.134375pt;}
.h9{height:52.750000pt;}
.h6{height:53.535000pt;}
.h16{height:54.432000pt;}
.h18{height:55.200000pt;}
.he{height:55.343750pt;}
.h11{height:56.406250pt;}
.h1d{height:58.720000pt;}
.h1f{height:61.600000pt;}
.h8{height:62.781250pt;}
.h7{height:62.812500pt;}
.hd{height:64.500000pt;}
.h5{height:64.752187pt;}
.h10{height:65.781915pt;}
.ha{height:65.995312pt;}
.hb{height:73.454062pt;}
.h2{height:73.490625pt;}
.h13{height:73.600000pt;}
.h4{height:75.465000pt;}
.h1a{height:76.964840pt;}
.h26{height:85.600000pt;}
.h15{height:91.872000pt;}
.h21{height:98.240000pt;}
.h17{height:110.400000pt;}
.hf{height:167.520000pt;}
.h22{height:175.066667pt;}
.h1b{height:241.146667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:26.592000pt;}
.w8{width:34.912000pt;}
.w3{width:67.552000pt;}
.w6{width:160.026667pt;}
.wb{width:188.346667pt;}
.w5{width:196.826667pt;}
.w9{width:197.786667pt;}
.wa{width:216.826667pt;}
.w7{width:264.026667pt;}
.wc{width:604.253333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x16{left:7.840000pt;}
.x3{left:24.320000pt;}
.x10{left:44.512000pt;}
.xf{left:68.800000pt;}
.x1{left:75.519988pt;}
.x15{left:77.946667pt;}
.x17{left:84.991988pt;}
.x1c{left:87.546667pt;}
.x11{left:96.032000pt;}
.x19{left:104.352000pt;}
.x4{left:111.071988pt;}
.xd{left:113.311988pt;}
.x5{left:122.911988pt;}
.x6{left:179.706655pt;}
.x9{left:238.426655pt;}
.x12{left:293.506667pt;}
.x1a{left:302.786667pt;}
.xb{left:315.106655pt;}
.xa{left:326.626655pt;}
.x8{left:330.466655pt;}
.x2{left:363.746667pt;}
.x1d{left:372.866655pt;}
.x7{left:396.866655pt;}
.xc{left:415.746655pt;}
.x14{left:454.173333pt;}
.x1b{left:520.253333pt;}
.x18{left:610.533322pt;}
.xe{left:615.013322pt;}
}




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