
    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_4e66e7ad74c73a064910832f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_dd72dfc2b19192f9dd9bbc65.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_4386e77aa4159e39503969fe.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0d0d40ff712921d029a79c57.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_8312274877cdb5f85add5244.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_8f4cc86684665f08a86ea92d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_9f83c050559e3ee9d7773354.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.738770;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);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.720000px;}
.lsa{letter-spacing:1.440000px;}
.ls2{letter-spacing:2.880000px;}
.ls1{letter-spacing:44.784000px;}
.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;}
}
.ws8{word-spacing:-18.720000px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws0{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws2{word-spacing:0.000000px;}
._1d{margin-left:-5.212320px;}
._17{margin-left:-3.809280px;}
._15{margin-left:-2.382720px;}
._0{margin-left:-1.328640px;}
._6{width:1.340640px;}
._a{width:2.952000px;}
._7{width:4.824000px;}
._c{width:5.847360px;}
._b{width:7.304640px;}
._16{width:8.424000px;}
._d{width:9.648000px;}
._e{width:10.872000px;}
._f{width:12.488640px;}
._8{width:13.824000px;}
._9{width:15.003360px;}
._18{width:16.769280px;}
._1c{width:19.080000px;}
._1e{width:20.160000px;}
._19{width:21.312000px;}
._1a{width:22.386720px;}
._1f{width:23.541120px;}
._12{width:24.900000px;}
._10{width:26.064000px;}
._11{width:27.504000px;}
._20{width:29.808000px;}
._21{width:31.059360px;}
._13{width:36.432000px;}
._14{width:37.827360px;}
._23{width:50.256000px;}
._24{width:51.807360px;}
._4{width:54.149760px;}
._25{width:96.888000px;}
._26{width:98.208000px;}
._27{width:100.944000px;}
._5{width:104.549760px;}
._22{width:146.088000px;}
._1b{width:391.800000px;}
._2{width:725.556960px;}
._3{width:1260.449760px;}
._1{width:1812.660000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:3.240000px;}
.y3{bottom:56.700000px;}
.ye3{bottom:89.316000px;}
.y71{bottom:93.996000px;}
.y119{bottom:95.256000px;}
.yd1{bottom:96.516000px;}
.ydc{bottom:98.316000px;}
.y35{bottom:99.036000px;}
.ye2{bottom:106.416000px;}
.y8c{bottom:112.356000px;}
.y34{bottom:119.736000px;}
.ye1{bottom:123.696000px;}
.y5d{bottom:124.956000px;}
.y118{bottom:126.396000px;}
.yd0{bottom:127.476000px;}
.ydb{bottom:129.276000px;}
.ye0{bottom:137.736000px;}
.yf6{bottom:139.536000px;}
.y33{bottom:140.436000px;}
.y8b{bottom:143.316000px;}
.yba{bottom:144.756000px;}
.y122{bottom:145.656000px;}
.y117{bottom:147.096000px;}
.y5c{bottom:156.090000px;}
.ycf{bottom:158.610000px;}
.yda{bottom:160.410000px;}
.y32{bottom:161.130000px;}
.y121{bottom:166.350000px;}
.y116{bottom:167.790000px;}
.yf5{bottom:170.670000px;}
.y8a{bottom:174.450000px;}
.yb9{bottom:175.710000px;}
.y31{bottom:181.830000px;}
.y5b{bottom:187.050000px;}
.yce{bottom:189.570000px;}
.yd9{bottom:191.370000px;}
.yfa{bottom:197.490000px;}
.y115{bottom:198.750000px;}
.yf4{bottom:201.630000px;}
.y30{bottom:202.530000px;}
.y89{bottom:205.410000px;}
.yb8{bottom:206.850000px;}
.y120{bottom:207.750000px;}
.y5a{bottom:218.190000px;}
.ycd{bottom:220.710000px;}
.yd8{bottom:222.510000px;}
.y2f{bottom:223.230000px;}
.yf9{bottom:228.450000px;}
.y114{bottom:229.890000px;}
.yf3{bottom:232.770000px;}
.y88{bottom:236.550000px;}
.yb7{bottom:237.810000px;}
.yd7{bottom:242.490000px;}
.y2e{bottom:243.930000px;}
.y59{bottom:249.150000px;}
.ycc{bottom:251.670000px;}
.y87{bottom:256.530000px;}
.yd6{bottom:259.590000px;}
.y113{bottom:260.850000px;}
.yf2{bottom:263.730000px;}
.y2d{bottom:264.630000px;}
.yb6{bottom:268.950000px;}
.y11a{bottom:269.850000px;}
.y86{bottom:271.290000px;}
.yd5{bottom:276.870000px;}
.y58{bottom:280.290000px;}
.ycb{bottom:282.810000px;}
.y2c{bottom:285.330000px;}
.y85{bottom:288.570000px;}
.yf8{bottom:290.550000px;}
.y112{bottom:291.990000px;}
.yd4{bottom:294.150000px;}
.yf1{bottom:294.870000px;}
.yb5{bottom:299.910000px;}
.y70{bottom:300.990000px;}
.y84{bottom:305.670000px;}
.y2b{bottom:306.030000px;}
.yd3{bottom:308.190000px;}
.y57{bottom:311.250000px;}
.yca{bottom:313.770000px;}
.ya4{bottom:317.190000px;}
.y6f{bottom:321.690000px;}
.y83{bottom:322.950000px;}
.yf0{bottom:325.830000px;}
.y2a{bottom:326.730000px;}
.yb4{bottom:331.050000px;}
.y11f{bottom:331.950000px;}
.y82{bottom:340.275000px;}
.y56{bottom:342.435000px;}
.yc9{bottom:344.955000px;}
.y29{bottom:347.475000px;}
.ya3{bottom:348.375000px;}
.y6e{bottom:352.695000px;}
.y111{bottom:354.135000px;}
.yef{bottom:357.015000px;}
.y81{bottom:357.555000px;}
.yb3{bottom:362.055000px;}
.y72{bottom:363.135000px;}
.y28{bottom:368.175000px;}
.y55{bottom:373.395000px;}
.y80{bottom:374.835000px;}
.yc8{bottom:375.915000px;}
.ya2{bottom:379.335000px;}
.y6d{bottom:383.835000px;}
.y110{bottom:385.095000px;}
.yee{bottom:387.975000px;}
.y27{bottom:388.875000px;}
.y7f{bottom:392.115000px;}
.yb2{bottom:393.195000px;}
.y11e{bottom:394.095000px;}
.y54{bottom:404.535000px;}
.yc7{bottom:407.055000px;}
.y7e{bottom:409.215000px;}
.y26{bottom:409.575000px;}
.ya1{bottom:410.475000px;}
.y6c{bottom:414.795000px;}
.y10f{bottom:416.235000px;}
.yed{bottom:419.115000px;}
.yb1{bottom:424.155000px;}
.y7c{bottom:427.215000px;}
.y25{bottom:430.275000px;}
.y53{bottom:435.495000px;}
.ydf{bottom:436.755000px;}
.yc6{bottom:438.015000px;}
.ya0{bottom:441.435000px;}
.y6b{bottom:445.755000px;}
.y7b{bottom:446.835000px;}
.y10e{bottom:447.195000px;}
.yec{bottom:450.075000px;}
.y24{bottom:450.975000px;}
.yb0{bottom:455.295000px;}
.y11d{bottom:456.195000px;}
.y7a{bottom:457.095000px;}
.y52{bottom:466.455000px;}
.yc5{bottom:469.155000px;}
.y23{bottom:471.675000px;}
.y9f{bottom:472.575000px;}
.y6a{bottom:476.895000px;}
.y10d{bottom:478.335000px;}
.yeb{bottom:481.215000px;}
.y79{bottom:485.535000px;}
.yaf{bottom:486.255000px;}
.yf7{bottom:487.155000px;}
.y22{bottom:492.375000px;}
.y51{bottom:497.595000px;}
.yc4{bottom:500.115000px;}
.y9e{bottom:503.535000px;}
.y69{bottom:507.855000px;}
.y10c{bottom:509.295000px;}
.yea{bottom:512.175000px;}
.y21{bottom:513.075000px;}
.y78{bottom:516.495000px;}
.yae{bottom:517.395000px;}
.y11c{bottom:518.295000px;}
.y50{bottom:528.555000px;}
.yc3{bottom:531.075000px;}
.ye9{bottom:532.875000px;}
.y20{bottom:533.775000px;}
.y9d{bottom:534.675000px;}
.y68{bottom:538.995000px;}
.y10b{bottom:540.435000px;}
.y77{bottom:547.635000px;}
.yad{bottom:548.355000px;}
.y1f{bottom:552.135000px;}
.ye8{bottom:553.575000px;}
.y9c{bottom:555.375000px;}
.y4f{bottom:559.695000px;}
.yc2{bottom:562.215000px;}
.y1e{bottom:563.115000px;}
.y67{bottom:569.955000px;}
.y10a{bottom:571.395000px;}
.y9b{bottom:576.075000px;}
.y76{bottom:578.595000px;}
.yac{bottom:579.495000px;}
.y11b{bottom:580.395000px;}
.ye7{bottom:582.195000px;}
.y1d{bottom:583.815000px;}
.y4e{bottom:590.655000px;}
.yc1{bottom:593.175000px;}
.y75{bottom:598.575000px;}
.ye6{bottom:599.475000px;}
.y66{bottom:601.095000px;}
.y109{bottom:602.535000px;}
.y1c{bottom:604.545000px;}
.y9a{bottom:607.065000px;}
.yab{bottom:610.485000px;}
.y74{bottom:615.885000px;}
.ye5{bottom:616.785000px;}
.y4d{bottom:621.825000px;}
.yc0{bottom:624.345000px;}
.y1b{bottom:625.245000px;}
.y73{bottom:629.925000px;}
.ye4{bottom:630.825000px;}
.y65{bottom:632.085000px;}
.y108{bottom:633.525000px;}
.y99{bottom:638.205000px;}
.yaa{bottom:641.625000px;}
.y1a{bottom:645.585000px;}
.y4c{bottom:652.785000px;}
.ybf{bottom:655.305000px;}
.y64{bottom:663.225000px;}
.y107{bottom:664.665000px;}
.y19{bottom:664.845000px;}
.y98{bottom:669.165000px;}
.ya9{bottom:672.585000px;}
.y4b{bottom:683.925000px;}
.y18{bottom:685.545000px;}
.ybe{bottom:686.445000px;}
.y63{bottom:694.185000px;}
.y106{bottom:695.625000px;}
.y97{bottom:700.305000px;}
.ya8{bottom:703.725000px;}
.yd2{bottom:704.625000px;}
.y17{bottom:706.245000px;}
.y4a{bottom:714.885000px;}
.ybd{bottom:717.405000px;}
.y62{bottom:725.325000px;}
.y105{bottom:726.765000px;}
.y16{bottom:726.945000px;}
.y96{bottom:731.265000px;}
.ya7{bottom:734.685000px;}
.y49{bottom:735.585000px;}
.y8f{bottom:746.025000px;}
.y15{bottom:747.645000px;}
.ybc{bottom:748.545000px;}
.y48{bottom:756.285000px;}
.y104{bottom:757.725000px;}
.y95{bottom:762.405000px;}
.ya6{bottom:765.825000px;}
.y14{bottom:768.345000px;}
.y47{bottom:776.985000px;}
.ybb{bottom:779.505000px;}
.y94{bottom:782.385000px;}
.y61{bottom:787.425000px;}
.y103{bottom:788.865000px;}
.y13{bottom:789.045000px;}
.ya5{bottom:796.785000px;}
.y46{bottom:797.685000px;}
.y93{bottom:799.485000px;}
.y8e{bottom:808.125000px;}
.y102{bottom:808.845000px;}
.y12{bottom:809.745000px;}
.y92{bottom:816.765000px;}
.y45{bottom:818.385000px;}
.y101{bottom:825.945000px;}
.y11{bottom:830.445000px;}
.y91{bottom:834.045000px;}
.y44{bottom:839.085000px;}
.y100{bottom:843.225000px;}
.y90{bottom:848.085000px;}
.y60{bottom:849.525000px;}
.y10{bottom:851.145000px;}
.y43{bottom:859.785000px;}
.yff{bottom:860.505000px;}
.y8d{bottom:870.225000px;}
.yf{bottom:871.710000px;}
.yfe{bottom:877.830000px;}
.y42{bottom:880.530000px;}
.ye{bottom:890.970000px;}
.yfd{bottom:895.110000px;}
.y41{bottom:901.230000px;}
.yd{bottom:911.670000px;}
.yfc{bottom:912.390000px;}
.y40{bottom:921.930000px;}
.yfb{bottom:926.250000px;}
.yc{bottom:932.370000px;}
.y3f{bottom:942.630000px;}
.yb{bottom:953.070000px;}
.y3e{bottom:963.330000px;}
.ya{bottom:973.770000px;}
.y3d{bottom:984.030000px;}
.yde{bottom:994.470000px;}
.y9{bottom:995.010000px;}
.y3c{bottom:1004.730000px;}
.y8{bottom:1019.130000px;}
.y3b{bottom:1025.430000px;}
.y5f{bottom:1035.870000px;}
.y7{bottom:1043.250000px;}
.y3a{bottom:1046.130000px;}
.ydd{bottom:1056.570000px;}
.y39{bottom:1066.830000px;}
.y6{bottom:1068.270000px;}
.y38{bottom:1087.530000px;}
.y5{bottom:1095.810000px;}
.y5e{bottom:1097.970000px;}
.y37{bottom:1108.230000px;}
.y4{bottom:1123.350000px;}
.y36{bottom:1128.930000px;}
.y2{bottom:1170.180000px;}
.y1{bottom:1191.960000px;}
.hc{height:17.100000px;}
.ha{height:17.280000px;}
.hd{height:17.316000px;}
.h8{height:27.109688px;}
.he{height:48.761719px;}
.hb{height:53.077852px;}
.h9{height:53.573906px;}
.h2{height:59.383125px;}
.h6{height:63.949219px;}
.h7{height:64.546875px;}
.h3{height:65.884219px;}
.h5{height:75.519844px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:222.690000px;}
.w3{width:499.605000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:44.676000px;}
.x15{left:46.836000px;}
.x12{left:48.276000px;}
.x11{left:54.180000px;}
.x1{left:84.959987px;}
.x18{left:86.610000px;}
.x20{left:87.839987px;}
.x2c{left:89.135987px;}
.x13{left:92.025000px;}
.x1c{left:93.825000px;}
.x16{left:95.625000px;}
.x6{left:98.135987px;}
.x1e{left:99.575987px;}
.x35{left:101.555987px;}
.x1a{left:102.630000px;}
.x2b{left:103.715987px;}
.x2e{left:105.155987px;}
.x34{left:107.675987px;}
.x2{left:116.315987px;}
.xa{left:127.475987px;}
.x31{left:131.795987px;}
.x1b{left:144.390000px;}
.x17{left:166.530000px;}
.x3{left:167.789987px;}
.x9{left:169.949987px;}
.x27{left:171.929987px;}
.x4{left:173.729987px;}
.x2d{left:176.789987px;}
.xf{left:178.050000px;}
.x19{left:180.750000px;}
.x28{left:188.309987px;}
.x2a{left:226.649987px;}
.x24{left:228.809987px;}
.x8{left:231.689987px;}
.x32{left:233.669987px;}
.x2f{left:239.429987px;}
.x23{left:241.049987px;}
.xc{left:255.989987px;}
.x7{left:266.069987px;}
.xe{left:270.389987px;}
.x21{left:280.514987px;}
.xd{left:368.174987px;}
.x1f{left:429.194987px;}
.x5{left:446.474987px;}
.x25{left:467.744987px;}
.x10{left:584.565000px;}
.x1d{left:661.649987px;}
.x26{left:667.049987px;}
.x30{left:695.129987px;}
.x22{left:710.969987px;}
.x33{left:795.209987px;}
.xb{left:814.109987px;}
.x29{left:816.629987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.640000pt;}
.lsa{letter-spacing:1.280000pt;}
.ls2{letter-spacing:2.560000pt;}
.ls1{letter-spacing:39.808000pt;}
.ws8{word-spacing:-16.640000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws2{word-spacing:0.000000pt;}
._1d{margin-left:-4.633173pt;}
._17{margin-left:-3.386027pt;}
._15{margin-left:-2.117973pt;}
._0{margin-left:-1.181013pt;}
._6{width:1.191680pt;}
._a{width:2.624000pt;}
._7{width:4.288000pt;}
._c{width:5.197653pt;}
._b{width:6.493013pt;}
._16{width:7.488000pt;}
._d{width:8.576000pt;}
._e{width:9.664000pt;}
._f{width:11.101013pt;}
._8{width:12.288000pt;}
._9{width:13.336320pt;}
._18{width:14.906027pt;}
._1c{width:16.960000pt;}
._1e{width:17.920000pt;}
._19{width:18.944000pt;}
._1a{width:19.899307pt;}
._1f{width:20.925440pt;}
._12{width:22.133333pt;}
._10{width:23.168000pt;}
._11{width:24.448000pt;}
._20{width:26.496000pt;}
._21{width:27.608320pt;}
._13{width:32.384000pt;}
._14{width:33.624320pt;}
._23{width:44.672000pt;}
._24{width:46.050987pt;}
._4{width:48.133120pt;}
._25{width:86.122667pt;}
._26{width:87.296000pt;}
._27{width:89.728000pt;}
._5{width:92.933120pt;}
._22{width:129.856000pt;}
._1b{width:348.266667pt;}
._2{width:644.939520pt;}
._3{width:1120.399787pt;}
._1{width:1611.253333pt;}
.fs5{font-size:26.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:2.880000pt;}
.y3{bottom:50.400000pt;}
.ye3{bottom:79.392000pt;}
.y71{bottom:83.552000pt;}
.y119{bottom:84.672000pt;}
.yd1{bottom:85.792000pt;}
.ydc{bottom:87.392000pt;}
.y35{bottom:88.032000pt;}
.ye2{bottom:94.592000pt;}
.y8c{bottom:99.872000pt;}
.y34{bottom:106.432000pt;}
.ye1{bottom:109.952000pt;}
.y5d{bottom:111.072000pt;}
.y118{bottom:112.352000pt;}
.yd0{bottom:113.312000pt;}
.ydb{bottom:114.912000pt;}
.ye0{bottom:122.432000pt;}
.yf6{bottom:124.032000pt;}
.y33{bottom:124.832000pt;}
.y8b{bottom:127.392000pt;}
.yba{bottom:128.672000pt;}
.y122{bottom:129.472000pt;}
.y117{bottom:130.752000pt;}
.y5c{bottom:138.746667pt;}
.ycf{bottom:140.986667pt;}
.yda{bottom:142.586667pt;}
.y32{bottom:143.226667pt;}
.y121{bottom:147.866667pt;}
.y116{bottom:149.146667pt;}
.yf5{bottom:151.706667pt;}
.y8a{bottom:155.066667pt;}
.yb9{bottom:156.186667pt;}
.y31{bottom:161.626667pt;}
.y5b{bottom:166.266667pt;}
.yce{bottom:168.506667pt;}
.yd9{bottom:170.106667pt;}
.yfa{bottom:175.546667pt;}
.y115{bottom:176.666667pt;}
.yf4{bottom:179.226667pt;}
.y30{bottom:180.026667pt;}
.y89{bottom:182.586667pt;}
.yb8{bottom:183.866667pt;}
.y120{bottom:184.666667pt;}
.y5a{bottom:193.946667pt;}
.ycd{bottom:196.186667pt;}
.yd8{bottom:197.786667pt;}
.y2f{bottom:198.426667pt;}
.yf9{bottom:203.066667pt;}
.y114{bottom:204.346667pt;}
.yf3{bottom:206.906667pt;}
.y88{bottom:210.266667pt;}
.yb7{bottom:211.386667pt;}
.yd7{bottom:215.546667pt;}
.y2e{bottom:216.826667pt;}
.y59{bottom:221.466667pt;}
.ycc{bottom:223.706667pt;}
.y87{bottom:228.026667pt;}
.yd6{bottom:230.746667pt;}
.y113{bottom:231.866667pt;}
.yf2{bottom:234.426667pt;}
.y2d{bottom:235.226667pt;}
.yb6{bottom:239.066667pt;}
.y11a{bottom:239.866667pt;}
.y86{bottom:241.146667pt;}
.yd5{bottom:246.106667pt;}
.y58{bottom:249.146667pt;}
.ycb{bottom:251.386667pt;}
.y2c{bottom:253.626667pt;}
.y85{bottom:256.506667pt;}
.yf8{bottom:258.266667pt;}
.y112{bottom:259.546667pt;}
.yd4{bottom:261.466667pt;}
.yf1{bottom:262.106667pt;}
.yb5{bottom:266.586667pt;}
.y70{bottom:267.546667pt;}
.y84{bottom:271.706667pt;}
.y2b{bottom:272.026667pt;}
.yd3{bottom:273.946667pt;}
.y57{bottom:276.666667pt;}
.yca{bottom:278.906667pt;}
.ya4{bottom:281.946667pt;}
.y6f{bottom:285.946667pt;}
.y83{bottom:287.066667pt;}
.yf0{bottom:289.626667pt;}
.y2a{bottom:290.426667pt;}
.yb4{bottom:294.266667pt;}
.y11f{bottom:295.066667pt;}
.y82{bottom:302.466667pt;}
.y56{bottom:304.386667pt;}
.yc9{bottom:306.626667pt;}
.y29{bottom:308.866667pt;}
.ya3{bottom:309.666667pt;}
.y6e{bottom:313.506667pt;}
.y111{bottom:314.786667pt;}
.yef{bottom:317.346667pt;}
.y81{bottom:317.826667pt;}
.yb3{bottom:321.826667pt;}
.y72{bottom:322.786667pt;}
.y28{bottom:327.266667pt;}
.y55{bottom:331.906667pt;}
.y80{bottom:333.186667pt;}
.yc8{bottom:334.146667pt;}
.ya2{bottom:337.186667pt;}
.y6d{bottom:341.186667pt;}
.y110{bottom:342.306667pt;}
.yee{bottom:344.866667pt;}
.y27{bottom:345.666667pt;}
.y7f{bottom:348.546667pt;}
.yb2{bottom:349.506667pt;}
.y11e{bottom:350.306667pt;}
.y54{bottom:359.586667pt;}
.yc7{bottom:361.826667pt;}
.y7e{bottom:363.746667pt;}
.y26{bottom:364.066667pt;}
.ya1{bottom:364.866667pt;}
.y6c{bottom:368.706667pt;}
.y10f{bottom:369.986667pt;}
.yed{bottom:372.546667pt;}
.yb1{bottom:377.026667pt;}
.y7c{bottom:379.746667pt;}
.y25{bottom:382.466667pt;}
.y53{bottom:387.106667pt;}
.ydf{bottom:388.226667pt;}
.yc6{bottom:389.346667pt;}
.ya0{bottom:392.386667pt;}
.y6b{bottom:396.226667pt;}
.y7b{bottom:397.186667pt;}
.y10e{bottom:397.506667pt;}
.yec{bottom:400.066667pt;}
.y24{bottom:400.866667pt;}
.yb0{bottom:404.706667pt;}
.y11d{bottom:405.506667pt;}
.y7a{bottom:406.306667pt;}
.y52{bottom:414.626667pt;}
.yc5{bottom:417.026667pt;}
.y23{bottom:419.266667pt;}
.y9f{bottom:420.066667pt;}
.y6a{bottom:423.906667pt;}
.y10d{bottom:425.186667pt;}
.yeb{bottom:427.746667pt;}
.y79{bottom:431.586667pt;}
.yaf{bottom:432.226667pt;}
.yf7{bottom:433.026667pt;}
.y22{bottom:437.666667pt;}
.y51{bottom:442.306667pt;}
.yc4{bottom:444.546667pt;}
.y9e{bottom:447.586667pt;}
.y69{bottom:451.426667pt;}
.y10c{bottom:452.706667pt;}
.yea{bottom:455.266667pt;}
.y21{bottom:456.066667pt;}
.y78{bottom:459.106667pt;}
.yae{bottom:459.906667pt;}
.y11c{bottom:460.706667pt;}
.y50{bottom:469.826667pt;}
.yc3{bottom:472.066667pt;}
.ye9{bottom:473.666667pt;}
.y20{bottom:474.466667pt;}
.y9d{bottom:475.266667pt;}
.y68{bottom:479.106667pt;}
.y10b{bottom:480.386667pt;}
.y77{bottom:486.786667pt;}
.yad{bottom:487.426667pt;}
.y1f{bottom:490.786667pt;}
.ye8{bottom:492.066667pt;}
.y9c{bottom:493.666667pt;}
.y4f{bottom:497.506667pt;}
.yc2{bottom:499.746667pt;}
.y1e{bottom:500.546667pt;}
.y67{bottom:506.626667pt;}
.y10a{bottom:507.906667pt;}
.y9b{bottom:512.066667pt;}
.y76{bottom:514.306667pt;}
.yac{bottom:515.106667pt;}
.y11b{bottom:515.906667pt;}
.ye7{bottom:517.506667pt;}
.y1d{bottom:518.946667pt;}
.y4e{bottom:525.026667pt;}
.yc1{bottom:527.266667pt;}
.y75{bottom:532.066667pt;}
.ye6{bottom:532.866667pt;}
.y66{bottom:534.306667pt;}
.y109{bottom:535.586667pt;}
.y1c{bottom:537.373333pt;}
.y9a{bottom:539.613333pt;}
.yab{bottom:542.653333pt;}
.y74{bottom:547.453333pt;}
.ye5{bottom:548.253333pt;}
.y4d{bottom:552.733333pt;}
.yc0{bottom:554.973333pt;}
.y1b{bottom:555.773333pt;}
.y73{bottom:559.933333pt;}
.ye4{bottom:560.733333pt;}
.y65{bottom:561.853333pt;}
.y108{bottom:563.133333pt;}
.y99{bottom:567.293333pt;}
.yaa{bottom:570.333333pt;}
.y1a{bottom:573.853333pt;}
.y4c{bottom:580.253333pt;}
.ybf{bottom:582.493333pt;}
.y64{bottom:589.533333pt;}
.y107{bottom:590.813333pt;}
.y19{bottom:590.973333pt;}
.y98{bottom:594.813333pt;}
.ya9{bottom:597.853333pt;}
.y4b{bottom:607.933333pt;}
.y18{bottom:609.373333pt;}
.ybe{bottom:610.173333pt;}
.y63{bottom:617.053333pt;}
.y106{bottom:618.333333pt;}
.y97{bottom:622.493333pt;}
.ya8{bottom:625.533333pt;}
.yd2{bottom:626.333333pt;}
.y17{bottom:627.773333pt;}
.y4a{bottom:635.453333pt;}
.ybd{bottom:637.693333pt;}
.y62{bottom:644.733333pt;}
.y105{bottom:646.013333pt;}
.y16{bottom:646.173333pt;}
.y96{bottom:650.013333pt;}
.ya7{bottom:653.053333pt;}
.y49{bottom:653.853333pt;}
.y8f{bottom:663.133333pt;}
.y15{bottom:664.573333pt;}
.ybc{bottom:665.373333pt;}
.y48{bottom:672.253333pt;}
.y104{bottom:673.533333pt;}
.y95{bottom:677.693333pt;}
.ya6{bottom:680.733333pt;}
.y14{bottom:682.973333pt;}
.y47{bottom:690.653333pt;}
.ybb{bottom:692.893333pt;}
.y94{bottom:695.453333pt;}
.y61{bottom:699.933333pt;}
.y103{bottom:701.213333pt;}
.y13{bottom:701.373333pt;}
.ya5{bottom:708.253333pt;}
.y46{bottom:709.053333pt;}
.y93{bottom:710.653333pt;}
.y8e{bottom:718.333333pt;}
.y102{bottom:718.973333pt;}
.y12{bottom:719.773333pt;}
.y92{bottom:726.013333pt;}
.y45{bottom:727.453333pt;}
.y101{bottom:734.173333pt;}
.y11{bottom:738.173333pt;}
.y91{bottom:741.373333pt;}
.y44{bottom:745.853333pt;}
.y100{bottom:749.533333pt;}
.y90{bottom:753.853333pt;}
.y60{bottom:755.133333pt;}
.y10{bottom:756.573333pt;}
.y43{bottom:764.253333pt;}
.yff{bottom:764.893333pt;}
.y8d{bottom:773.533333pt;}
.yf{bottom:774.853333pt;}
.yfe{bottom:780.293333pt;}
.y42{bottom:782.693333pt;}
.ye{bottom:791.973333pt;}
.yfd{bottom:795.653333pt;}
.y41{bottom:801.093333pt;}
.yd{bottom:810.373333pt;}
.yfc{bottom:811.013333pt;}
.y40{bottom:819.493333pt;}
.yfb{bottom:823.333333pt;}
.yc{bottom:828.773333pt;}
.y3f{bottom:837.893333pt;}
.yb{bottom:847.173333pt;}
.y3e{bottom:856.293333pt;}
.ya{bottom:865.573333pt;}
.y3d{bottom:874.693333pt;}
.yde{bottom:883.973333pt;}
.y9{bottom:884.453333pt;}
.y3c{bottom:893.093333pt;}
.y8{bottom:905.893333pt;}
.y3b{bottom:911.493333pt;}
.y5f{bottom:920.773333pt;}
.y7{bottom:927.333333pt;}
.y3a{bottom:929.893333pt;}
.ydd{bottom:939.173333pt;}
.y39{bottom:948.293333pt;}
.y6{bottom:949.573333pt;}
.y38{bottom:966.693333pt;}
.y5{bottom:974.053333pt;}
.y5e{bottom:975.973333pt;}
.y37{bottom:985.093333pt;}
.y4{bottom:998.533333pt;}
.y36{bottom:1003.493333pt;}
.y2{bottom:1040.160000pt;}
.y1{bottom:1059.520000pt;}
.hc{height:15.200000pt;}
.ha{height:15.360000pt;}
.hd{height:15.392000pt;}
.h8{height:24.097500pt;}
.he{height:43.343750pt;}
.hb{height:47.180312pt;}
.h9{height:47.621250pt;}
.h2{height:52.785000pt;}
.h6{height:56.843750pt;}
.h7{height:57.375000pt;}
.h3{height:58.563750pt;}
.h5{height:67.128750pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:197.946667pt;}
.w3{width:444.093333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:39.712000pt;}
.x15{left:41.632000pt;}
.x12{left:42.912000pt;}
.x11{left:48.160000pt;}
.x1{left:75.519988pt;}
.x18{left:76.986667pt;}
.x20{left:78.079988pt;}
.x2c{left:79.231988pt;}
.x13{left:81.800000pt;}
.x1c{left:83.400000pt;}
.x16{left:85.000000pt;}
.x6{left:87.231988pt;}
.x1e{left:88.511988pt;}
.x35{left:90.271988pt;}
.x1a{left:91.226667pt;}
.x2b{left:92.191988pt;}
.x2e{left:93.471988pt;}
.x34{left:95.711988pt;}
.x2{left:103.391988pt;}
.xa{left:113.311988pt;}
.x31{left:117.151988pt;}
.x1b{left:128.346667pt;}
.x17{left:148.026667pt;}
.x3{left:149.146655pt;}
.x9{left:151.066655pt;}
.x27{left:152.826655pt;}
.x4{left:154.426655pt;}
.x2d{left:157.146655pt;}
.xf{left:158.266667pt;}
.x19{left:160.666667pt;}
.x28{left:167.386655pt;}
.x2a{left:201.466655pt;}
.x24{left:203.386655pt;}
.x8{left:205.946655pt;}
.x32{left:207.706655pt;}
.x2f{left:212.826655pt;}
.x23{left:214.266655pt;}
.xc{left:227.546655pt;}
.x7{left:236.506655pt;}
.xe{left:240.346655pt;}
.x21{left:249.346655pt;}
.xd{left:327.266655pt;}
.x1f{left:381.506655pt;}
.x5{left:396.866655pt;}
.x25{left:415.773322pt;}
.x10{left:519.613333pt;}
.x1d{left:588.133322pt;}
.x26{left:592.933322pt;}
.x30{left:617.893322pt;}
.x22{left:631.973322pt;}
.x33{left:706.853322pt;}
.xb{left:723.653322pt;}
.x29{left:725.893322pt;}
}




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