
    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_f64cf6092aea566f302714d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_068d264db82af650c008cce2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_efd8e52451867aa1930c0976.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854004;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_af172efd3188022a3eba4909.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.086426;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_253d5f21a8f7e172060fbde4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.944824;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_ace42842e9f2846b249d8f8d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d1d7b1d93bd77d44af5e1645.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_14a813134a9fb9662ae05dfb.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8fc945446e72ae1093aa2fc1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.090820;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6c3a7f798063e55a6c8b712a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.854004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_71a1000bcbbd946e348475f3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.090820;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);}
.v1{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.400000px;}
.v4{vertical-align:48.240000px;}
.v2{vertical-align:54.720000px;}
.lsf{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.092400px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.208200px;}
.ls7{letter-spacing:0.241800px;}
.lsa{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.756000px;}
.ls0{letter-spacing:1.440000px;}
.lse{letter-spacing:4.054320px;}
.lsb{letter-spacing:4.894320px;}
.lsc{letter-spacing:5.400000px;}
.ls10{letter-spacing:12.960000px;}
.ls9{letter-spacing:152.856000px;}
.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;}
}
.ws0{word-spacing:-23.940000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.371752px;}
.ws8{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.696000px;}
.ws6{word-spacing:-13.354320px;}
.wsb{word-spacing:-11.246400px;}
.ws2{word-spacing:0.000000px;}
.wsa{word-spacing:0.216000px;}
.ws9{word-spacing:1.008000px;}
.ws7{word-spacing:12.287520px;}
._f{margin-left:-4.896000px;}
._19{margin-left:-3.840000px;}
._b{margin-left:-2.808000px;}
._0{margin-left:-1.324800px;}
._1{width:1.394880px;}
._11{width:2.997120px;}
._12{width:4.348800px;}
._9{width:5.400000px;}
._a{width:7.056000px;}
._1b{width:8.640000px;}
._7{width:9.648000px;}
._8{width:11.448000px;}
._13{width:12.456000px;}
._16{width:13.752000px;}
._17{width:14.761920px;}
._21{width:15.910080px;}
._22{width:16.973760px;}
._e{width:19.080000px;}
._10{width:20.997120px;}
._20{width:22.008000px;}
._18{width:23.673600px;}
._d{width:24.724800px;}
._c{width:26.280000px;}
._1a{width:27.864000px;}
._14{width:29.088000px;}
._15{width:30.948480px;}
._1f{width:33.480000px;}
._4{width:35.306640px;}
._3{width:36.621840px;}
._1c{width:38.304000px;}
._1d{width:39.816000px;}
._1e{width:47.880000px;}
._6{width:71.149680px;}
._5{width:72.203040px;}
._2{width:80.001120px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,10);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:51.120000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:84.384000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7a{bottom:1.260000px;}
.y7b{bottom:1.440000px;}
.y87{bottom:3.525000px;}
.y85{bottom:3.570000px;}
.y8a{bottom:3.705000px;}
.y8c{bottom:3.885000px;}
.y83{bottom:5.910000px;}
.y98{bottom:6.120000px;}
.y99{bottom:6.300000px;}
.y9b{bottom:6.480000px;}
.y97{bottom:7.200000px;}
.y92{bottom:7.380000px;}
.yb6{bottom:8.280000px;}
.yb4{bottom:8.460000px;}
.y95{bottom:8.640000px;}
.y8e{bottom:16.995000px;}
.y93{bottom:19.080000px;}
.y91{bottom:19.440000px;}
.y4{bottom:58.860000px;}
.y3{bottom:79.596000px;}
.y2{bottom:98.496000px;}
.y1{bottom:118.836000px;}
.y81{bottom:145.296000px;}
.yc3{bottom:149.796000px;}
.y31{bottom:154.650000px;}
.yb2{bottom:159.150000px;}
.y6e{bottom:168.150000px;}
.ycb{bottom:170.670000px;}
.y30{bottom:175.350000px;}
.y80{bottom:176.430000px;}
.yc2{bottom:180.930000px;}
.yb1{bottom:190.290000px;}
.ydd{bottom:194.430000px;}
.y4f{bottom:194.790000px;}
.y2f{bottom:196.050000px;}
.y6d{bottom:199.290000px;}
.yca{bottom:201.630000px;}
.y7f{bottom:207.390000px;}
.yc1{bottom:211.890000px;}
.ydc{bottom:215.130000px;}
.y2e{bottom:216.750000px;}
.yb0{bottom:221.250000px;}
.y4e{bottom:225.930000px;}
.y6c{bottom:230.250000px;}
.yc9{bottom:232.770000px;}
.y2d{bottom:237.450000px;}
.y7e{bottom:238.530000px;}
.ydb{bottom:247.890000px;}
.yaf{bottom:252.390000px;}
.y4d{bottom:256.890000px;}
.y2c{bottom:258.150000px;}
.yc0{bottom:261.030000px;}
.y6b{bottom:261.390000px;}
.yda{bottom:268.590000px;}
.y7d{bottom:269.490000px;}
.yc8{bottom:277.590000px;}
.y2b{bottom:278.850000px;}
.yae{bottom:283.350000px;}
.y4c{bottom:288.030000px;}
.y6a{bottom:292.350000px;}
.y2a{bottom:299.550000px;}
.y7c{bottom:300.630000px;}
.yd9{bottom:301.350000px;}
.yad{bottom:314.490000px;}
.y79{bottom:317.370000px;}
.y4b{bottom:318.990000px;}
.y29{bottom:320.250000px;}
.yd8{bottom:322.050000px;}
.y69{bottom:323.490000px;}
.y28{bottom:340.995000px;}
.yac{bottom:345.495000px;}
.y4a{bottom:350.175000px;}
.y68{bottom:354.495000px;}
.y27{bottom:361.695000px;}
.yd7{bottom:373.395000px;}
.yab{bottom:376.635000px;}
.y49{bottom:381.135000px;}
.y26{bottom:382.395000px;}
.y67{bottom:385.635000px;}
.y25{bottom:403.095000px;}
.yaa{bottom:407.595000px;}
.y48{bottom:412.275000px;}
.y66{bottom:416.595000px;}
.y24{bottom:423.795000px;}
.yd6{bottom:425.235000px;}
.ya9{bottom:438.735000px;}
.y47{bottom:443.235000px;}
.y23{bottom:444.495000px;}
.y65{bottom:447.555000px;}
.yd5{bottom:456.375000px;}
.y22{bottom:465.195000px;}
.ya8{bottom:469.695000px;}
.y46{bottom:474.375000px;}
.y64{bottom:478.695000px;}
.y21{bottom:485.895000px;}
.yd4{bottom:487.335000px;}
.ya7{bottom:500.835000px;}
.y45{bottom:505.335000px;}
.y20{bottom:506.595000px;}
.yd3{bottom:518.475000px;}
.y8d{bottom:524.520000px;}
.y8f{bottom:525.780000px;}
.y1f{bottom:527.295000px;}
.y63{bottom:529.995000px;}
.ya6{bottom:531.795000px;}
.y44{bottom:536.475000px;}
.y1e{bottom:547.995000px;}
.yd2{bottom:549.435000px;}
.y62{bottom:559.695000px;}
.ya5{bottom:562.935000px;}
.y43{bottom:567.435000px;}
.y1d{bottom:568.695000px;}
.y78{bottom:579.675000px;}
.yd1{bottom:580.575000px;}
.y1c{bottom:589.395000px;}
.y61{bottom:590.655000px;}
.ya4{bottom:593.895000px;}
.y42{bottom:598.575000px;}
.y77{bottom:603.435000px;}
.y1b{bottom:610.125000px;}
.yd0{bottom:611.565000px;}
.y60{bottom:621.645000px;}
.ya3{bottom:625.065000px;}
.y41{bottom:629.565000px;}
.y1a{bottom:630.825000px;}
.ycf{bottom:642.705000px;}
.y19{bottom:651.525000px;}
.y76{bottom:652.425000px;}
.y5f{bottom:652.785000px;}
.ya2{bottom:656.025000px;}
.y40{bottom:660.705000px;}
.y18{bottom:672.225000px;}
.yce{bottom:673.665000px;}
.y5e{bottom:683.745000px;}
.ya1{bottom:687.165000px;}
.y3f{bottom:691.665000px;}
.y17{bottom:692.925000px;}
.ycd{bottom:704.805000px;}
.y16{bottom:713.625000px;}
.y5d{bottom:714.885000px;}
.y75{bottom:715.245000px;}
.ybf{bottom:716.505000px;}
.ya0{bottom:718.125000px;}
.yc7{bottom:718.665000px;}
.y3e{bottom:722.805000px;}
.y15{bottom:734.325000px;}
.ybe{bottom:740.265000px;}
.yc6{bottom:742.425000px;}
.y5c{bottom:745.845000px;}
.y74{bottom:746.205000px;}
.y9f{bottom:749.265000px;}
.y3d{bottom:753.765000px;}
.y14{bottom:755.025000px;}
.ycc{bottom:756.105000px;}
.yeb{bottom:756.645000px;}
.ybd{bottom:764.025000px;}
.yc5{bottom:766.185000px;}
.y13{bottom:775.725000px;}
.y5b{bottom:776.985000px;}
.y73{bottom:778.245000px;}
.y9e{bottom:780.225000px;}
.y3c{bottom:784.905000px;}
.yea{bottom:789.405000px;}
.yc4{bottom:789.945000px;}
.y12{bottom:796.425000px;}
.y86{bottom:807.840000px;}
.y5a{bottom:807.945000px;}
.y8b{bottom:808.200000px;}
.y88{bottom:810.000000px;}
.ye9{bottom:810.105000px;}
.ybc{bottom:813.165000px;}
.y3b{bottom:815.865000px;}
.y11{bottom:817.125000px;}
.y9d{bottom:829.365000px;}
.y10{bottom:837.825000px;}
.y59{bottom:839.085000px;}
.ye8{bottom:842.865000px;}
.ybb{bottom:844.125000px;}
.y89{bottom:844.740000px;}
.y9c{bottom:846.105000px;}
.y3a{bottom:847.005000px;}
.yf{bottom:858.525000px;}
.ye7{bottom:863.565000px;}
.y58{bottom:870.045000px;}
.y9a{bottom:871.530000px;}
.y39{bottom:878.010000px;}
.y82{bottom:879.120000px;}
.ye{bottom:879.270000px;}
.yba{bottom:895.470000px;}
.ye6{bottom:896.190000px;}
.y96{bottom:897.090000px;}
.yd{bottom:900.510000px;}
.y57{bottom:901.230000px;}
.y38{bottom:909.150000px;}
.ye5{bottom:916.890000px;}
.y94{bottom:922.650000px;}
.yc{bottom:925.350000px;}
.y56{bottom:932.190000px;}
.y37{bottom:940.110000px;}
.y90{bottom:948.030000px;}
.ye4{bottom:949.650000px;}
.yb9{bottom:949.830000px;}
.yb{bottom:953.070000px;}
.y55{bottom:963.330000px;}
.yb8{bottom:970.170000px;}
.ye3{bottom:970.350000px;}
.y36{bottom:971.250000px;}
.ya{bottom:980.610000px;}
.y84{bottom:984.240000px;}
.y54{bottom:994.290000px;}
.yb7{bottom:1000.590000px;}
.y35{bottom:1002.210000px;}
.ye2{bottom:1003.110000px;}
.y9{bottom:1008.150000px;}
.y72{bottom:1023.270000px;}
.ye1{bottom:1023.810000px;}
.y53{bottom:1025.430000px;}
.yb5{bottom:1031.190000px;}
.y34{bottom:1033.350000px;}
.y8{bottom:1035.870000px;}
.ye0{bottom:1044.510000px;}
.y71{bottom:1047.210000px;}
.y52{bottom:1056.390000px;}
.yb3{bottom:1061.790000px;}
.y7{bottom:1063.410000px;}
.y33{bottom:1064.310000px;}
.y70{bottom:1070.970000px;}
.ydf{bottom:1077.090000px;}
.y51{bottom:1087.530000px;}
.y6{bottom:1090.950000px;}
.y6f{bottom:1094.730000px;}
.yde{bottom:1097.790000px;}
.y32{bottom:1115.610000px;}
.y5{bottom:1118.310000px;}
.y50{bottom:1118.490000px;}
.h10{height:19.080000px;}
.h11{height:19.260000px;}
.h12{height:19.440000px;}
.h18{height:25.380000px;}
.h1b{height:25.416000px;}
.h19{height:25.560000px;}
.he{height:25.920000px;}
.h1d{height:29.700000px;}
.h1e{height:29.880000px;}
.h13{height:39.600000px;}
.h15{height:51.120000px;}
.hb{height:57.410156px;}
.h9{height:59.343750px;}
.h3{height:59.383125px;}
.h4{height:60.855469px;}
.h2{height:62.402344px;}
.h1a{height:62.648438px;}
.h1c{height:63.949219px;}
.h8{height:64.546875px;}
.hd{height:65.884219px;}
.hf{height:71.322609px;}
.ha{height:74.820586px;}
.h7{height:75.519844px;}
.h14{height:80.937773px;}
.h5{height:85.052461px;}
.h6{height:85.847344px;}
.h17{height:110.888438px;}
.h16{height:117.368438px;}
.hc{height:255.090000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:19.080000px;}
.w8{width:19.260000px;}
.w6{width:45.180000px;}
.w9{width:54.180000px;}
.wb{width:59.220000px;}
.w4{width:100.440000px;}
.w5{width:100.656000px;}
.w16{width:110.520000px;}
.w17{width:110.700000px;}
.w15{width:110.736000px;}
.w12{width:136.800000px;}
.w11{width:148.176000px;}
.w10{width:158.790000px;}
.wc{width:170.130000px;}
.w14{width:211.350000px;}
.w13{width:233.130000px;}
.we{width:233.490000px;}
.w3{width:378.795000px;}
.wf{width:445.215000px;}
.wd{width:457.275000px;}
.wa{width:627.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:5.250000px;}
.x24{left:8.100000px;}
.xf{left:10.836000px;}
.x1c{left:20.085000px;}
.x23{left:30.240000px;}
.x34{left:31.500000px;}
.x27{left:52.194000px;}
.x30{left:59.220000px;}
.x25{left:61.554000px;}
.x2e{left:64.980000px;}
.x2d{left:70.380000px;}
.x28{left:74.694000px;}
.x2a{left:87.834000px;}
.xb{left:92.880000px;}
.x33{left:101.025000px;}
.x31{left:111.990000px;}
.xe{left:125.460000px;}
.x1{left:127.655987px;}
.x1a{left:142.740000px;}
.x3{left:161.129987px;}
.x6{left:170.129987px;}
.x7{left:180.749987px;}
.x20{left:195.339000px;}
.x2c{left:198.930000px;}
.x10{left:203.400000px;}
.x16{left:240.480000px;}
.x29{left:258.149987px;}
.x21{left:265.719000px;}
.x4{left:278.534987px;}
.x12{left:285.480000px;}
.x26{left:297.795000px;}
.x2b{left:361.875000px;}
.x9{left:378.789000px;}
.x13{left:393.480000px;}
.x1f{left:421.560000px;}
.x5{left:467.924987px;}
.x35{left:473.325000px;}
.x17{left:494.820000px;}
.xa{left:506.445000px;}
.x1b{left:521.640000px;}
.x14{left:537.480000px;}
.x36{left:584.565000px;}
.x32{left:595.725000px;}
.xc{left:606.885000px;}
.x1d{left:624.060000px;}
.x2f{left:670.290000px;}
.x37{left:696.030000px;}
.x15{left:701.640000px;}
.xd{left:707.550000px;}
.x1e{left:726.480000px;}
.x22{left:755.070000px;}
.x19{left:762.480000px;}
.x18{left:769.140000px;}
.x2{left:808.169987px;}
.x8{left:816.989987px;}
.x38{left:823.469987px;}
@media print{
.v1{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.800000pt;}
.v4{vertical-align:42.880000pt;}
.v2{vertical-align:48.640000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.082133pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.185067pt;}
.ls7{letter-spacing:0.214933pt;}
.lsa{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.672000pt;}
.ls0{letter-spacing:1.280000pt;}
.lse{letter-spacing:3.603840pt;}
.lsb{letter-spacing:4.350507pt;}
.lsc{letter-spacing:4.800000pt;}
.ls10{letter-spacing:11.520000pt;}
.ls9{letter-spacing:135.872000pt;}
.ws0{word-spacing:-21.280000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.441557pt;}
.ws8{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.952000pt;}
.ws6{word-spacing:-11.870507pt;}
.wsb{word-spacing:-9.996800pt;}
.ws2{word-spacing:0.000000pt;}
.wsa{word-spacing:0.192000pt;}
.ws9{word-spacing:0.896000pt;}
.ws7{word-spacing:10.922240pt;}
._f{margin-left:-4.352000pt;}
._19{margin-left:-3.413333pt;}
._b{margin-left:-2.496000pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.239893pt;}
._11{width:2.664107pt;}
._12{width:3.865600pt;}
._9{width:4.800000pt;}
._a{width:6.272000pt;}
._1b{width:7.680000pt;}
._7{width:8.576000pt;}
._8{width:10.176000pt;}
._13{width:11.072000pt;}
._16{width:12.224000pt;}
._17{width:13.121707pt;}
._21{width:14.142293pt;}
._22{width:15.087787pt;}
._e{width:16.960000pt;}
._10{width:18.664107pt;}
._20{width:19.562667pt;}
._18{width:21.043200pt;}
._d{width:21.977600pt;}
._c{width:23.360000pt;}
._1a{width:24.768000pt;}
._14{width:25.856000pt;}
._15{width:27.509760pt;}
._1f{width:29.760000pt;}
._4{width:31.383680pt;}
._3{width:32.552747pt;}
._1c{width:34.048000pt;}
._1d{width:35.392000pt;}
._1e{width:42.560000pt;}
._6{width:63.244160pt;}
._5{width:64.180480pt;}
._2{width:71.112107pt;}
.fs5{font-size:45.440000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:75.008000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:1.120000pt;}
.y7b{bottom:1.280000pt;}
.y87{bottom:3.133333pt;}
.y85{bottom:3.173333pt;}
.y8a{bottom:3.293333pt;}
.y8c{bottom:3.453333pt;}
.y83{bottom:5.253333pt;}
.y98{bottom:5.440000pt;}
.y99{bottom:5.600000pt;}
.y9b{bottom:5.760000pt;}
.y97{bottom:6.400000pt;}
.y92{bottom:6.560000pt;}
.yb6{bottom:7.360000pt;}
.yb4{bottom:7.520000pt;}
.y95{bottom:7.680000pt;}
.y8e{bottom:15.106667pt;}
.y93{bottom:16.960000pt;}
.y91{bottom:17.280000pt;}
.y4{bottom:52.320000pt;}
.y3{bottom:70.752000pt;}
.y2{bottom:87.552000pt;}
.y1{bottom:105.632000pt;}
.y81{bottom:129.152000pt;}
.yc3{bottom:133.152000pt;}
.y31{bottom:137.466667pt;}
.yb2{bottom:141.466667pt;}
.y6e{bottom:149.466667pt;}
.ycb{bottom:151.706667pt;}
.y30{bottom:155.866667pt;}
.y80{bottom:156.826667pt;}
.yc2{bottom:160.826667pt;}
.yb1{bottom:169.146667pt;}
.ydd{bottom:172.826667pt;}
.y4f{bottom:173.146667pt;}
.y2f{bottom:174.266667pt;}
.y6d{bottom:177.146667pt;}
.yca{bottom:179.226667pt;}
.y7f{bottom:184.346667pt;}
.yc1{bottom:188.346667pt;}
.ydc{bottom:191.226667pt;}
.y2e{bottom:192.666667pt;}
.yb0{bottom:196.666667pt;}
.y4e{bottom:200.826667pt;}
.y6c{bottom:204.666667pt;}
.yc9{bottom:206.906667pt;}
.y2d{bottom:211.066667pt;}
.y7e{bottom:212.026667pt;}
.ydb{bottom:220.346667pt;}
.yaf{bottom:224.346667pt;}
.y4d{bottom:228.346667pt;}
.y2c{bottom:229.466667pt;}
.yc0{bottom:232.026667pt;}
.y6b{bottom:232.346667pt;}
.yda{bottom:238.746667pt;}
.y7d{bottom:239.546667pt;}
.yc8{bottom:246.746667pt;}
.y2b{bottom:247.866667pt;}
.yae{bottom:251.866667pt;}
.y4c{bottom:256.026667pt;}
.y6a{bottom:259.866667pt;}
.y2a{bottom:266.266667pt;}
.y7c{bottom:267.226667pt;}
.yd9{bottom:267.866667pt;}
.yad{bottom:279.546667pt;}
.y79{bottom:282.106667pt;}
.y4b{bottom:283.546667pt;}
.y29{bottom:284.666667pt;}
.yd8{bottom:286.266667pt;}
.y69{bottom:287.546667pt;}
.y28{bottom:303.106667pt;}
.yac{bottom:307.106667pt;}
.y4a{bottom:311.266667pt;}
.y68{bottom:315.106667pt;}
.y27{bottom:321.506667pt;}
.yd7{bottom:331.906667pt;}
.yab{bottom:334.786667pt;}
.y49{bottom:338.786667pt;}
.y26{bottom:339.906667pt;}
.y67{bottom:342.786667pt;}
.y25{bottom:358.306667pt;}
.yaa{bottom:362.306667pt;}
.y48{bottom:366.466667pt;}
.y66{bottom:370.306667pt;}
.y24{bottom:376.706667pt;}
.yd6{bottom:377.986667pt;}
.ya9{bottom:389.986667pt;}
.y47{bottom:393.986667pt;}
.y23{bottom:395.106667pt;}
.y65{bottom:397.826667pt;}
.yd5{bottom:405.666667pt;}
.y22{bottom:413.506667pt;}
.ya8{bottom:417.506667pt;}
.y46{bottom:421.666667pt;}
.y64{bottom:425.506667pt;}
.y21{bottom:431.906667pt;}
.yd4{bottom:433.186667pt;}
.ya7{bottom:445.186667pt;}
.y45{bottom:449.186667pt;}
.y20{bottom:450.306667pt;}
.yd3{bottom:460.866667pt;}
.y8d{bottom:466.240000pt;}
.y8f{bottom:467.360000pt;}
.y1f{bottom:468.706667pt;}
.y63{bottom:471.106667pt;}
.ya6{bottom:472.706667pt;}
.y44{bottom:476.866667pt;}
.y1e{bottom:487.106667pt;}
.yd2{bottom:488.386667pt;}
.y62{bottom:497.506667pt;}
.ya5{bottom:500.386667pt;}
.y43{bottom:504.386667pt;}
.y1d{bottom:505.506667pt;}
.y78{bottom:515.266667pt;}
.yd1{bottom:516.066667pt;}
.y1c{bottom:523.906667pt;}
.y61{bottom:525.026667pt;}
.ya4{bottom:527.906667pt;}
.y42{bottom:532.066667pt;}
.y77{bottom:536.386667pt;}
.y1b{bottom:542.333333pt;}
.yd0{bottom:543.613333pt;}
.y60{bottom:552.573333pt;}
.ya3{bottom:555.613333pt;}
.y41{bottom:559.613333pt;}
.y1a{bottom:560.733333pt;}
.ycf{bottom:571.293333pt;}
.y19{bottom:579.133333pt;}
.y76{bottom:579.933333pt;}
.y5f{bottom:580.253333pt;}
.ya2{bottom:583.133333pt;}
.y40{bottom:587.293333pt;}
.y18{bottom:597.533333pt;}
.yce{bottom:598.813333pt;}
.y5e{bottom:607.773333pt;}
.ya1{bottom:610.813333pt;}
.y3f{bottom:614.813333pt;}
.y17{bottom:615.933333pt;}
.ycd{bottom:626.493333pt;}
.y16{bottom:634.333333pt;}
.y5d{bottom:635.453333pt;}
.y75{bottom:635.773333pt;}
.ybf{bottom:636.893333pt;}
.ya0{bottom:638.333333pt;}
.yc7{bottom:638.813333pt;}
.y3e{bottom:642.493333pt;}
.y15{bottom:652.733333pt;}
.ybe{bottom:658.013333pt;}
.yc6{bottom:659.933333pt;}
.y5c{bottom:662.973333pt;}
.y74{bottom:663.293333pt;}
.y9f{bottom:666.013333pt;}
.y3d{bottom:670.013333pt;}
.y14{bottom:671.133333pt;}
.ycc{bottom:672.093333pt;}
.yeb{bottom:672.573333pt;}
.ybd{bottom:679.133333pt;}
.yc5{bottom:681.053333pt;}
.y13{bottom:689.533333pt;}
.y5b{bottom:690.653333pt;}
.y73{bottom:691.773333pt;}
.y9e{bottom:693.533333pt;}
.y3c{bottom:697.693333pt;}
.yea{bottom:701.693333pt;}
.yc4{bottom:702.173333pt;}
.y12{bottom:707.933333pt;}
.y86{bottom:718.080000pt;}
.y5a{bottom:718.173333pt;}
.y8b{bottom:718.400000pt;}
.y88{bottom:720.000000pt;}
.ye9{bottom:720.093333pt;}
.ybc{bottom:722.813333pt;}
.y3b{bottom:725.213333pt;}
.y11{bottom:726.333333pt;}
.y9d{bottom:737.213333pt;}
.y10{bottom:744.733333pt;}
.y59{bottom:745.853333pt;}
.ye8{bottom:749.213333pt;}
.ybb{bottom:750.333333pt;}
.y89{bottom:750.880000pt;}
.y9c{bottom:752.093333pt;}
.y3a{bottom:752.893333pt;}
.yf{bottom:763.133333pt;}
.ye7{bottom:767.613333pt;}
.y58{bottom:773.373333pt;}
.y9a{bottom:774.693333pt;}
.y39{bottom:780.453333pt;}
.y82{bottom:781.440000pt;}
.ye{bottom:781.573333pt;}
.yba{bottom:795.973333pt;}
.ye6{bottom:796.613333pt;}
.y96{bottom:797.413333pt;}
.yd{bottom:800.453333pt;}
.y57{bottom:801.093333pt;}
.y38{bottom:808.133333pt;}
.ye5{bottom:815.013333pt;}
.y94{bottom:820.133333pt;}
.yc{bottom:822.533333pt;}
.y56{bottom:828.613333pt;}
.y37{bottom:835.653333pt;}
.y90{bottom:842.693333pt;}
.ye4{bottom:844.133333pt;}
.yb9{bottom:844.293333pt;}
.yb{bottom:847.173333pt;}
.y55{bottom:856.293333pt;}
.yb8{bottom:862.373333pt;}
.ye3{bottom:862.533333pt;}
.y36{bottom:863.333333pt;}
.ya{bottom:871.653333pt;}
.y84{bottom:874.880000pt;}
.y54{bottom:883.813333pt;}
.yb7{bottom:889.413333pt;}
.y35{bottom:890.853333pt;}
.ye2{bottom:891.653333pt;}
.y9{bottom:896.133333pt;}
.y72{bottom:909.573333pt;}
.ye1{bottom:910.053333pt;}
.y53{bottom:911.493333pt;}
.yb5{bottom:916.613333pt;}
.y34{bottom:918.533333pt;}
.y8{bottom:920.773333pt;}
.ye0{bottom:928.453333pt;}
.y71{bottom:930.853333pt;}
.y52{bottom:939.013333pt;}
.yb3{bottom:943.813333pt;}
.y7{bottom:945.253333pt;}
.y33{bottom:946.053333pt;}
.y70{bottom:951.973333pt;}
.ydf{bottom:957.413333pt;}
.y51{bottom:966.693333pt;}
.y6{bottom:969.733333pt;}
.y6f{bottom:973.093333pt;}
.yde{bottom:975.813333pt;}
.y32{bottom:991.653333pt;}
.y5{bottom:994.053333pt;}
.y50{bottom:994.213333pt;}
.h10{height:16.960000pt;}
.h11{height:17.120000pt;}
.h12{height:17.280000pt;}
.h18{height:22.560000pt;}
.h1b{height:22.592000pt;}
.h19{height:22.720000pt;}
.he{height:23.040000pt;}
.h1d{height:26.400000pt;}
.h1e{height:26.560000pt;}
.h13{height:35.200000pt;}
.h15{height:45.440000pt;}
.hb{height:51.031250pt;}
.h9{height:52.750000pt;}
.h3{height:52.785000pt;}
.h4{height:54.093750pt;}
.h2{height:55.468750pt;}
.h1a{height:55.687500pt;}
.h1c{height:56.843750pt;}
.h8{height:57.375000pt;}
.hd{height:58.563750pt;}
.hf{height:63.397875pt;}
.ha{height:66.507188pt;}
.h7{height:67.128750pt;}
.h14{height:71.944688pt;}
.h5{height:75.602187pt;}
.h6{height:76.308750pt;}
.h17{height:98.567500pt;}
.h16{height:104.327500pt;}
.hc{height:226.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:16.960000pt;}
.w8{width:17.120000pt;}
.w6{width:40.160000pt;}
.w9{width:48.160000pt;}
.wb{width:52.640000pt;}
.w4{width:89.280000pt;}
.w5{width:89.472000pt;}
.w16{width:98.240000pt;}
.w17{width:98.400000pt;}
.w15{width:98.432000pt;}
.w12{width:121.600000pt;}
.w11{width:131.712000pt;}
.w10{width:141.146667pt;}
.wc{width:151.226667pt;}
.w14{width:187.866667pt;}
.w13{width:207.226667pt;}
.we{width:207.546667pt;}
.w3{width:336.706667pt;}
.wf{width:395.746667pt;}
.wd{width:406.466667pt;}
.wa{width:557.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:4.666667pt;}
.x24{left:7.200000pt;}
.xf{left:9.632000pt;}
.x1c{left:17.853333pt;}
.x23{left:26.880000pt;}
.x34{left:28.000000pt;}
.x27{left:46.394667pt;}
.x30{left:52.640000pt;}
.x25{left:54.714667pt;}
.x2e{left:57.760000pt;}
.x2d{left:62.560000pt;}
.x28{left:66.394667pt;}
.x2a{left:78.074667pt;}
.xb{left:82.560000pt;}
.x33{left:89.800000pt;}
.x31{left:99.546667pt;}
.xe{left:111.520000pt;}
.x1{left:113.471988pt;}
.x1a{left:126.880000pt;}
.x3{left:143.226655pt;}
.x6{left:151.226655pt;}
.x7{left:160.666655pt;}
.x20{left:173.634667pt;}
.x2c{left:176.826667pt;}
.x10{left:180.800000pt;}
.x16{left:213.760000pt;}
.x29{left:229.466655pt;}
.x21{left:236.194667pt;}
.x4{left:247.586655pt;}
.x12{left:253.760000pt;}
.x26{left:264.706667pt;}
.x2b{left:321.666667pt;}
.x9{left:336.701333pt;}
.x13{left:349.760000pt;}
.x1f{left:374.720000pt;}
.x5{left:415.933322pt;}
.x35{left:420.733333pt;}
.x17{left:439.840000pt;}
.xa{left:450.173333pt;}
.x1b{left:463.680000pt;}
.x14{left:477.760000pt;}
.x36{left:519.613333pt;}
.x32{left:529.533333pt;}
.xc{left:539.453333pt;}
.x1d{left:554.720000pt;}
.x2f{left:595.813333pt;}
.x37{left:618.693333pt;}
.x15{left:623.680000pt;}
.xd{left:628.933333pt;}
.x1e{left:645.760000pt;}
.x22{left:671.173333pt;}
.x19{left:677.760000pt;}
.x18{left:683.680000pt;}
.x2{left:718.373322pt;}
.x8{left:726.213322pt;}
.x38{left:731.973322pt;}
}




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