
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_50c9f7175134190c8670fee9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2cd78404944587f910e5d962.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6cd590f0664b36e957b27bdb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_fc7539841cecb1aaebe9220d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_9fa653d5a2e537ce4266c357.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0e0941a0154349559349a32b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4e54e8aa4e6d56ee7516a306.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_d8f9a5c5251dfd7fd8c6b6e6.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_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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_3b17d8f782914f024d439101.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-96.480000px;}
.v2{vertical-align:-38.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:38.880000px;}
.lsb{letter-spacing:-0.378600px;}
.ls6{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.180000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.028080px;}
.ls2{letter-spacing:0.360000px;}
.ls5{letter-spacing:21.221280px;}
.ls7{letter-spacing:64.026720px;}
.lsa{letter-spacing:83.861280px;}
.ls9{letter-spacing:125.621280px;}
.ls0{letter-spacing:197.429760px;}
.ls1{letter-spacing:1083.329760px;}
.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:-59.760000px;}
.ws5{word-spacing:-21.420000px;}
.ws2{word-spacing:-21.060000px;}
.ws6{word-spacing:-20.700000px;}
.ws8{word-spacing:-20.681400px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-13.500000px;}
.ws0{word-spacing:-0.066240px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-196.973760px;}
._29{margin-left:-9.687600px;}
._2b{margin-left:-7.497360px;}
._28{margin-left:-5.490240px;}
._15{margin-left:-2.428320px;}
._1{margin-left:-1.126080px;}
._3{width:1.882320px;}
._5{width:3.244560px;}
._17{width:4.801680px;}
._14{width:6.739200px;}
._16{width:7.750080px;}
._d{width:9.581040px;}
._1b{width:10.583280px;}
._e{width:11.740320px;}
._12{width:13.205760px;}
._26{width:14.501760px;}
._1c{width:15.584400px;}
._13{width:17.490720px;}
._a{width:18.493200px;}
._9{width:19.552320px;}
._1d{width:22.069680px;}
._20{width:23.116800px;}
._18{width:24.176880px;}
._25{width:26.026560px;}
._2e{width:27.587040px;}
._11{width:28.672560px;}
._10{width:29.683440px;}
._f{width:31.831440px;}
._8{width:33.011040px;}
._7{width:34.278960px;}
._27{width:36.182880px;}
._22{width:37.612320px;}
._21{width:38.703120px;}
._2d{width:39.785280px;}
._30{width:41.226000px;}
._19{width:42.709680px;}
._1a{width:43.845360px;}
._4{width:45.352080px;}
._2c{width:47.174400px;}
._2a{width:48.185280px;}
._2f{width:49.533120px;}
._24{width:54.045120px;}
._23{width:55.092960px;}
._1e{width:59.473440px;}
._1f{width:61.227840px;}
._31{width:72.977520px;}
._32{width:74.013360px;}
._b{width:75.479040px;}
._c{width:76.658400px;}
._6{width:182.700000px;}
._2{width:638.842080px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.940000px;}
.y3{bottom:6.120000px;}
.ya9{bottom:16.200000px;}
.y94{bottom:23.220000px;}
.y87{bottom:23.400000px;}
.ya7{bottom:23.436000px;}
.y8d{bottom:23.580000px;}
.y96{bottom:23.625000px;}
.y8b{bottom:23.760000px;}
.y2{bottom:26.100000px;}
.y4{bottom:28.800000px;}
.y89{bottom:37.260000px;}
.y98{bottom:37.440000px;}
.y8f{bottom:37.620000px;}
.y85{bottom:51.120000px;}
.y99{bottom:51.480000px;}
.y90{bottom:51.516000px;}
.y88{bottom:64.980000px;}
.y86{bottom:78.840000px;}
.y8e{bottom:80.460000px;}
.ya8{bottom:82.080000px;}
.ydf{bottom:92.160000px;}
.yc9{bottom:103.500000px;}
.y49{bottom:119.880000px;}
.y6b{bottom:123.300000px;}
.ya6{bottom:125.640000px;}
.yc8{bottom:131.256000px;}
.y26{bottom:145.476000px;}
.y6a{bottom:147.456000px;}
.y48{bottom:147.816000px;}
.y100{bottom:151.410000px;}
.y8c{bottom:151.950000px;}
.yc7{bottom:158.970000px;}
.y69{bottom:171.570000px;}
.y25{bottom:173.370000px;}
.y47{bottom:175.530000px;}
.yc6{bottom:186.870000px;}
.ya5{bottom:192.450000px;}
.y8a{bottom:195.330000px;}
.y68{bottom:195.690000px;}
.yff{bottom:199.650000px;}
.y24{bottom:201.090000px;}
.y46{bottom:203.250000px;}
.yc5{bottom:214.590000px;}
.y67{bottom:219.810000px;}
.ya4{bottom:220.350000px;}
.yfe{bottom:223.770000px;}
.y23{bottom:228.810000px;}
.y45{bottom:231.150000px;}
.y84{bottom:238.890000px;}
.yc4{bottom:242.310000px;}
.y66{bottom:244.110000px;}
.yfd{bottom:247.890000px;}
.y22{bottom:256.530000px;}
.y44{bottom:258.870000px;}
.ya3{bottom:263.370000px;}
.y65{bottom:268.230000px;}
.yc3{bottom:270.210000px;}
.yfc{bottom:272.190000px;}
.y21{bottom:284.430000px;}
.y64{bottom:292.350000px;}
.yfb{bottom:296.310000px;}
.yc2{bottom:297.930000px;}
.y43{bottom:301.170000px;}
.ya2{bottom:306.210000px;}
.y20{bottom:312.150000px;}
.yfa{bottom:320.430000px;}
.yc1{bottom:325.650000px;}
.y63{bottom:335.010000px;}
.y1f{bottom:339.870000px;}
.y42{bottom:344.010000px;}
.yde{bottom:344.370000px;}
.yf9{bottom:344.550000px;}
.y11d{bottom:348.150000px;}
.ya1{bottom:348.870000px;}
.y83{bottom:361.290000px;}
.y62{bottom:362.910000px;}
.yc0{bottom:368.130000px;}
.yf8{bottom:368.670000px;}
.ydd{bottom:372.090000px;}
.y11c{bottom:372.270000px;}
.ya0{bottom:376.770000px;}
.y1e{bottom:382.755000px;}
.y41{bottom:386.895000px;}
.y82{bottom:389.055000px;}
.yf7{bottom:392.835000px;}
.y11b{bottom:396.435000px;}
.ydc{bottom:400.035000px;}
.y9f{bottom:404.535000px;}
.y61{bottom:405.255000px;}
.y1d{bottom:410.475000px;}
.ybf{bottom:410.835000px;}
.yf6{bottom:417.135000px;}
.y11a{bottom:420.555000px;}
.ydb{bottom:427.755000px;}
.y40{bottom:429.915000px;}
.y81{bottom:432.255000px;}
.y119{bottom:444.855000px;}
.y60{bottom:448.455000px;}
.y1c{bottom:453.315000px;}
.ybe{bottom:454.035000px;}
.yda{bottom:455.475000px;}
.y3f{bottom:457.815000px;}
.yf5{bottom:459.435000px;}
.y9e{bottom:460.155000px;}
.y118{bottom:468.975000px;}
.y5f{bottom:472.575000px;}
.y80{bottom:475.095000px;}
.y1b{bottom:481.035000px;}
.yd9{bottom:483.195000px;}
.y3e{bottom:485.535000px;}
.y117{bottom:493.095000px;}
.y5e{bottom:496.695000px;}
.ybd{bottom:496.875000px;}
.yf4{bottom:502.275000px;}
.y7f{bottom:502.815000px;}
.y1a{bottom:508.755000px;}
.yd8{bottom:511.095000px;}
.y3d{bottom:513.255000px;}
.y116{bottom:517.215000px;}
.y5d{bottom:520.815000px;}
.ybc{bottom:524.595000px;}
.y7e{bottom:530.535000px;}
.y19{bottom:536.655000px;}
.yd7{bottom:538.815000px;}
.y3c{bottom:540.975000px;}
.y115{bottom:541.335000px;}
.y5c{bottom:545.115000px;}
.yf3{bottom:545.295000px;}
.ybb{bottom:552.315000px;}
.y7d{bottom:558.255000px;}
.y9d{bottom:558.435000px;}
.y18{bottom:564.375000px;}
.y114{bottom:565.455000px;}
.y3b{bottom:568.875000px;}
.y5b{bottom:569.235000px;}
.yba{bottom:580.035000px;}
.yd6{bottom:581.295000px;}
.y7c{bottom:586.155000px;}
.yf2{bottom:588.135000px;}
.y113{bottom:589.755000px;}
.y17{bottom:592.095000px;}
.y5a{bottom:593.355000px;}
.y3a{bottom:596.595000px;}
.yb9{bottom:607.935000px;}
.y7b{bottom:613.875000px;}
.yf1{bottom:615.855000px;}
.y16{bottom:619.815000px;}
.y39{bottom:624.315000px;}
.y59{bottom:636.225000px;}
.y112{bottom:638.025000px;}
.y7a{bottom:641.625000px;}
.yf0{bottom:643.785000px;}
.y15{bottom:647.745000px;}
.yb8{bottom:650.265000px;}
.y38{bottom:652.245000px;}
.y9c{bottom:656.385000px;}
.y111{bottom:662.145000px;}
.y58{bottom:663.945000px;}
.y79{bottom:669.345000px;}
.yef{bottom:671.505000px;}
.y14{bottom:675.465000px;}
.y37{bottom:679.965000px;}
.y110{bottom:686.265000px;}
.yb7{bottom:693.465000px;}
.yee{bottom:695.625000px;}
.y9b{bottom:699.045000px;}
.y13{bottom:703.185000px;}
.y57{bottom:706.245000px;}
.yd5{bottom:707.685000px;}
.y10f{bottom:710.385000px;}
.y78{bottom:711.825000px;}
.yb6{bottom:717.585000px;}
.y9a{bottom:719.385000px;}
.yed{bottom:719.745000px;}
.y36{bottom:722.625000px;}
.y12{bottom:731.085000px;}
.y10e{bottom:734.505000px;}
.yd4{bottom:735.405000px;}
.yb5{bottom:741.705000px;}
.yec{bottom:743.865000px;}
.y56{bottom:749.445000px;}
.y35{bottom:750.525000px;}
.y77{bottom:754.665000px;}
.y11{bottom:758.805000px;}
.yd3{bottom:763.305000px;}
.yb4{bottom:765.825000px;}
.yeb{bottom:767.985000px;}
.y55{bottom:773.565000px;}
.y34{bottom:778.245000px;}
.y10d{bottom:782.925000px;}
.y10{bottom:786.525000px;}
.yb3{bottom:790.125000px;}
.y97{bottom:790.665000px;}
.yd2{bottom:791.025000px;}
.yea{bottom:792.285000px;}
.y54{bottom:797.685000px;}
.y10c{bottom:807.045000px;}
.yb2{bottom:814.245000px;}
.ye9{bottom:816.405000px;}
.yd1{bottom:818.745000px;}
.y33{bottom:821.085000px;}
.y53{bottom:821.805000px;}
.yf{bottom:829.365000px;}
.y10b{bottom:831.165000px;}
.yb1{bottom:838.365000px;}
.y76{bottom:840.525000px;}
.y52{bottom:846.105000px;}
.yd0{bottom:846.465000px;}
.y32{bottom:848.805000px;}
.y95{bottom:861.945000px;}
.ye8{bottom:864.645000px;}
.y75{bottom:868.245000px;}
.y51{bottom:870.225000px;}
.ye{bottom:872.025000px;}
.y31{bottom:876.525000px;}
.y10a{bottom:879.405000px;}
.yb0{bottom:881.025000px;}
.ye7{bottom:888.810000px;}
.ycf{bottom:888.990000px;}
.y50{bottom:894.390000px;}
.y74{bottom:896.010000px;}
.y109{bottom:903.750000px;}
.y30{bottom:904.290000px;}
.y93{bottom:905.550000px;}
.yd{bottom:909.690000px;}
.ye6{bottom:912.930000px;}
.y4f{bottom:918.510000px;}
.y73{bottom:920.310000px;}
.yaf{bottom:923.550000px;}
.y108{bottom:927.870000px;}
.y2f{bottom:932.190000px;}
.ye5{bottom:937.230000px;}
.y4e{bottom:942.630000px;}
.y72{bottom:944.430000px;}
.y107{bottom:951.990000px;}
.yc{bottom:952.350000px;}
.yce{bottom:959.910000px;}
.ye4{bottom:961.350000px;}
.yae{bottom:966.390000px;}
.y71{bottom:968.550000px;}
.y92{bottom:972.330000px;}
.y2e{bottom:974.850000px;}
.y106{bottom:976.110000px;}
.yb{bottom:985.110000px;}
.y4d{bottom:985.470000px;}
.yad{bottom:986.550000px;}
.ycd{bottom:987.630000px;}
.y70{bottom:992.670000px;}
.y105{bottom:1000.230000px;}
.y2d{bottom:1002.750000px;}
.y4c{bottom:1013.190000px;}
.y91{bottom:1015.530000px;}
.y104{bottom:1024.350000px;}
.ya{bottom:1027.770000px;}
.ye3{bottom:1028.130000px;}
.yac{bottom:1030.110000px;}
.y2c{bottom:1030.470000px;}
.y6f{bottom:1035.510000px;}
.ycc{bottom:1043.250000px;}
.y103{bottom:1048.470000px;}
.y4b{bottom:1055.670000px;}
.ye2{bottom:1056.030000px;}
.y2b{bottom:1058.190000px;}
.y9{bottom:1070.610000px;}
.ycb{bottom:1070.970000px;}
.y102{bottom:1072.770000px;}
.yab{bottom:1073.490000px;}
.y6e{bottom:1077.810000px;}
.ye1{bottom:1083.750000px;}
.y2a{bottom:1085.910000px;}
.y101{bottom:1096.890000px;}
.y4a{bottom:1098.690000px;}
.y8{bottom:1113.450000px;}
.y29{bottom:1113.810000px;}
.y6d{bottom:1121.010000px;}
.ye0{bottom:1126.230000px;}
.yca{bottom:1126.590000px;}
.y7{bottom:1141.200000px;}
.y28{bottom:1141.560000px;}
.yaa{bottom:1144.800000px;}
.y6c{bottom:1145.160000px;}
.y6{bottom:1168.920000px;}
.y27{bottom:1169.280000px;}
.y1{bottom:1226.160000px;}
.h4{height:21.600000px;}
.he{height:42.660000px;}
.h10{height:42.696000px;}
.hd{height:42.840000px;}
.h12{height:42.876000px;}
.h8{height:52.998047px;}
.h5{height:57.092344px;}
.ha{height:58.819922px;}
.h2{height:65.884219px;}
.h11{height:70.560000px;}
.hf{height:70.596000px;}
.h3{height:70.628906px;}
.h9{height:82.676953px;}
.h6{height:84.898125px;}
.hb{height:86.585445px;}
.h7{height:93.301875px;}
.hc{height:98.280000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:49.536000px;}
.w4{width:116.100000px;}
.w3{width:116.136000px;}
.w5{width:132.336000px;}
.w7{width:201.270000px;}
.wa{width:232.950000px;}
.w9{width:232.995000px;}
.w8{width:233.130000px;}
.w6{width:264.675000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:7.776000px;}
.x4{left:20.550000px;}
.x16{left:26.280000px;}
.x14{left:84.630000px;}
.xe{left:88.020000px;}
.x17{left:91.305000px;}
.x1{left:95.796000px;}
.x2{left:111.636000px;}
.xa{left:122.796000px;}
.x5{left:148.356000px;}
.xb{left:149.796000px;}
.x18{left:161.850000px;}
.x6{left:168.150000px;}
.x7{left:173.010000px;}
.x10{left:204.870000px;}
.xc{left:207.930000px;}
.x9{left:244.470000px;}
.x11{left:321.735000px;}
.x15{left:353.415000px;}
.x3{left:438.915000px;}
.x8{left:462.525000px;}
.x12{left:555.405000px;}
.xd{left:639.690000px;}
.x13{left:688.470000px;}
.x19{left:694.050000px;}
@media print{
.v3{vertical-align:-85.760000pt;}
.v2{vertical-align:-34.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.560000pt;}
.lsb{letter-spacing:-0.336533pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.024960pt;}
.ls2{letter-spacing:0.320000pt;}
.ls5{letter-spacing:18.863360pt;}
.ls7{letter-spacing:56.912640pt;}
.lsa{letter-spacing:74.543360pt;}
.ls9{letter-spacing:111.663360pt;}
.ls0{letter-spacing:175.493120pt;}
.ls1{letter-spacing:962.959787pt;}
.ws7{word-spacing:-53.120000pt;}
.ws5{word-spacing:-19.040000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws6{word-spacing:-18.400000pt;}
.ws8{word-spacing:-18.383467pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws0{word-spacing:-0.058880pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-175.087787pt;}
._29{margin-left:-8.611200pt;}
._2b{margin-left:-6.664320pt;}
._28{margin-left:-4.880213pt;}
._15{margin-left:-2.158507pt;}
._1{margin-left:-1.000960pt;}
._3{width:1.673173pt;}
._5{width:2.884053pt;}
._17{width:4.268160pt;}
._14{width:5.990400pt;}
._16{width:6.888960pt;}
._d{width:8.516480pt;}
._1b{width:9.407360pt;}
._e{width:10.435840pt;}
._12{width:11.738453pt;}
._26{width:12.890453pt;}
._1c{width:13.852800pt;}
._13{width:15.547307pt;}
._a{width:16.438400pt;}
._9{width:17.379840pt;}
._1d{width:19.617493pt;}
._20{width:20.548267pt;}
._18{width:21.490560pt;}
._25{width:23.134720pt;}
._2e{width:24.521813pt;}
._11{width:25.486720pt;}
._10{width:26.385280pt;}
._f{width:28.294613pt;}
._8{width:29.343147pt;}
._7{width:30.470187pt;}
._27{width:32.162560pt;}
._22{width:33.433173pt;}
._21{width:34.402773pt;}
._2d{width:35.364693pt;}
._30{width:36.645333pt;}
._19{width:37.964160pt;}
._1a{width:38.973653pt;}
._4{width:40.312960pt;}
._2c{width:41.932800pt;}
._2a{width:42.831360pt;}
._2f{width:44.029440pt;}
._24{width:48.040107pt;}
._23{width:48.971520pt;}
._1e{width:52.865280pt;}
._1f{width:54.424747pt;}
._31{width:64.868907pt;}
._32{width:65.789653pt;}
._b{width:67.092480pt;}
._c{width:68.140800pt;}
._6{width:162.400000pt;}
._2{width:567.859627pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.280000pt;}
.y3{bottom:5.440000pt;}
.ya9{bottom:14.400000pt;}
.y94{bottom:20.640000pt;}
.y87{bottom:20.800000pt;}
.ya7{bottom:20.832000pt;}
.y8d{bottom:20.960000pt;}
.y96{bottom:21.000000pt;}
.y8b{bottom:21.120000pt;}
.y2{bottom:23.200000pt;}
.y4{bottom:25.600000pt;}
.y89{bottom:33.120000pt;}
.y98{bottom:33.280000pt;}
.y8f{bottom:33.440000pt;}
.y85{bottom:45.440000pt;}
.y99{bottom:45.760000pt;}
.y90{bottom:45.792000pt;}
.y88{bottom:57.760000pt;}
.y86{bottom:70.080000pt;}
.y8e{bottom:71.520000pt;}
.ya8{bottom:72.960000pt;}
.ydf{bottom:81.920000pt;}
.yc9{bottom:92.000000pt;}
.y49{bottom:106.560000pt;}
.y6b{bottom:109.600000pt;}
.ya6{bottom:111.680000pt;}
.yc8{bottom:116.672000pt;}
.y26{bottom:129.312000pt;}
.y6a{bottom:131.072000pt;}
.y48{bottom:131.392000pt;}
.y100{bottom:134.586667pt;}
.y8c{bottom:135.066667pt;}
.yc7{bottom:141.306667pt;}
.y69{bottom:152.506667pt;}
.y25{bottom:154.106667pt;}
.y47{bottom:156.026667pt;}
.yc6{bottom:166.106667pt;}
.ya5{bottom:171.066667pt;}
.y8a{bottom:173.626667pt;}
.y68{bottom:173.946667pt;}
.yff{bottom:177.466667pt;}
.y24{bottom:178.746667pt;}
.y46{bottom:180.666667pt;}
.yc5{bottom:190.746667pt;}
.y67{bottom:195.386667pt;}
.ya4{bottom:195.866667pt;}
.yfe{bottom:198.906667pt;}
.y23{bottom:203.386667pt;}
.y45{bottom:205.466667pt;}
.y84{bottom:212.346667pt;}
.yc4{bottom:215.386667pt;}
.y66{bottom:216.986667pt;}
.yfd{bottom:220.346667pt;}
.y22{bottom:228.026667pt;}
.y44{bottom:230.106667pt;}
.ya3{bottom:234.106667pt;}
.y65{bottom:238.426667pt;}
.yc3{bottom:240.186667pt;}
.yfc{bottom:241.946667pt;}
.y21{bottom:252.826667pt;}
.y64{bottom:259.866667pt;}
.yfb{bottom:263.386667pt;}
.yc2{bottom:264.826667pt;}
.y43{bottom:267.706667pt;}
.ya2{bottom:272.186667pt;}
.y20{bottom:277.466667pt;}
.yfa{bottom:284.826667pt;}
.yc1{bottom:289.466667pt;}
.y63{bottom:297.786667pt;}
.y1f{bottom:302.106667pt;}
.y42{bottom:305.786667pt;}
.yde{bottom:306.106667pt;}
.yf9{bottom:306.266667pt;}
.y11d{bottom:309.466667pt;}
.ya1{bottom:310.106667pt;}
.y83{bottom:321.146667pt;}
.y62{bottom:322.586667pt;}
.yc0{bottom:327.226667pt;}
.yf8{bottom:327.706667pt;}
.ydd{bottom:330.746667pt;}
.y11c{bottom:330.906667pt;}
.ya0{bottom:334.906667pt;}
.y1e{bottom:340.226667pt;}
.y41{bottom:343.906667pt;}
.y82{bottom:345.826667pt;}
.yf7{bottom:349.186667pt;}
.y11b{bottom:352.386667pt;}
.ydc{bottom:355.586667pt;}
.y9f{bottom:359.586667pt;}
.y61{bottom:360.226667pt;}
.y1d{bottom:364.866667pt;}
.ybf{bottom:365.186667pt;}
.yf6{bottom:370.786667pt;}
.y11a{bottom:373.826667pt;}
.ydb{bottom:380.226667pt;}
.y40{bottom:382.146667pt;}
.y81{bottom:384.226667pt;}
.y119{bottom:395.426667pt;}
.y60{bottom:398.626667pt;}
.y1c{bottom:402.946667pt;}
.ybe{bottom:403.586667pt;}
.yda{bottom:404.866667pt;}
.y3f{bottom:406.946667pt;}
.yf5{bottom:408.386667pt;}
.y9e{bottom:409.026667pt;}
.y118{bottom:416.866667pt;}
.y5f{bottom:420.066667pt;}
.y80{bottom:422.306667pt;}
.y1b{bottom:427.586667pt;}
.yd9{bottom:429.506667pt;}
.y3e{bottom:431.586667pt;}
.y117{bottom:438.306667pt;}
.y5e{bottom:441.506667pt;}
.ybd{bottom:441.666667pt;}
.yf4{bottom:446.466667pt;}
.y7f{bottom:446.946667pt;}
.y1a{bottom:452.226667pt;}
.yd8{bottom:454.306667pt;}
.y3d{bottom:456.226667pt;}
.y116{bottom:459.746667pt;}
.y5d{bottom:462.946667pt;}
.ybc{bottom:466.306667pt;}
.y7e{bottom:471.586667pt;}
.y19{bottom:477.026667pt;}
.yd7{bottom:478.946667pt;}
.y3c{bottom:480.866667pt;}
.y115{bottom:481.186667pt;}
.y5c{bottom:484.546667pt;}
.yf3{bottom:484.706667pt;}
.ybb{bottom:490.946667pt;}
.y7d{bottom:496.226667pt;}
.y9d{bottom:496.386667pt;}
.y18{bottom:501.666667pt;}
.y114{bottom:502.626667pt;}
.y3b{bottom:505.666667pt;}
.y5b{bottom:505.986667pt;}
.yba{bottom:515.586667pt;}
.yd6{bottom:516.706667pt;}
.y7c{bottom:521.026667pt;}
.yf2{bottom:522.786667pt;}
.y113{bottom:524.226667pt;}
.y17{bottom:526.306667pt;}
.y5a{bottom:527.426667pt;}
.y3a{bottom:530.306667pt;}
.yb9{bottom:540.386667pt;}
.y7b{bottom:545.666667pt;}
.yf1{bottom:547.426667pt;}
.y16{bottom:550.946667pt;}
.y39{bottom:554.946667pt;}
.y59{bottom:565.533333pt;}
.y112{bottom:567.133333pt;}
.y7a{bottom:570.333333pt;}
.yf0{bottom:572.253333pt;}
.y15{bottom:575.773333pt;}
.yb8{bottom:578.013333pt;}
.y38{bottom:579.773333pt;}
.y9c{bottom:583.453333pt;}
.y111{bottom:588.573333pt;}
.y58{bottom:590.173333pt;}
.y79{bottom:594.973333pt;}
.yef{bottom:596.893333pt;}
.y14{bottom:600.413333pt;}
.y37{bottom:604.413333pt;}
.y110{bottom:610.013333pt;}
.yb7{bottom:616.413333pt;}
.yee{bottom:618.333333pt;}
.y9b{bottom:621.373333pt;}
.y13{bottom:625.053333pt;}
.y57{bottom:627.773333pt;}
.yd5{bottom:629.053333pt;}
.y10f{bottom:631.453333pt;}
.y78{bottom:632.733333pt;}
.yb6{bottom:637.853333pt;}
.y9a{bottom:639.453333pt;}
.yed{bottom:639.773333pt;}
.y36{bottom:642.333333pt;}
.y12{bottom:649.853333pt;}
.y10e{bottom:652.893333pt;}
.yd4{bottom:653.693333pt;}
.yb5{bottom:659.293333pt;}
.yec{bottom:661.213333pt;}
.y56{bottom:666.173333pt;}
.y35{bottom:667.133333pt;}
.y77{bottom:670.813333pt;}
.y11{bottom:674.493333pt;}
.yd3{bottom:678.493333pt;}
.yb4{bottom:680.733333pt;}
.yeb{bottom:682.653333pt;}
.y55{bottom:687.613333pt;}
.y34{bottom:691.773333pt;}
.y10d{bottom:695.933333pt;}
.y10{bottom:699.133333pt;}
.yb3{bottom:702.333333pt;}
.y97{bottom:702.813333pt;}
.yd2{bottom:703.133333pt;}
.yea{bottom:704.253333pt;}
.y54{bottom:709.053333pt;}
.y10c{bottom:717.373333pt;}
.yb2{bottom:723.773333pt;}
.ye9{bottom:725.693333pt;}
.yd1{bottom:727.773333pt;}
.y33{bottom:729.853333pt;}
.y53{bottom:730.493333pt;}
.yf{bottom:737.213333pt;}
.y10b{bottom:738.813333pt;}
.yb1{bottom:745.213333pt;}
.y76{bottom:747.133333pt;}
.y52{bottom:752.093333pt;}
.yd0{bottom:752.413333pt;}
.y32{bottom:754.493333pt;}
.y95{bottom:766.173333pt;}
.ye8{bottom:768.573333pt;}
.y75{bottom:771.773333pt;}
.y51{bottom:773.533333pt;}
.ye{bottom:775.133333pt;}
.y31{bottom:779.133333pt;}
.y10a{bottom:781.693333pt;}
.yb0{bottom:783.133333pt;}
.ye7{bottom:790.053333pt;}
.ycf{bottom:790.213333pt;}
.y50{bottom:795.013333pt;}
.y74{bottom:796.453333pt;}
.y109{bottom:803.333333pt;}
.y30{bottom:803.813333pt;}
.y93{bottom:804.933333pt;}
.yd{bottom:808.613333pt;}
.ye6{bottom:811.493333pt;}
.y4f{bottom:816.453333pt;}
.y73{bottom:818.053333pt;}
.yaf{bottom:820.933333pt;}
.y108{bottom:824.773333pt;}
.y2f{bottom:828.613333pt;}
.ye5{bottom:833.093333pt;}
.y4e{bottom:837.893333pt;}
.y72{bottom:839.493333pt;}
.y107{bottom:846.213333pt;}
.yc{bottom:846.533333pt;}
.yce{bottom:853.253333pt;}
.ye4{bottom:854.533333pt;}
.yae{bottom:859.013333pt;}
.y71{bottom:860.933333pt;}
.y92{bottom:864.293333pt;}
.y2e{bottom:866.533333pt;}
.y106{bottom:867.653333pt;}
.yb{bottom:875.653333pt;}
.y4d{bottom:875.973333pt;}
.yad{bottom:876.933333pt;}
.ycd{bottom:877.893333pt;}
.y70{bottom:882.373333pt;}
.y105{bottom:889.093333pt;}
.y2d{bottom:891.333333pt;}
.y4c{bottom:900.613333pt;}
.y91{bottom:902.693333pt;}
.y104{bottom:910.533333pt;}
.ya{bottom:913.573333pt;}
.ye3{bottom:913.893333pt;}
.yac{bottom:915.653333pt;}
.y2c{bottom:915.973333pt;}
.y6f{bottom:920.453333pt;}
.ycc{bottom:927.333333pt;}
.y103{bottom:931.973333pt;}
.y4b{bottom:938.373333pt;}
.ye2{bottom:938.693333pt;}
.y2b{bottom:940.613333pt;}
.y9{bottom:951.653333pt;}
.ycb{bottom:951.973333pt;}
.y102{bottom:953.573333pt;}
.yab{bottom:954.213333pt;}
.y6e{bottom:958.053333pt;}
.ye1{bottom:963.333333pt;}
.y2a{bottom:965.253333pt;}
.y101{bottom:975.013333pt;}
.y4a{bottom:976.613333pt;}
.y8{bottom:989.733333pt;}
.y29{bottom:990.053333pt;}
.y6d{bottom:996.453333pt;}
.ye0{bottom:1001.093333pt;}
.yca{bottom:1001.413333pt;}
.y7{bottom:1014.400000pt;}
.y28{bottom:1014.720000pt;}
.yaa{bottom:1017.600000pt;}
.y6c{bottom:1017.920000pt;}
.y6{bottom:1039.040000pt;}
.y27{bottom:1039.360000pt;}
.y1{bottom:1089.920000pt;}
.h4{height:19.200000pt;}
.he{height:37.920000pt;}
.h10{height:37.952000pt;}
.hd{height:38.080000pt;}
.h12{height:38.112000pt;}
.h8{height:47.109375pt;}
.h5{height:50.748750pt;}
.ha{height:52.284375pt;}
.h2{height:58.563750pt;}
.h11{height:62.720000pt;}
.hf{height:62.752000pt;}
.h3{height:62.781250pt;}
.h9{height:73.490625pt;}
.h6{height:75.465000pt;}
.hb{height:76.964840pt;}
.h7{height:82.935000pt;}
.hc{height:87.360000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.032000pt;}
.w4{width:103.200000pt;}
.w3{width:103.232000pt;}
.w5{width:117.632000pt;}
.w7{width:178.906667pt;}
.wa{width:207.066667pt;}
.w9{width:207.106667pt;}
.w8{width:207.226667pt;}
.w6{width:235.266667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.912000pt;}
.x4{left:18.266667pt;}
.x16{left:23.360000pt;}
.x14{left:75.226667pt;}
.xe{left:78.240000pt;}
.x17{left:81.160000pt;}
.x1{left:85.152000pt;}
.x2{left:99.232000pt;}
.xa{left:109.152000pt;}
.x5{left:131.872000pt;}
.xb{left:133.152000pt;}
.x18{left:143.866667pt;}
.x6{left:149.466667pt;}
.x7{left:153.786667pt;}
.x10{left:182.106667pt;}
.xc{left:184.826667pt;}
.x9{left:217.306667pt;}
.x11{left:285.986667pt;}
.x15{left:314.146667pt;}
.x3{left:390.146667pt;}
.x8{left:411.133333pt;}
.x12{left:493.693333pt;}
.xd{left:568.613333pt;}
.x13{left:611.973333pt;}
.x19{left:616.933333pt;}
}




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