
    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_c774e3db53a2ddc7a1b4959d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.052734;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_53809241f93c26ab6ee61396.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.052734;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_88beff601af10ee0aaf61d62.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.051270;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_78b37174c693ad43af236a74.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.982910;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_08fb15760461bd6a5d3698cf.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f0e0bf42118f00be9e1efd19.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.934082;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_4b30f1fa3b9c632fb5197d3e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.982910;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_eb5c61564d1c9b73544d72bf.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_60d71934547373bc61cf10b9.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;}
.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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-0.864000px;}
.ls10{letter-spacing:-0.852000px;}
.lsc{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.576000px;}
.lsd{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.204000px;}
.lse{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.107400px;}
.lsf{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.041040px;}
.ls4{letter-spacing:-0.034560px;}
.ls17{letter-spacing:-0.000006px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.089400px;}
.lsb{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.174240px;}
.ls14{letter-spacing:0.175200px;}
.ls15{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.256200px;}
.ls11{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.894000px;}
.ls3{letter-spacing:0.894240px;}
.ls13{letter-spacing:10.026720px;}
.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;}
}
.wsd{word-spacing:-72.000000px;}
.ws11{word-spacing:-59.760000px;}
.ws10{word-spacing:-16.632000px;}
.ws13{word-spacing:-16.488000px;}
.ws4{word-spacing:-16.272000px;}
.ws12{word-spacing:-16.271994px;}
.wsf{word-spacing:-16.200000px;}
.wse{word-spacing:-16.128000px;}
.wsc{word-spacing:-16.056000px;}
.ws1{word-spacing:-15.226440px;}
.wsb{word-spacing:-15.059640px;}
.ws0{word-spacing:-14.970240px;}
.ws6{word-spacing:-14.935680px;}
.ws9{word-spacing:-14.399760px;}
.ws7{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.398360px;}
.ws8{word-spacing:-13.301760px;}
.ws2{word-spacing:-10.902240px;}
.ws3{word-spacing:-9.437760px;}
.ws5{word-spacing:0.000000px;}
._1a{margin-left:-4.224960px;}
._f{margin-left:-2.727360px;}
._0{margin-left:-1.192320px;}
._5{width:1.368000px;}
._7{width:2.592000px;}
._e{width:4.032000px;}
._14{width:5.472000px;}
._d{width:7.056000px;}
._c{width:8.280000px;}
._13{width:9.400320px;}
._12{width:10.512000px;}
._2c{width:11.568000px;}
._b{width:12.568320px;}
._a{width:13.680000px;}
._10{width:14.728320px;}
._17{width:17.352000px;}
._16{width:18.432000px;}
._23{width:19.837440px;}
._25{width:21.360960px;}
._21{width:22.536000px;}
._9{width:23.688000px;}
._8{width:25.272000px;}
._6{width:26.928000px;}
._20{width:28.584000px;}
._24{width:29.632320px;}
._27{width:31.032000px;}
._34{width:32.088000px;}
._2a{width:33.240000px;}
._11{width:34.488000px;}
._19{width:35.640000px;}
._29{width:36.936000px;}
._28{width:38.016000px;}
._1f{width:39.312000px;}
._1e{width:40.320000px;}
._1c{width:41.400000px;}
._1b{width:42.984000px;}
._26{width:44.280000px;}
._2b{width:45.792000px;}
._30{width:47.056320px;}
._18{width:48.816000px;}
._35{width:55.224000px;}
._15{width:57.240000px;}
._31{width:61.200000px;}
._2d{width:66.816000px;}
._33{width:73.800000px;}
._32{width:74.880000px;}
._2f{width:80.784000px;}
._2e{width:86.931840px;}
._1d{width:88.488000px;}
._1{width:366.696720px;}
._4{width:407.712000px;}
._22{width:847.848000px;}
._3{width:943.572000px;}
._2{width:1464.209760px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs6{font-size:12.240000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:58.536000px;}
.y66{bottom:110.016000px;}
.yc3{bottom:114.516000px;}
.y100{bottom:114.696000px;}
.y5d{bottom:115.596000px;}
.ycb{bottom:116.856000px;}
.y65{bottom:118.836000px;}
.ya7{bottom:126.936000px;}
.ydf{bottom:129.636000px;}
.y31{bottom:129.996000px;}
.yc8{bottom:130.176000px;}
.yd3{bottom:131.976000px;}
.y29{bottom:134.496000px;}
.y8f{bottom:136.296000px;}
.yca{bottom:137.016000px;}
.yc2{bottom:138.096000px;}
.yff{bottom:138.456000px;}
.ye4{bottom:139.356000px;}
.y114{bottom:140.076000px;}
.y64{bottom:140.616000px;}
.y5c{bottom:146.196000px;}
.ya6{bottom:150.690000px;}
.yc7{bottom:153.390000px;}
.y30{bottom:153.750000px;}
.yc9{bottom:154.290000px;}
.yd2{bottom:155.730000px;}
.y63{bottom:158.070000px;}
.y28{bottom:158.250000px;}
.y8e{bottom:160.050000px;}
.yc1{bottom:161.850000px;}
.yfe{bottom:162.210000px;}
.ye3{bottom:163.110000px;}
.y113{bottom:163.830000px;}
.y5b{bottom:167.610000px;}
.ya5{bottom:174.270000px;}
.yc6{bottom:175.170000px;}
.yde{bottom:177.150000px;}
.y2f{bottom:177.330000px;}
.yd1{bottom:179.310000px;}
.y27{bottom:182.010000px;}
.y8d{bottom:183.630000px;}
.yc0{bottom:185.610000px;}
.yfd{bottom:185.970000px;}
.ye2{bottom:186.870000px;}
.y112{bottom:187.590000px;}
.y5a{bottom:188.670000px;}
.yc5{bottom:196.950000px;}
.ya4{bottom:198.030000px;}
.ydd{bottom:200.730000px;}
.y2e{bottom:201.090000px;}
.yd0{bottom:203.070000px;}
.y26{bottom:205.590000px;}
.y8c{bottom:207.390000px;}
.ybf{bottom:209.370000px;}
.yfc{bottom:209.550000px;}
.y59{bottom:209.730000px;}
.ye1{bottom:211.350000px;}
.yc4{bottom:214.410000px;}
.ya3{bottom:221.790000px;}
.ydc{bottom:224.490000px;}
.y2d{bottom:224.850000px;}
.ycf{bottom:226.830000px;}
.y25{bottom:229.350000px;}
.y58{bottom:230.790000px;}
.y8b{bottom:231.150000px;}
.ybe{bottom:232.950000px;}
.yfb{bottom:233.310000px;}
.ye0{bottom:234.570000px;}
.y111{bottom:234.930000px;}
.ya2{bottom:245.550000px;}
.y2c{bottom:248.070000px;}
.ydb{bottom:248.250000px;}
.yce{bottom:248.430000px;}
.y57{bottom:251.850000px;}
.y24{bottom:253.110000px;}
.y8a{bottom:254.910000px;}
.ybd{bottom:256.710000px;}
.yfa{bottom:257.070000px;}
.y110{bottom:258.690000px;}
.ycd{bottom:268.590000px;}
.ya1{bottom:269.130000px;}
.y2b{bottom:269.670000px;}
.yda{bottom:272.010000px;}
.y56{bottom:272.910000px;}
.y23{bottom:276.870000px;}
.y89{bottom:278.490000px;}
.ybc{bottom:280.470000px;}
.yf9{bottom:280.650000px;}
.y10f{bottom:282.450000px;}
.ycc{bottom:285.870000px;}
.y2a{bottom:287.130000px;}
.ya0{bottom:292.935000px;}
.y55{bottom:294.015000px;}
.yd9{bottom:295.635000px;}
.y22{bottom:300.495000px;}
.y88{bottom:302.295000px;}
.ybb{bottom:304.275000px;}
.yf8{bottom:304.455000px;}
.y10e{bottom:306.075000px;}
.y54{bottom:315.075000px;}
.y9f{bottom:316.695000px;}
.yd8{bottom:319.395000px;}
.y21{bottom:324.255000px;}
.y87{bottom:326.055000px;}
.yba{bottom:327.855000px;}
.y10d{bottom:329.835000px;}
.yf7{bottom:335.055000px;}
.y53{bottom:336.135000px;}
.y9e{bottom:340.455000px;}
.yd7{bottom:343.155000px;}
.y20{bottom:348.015000px;}
.y86{bottom:349.815000px;}
.yb9{bottom:351.615000px;}
.y10c{bottom:353.595000px;}
.yf6{bottom:356.475000px;}
.y52{bottom:357.195000px;}
.y9d{bottom:364.035000px;}
.yd6{bottom:364.755000px;}
.y1f{bottom:371.595000px;}
.y85{bottom:373.395000px;}
.yb8{bottom:375.375000px;}
.y10b{bottom:377.355000px;}
.yf5{bottom:377.535000px;}
.y51{bottom:378.255000px;}
.yd5{bottom:384.915000px;}
.y9c{bottom:387.795000px;}
.y1e{bottom:395.355000px;}
.y84{bottom:397.155000px;}
.yf4{bottom:398.595000px;}
.yb7{bottom:398.955000px;}
.y50{bottom:399.315000px;}
.yd4{bottom:400.395000px;}
.y10a{bottom:400.935000px;}
.y9b{bottom:411.555000px;}
.y1d{bottom:419.115000px;}
.yf3{bottom:419.655000px;}
.y4f{bottom:420.375000px;}
.y83{bottom:420.915000px;}
.yb6{bottom:422.715000px;}
.y109{bottom:424.695000px;}
.y9a{bottom:435.135000px;}
.yf2{bottom:440.715000px;}
.y4e{bottom:441.435000px;}
.y1c{bottom:442.875000px;}
.y82{bottom:444.675000px;}
.yb5{bottom:446.475000px;}
.y108{bottom:448.455000px;}
.y99{bottom:458.895000px;}
.yf1{bottom:461.775000px;}
.y4d{bottom:462.495000px;}
.y1b{bottom:466.455000px;}
.y81{bottom:468.255000px;}
.yb4{bottom:470.235000px;}
.y107{bottom:472.215000px;}
.y98{bottom:482.655000px;}
.yf0{bottom:482.835000px;}
.y4c{bottom:483.555000px;}
.y1a{bottom:490.215000px;}
.y80{bottom:492.015000px;}
.yb3{bottom:493.815000px;}
.y106{bottom:495.795000px;}
.yef{bottom:503.895000px;}
.y4b{bottom:504.615000px;}
.y97{bottom:506.415000px;}
.y19{bottom:513.975000px;}
.y7f{bottom:515.775000px;}
.yb2{bottom:517.575000px;}
.y105{bottom:519.555000px;}
.yee{bottom:524.955000px;}
.y4a{bottom:525.675000px;}
.y96{bottom:529.995000px;}
.y18{bottom:537.735000px;}
.y7e{bottom:539.535000px;}
.yb1{bottom:541.335000px;}
.y104{bottom:543.315000px;}
.yed{bottom:546.015000px;}
.y49{bottom:546.735000px;}
.y95{bottom:553.785000px;}
.y17{bottom:561.345000px;}
.y7d{bottom:563.145000px;}
.yb0{bottom:565.125000px;}
.yec{bottom:567.105000px;}
.y48{bottom:567.825000px;}
.y94{bottom:577.545000px;}
.y16{bottom:585.105000px;}
.y7c{bottom:586.905000px;}
.yeb{bottom:588.165000px;}
.yaf{bottom:588.705000px;}
.y47{bottom:588.885000px;}
.y103{bottom:590.685000px;}
.y93{bottom:601.305000px;}
.y15{bottom:608.865000px;}
.yea{bottom:609.225000px;}
.y46{bottom:609.945000px;}
.y7b{bottom:610.665000px;}
.yae{bottom:612.465000px;}
.y102{bottom:614.445000px;}
.y92{bottom:624.345000px;}
.y45{bottom:631.005000px;}
.y14{bottom:632.625000px;}
.y7a{bottom:634.245000px;}
.yad{bottom:636.225000px;}
.y101{bottom:638.205000px;}
.y91{bottom:646.125000px;}
.y44{bottom:652.065000px;}
.y13{bottom:656.205000px;}
.y79{bottom:658.005000px;}
.yac{bottom:659.985000px;}
.ye9{bottom:661.425000px;}
.y90{bottom:663.585000px;}
.y43{bottom:673.125000px;}
.y12{bottom:679.965000px;}
.y78{bottom:681.765000px;}
.yab{bottom:683.565000px;}
.y42{bottom:694.185000px;}
.y11{bottom:703.725000px;}
.y77{bottom:705.525000px;}
.yaa{bottom:707.325000px;}
.ye8{bottom:711.285000px;}
.y41{bottom:715.245000px;}
.y10{bottom:727.485000px;}
.y76{bottom:729.105000px;}
.ya9{bottom:731.085000px;}
.ye7{bottom:734.325000px;}
.y62{bottom:736.125000px;}
.y40{bottom:737.025000px;}
.yf{bottom:751.065000px;}
.y75{bottom:752.865000px;}
.ya8{bottom:754.665000px;}
.ye6{bottom:757.545000px;}
.y61{bottom:759.345000px;}
.ye{bottom:774.825000px;}
.ye5{bottom:775.005000px;}
.y74{bottom:776.625000px;}
.y3f{bottom:778.425000px;}
.y60{bottom:781.125000px;}
.yd{bottom:798.585000px;}
.y73{bottom:800.385000px;}
.y3e{bottom:802.185000px;}
.y5f{bottom:802.905000px;}
.y5e{bottom:820.230000px;}
.yc{bottom:822.210000px;}
.y72{bottom:824.010000px;}
.y3d{bottom:825.990000px;}
.yb{bottom:845.430000px;}
.y71{bottom:847.770000px;}
.y3c{bottom:849.570000px;}
.y70{bottom:871.530000px;}
.ya{bottom:873.150000px;}
.y3b{bottom:873.330000px;}
.y9{bottom:888.990000px;}
.y6f{bottom:895.290000px;}
.y3a{bottom:897.090000px;}
.y8{bottom:916.530000px;}
.y6e{bottom:918.870000px;}
.y39{bottom:920.850000px;}
.y7{bottom:932.910000px;}
.y6d{bottom:942.630000px;}
.y38{bottom:944.430000px;}
.y6{bottom:956.670000px;}
.y6c{bottom:966.390000px;}
.y37{bottom:968.190000px;}
.y5{bottom:983.490000px;}
.y6b{bottom:989.970000px;}
.y36{bottom:991.950000px;}
.y6a{bottom:1013.730000px;}
.y35{bottom:1015.710000px;}
.y4{bottom:1015.890000px;}
.y69{bottom:1037.490000px;}
.y34{bottom:1039.290000px;}
.y3{bottom:1039.650000px;}
.y1{bottom:1056.570000px;}
.y68{bottom:1061.280000px;}
.y33{bottom:1063.080000px;}
.y67{bottom:1078.740000px;}
.y32{bottom:1118.340000px;}
.hb{height:5.920372px;}
.ha{height:10.704023px;}
.h6{height:33.603750px;}
.h9{height:52.260820px;}
.h7{height:53.302500px;}
.h8{height:57.830625px;}
.h1{height:57.927656px;}
.hc{height:61.423863px;}
.h2{height:62.859375px;}
.h4{height:62.964844px;}
.h5{height:65.875781px;}
.h3{height:94.289062px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:81.000000px;}
.x10{left:91.800000px;}
.x7{left:93.240000px;}
.xd{left:94.500000px;}
.x5{left:106.056000px;}
.x9{left:108.036000px;}
.x17{left:122.256000px;}
.x11{left:148.716000px;}
.x6{left:262.830000px;}
.x4{left:289.290000px;}
.x8{left:323.175000px;}
.xf{left:346.755000px;}
.x12{left:430.275000px;}
.x15{left:432.075000px;}
.x3{left:459.075000px;}
.xa{left:486.075000px;}
.x13{left:500.835000px;}
.x14{left:505.515000px;}
.xb{left:513.075000px;}
.x16{left:515.955000px;}
.xe{left:674.205000px;}
.xc{left:837.150000px;}
.x1{left:918.150000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.768000pt;}
.ls10{letter-spacing:-0.757333pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.512000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.181333pt;}
.lse{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.095467pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.036480pt;}
.ls4{letter-spacing:-0.030720pt;}
.ls17{letter-spacing:-0.000005pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.079467pt;}
.lsb{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.154880pt;}
.ls14{letter-spacing:0.155733pt;}
.ls15{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.227733pt;}
.ls11{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.794667pt;}
.ls3{letter-spacing:0.794880pt;}
.ls13{letter-spacing:8.912640pt;}
.wsd{word-spacing:-64.000000pt;}
.ws11{word-spacing:-53.120000pt;}
.ws10{word-spacing:-14.784000pt;}
.ws13{word-spacing:-14.656000pt;}
.ws4{word-spacing:-14.464000pt;}
.ws12{word-spacing:-14.463995pt;}
.wsf{word-spacing:-14.400000pt;}
.wse{word-spacing:-14.336000pt;}
.wsc{word-spacing:-14.272000pt;}
.ws1{word-spacing:-13.534613pt;}
.wsb{word-spacing:-13.386347pt;}
.ws0{word-spacing:-13.306880pt;}
.ws6{word-spacing:-13.276160pt;}
.ws9{word-spacing:-12.799787pt;}
.ws7{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.909653pt;}
.ws8{word-spacing:-11.823787pt;}
.ws2{word-spacing:-9.690880pt;}
.ws3{word-spacing:-8.389120pt;}
.ws5{word-spacing:0.000000pt;}
._1a{margin-left:-3.755520pt;}
._f{margin-left:-2.424320pt;}
._0{margin-left:-1.059840pt;}
._5{width:1.216000pt;}
._7{width:2.304000pt;}
._e{width:3.584000pt;}
._14{width:4.864000pt;}
._d{width:6.272000pt;}
._c{width:7.360000pt;}
._13{width:8.355840pt;}
._12{width:9.344000pt;}
._2c{width:10.282667pt;}
._b{width:11.171840pt;}
._a{width:12.160000pt;}
._10{width:13.091840pt;}
._17{width:15.424000pt;}
._16{width:16.384000pt;}
._23{width:17.633280pt;}
._25{width:18.987520pt;}
._21{width:20.032000pt;}
._9{width:21.056000pt;}
._8{width:22.464000pt;}
._6{width:23.936000pt;}
._20{width:25.408000pt;}
._24{width:26.339840pt;}
._27{width:27.584000pt;}
._34{width:28.522667pt;}
._2a{width:29.546667pt;}
._11{width:30.656000pt;}
._19{width:31.680000pt;}
._29{width:32.832000pt;}
._28{width:33.792000pt;}
._1f{width:34.944000pt;}
._1e{width:35.840000pt;}
._1c{width:36.800000pt;}
._1b{width:38.208000pt;}
._26{width:39.360000pt;}
._2b{width:40.704000pt;}
._30{width:41.827840pt;}
._18{width:43.392000pt;}
._35{width:49.088000pt;}
._15{width:50.880000pt;}
._31{width:54.400000pt;}
._2d{width:59.392000pt;}
._33{width:65.600000pt;}
._32{width:66.560000pt;}
._2f{width:71.808000pt;}
._2e{width:77.272747pt;}
._1d{width:78.656000pt;}
._1{width:325.952640pt;}
._4{width:362.410667pt;}
._22{width:753.642667pt;}
._3{width:838.730667pt;}
._2{width:1301.519787pt;}
.fs7{font-size:5.120000pt;}
.fs6{font-size:10.880000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:52.032000pt;}
.y66{bottom:97.792000pt;}
.yc3{bottom:101.792000pt;}
.y100{bottom:101.952000pt;}
.y5d{bottom:102.752000pt;}
.ycb{bottom:103.872000pt;}
.y65{bottom:105.632000pt;}
.ya7{bottom:112.832000pt;}
.ydf{bottom:115.232000pt;}
.y31{bottom:115.552000pt;}
.yc8{bottom:115.712000pt;}
.yd3{bottom:117.312000pt;}
.y29{bottom:119.552000pt;}
.y8f{bottom:121.152000pt;}
.yca{bottom:121.792000pt;}
.yc2{bottom:122.752000pt;}
.yff{bottom:123.072000pt;}
.ye4{bottom:123.872000pt;}
.y114{bottom:124.512000pt;}
.y64{bottom:124.992000pt;}
.y5c{bottom:129.952000pt;}
.ya6{bottom:133.946667pt;}
.yc7{bottom:136.346667pt;}
.y30{bottom:136.666667pt;}
.yc9{bottom:137.146667pt;}
.yd2{bottom:138.426667pt;}
.y63{bottom:140.506667pt;}
.y28{bottom:140.666667pt;}
.y8e{bottom:142.266667pt;}
.yc1{bottom:143.866667pt;}
.yfe{bottom:144.186667pt;}
.ye3{bottom:144.986667pt;}
.y113{bottom:145.626667pt;}
.y5b{bottom:148.986667pt;}
.ya5{bottom:154.906667pt;}
.yc6{bottom:155.706667pt;}
.yde{bottom:157.466667pt;}
.y2f{bottom:157.626667pt;}
.yd1{bottom:159.386667pt;}
.y27{bottom:161.786667pt;}
.y8d{bottom:163.226667pt;}
.yc0{bottom:164.986667pt;}
.yfd{bottom:165.306667pt;}
.ye2{bottom:166.106667pt;}
.y112{bottom:166.746667pt;}
.y5a{bottom:167.706667pt;}
.yc5{bottom:175.066667pt;}
.ya4{bottom:176.026667pt;}
.ydd{bottom:178.426667pt;}
.y2e{bottom:178.746667pt;}
.yd0{bottom:180.506667pt;}
.y26{bottom:182.746667pt;}
.y8c{bottom:184.346667pt;}
.ybf{bottom:186.106667pt;}
.yfc{bottom:186.266667pt;}
.y59{bottom:186.426667pt;}
.ye1{bottom:187.866667pt;}
.yc4{bottom:190.586667pt;}
.ya3{bottom:197.146667pt;}
.ydc{bottom:199.546667pt;}
.y2d{bottom:199.866667pt;}
.ycf{bottom:201.626667pt;}
.y25{bottom:203.866667pt;}
.y58{bottom:205.146667pt;}
.y8b{bottom:205.466667pt;}
.ybe{bottom:207.066667pt;}
.yfb{bottom:207.386667pt;}
.ye0{bottom:208.506667pt;}
.y111{bottom:208.826667pt;}
.ya2{bottom:218.266667pt;}
.y2c{bottom:220.506667pt;}
.ydb{bottom:220.666667pt;}
.yce{bottom:220.826667pt;}
.y57{bottom:223.866667pt;}
.y24{bottom:224.986667pt;}
.y8a{bottom:226.586667pt;}
.ybd{bottom:228.186667pt;}
.yfa{bottom:228.506667pt;}
.y110{bottom:229.946667pt;}
.ycd{bottom:238.746667pt;}
.ya1{bottom:239.226667pt;}
.y2b{bottom:239.706667pt;}
.yda{bottom:241.786667pt;}
.y56{bottom:242.586667pt;}
.y23{bottom:246.106667pt;}
.y89{bottom:247.546667pt;}
.ybc{bottom:249.306667pt;}
.yf9{bottom:249.466667pt;}
.y10f{bottom:251.066667pt;}
.ycc{bottom:254.106667pt;}
.y2a{bottom:255.226667pt;}
.ya0{bottom:260.386667pt;}
.y55{bottom:261.346667pt;}
.yd9{bottom:262.786667pt;}
.y22{bottom:267.106667pt;}
.y88{bottom:268.706667pt;}
.ybb{bottom:270.466667pt;}
.yf8{bottom:270.626667pt;}
.y10e{bottom:272.066667pt;}
.y54{bottom:280.066667pt;}
.y9f{bottom:281.506667pt;}
.yd8{bottom:283.906667pt;}
.y21{bottom:288.226667pt;}
.y87{bottom:289.826667pt;}
.yba{bottom:291.426667pt;}
.y10d{bottom:293.186667pt;}
.yf7{bottom:297.826667pt;}
.y53{bottom:298.786667pt;}
.y9e{bottom:302.626667pt;}
.yd7{bottom:305.026667pt;}
.y20{bottom:309.346667pt;}
.y86{bottom:310.946667pt;}
.yb9{bottom:312.546667pt;}
.y10c{bottom:314.306667pt;}
.yf6{bottom:316.866667pt;}
.y52{bottom:317.506667pt;}
.y9d{bottom:323.586667pt;}
.yd6{bottom:324.226667pt;}
.y1f{bottom:330.306667pt;}
.y85{bottom:331.906667pt;}
.yb8{bottom:333.666667pt;}
.y10b{bottom:335.426667pt;}
.yf5{bottom:335.586667pt;}
.y51{bottom:336.226667pt;}
.yd5{bottom:342.146667pt;}
.y9c{bottom:344.706667pt;}
.y1e{bottom:351.426667pt;}
.y84{bottom:353.026667pt;}
.yf4{bottom:354.306667pt;}
.yb7{bottom:354.626667pt;}
.y50{bottom:354.946667pt;}
.yd4{bottom:355.906667pt;}
.y10a{bottom:356.386667pt;}
.y9b{bottom:365.826667pt;}
.y1d{bottom:372.546667pt;}
.yf3{bottom:373.026667pt;}
.y4f{bottom:373.666667pt;}
.y83{bottom:374.146667pt;}
.yb6{bottom:375.746667pt;}
.y109{bottom:377.506667pt;}
.y9a{bottom:386.786667pt;}
.yf2{bottom:391.746667pt;}
.y4e{bottom:392.386667pt;}
.y1c{bottom:393.666667pt;}
.y82{bottom:395.266667pt;}
.yb5{bottom:396.866667pt;}
.y108{bottom:398.626667pt;}
.y99{bottom:407.906667pt;}
.yf1{bottom:410.466667pt;}
.y4d{bottom:411.106667pt;}
.y1b{bottom:414.626667pt;}
.y81{bottom:416.226667pt;}
.yb4{bottom:417.986667pt;}
.y107{bottom:419.746667pt;}
.y98{bottom:429.026667pt;}
.yf0{bottom:429.186667pt;}
.y4c{bottom:429.826667pt;}
.y1a{bottom:435.746667pt;}
.y80{bottom:437.346667pt;}
.yb3{bottom:438.946667pt;}
.y106{bottom:440.706667pt;}
.yef{bottom:447.906667pt;}
.y4b{bottom:448.546667pt;}
.y97{bottom:450.146667pt;}
.y19{bottom:456.866667pt;}
.y7f{bottom:458.466667pt;}
.yb2{bottom:460.066667pt;}
.y105{bottom:461.826667pt;}
.yee{bottom:466.626667pt;}
.y4a{bottom:467.266667pt;}
.y96{bottom:471.106667pt;}
.y18{bottom:477.986667pt;}
.y7e{bottom:479.586667pt;}
.yb1{bottom:481.186667pt;}
.y104{bottom:482.946667pt;}
.yed{bottom:485.346667pt;}
.y49{bottom:485.986667pt;}
.y95{bottom:492.253333pt;}
.y17{bottom:498.973333pt;}
.y7d{bottom:500.573333pt;}
.yb0{bottom:502.333333pt;}
.yec{bottom:504.093333pt;}
.y48{bottom:504.733333pt;}
.y94{bottom:513.373333pt;}
.y16{bottom:520.093333pt;}
.y7c{bottom:521.693333pt;}
.yeb{bottom:522.813333pt;}
.yaf{bottom:523.293333pt;}
.y47{bottom:523.453333pt;}
.y103{bottom:525.053333pt;}
.y93{bottom:534.493333pt;}
.y15{bottom:541.213333pt;}
.yea{bottom:541.533333pt;}
.y46{bottom:542.173333pt;}
.y7b{bottom:542.813333pt;}
.yae{bottom:544.413333pt;}
.y102{bottom:546.173333pt;}
.y92{bottom:554.973333pt;}
.y45{bottom:560.893333pt;}
.y14{bottom:562.333333pt;}
.y7a{bottom:563.773333pt;}
.yad{bottom:565.533333pt;}
.y101{bottom:567.293333pt;}
.y91{bottom:574.333333pt;}
.y44{bottom:579.613333pt;}
.y13{bottom:583.293333pt;}
.y79{bottom:584.893333pt;}
.yac{bottom:586.653333pt;}
.ye9{bottom:587.933333pt;}
.y90{bottom:589.853333pt;}
.y43{bottom:598.333333pt;}
.y12{bottom:604.413333pt;}
.y78{bottom:606.013333pt;}
.yab{bottom:607.613333pt;}
.y42{bottom:617.053333pt;}
.y11{bottom:625.533333pt;}
.y77{bottom:627.133333pt;}
.yaa{bottom:628.733333pt;}
.ye8{bottom:632.253333pt;}
.y41{bottom:635.773333pt;}
.y10{bottom:646.653333pt;}
.y76{bottom:648.093333pt;}
.ya9{bottom:649.853333pt;}
.ye7{bottom:652.733333pt;}
.y62{bottom:654.333333pt;}
.y40{bottom:655.133333pt;}
.yf{bottom:667.613333pt;}
.y75{bottom:669.213333pt;}
.ya8{bottom:670.813333pt;}
.ye6{bottom:673.373333pt;}
.y61{bottom:674.973333pt;}
.ye{bottom:688.733333pt;}
.ye5{bottom:688.893333pt;}
.y74{bottom:690.333333pt;}
.y3f{bottom:691.933333pt;}
.y60{bottom:694.333333pt;}
.yd{bottom:709.853333pt;}
.y73{bottom:711.453333pt;}
.y3e{bottom:713.053333pt;}
.y5f{bottom:713.693333pt;}
.y5e{bottom:729.093333pt;}
.yc{bottom:730.853333pt;}
.y72{bottom:732.453333pt;}
.y3d{bottom:734.213333pt;}
.yb{bottom:751.493333pt;}
.y71{bottom:753.573333pt;}
.y3c{bottom:755.173333pt;}
.y70{bottom:774.693333pt;}
.ya{bottom:776.133333pt;}
.y3b{bottom:776.293333pt;}
.y9{bottom:790.213333pt;}
.y6f{bottom:795.813333pt;}
.y3a{bottom:797.413333pt;}
.y8{bottom:814.693333pt;}
.y6e{bottom:816.773333pt;}
.y39{bottom:818.533333pt;}
.y7{bottom:829.253333pt;}
.y6d{bottom:837.893333pt;}
.y38{bottom:839.493333pt;}
.y6{bottom:850.373333pt;}
.y6c{bottom:859.013333pt;}
.y37{bottom:860.613333pt;}
.y5{bottom:874.213333pt;}
.y6b{bottom:879.973333pt;}
.y36{bottom:881.733333pt;}
.y6a{bottom:901.093333pt;}
.y35{bottom:902.853333pt;}
.y4{bottom:903.013333pt;}
.y69{bottom:922.213333pt;}
.y34{bottom:923.813333pt;}
.y3{bottom:924.133333pt;}
.y1{bottom:939.173333pt;}
.y68{bottom:943.360000pt;}
.y33{bottom:944.960000pt;}
.y67{bottom:958.880000pt;}
.y32{bottom:994.080000pt;}
.hb{height:5.262553pt;}
.ha{height:9.514687pt;}
.h6{height:29.870000pt;}
.h9{height:46.454062pt;}
.h7{height:47.380000pt;}
.h8{height:51.405000pt;}
.h1{height:51.491250pt;}
.hc{height:54.598989pt;}
.h2{height:55.875000pt;}
.h4{height:55.968750pt;}
.h5{height:58.556250pt;}
.h3{height:83.812500pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:72.000000pt;}
.x10{left:81.600000pt;}
.x7{left:82.880000pt;}
.xd{left:84.000000pt;}
.x5{left:94.272000pt;}
.x9{left:96.032000pt;}
.x17{left:108.672000pt;}
.x11{left:132.192000pt;}
.x6{left:233.626667pt;}
.x4{left:257.146667pt;}
.x8{left:287.266667pt;}
.xf{left:308.226667pt;}
.x12{left:382.466667pt;}
.x15{left:384.066667pt;}
.x3{left:408.066667pt;}
.xa{left:432.066667pt;}
.x13{left:445.186667pt;}
.x14{left:449.346667pt;}
.xb{left:456.066667pt;}
.x16{left:458.626667pt;}
.xe{left:599.293333pt;}
.xc{left:744.133333pt;}
.x1{left:816.133333pt;}
}




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