
    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_91ef69f585743ce6ede3e680.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_11fe90fa14c5e430d83e2aa8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_330f9760b7cfbb9188e3f282.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_b8c7199508e1088c1f356520.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_f2bdcd5f9199f62d649599b7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_bb50e5eb68cb9316970a064c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.933594;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_aac786806b0f82acd629884e.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_aecaac50d2f64fd3247c3f11.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_ee9bdfdbdbd24f1b4f16bf26.woff')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.v1{vertical-align:27.360000px;}
.ls10{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.072000px;}
.lsf{letter-spacing:-0.045360px;}
.ls9{letter-spacing:-0.017280px;}
.lsa{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.008640px;}
.ls3{letter-spacing:0.012960px;}
.ls5{letter-spacing:0.017280px;}
.lsd{letter-spacing:0.025920px;}
.ls4{letter-spacing:0.034560px;}
.ls6{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.720000px;}
.lse{letter-spacing:12.240000px;}
.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;}
}
.wsa{word-spacing:-19.465920px;}
.ws2{word-spacing:-19.457280px;}
.ws9{word-spacing:-19.448640px;}
.ws7{word-spacing:-19.431360px;}
.ws3{word-spacing:-19.422720px;}
.wsc{word-spacing:-18.720000px;}
.ws4{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.wsd{word-spacing:-17.784000px;}
.ws5{word-spacing:-15.300000px;}
.ws0{word-spacing:-15.093600px;}
.ws1{word-spacing:-14.940000px;}
.wsb{word-spacing:-12.014640px;}
.ws6{word-spacing:0.000000px;}
._f{margin-left:-5.148480px;}
._10{margin-left:-4.146480px;}
._8{margin-left:-2.808000px;}
._3{margin-left:-1.123440px;}
._0{width:1.015920px;}
._1{width:2.551200px;}
._9{width:3.842160px;}
._5{width:5.445840px;}
._18{width:6.633360px;}
._13{width:7.920000px;}
._14{width:9.072000px;}
._15{width:10.166880px;}
._a{width:11.232000px;}
._1a{width:12.312000px;}
._19{width:13.378320px;}
._7{width:15.061680px;}
._6{width:16.171440px;}
._1f{width:19.440000px;}
._1b{width:20.952000px;}
._16{width:22.824000px;}
._17{width:24.120000px;}
._20{width:25.459440px;}
._1c{width:26.611440px;}
._1e{width:27.884640px;}
._1d{width:29.044560px;}
._b{width:30.456000px;}
._c{width:31.547520px;}
._d{width:32.688000px;}
._e{width:34.108560px;}
._21{width:35.219520px;}
._22{width:36.374400px;}
._12{width:40.146240px;}
._11{width:41.299440px;}
._23{width:42.912000px;}
._24{width:44.128080px;}
._25{width:51.840000px;}
._26{width:60.811440px;}
._27{width:92.088000px;}
._28{width:93.528000px;}
._2{width:532.260000px;}
._4{width:1513.560000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs8{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:39.276000px;}
.y6{bottom:58.536000px;}
.y2e{bottom:131.076000px;}
.y2d{bottom:136.296000px;}
.yf3{bottom:140.616000px;}
.y5a{bottom:140.796000px;}
.y86{bottom:142.596000px;}
.yb4{bottom:144.576000px;}
.y10e{bottom:146.196000px;}
.y2c{bottom:149.256000px;}
.y59{bottom:161.490000px;}
.ya1{bottom:162.210000px;}
.y85{bottom:163.290000px;}
.yb3{bottom:165.270000px;}
.y10d{bottom:166.890000px;}
.yf2{bottom:181.290000px;}
.y58{bottom:182.190000px;}
.yed{bottom:182.910000px;}
.y84{bottom:183.990000px;}
.yb2{bottom:185.970000px;}
.y2b{bottom:193.890000px;}
.yf1{bottom:201.990000px;}
.y57{bottom:202.890000px;}
.yec{bottom:203.610000px;}
.y83{bottom:204.690000px;}
.y10c{bottom:205.590000px;}
.yb1{bottom:206.490000px;}
.y2a{bottom:211.170000px;}
.yf0{bottom:222.690000px;}
.y56{bottom:223.590000px;}
.yeb{bottom:224.310000px;}
.y82{bottom:225.390000px;}
.y10b{bottom:226.290000px;}
.yb0{bottom:227.190000px;}
.y29{bottom:228.450000px;}
.yef{bottom:243.390000px;}
.y55{bottom:244.290000px;}
.yea{bottom:245.010000px;}
.y81{bottom:246.090000px;}
.y10a{bottom:246.990000px;}
.yee{bottom:264.090000px;}
.y28{bottom:264.450000px;}
.y54{bottom:264.990000px;}
.ye9{bottom:265.710000px;}
.yaf{bottom:266.250000px;}
.y80{bottom:266.790000px;}
.y12b{bottom:269.310000px;}
.ydd{bottom:282.855000px;}
.ydf{bottom:284.835000px;}
.y27{bottom:285.195000px;}
.y53{bottom:285.735000px;}
.ye8{bottom:286.455000px;}
.y7f{bottom:287.535000px;}
.ydc{bottom:305.175000px;}
.yd1{bottom:305.535000px;}
.y52{bottom:306.435000px;}
.y12a{bottom:308.055000px;}
.y7e{bottom:308.235000px;}
.ye7{bottom:325.155000px;}
.y26{bottom:325.695000px;}
.yd0{bottom:326.235000px;}
.y51{bottom:327.135000px;}
.y129{bottom:328.755000px;}
.y7d{bottom:328.935000px;}
.ydb{bottom:345.855000px;}
.y25{bottom:346.395000px;}
.ycf{bottom:346.935000px;}
.y50{bottom:347.835000px;}
.y128{bottom:349.455000px;}
.y7c{bottom:349.635000px;}
.y109{bottom:365.835000px;}
.yda{bottom:366.555000px;}
.y24{bottom:367.095000px;}
.yce{bottom:367.635000px;}
.ya0{bottom:368.535000px;}
.y7b{bottom:370.335000px;}
.y4f{bottom:386.535000px;}
.yd9{bottom:387.255000px;}
.y23{bottom:387.795000px;}
.y127{bottom:388.155000px;}
.ycd{bottom:388.335000px;}
.y9f{bottom:389.235000px;}
.y7a{bottom:391.035000px;}
.y4e{bottom:407.235000px;}
.yd8{bottom:407.955000px;}
.y22{bottom:408.495000px;}
.y126{bottom:408.855000px;}
.ycc{bottom:409.035000px;}
.y9e{bottom:409.935000px;}
.y79{bottom:411.735000px;}
.y4d{bottom:427.935000px;}
.yd7{bottom:428.655000px;}
.y21{bottom:429.195000px;}
.ycb{bottom:429.735000px;}
.y9d{bottom:430.635000px;}
.y108{bottom:445.935000px;}
.y125{bottom:447.555000px;}
.y4c{bottom:448.635000px;}
.yd6{bottom:449.355000px;}
.y20{bottom:449.895000px;}
.y78{bottom:450.075000px;}
.yca{bottom:450.435000px;}
.y9c{bottom:451.335000px;}
.y107{bottom:466.635000px;}
.y124{bottom:468.255000px;}
.y4b{bottom:469.335000px;}
.yd5{bottom:470.055000px;}
.y1f{bottom:470.595000px;}
.yc9{bottom:471.135000px;}
.y9b{bottom:472.035000px;}
.y106{bottom:487.335000px;}
.y123{bottom:488.955000px;}
.y4a{bottom:490.035000px;}
.y77{bottom:490.755000px;}
.y1e{bottom:491.295000px;}
.yc8{bottom:491.835000px;}
.y9a{bottom:492.735000px;}
.y49{bottom:510.735000px;}
.y76{bottom:511.455000px;}
.y1d{bottom:511.995000px;}
.yc7{bottom:512.535000px;}
.yae{bottom:513.435000px;}
.y105{bottom:525.855000px;}
.y122{bottom:527.655000px;}
.y48{bottom:531.435000px;}
.y75{bottom:532.155000px;}
.y1c{bottom:532.695000px;}
.yc6{bottom:533.235000px;}
.yad{bottom:534.135000px;}
.y104{bottom:546.555000px;}
.y121{bottom:548.355000px;}
.y47{bottom:552.135000px;}
.y74{bottom:552.855000px;}
.y1b{bottom:553.395000px;}
.yc5{bottom:553.935000px;}
.yac{bottom:554.835000px;}
.y120{bottom:569.085000px;}
.y46{bottom:572.865000px;}
.y73{bottom:573.585000px;}
.y1a{bottom:574.125000px;}
.yc4{bottom:574.665000px;}
.yab{bottom:575.565000px;}
.y103{bottom:585.285000px;}
.yde{bottom:592.305000px;}
.y45{bottom:593.565000px;}
.y72{bottom:594.285000px;}
.y19{bottom:594.825000px;}
.ye5{bottom:595.365000px;}
.y102{bottom:605.985000px;}
.y11f{bottom:607.785000px;}
.yc3{bottom:613.365000px;}
.y99{bottom:614.265000px;}
.yaa{bottom:614.445000px;}
.y71{bottom:614.985000px;}
.y18{bottom:615.525000px;}
.ye4{bottom:615.885000px;}
.y101{bottom:626.685000px;}
.y11e{bottom:628.485000px;}
.y44{bottom:631.905000px;}
.yd4{bottom:632.985000px;}
.ye6{bottom:633.705000px;}
.yc2{bottom:633.885000px;}
.y98{bottom:634.965000px;}
.y70{bottom:635.685000px;}
.y17{bottom:636.225000px;}
.y11d{bottom:649.185000px;}
.yd3{bottom:653.685000px;}
.ya9{bottom:654.405000px;}
.yc1{bottom:654.585000px;}
.y97{bottom:655.665000px;}
.y6f{bottom:656.385000px;}
.y16{bottom:656.925000px;}
.y100{bottom:665.385000px;}
.y43{bottom:672.585000px;}
.yd2{bottom:674.385000px;}
.yc0{bottom:675.285000px;}
.y96{bottom:676.365000px;}
.y15{bottom:677.625000px;}
.yff{bottom:686.085000px;}
.y11c{bottom:687.885000px;}
.y42{bottom:693.285000px;}
.y6e{bottom:695.085000px;}
.ybf{bottom:695.985000px;}
.y95{bottom:697.065000px;}
.yfe{bottom:706.785000px;}
.y11b{bottom:708.585000px;}
.y41{bottom:713.985000px;}
.y6d{bottom:715.785000px;}
.y14{bottom:715.965000px;}
.ybe{bottom:716.685000px;}
.y94{bottom:717.765000px;}
.y40{bottom:734.685000px;}
.y6c{bottom:736.485000px;}
.ybd{bottom:737.385000px;}
.y93{bottom:738.465000px;}
.yfd{bottom:745.485000px;}
.y11a{bottom:747.285000px;}
.y3f{bottom:755.385000px;}
.y13{bottom:756.465000px;}
.y6b{bottom:757.185000px;}
.ybc{bottom:758.085000px;}
.y92{bottom:759.165000px;}
.yfc{bottom:766.185000px;}
.y119{bottom:767.985000px;}
.y3e{bottom:776.085000px;}
.y6a{bottom:777.885000px;}
.ybb{bottom:778.785000px;}
.y118{bottom:788.685000px;}
.y3d{bottom:796.785000px;}
.y12{bottom:797.325000px;}
.y91{bottom:797.865000px;}
.y69{bottom:798.585000px;}
.yba{bottom:799.485000px;}
.yfb{bottom:804.885000px;}
.y3c{bottom:817.485000px;}
.y90{bottom:818.565000px;}
.y68{bottom:819.285000px;}
.y11{bottom:819.825000px;}
.yb9{bottom:820.185000px;}
.yfa{bottom:825.585000px;}
.y117{bottom:827.385000px;}
.y3b{bottom:838.185000px;}
.y8f{bottom:839.310000px;}
.y67{bottom:840.030000px;}
.yb8{bottom:840.930000px;}
.y10{bottom:842.550000px;}
.yf9{bottom:846.330000px;}
.y116{bottom:848.130000px;}
.y3a{bottom:858.930000px;}
.y8e{bottom:860.010000px;}
.y66{bottom:860.730000px;}
.yb7{bottom:861.630000px;}
.y115{bottom:868.830000px;}
.y39{bottom:879.630000px;}
.y8d{bottom:880.710000px;}
.y65{bottom:881.430000px;}
.yb6{bottom:882.330000px;}
.yf{bottom:884.490000px;}
.yf8{bottom:885.030000px;}
.ya8{bottom:899.430000px;}
.y38{bottom:900.330000px;}
.y8c{bottom:901.410000px;}
.y64{bottom:902.130000px;}
.ye3{bottom:903.030000px;}
.yf7{bottom:905.730000px;}
.ye{bottom:906.810000px;}
.y114{bottom:907.530000px;}
.ya7{bottom:920.130000px;}
.yb5{bottom:920.850000px;}
.y37{bottom:921.030000px;}
.y8b{bottom:922.110000px;}
.y63{bottom:922.830000px;}
.ye2{bottom:923.730000px;}
.yf6{bottom:926.430000px;}
.y113{bottom:928.230000px;}
.yc{bottom:929.490000px;}
.yd{bottom:937.050000px;}
.ya6{bottom:940.830000px;}
.y36{bottom:941.730000px;}
.y8a{bottom:942.810000px;}
.y62{bottom:943.530000px;}
.ye1{bottom:944.430000px;}
.yb{bottom:955.230000px;}
.ya5{bottom:961.530000px;}
.y35{bottom:962.430000px;}
.y89{bottom:963.510000px;}
.y61{bottom:964.230000px;}
.yf5{bottom:965.130000px;}
.y112{bottom:966.930000px;}
.ya4{bottom:982.230000px;}
.ye0{bottom:982.950000px;}
.y34{bottom:983.130000px;}
.y60{bottom:984.930000px;}
.yf4{bottom:985.830000px;}
.y111{bottom:987.630000px;}
.y88{bottom:1001.850000px;}
.ya3{bottom:1002.930000px;}
.y33{bottom:1003.830000px;}
.y5f{bottom:1005.630000px;}
.ya{bottom:1007.790000px;}
.ya2{bottom:1023.630000px;}
.y87{bottom:1024.350000px;}
.y32{bottom:1024.530000px;}
.y110{bottom:1026.330000px;}
.y9{bottom:1042.170000px;}
.y5e{bottom:1044.330000px;}
.y31{bottom:1045.230000px;}
.y10f{bottom:1047.030000px;}
.y5d{bottom:1065.030000px;}
.y30{bottom:1065.930000px;}
.y8{bottom:1076.730000px;}
.y5c{bottom:1085.730000px;}
.y2f{bottom:1104.450000px;}
.y5b{bottom:1106.430000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.h10{height:26.995781px;}
.ha{height:37.494141px;}
.h6{height:41.756133px;}
.h4{height:45.184219px;}
.he{height:51.679688px;}
.h12{height:52.700625px;}
.h5{height:53.640000px;}
.h11{height:58.621992px;}
.h2{height:58.651172px;}
.h3{height:60.226875px;}
.hd{height:70.664062px;}
.hf{height:72.562500px;}
.h14{height:74.704922px;}
.h13{height:76.279219px;}
.hb{height:76.317188px;}
.hc{height:78.367500px;}
.h8{height:82.676953px;}
.h7{height:121.179375px;}
.h9{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:125.460000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:50.399998px;}
.x1{left:127.656000px;}
.x4{left:132.696000px;}
.x10{left:148.896000px;}
.xa{left:154.650000px;}
.xe{left:159.510000px;}
.x3{left:168.510000px;}
.xd{left:180.750000px;}
.xb{left:280.830000px;}
.xf{left:343.695000px;}
.xc{left:371.775000px;}
.x7{left:388.515000px;}
.x5{left:413.355000px;}
.x6{left:457.275000px;}
.x8{left:519.202500px;}
.x9{left:526.065000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls10{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:-0.040320pt;}
.ls9{letter-spacing:-0.015360pt;}
.lsa{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.007680pt;}
.ls3{letter-spacing:0.011520pt;}
.ls5{letter-spacing:0.015360pt;}
.lsd{letter-spacing:0.023040pt;}
.ls4{letter-spacing:0.030720pt;}
.ls6{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.640000pt;}
.lse{letter-spacing:10.880000pt;}
.wsa{word-spacing:-17.303040pt;}
.ws2{word-spacing:-17.295360pt;}
.ws9{word-spacing:-17.287680pt;}
.ws7{word-spacing:-17.272320pt;}
.ws3{word-spacing:-17.264640pt;}
.wsc{word-spacing:-16.640000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.416533pt;}
.ws1{word-spacing:-13.280000pt;}
.wsb{word-spacing:-10.679680pt;}
.ws6{word-spacing:0.000000pt;}
._f{margin-left:-4.576427pt;}
._10{margin-left:-3.685760pt;}
._8{margin-left:-2.496000pt;}
._3{margin-left:-0.998613pt;}
._0{width:0.903040pt;}
._1{width:2.267733pt;}
._9{width:3.415253pt;}
._5{width:4.840747pt;}
._18{width:5.896320pt;}
._13{width:7.040000pt;}
._14{width:8.064000pt;}
._15{width:9.037227pt;}
._a{width:9.984000pt;}
._1a{width:10.944000pt;}
._19{width:11.891840pt;}
._7{width:13.388160pt;}
._6{width:14.374613pt;}
._1f{width:17.280000pt;}
._1b{width:18.624000pt;}
._16{width:20.288000pt;}
._17{width:21.440000pt;}
._20{width:22.630613pt;}
._1c{width:23.654613pt;}
._1e{width:24.786347pt;}
._1d{width:25.817387pt;}
._b{width:27.072000pt;}
._c{width:28.042240pt;}
._d{width:29.056000pt;}
._e{width:30.318720pt;}
._21{width:31.306240pt;}
._22{width:32.332800pt;}
._12{width:35.685547pt;}
._11{width:36.710613pt;}
._23{width:38.144000pt;}
._24{width:39.224960pt;}
._25{width:46.080000pt;}
._26{width:54.054613pt;}
._27{width:81.856000pt;}
._28{width:83.136000pt;}
._2{width:473.120000pt;}
._4{width:1345.386667pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:34.912000pt;}
.y6{bottom:52.032000pt;}
.y2e{bottom:116.512000pt;}
.y2d{bottom:121.152000pt;}
.yf3{bottom:124.992000pt;}
.y5a{bottom:125.152000pt;}
.y86{bottom:126.752000pt;}
.yb4{bottom:128.512000pt;}
.y10e{bottom:129.952000pt;}
.y2c{bottom:132.672000pt;}
.y59{bottom:143.546667pt;}
.ya1{bottom:144.186667pt;}
.y85{bottom:145.146667pt;}
.yb3{bottom:146.906667pt;}
.y10d{bottom:148.346667pt;}
.yf2{bottom:161.146667pt;}
.y58{bottom:161.946667pt;}
.yed{bottom:162.586667pt;}
.y84{bottom:163.546667pt;}
.yb2{bottom:165.306667pt;}
.y2b{bottom:172.346667pt;}
.yf1{bottom:179.546667pt;}
.y57{bottom:180.346667pt;}
.yec{bottom:180.986667pt;}
.y83{bottom:181.946667pt;}
.y10c{bottom:182.746667pt;}
.yb1{bottom:183.546667pt;}
.y2a{bottom:187.706667pt;}
.yf0{bottom:197.946667pt;}
.y56{bottom:198.746667pt;}
.yeb{bottom:199.386667pt;}
.y82{bottom:200.346667pt;}
.y10b{bottom:201.146667pt;}
.yb0{bottom:201.946667pt;}
.y29{bottom:203.066667pt;}
.yef{bottom:216.346667pt;}
.y55{bottom:217.146667pt;}
.yea{bottom:217.786667pt;}
.y81{bottom:218.746667pt;}
.y10a{bottom:219.546667pt;}
.yee{bottom:234.746667pt;}
.y28{bottom:235.066667pt;}
.y54{bottom:235.546667pt;}
.ye9{bottom:236.186667pt;}
.yaf{bottom:236.666667pt;}
.y80{bottom:237.146667pt;}
.y12b{bottom:239.386667pt;}
.ydd{bottom:251.426667pt;}
.ydf{bottom:253.186667pt;}
.y27{bottom:253.506667pt;}
.y53{bottom:253.986667pt;}
.ye8{bottom:254.626667pt;}
.y7f{bottom:255.586667pt;}
.ydc{bottom:271.266667pt;}
.yd1{bottom:271.586667pt;}
.y52{bottom:272.386667pt;}
.y12a{bottom:273.826667pt;}
.y7e{bottom:273.986667pt;}
.ye7{bottom:289.026667pt;}
.y26{bottom:289.506667pt;}
.yd0{bottom:289.986667pt;}
.y51{bottom:290.786667pt;}
.y129{bottom:292.226667pt;}
.y7d{bottom:292.386667pt;}
.ydb{bottom:307.426667pt;}
.y25{bottom:307.906667pt;}
.ycf{bottom:308.386667pt;}
.y50{bottom:309.186667pt;}
.y128{bottom:310.626667pt;}
.y7c{bottom:310.786667pt;}
.y109{bottom:325.186667pt;}
.yda{bottom:325.826667pt;}
.y24{bottom:326.306667pt;}
.yce{bottom:326.786667pt;}
.ya0{bottom:327.586667pt;}
.y7b{bottom:329.186667pt;}
.y4f{bottom:343.586667pt;}
.yd9{bottom:344.226667pt;}
.y23{bottom:344.706667pt;}
.y127{bottom:345.026667pt;}
.ycd{bottom:345.186667pt;}
.y9f{bottom:345.986667pt;}
.y7a{bottom:347.586667pt;}
.y4e{bottom:361.986667pt;}
.yd8{bottom:362.626667pt;}
.y22{bottom:363.106667pt;}
.y126{bottom:363.426667pt;}
.ycc{bottom:363.586667pt;}
.y9e{bottom:364.386667pt;}
.y79{bottom:365.986667pt;}
.y4d{bottom:380.386667pt;}
.yd7{bottom:381.026667pt;}
.y21{bottom:381.506667pt;}
.ycb{bottom:381.986667pt;}
.y9d{bottom:382.786667pt;}
.y108{bottom:396.386667pt;}
.y125{bottom:397.826667pt;}
.y4c{bottom:398.786667pt;}
.yd6{bottom:399.426667pt;}
.y20{bottom:399.906667pt;}
.y78{bottom:400.066667pt;}
.yca{bottom:400.386667pt;}
.y9c{bottom:401.186667pt;}
.y107{bottom:414.786667pt;}
.y124{bottom:416.226667pt;}
.y4b{bottom:417.186667pt;}
.yd5{bottom:417.826667pt;}
.y1f{bottom:418.306667pt;}
.yc9{bottom:418.786667pt;}
.y9b{bottom:419.586667pt;}
.y106{bottom:433.186667pt;}
.y123{bottom:434.626667pt;}
.y4a{bottom:435.586667pt;}
.y77{bottom:436.226667pt;}
.y1e{bottom:436.706667pt;}
.yc8{bottom:437.186667pt;}
.y9a{bottom:437.986667pt;}
.y49{bottom:453.986667pt;}
.y76{bottom:454.626667pt;}
.y1d{bottom:455.106667pt;}
.yc7{bottom:455.586667pt;}
.yae{bottom:456.386667pt;}
.y105{bottom:467.426667pt;}
.y122{bottom:469.026667pt;}
.y48{bottom:472.386667pt;}
.y75{bottom:473.026667pt;}
.y1c{bottom:473.506667pt;}
.yc6{bottom:473.986667pt;}
.yad{bottom:474.786667pt;}
.y104{bottom:485.826667pt;}
.y121{bottom:487.426667pt;}
.y47{bottom:490.786667pt;}
.y74{bottom:491.426667pt;}
.y1b{bottom:491.906667pt;}
.yc5{bottom:492.386667pt;}
.yac{bottom:493.186667pt;}
.y120{bottom:505.853333pt;}
.y46{bottom:509.213333pt;}
.y73{bottom:509.853333pt;}
.y1a{bottom:510.333333pt;}
.yc4{bottom:510.813333pt;}
.yab{bottom:511.613333pt;}
.y103{bottom:520.253333pt;}
.yde{bottom:526.493333pt;}
.y45{bottom:527.613333pt;}
.y72{bottom:528.253333pt;}
.y19{bottom:528.733333pt;}
.ye5{bottom:529.213333pt;}
.y102{bottom:538.653333pt;}
.y11f{bottom:540.253333pt;}
.yc3{bottom:545.213333pt;}
.y99{bottom:546.013333pt;}
.yaa{bottom:546.173333pt;}
.y71{bottom:546.653333pt;}
.y18{bottom:547.133333pt;}
.ye4{bottom:547.453333pt;}
.y101{bottom:557.053333pt;}
.y11e{bottom:558.653333pt;}
.y44{bottom:561.693333pt;}
.yd4{bottom:562.653333pt;}
.ye6{bottom:563.293333pt;}
.yc2{bottom:563.453333pt;}
.y98{bottom:564.413333pt;}
.y70{bottom:565.053333pt;}
.y17{bottom:565.533333pt;}
.y11d{bottom:577.053333pt;}
.yd3{bottom:581.053333pt;}
.ya9{bottom:581.693333pt;}
.yc1{bottom:581.853333pt;}
.y97{bottom:582.813333pt;}
.y6f{bottom:583.453333pt;}
.y16{bottom:583.933333pt;}
.y100{bottom:591.453333pt;}
.y43{bottom:597.853333pt;}
.yd2{bottom:599.453333pt;}
.yc0{bottom:600.253333pt;}
.y96{bottom:601.213333pt;}
.y15{bottom:602.333333pt;}
.yff{bottom:609.853333pt;}
.y11c{bottom:611.453333pt;}
.y42{bottom:616.253333pt;}
.y6e{bottom:617.853333pt;}
.ybf{bottom:618.653333pt;}
.y95{bottom:619.613333pt;}
.yfe{bottom:628.253333pt;}
.y11b{bottom:629.853333pt;}
.y41{bottom:634.653333pt;}
.y6d{bottom:636.253333pt;}
.y14{bottom:636.413333pt;}
.ybe{bottom:637.053333pt;}
.y94{bottom:638.013333pt;}
.y40{bottom:653.053333pt;}
.y6c{bottom:654.653333pt;}
.ybd{bottom:655.453333pt;}
.y93{bottom:656.413333pt;}
.yfd{bottom:662.653333pt;}
.y11a{bottom:664.253333pt;}
.y3f{bottom:671.453333pt;}
.y13{bottom:672.413333pt;}
.y6b{bottom:673.053333pt;}
.ybc{bottom:673.853333pt;}
.y92{bottom:674.813333pt;}
.yfc{bottom:681.053333pt;}
.y119{bottom:682.653333pt;}
.y3e{bottom:689.853333pt;}
.y6a{bottom:691.453333pt;}
.ybb{bottom:692.253333pt;}
.y118{bottom:701.053333pt;}
.y3d{bottom:708.253333pt;}
.y12{bottom:708.733333pt;}
.y91{bottom:709.213333pt;}
.y69{bottom:709.853333pt;}
.yba{bottom:710.653333pt;}
.yfb{bottom:715.453333pt;}
.y3c{bottom:726.653333pt;}
.y90{bottom:727.613333pt;}
.y68{bottom:728.253333pt;}
.y11{bottom:728.733333pt;}
.yb9{bottom:729.053333pt;}
.yfa{bottom:733.853333pt;}
.y117{bottom:735.453333pt;}
.y3b{bottom:745.053333pt;}
.y8f{bottom:746.053333pt;}
.y67{bottom:746.693333pt;}
.yb8{bottom:747.493333pt;}
.y10{bottom:748.933333pt;}
.yf9{bottom:752.293333pt;}
.y116{bottom:753.893333pt;}
.y3a{bottom:763.493333pt;}
.y8e{bottom:764.453333pt;}
.y66{bottom:765.093333pt;}
.yb7{bottom:765.893333pt;}
.y115{bottom:772.293333pt;}
.y39{bottom:781.893333pt;}
.y8d{bottom:782.853333pt;}
.y65{bottom:783.493333pt;}
.yb6{bottom:784.293333pt;}
.yf{bottom:786.213333pt;}
.yf8{bottom:786.693333pt;}
.ya8{bottom:799.493333pt;}
.y38{bottom:800.293333pt;}
.y8c{bottom:801.253333pt;}
.y64{bottom:801.893333pt;}
.ye3{bottom:802.693333pt;}
.yf7{bottom:805.093333pt;}
.ye{bottom:806.053333pt;}
.y114{bottom:806.693333pt;}
.ya7{bottom:817.893333pt;}
.yb5{bottom:818.533333pt;}
.y37{bottom:818.693333pt;}
.y8b{bottom:819.653333pt;}
.y63{bottom:820.293333pt;}
.ye2{bottom:821.093333pt;}
.yf6{bottom:823.493333pt;}
.y113{bottom:825.093333pt;}
.yc{bottom:826.213333pt;}
.yd{bottom:832.933333pt;}
.ya6{bottom:836.293333pt;}
.y36{bottom:837.093333pt;}
.y8a{bottom:838.053333pt;}
.y62{bottom:838.693333pt;}
.ye1{bottom:839.493333pt;}
.yb{bottom:849.093333pt;}
.ya5{bottom:854.693333pt;}
.y35{bottom:855.493333pt;}
.y89{bottom:856.453333pt;}
.y61{bottom:857.093333pt;}
.yf5{bottom:857.893333pt;}
.y112{bottom:859.493333pt;}
.ya4{bottom:873.093333pt;}
.ye0{bottom:873.733333pt;}
.y34{bottom:873.893333pt;}
.y60{bottom:875.493333pt;}
.yf4{bottom:876.293333pt;}
.y111{bottom:877.893333pt;}
.y88{bottom:890.533333pt;}
.ya3{bottom:891.493333pt;}
.y33{bottom:892.293333pt;}
.y5f{bottom:893.893333pt;}
.ya{bottom:895.813333pt;}
.ya2{bottom:909.893333pt;}
.y87{bottom:910.533333pt;}
.y32{bottom:910.693333pt;}
.y110{bottom:912.293333pt;}
.y9{bottom:926.373333pt;}
.y5e{bottom:928.293333pt;}
.y31{bottom:929.093333pt;}
.y10f{bottom:930.693333pt;}
.y5d{bottom:946.693333pt;}
.y30{bottom:947.493333pt;}
.y8{bottom:957.093333pt;}
.y5c{bottom:965.093333pt;}
.y2f{bottom:981.733333pt;}
.y5b{bottom:983.493333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.h10{height:23.996250pt;}
.ha{height:33.328125pt;}
.h6{height:37.116563pt;}
.h4{height:40.163750pt;}
.he{height:45.937500pt;}
.h12{height:46.845000pt;}
.h5{height:47.680000pt;}
.h11{height:52.108438pt;}
.h2{height:52.134375pt;}
.h3{height:53.535000pt;}
.hd{height:62.812500pt;}
.hf{height:64.500000pt;}
.h14{height:66.404375pt;}
.h13{height:67.803750pt;}
.hb{height:67.837500pt;}
.hc{height:69.660000pt;}
.h8{height:73.490625pt;}
.h7{height:107.715000pt;}
.h9{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:111.520000pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:44.799998pt;}
.x1{left:113.472000pt;}
.x4{left:117.952000pt;}
.x10{left:132.352000pt;}
.xa{left:137.466667pt;}
.xe{left:141.786667pt;}
.x3{left:149.786667pt;}
.xd{left:160.666667pt;}
.xb{left:249.626667pt;}
.xf{left:305.506667pt;}
.xc{left:330.466667pt;}
.x7{left:345.346667pt;}
.x5{left:367.426667pt;}
.x6{left:406.466667pt;}
.x8{left:461.513333pt;}
.x9{left:467.613333pt;}
}




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