
    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_6beef3d4b4362b74cbcd5aab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_84103483d582973f13afd5d2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7a665e874fa786949fd52aea.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0e63064dcb4f315df887c085.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e825c414295e76056b49118b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f21be6f8e82b422129183cda.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172363;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_1c2415d555e4d46491c1a447.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064453;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_e2de35bc5e652ccacd41f4eb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.080566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-71.280000px;}
.v4{vertical-align:-65.520000px;}
.v5{vertical-align:-64.080000px;}
.v3{vertical-align:-59.760000px;}
.v1{vertical-align:-57.600000px;}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-2.880000px;}
.ls14{letter-spacing:-2.160000px;}
.ls25{letter-spacing:-1.800000px;}
.ls8{letter-spacing:-1.494000px;}
.lsc{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-1.332000px;}
.lsa{letter-spacing:-1.176000px;}
.lsb{letter-spacing:-1.134000px;}
.ls24{letter-spacing:-1.080000px;}
.ls13{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.457800px;}
.ls17{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.259800px;}
.ls16{letter-spacing:-0.106800px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.053280px;}
.ls1b{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.206640px;}
.ls12{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.666720px;}
.ls5{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.900000px;}
.ls4{letter-spacing:1.440000px;}
.ls18{letter-spacing:2.880000px;}
.ls1c{letter-spacing:3.546720px;}
.ls1d{letter-spacing:4.986720px;}
.lse{letter-spacing:7.200000px;}
.lsd{letter-spacing:8.640000px;}
.ls21{letter-spacing:10.260000px;}
.ls22{letter-spacing:10.980000px;}
.ls10{letter-spacing:12.240000px;}
.ls1e{letter-spacing:13.626720px;}
.lsf{letter-spacing:39.600000px;}
.ls3{letter-spacing:158.004000px;}
.ls19{letter-spacing:1295.076000px;}
.ls23{letter-spacing:2010.876000px;}
.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:-16.822200px;}
.ws3{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.426000px;}
.ws4{word-spacing:-15.384000px;}
.ws0{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.120000px;}
.wsf{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.993280px;}
.wsd{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.833200px;}
.ws2{word-spacing:-14.680200px;}
.wse{word-spacing:-14.580000px;}
.wsa{word-spacing:-14.400000px;}
.ws10{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.680000px;}
.ws11{word-spacing:-13.140000px;}
.ws7{word-spacing:0.000000px;}
._2e{margin-left:-4.312800px;}
._7{margin-left:-3.236160px;}
._4{margin-left:-2.208480px;}
._1{margin-left:-1.195200px;}
._0{width:1.135440px;}
._2{width:2.956800px;}
._19{width:3.974400px;}
._6{width:4.977840px;}
._5{width:6.025200px;}
._9{width:7.179360px;}
._a{width:8.867040px;}
._b{width:10.807200px;}
._e{width:11.865600px;}
._11{width:13.259040px;}
._10{width:14.376960px;}
._d{width:15.523200px;}
._32{width:17.074320px;}
._c{width:18.146400px;}
._f{width:19.308480px;}
._15{width:20.824800px;}
._13{width:21.991680px;}
._14{width:23.148960px;}
._17{width:24.733920px;}
._16{width:25.833600px;}
._2d{width:27.190800px;}
._8{width:28.197120px;}
._18{width:29.410560px;}
._23{width:30.417840px;}
._2b{width:33.883920px;}
._2a{width:35.138880px;}
._2f{width:36.316800px;}
._12{width:39.636960px;}
._30{width:41.116080px;}
._27{width:55.158480px;}
._1d{width:56.532960px;}
._2c{width:57.548880px;}
._1b{width:61.791840px;}
._1f{width:72.130320px;}
._21{width:77.807520px;}
._25{width:81.930960px;}
._22{width:90.476640px;}
._1c{width:92.747520px;}
._29{width:106.372800px;}
._24{width:140.376240px;}
._26{width:159.618960px;}
._28{width:179.997120px;}
._1e{width:236.325360px;}
._1a{width:420.342240px;}
._20{width:666.828480px;}
._3{width:752.629440px;}
._31{width:1185.529440px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:3.600000px;}
.y7d{bottom:3.780000px;}
.y82{bottom:20.880000px;}
.y7f{bottom:21.060000px;}
.y7c{bottom:21.105000px;}
.y8f{bottom:38.160000px;}
.y92{bottom:38.340000px;}
.y3f{bottom:56.700000px;}
.y9f{bottom:95.256000px;}
.yae{bottom:97.416000px;}
.yeb{bottom:100.296000px;}
.y78{bottom:102.816000px;}
.y3e{bottom:105.516000px;}
.y9e{bottom:114.336000px;}
.yad{bottom:114.516000px;}
.yea{bottom:115.776000px;}
.y3d{bottom:120.996000px;}
.y77{bottom:121.716000px;}
.ye9{bottom:130.536000px;}
.yac{bottom:131.796000px;}
.y9d{bottom:133.236000px;}
.y3c{bottom:136.296000px;}
.y76{bottom:140.796000px;}
.ye8{bottom:143.856000px;}
.yab{bottom:149.076000px;}
.y3b{bottom:151.050000px;}
.y9c{bottom:152.130000px;}
.y75{bottom:159.690000px;}
.ye7{bottom:161.130000px;}
.yaa{bottom:166.350000px;}
.y3a{bottom:170.130000px;}
.y9b{bottom:171.210000px;}
.ye6{bottom:178.410000px;}
.y74{bottom:178.590000px;}
.ya9{bottom:183.630000px;}
.y39{bottom:189.030000px;}
.y9a{bottom:190.110000px;}
.ye5{bottom:195.690000px;}
.y73{bottom:197.670000px;}
.ya8{bottom:200.730000px;}
.y38{bottom:207.930000px;}
.y99{bottom:209.190000px;}
.ye4{bottom:212.970000px;}
.y72{bottom:216.570000px;}
.ya7{bottom:218.010000px;}
.y37{bottom:227.010000px;}
.y98{bottom:228.090000px;}
.ye3{bottom:230.070000px;}
.ya6{bottom:235.290000px;}
.y71{bottom:235.650000px;}
.y36{bottom:245.910000px;}
.y97{bottom:246.990000px;}
.ye2{bottom:247.350000px;}
.ya5{bottom:252.570000px;}
.y70{bottom:254.550000px;}
.ye1{bottom:264.630000px;}
.y35{bottom:264.990000px;}
.y96{bottom:266.070000px;}
.ya4{bottom:269.850000px;}
.y6f{bottom:273.630000px;}
.ye0{bottom:281.910000px;}
.y34{bottom:283.890000px;}
.y95{bottom:284.970000px;}
.ya3{bottom:287.130000px;}
.y6e{bottom:292.530000px;}
.ydf{bottom:299.190000px;}
.y33{bottom:302.790000px;}
.y94{bottom:304.050000px;}
.ya2{bottom:304.230000px;}
.y6d{bottom:311.430000px;}
.yde{bottom:316.290000px;}
.ya1{bottom:321.510000px;}
.y32{bottom:321.870000px;}
.y6c{bottom:330.555000px;}
.ydd{bottom:333.615000px;}
.y93{bottom:336.495000px;}
.y31{bottom:340.815000px;}
.y6b{bottom:349.455000px;}
.y91{bottom:350.715000px;}
.ydc{bottom:350.895000px;}
.ya0{bottom:354.855000px;}
.y30{bottom:359.895000px;}
.ydb{bottom:368.175000px;}
.y6a{bottom:368.535000px;}
.y2f{bottom:378.795000px;}
.yda{bottom:385.455000px;}
.y69{bottom:387.435000px;}
.y2e{bottom:397.695000px;}
.yd9{bottom:402.735000px;}
.y90{bottom:403.275000px;}
.y68{bottom:406.335000px;}
.y2d{bottom:416.775000px;}
.yd8{bottom:419.835000px;}
.y67{bottom:425.415000px;}
.y2c{bottom:435.675000px;}
.yd7{bottom:436.395000px;}
.y66{bottom:444.315000px;}
.yd6{bottom:450.975000px;}
.y2b{bottom:454.755000px;}
.y8e{bottom:455.835000px;}
.y65{bottom:463.395000px;}
.yd5{bottom:468.255000px;}
.y2a{bottom:473.655000px;}
.y64{bottom:482.295000px;}
.yd4{bottom:485.535000px;}
.y29{bottom:492.555000px;}
.y63{bottom:501.195000px;}
.yd3{bottom:502.635000px;}
.y8d{bottom:508.215000px;}
.y28{bottom:511.635000px;}
.y62{bottom:520.275000px;}
.y27{bottom:530.535000px;}
.yd2{bottom:533.415000px;}
.y61{bottom:539.175000px;}
.y8c{bottom:547.455000px;}
.y26{bottom:549.615000px;}
.yd1{bottom:550.695000px;}
.y60{bottom:558.255000px;}
.yd0{bottom:567.975000px;}
.y25{bottom:568.515000px;}
.y5f{bottom:577.155000px;}
.y8b{bottom:580.395000px;}
.ycf{bottom:584.715000px;}
.y24{bottom:587.595000px;}
.y5e{bottom:596.085000px;}
.y8a{bottom:599.325000px;}
.y23{bottom:606.525000px;}
.y5d{bottom:615.165000px;}
.yce{bottom:616.605000px;}
.y89{bottom:618.225000px;}
.y22{bottom:625.425000px;}
.y5c{bottom:634.065000px;}
.y88{bottom:637.305000px;}
.y21{bottom:644.505000px;}
.ycd{bottom:649.905000px;}
.y5b{bottom:653.145000px;}
.y87{bottom:656.205000px;}
.ycc{bottom:663.225000px;}
.y20{bottom:663.405000px;}
.y5a{bottom:672.045000px;}
.y86{bottom:675.285000px;}
.ycb{bottom:680.325000px;}
.y1f{bottom:682.485000px;}
.y59{bottom:690.945000px;}
.y85{bottom:694.185000px;}
.yca{bottom:697.605000px;}
.y1e{bottom:701.385000px;}
.y58{bottom:710.025000px;}
.y84{bottom:712.005000px;}
.yc9{bottom:714.885000px;}
.y1d{bottom:720.285000px;}
.y83{bottom:726.585000px;}
.y57{bottom:728.925000px;}
.yc8{bottom:732.165000px;}
.y1c{bottom:739.365000px;}
.y81{bottom:740.985000px;}
.y56{bottom:748.005000px;}
.yc7{bottom:749.445000px;}
.y1b{bottom:758.265000px;}
.yc6{bottom:766.725000px;}
.y55{bottom:766.905000px;}
.y80{bottom:776.085000px;}
.yc5{bottom:783.825000px;}
.y54{bottom:785.985000px;}
.y1a{bottom:795.165000px;}
.yc4{bottom:801.105000px;}
.y53{bottom:804.885000px;}
.y19{bottom:809.745000px;}
.y7e{bottom:811.365000px;}
.yc3{bottom:818.385000px;}
.y52{bottom:823.785000px;}
.y18{bottom:827.025000px;}
.yc2{bottom:835.665000px;}
.y51{bottom:842.865000px;}
.y17{bottom:844.305000px;}
.y7b{bottom:846.645000px;}
.yc1{bottom:852.945000px;}
.y16{bottom:861.585000px;}
.y50{bottom:861.765000px;}
.yc0{bottom:868.830000px;}
.y15{bottom:878.730000px;}
.y4f{bottom:880.890000px;}
.ybf{bottom:882.330000px;}
.y7a{bottom:885.930000px;}
.y14{bottom:896.010000px;}
.ybe{bottom:899.430000px;}
.y4e{bottom:899.790000px;}
.y79{bottom:905.010000px;}
.y13{bottom:913.290000px;}
.ybd{bottom:915.270000px;}
.y4d{bottom:918.690000px;}
.ybc{bottom:928.410000px;}
.y12{bottom:930.570000px;}
.y4c{bottom:937.770000px;}
.ybb{bottom:945.690000px;}
.y11{bottom:947.850000px;}
.y4b{bottom:956.670000px;}
.yba{bottom:962.970000px;}
.y10{bottom:965.130000px;}
.y4a{bottom:975.750000px;}
.yb9{bottom:979.350000px;}
.yf{bottom:982.230000px;}
.yb8{bottom:992.670000px;}
.y49{bottom:994.650000px;}
.ye{bottom:998.790000px;}
.yb7{bottom:1009.950000px;}
.yd{bottom:1013.370000px;}
.y48{bottom:1013.550000px;}
.yb6{bottom:1027.050000px;}
.yc{bottom:1030.650000px;}
.y47{bottom:1032.630000px;}
.yb5{bottom:1044.330000px;}
.yb{bottom:1047.750000px;}
.y46{bottom:1051.530000px;}
.yb4{bottom:1061.610000px;}
.ya{bottom:1065.030000px;}
.y45{bottom:1070.610000px;}
.yb3{bottom:1078.890000px;}
.y9{bottom:1082.310000px;}
.y44{bottom:1089.510000px;}
.yb2{bottom:1096.170000px;}
.y43{bottom:1108.410000px;}
.y8{bottom:1113.090000px;}
.yb1{bottom:1113.450000px;}
.y42{bottom:1127.490000px;}
.y7{bottom:1130.220000px;}
.yb0{bottom:1130.580000px;}
.y41{bottom:1146.420000px;}
.y6{bottom:1147.500000px;}
.yaf{bottom:1147.860000px;}
.y3{bottom:1164.240000px;}
.y2{bottom:1179.000000px;}
.y40{bottom:1189.260000px;}
.y4{bottom:1192.320000px;}
.y1{bottom:1196.280000px;}
.h5{height:17.280000px;}
.hf{height:34.380000px;}
.he{height:34.560000px;}
.hd{height:34.596000px;}
.h13{height:40.985156px;}
.h14{height:42.086250px;}
.h7{height:47.344922px;}
.h10{height:48.616875px;}
.h4{height:49.583118px;}
.h11{height:51.660000px;}
.h12{height:51.840000px;}
.ha{height:52.998047px;}
.h15{height:53.252930px;}
.h2{height:58.651172px;}
.hc{height:59.027344px;}
.h6{height:60.226875px;}
.h3{height:61.423863px;}
.h8{height:65.010937px;}
.hb{height:65.884219px;}
.h9{height:66.757500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:22.500000px;}
.w4{width:24.300000px;}
.w5{width:98.316000px;}
.w9{width:162.750000px;}
.wa{width:174.990000px;}
.wc{width:196.590000px;}
.wb{width:201.810000px;}
.w8{width:202.350000px;}
.w7{width:213.150000px;}
.w6{width:222.330000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.740000px;}
.x10{left:56.160000px;}
.x4{left:63.900000px;}
.x1a{left:90.719987px;}
.x5{left:106.595987px;}
.x20{left:120.815987px;}
.x19{left:133.235987px;}
.xe{left:142.775987px;}
.xd{left:148.895987px;}
.x12{left:155.190000px;}
.x15{left:217.109987px;}
.x16{left:219.630000px;}
.x6{left:255.629987px;}
.x1{left:262.109987px;}
.x22{left:277.049987px;}
.x1b{left:302.474987px;}
.x21{left:364.034987px;}
.x13{left:378.255000px;}
.x7{left:379.694987px;}
.x17{left:395.355000px;}
.x8{left:438.014987px;}
.x2{left:441.254987px;}
.x1c{left:446.474987px;}
.x1d{left:475.484987px;}
.x9{left:551.444987px;}
.x14{left:592.125000px;}
.x23{left:593.384987px;}
.x18{left:597.885000px;}
.x1e{left:604.904987px;}
.x1f{left:619.124987px;}
.xb{left:627.044987px;}
.xf{left:697.829987px;}
.xa{left:764.249987px;}
.x3{left:786.749987px;}
.xc{left:819.150000px;}
@media print{
.v2{vertical-align:-63.360000pt;}
.v4{vertical-align:-58.240000pt;}
.v5{vertical-align:-56.960000pt;}
.v3{vertical-align:-53.120000pt;}
.v1{vertical-align:-51.200000pt;}
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-2.560000pt;}
.ls14{letter-spacing:-1.920000pt;}
.ls25{letter-spacing:-1.600000pt;}
.ls8{letter-spacing:-1.328000pt;}
.lsc{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-1.184000pt;}
.lsa{letter-spacing:-1.045333pt;}
.lsb{letter-spacing:-1.008000pt;}
.ls24{letter-spacing:-0.960000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.406933pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.230933pt;}
.ls16{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.047360pt;}
.ls1b{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.183680pt;}
.ls12{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.592640pt;}
.ls5{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.800000pt;}
.ls4{letter-spacing:1.280000pt;}
.ls18{letter-spacing:2.560000pt;}
.ls1c{letter-spacing:3.152640pt;}
.ls1d{letter-spacing:4.432640pt;}
.lse{letter-spacing:6.400000pt;}
.lsd{letter-spacing:7.680000pt;}
.ls21{letter-spacing:9.120000pt;}
.ls22{letter-spacing:9.760000pt;}
.ls10{letter-spacing:10.880000pt;}
.ls1e{letter-spacing:12.112640pt;}
.lsf{letter-spacing:35.200000pt;}
.ls3{letter-spacing:140.448000pt;}
.ls19{letter-spacing:1151.178667pt;}
.ls23{letter-spacing:1787.445333pt;}
.ws8{word-spacing:-14.953067pt;}
.ws3{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.712000pt;}
.ws4{word-spacing:-13.674667pt;}
.ws0{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.440000pt;}
.wsf{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.327360pt;}
.wsd{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.185067pt;}
.ws2{word-spacing:-13.049067pt;}
.wse{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.800000pt;}
.ws10{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.160000pt;}
.ws11{word-spacing:-11.680000pt;}
.ws7{word-spacing:0.000000pt;}
._2e{margin-left:-3.833600pt;}
._7{margin-left:-2.876587pt;}
._4{margin-left:-1.963093pt;}
._1{margin-left:-1.062400pt;}
._0{width:1.009280pt;}
._2{width:2.628267pt;}
._19{width:3.532800pt;}
._6{width:4.424747pt;}
._5{width:5.355733pt;}
._9{width:6.381653pt;}
._a{width:7.881813pt;}
._b{width:9.606400pt;}
._e{width:10.547200pt;}
._11{width:11.785813pt;}
._10{width:12.779520pt;}
._d{width:13.798400pt;}
._32{width:15.177173pt;}
._c{width:16.130133pt;}
._f{width:17.163093pt;}
._15{width:18.510933pt;}
._13{width:19.548160pt;}
._14{width:20.576853pt;}
._17{width:21.985707pt;}
._16{width:22.963200pt;}
._2d{width:24.169600pt;}
._8{width:25.064107pt;}
._18{width:26.142720pt;}
._23{width:27.038080pt;}
._2b{width:30.119040pt;}
._2a{width:31.234560pt;}
._2f{width:32.281600pt;}
._12{width:35.232853pt;}
._30{width:36.547627pt;}
._27{width:49.029760pt;}
._1d{width:50.251520pt;}
._2c{width:51.154560pt;}
._1b{width:54.926080pt;}
._1f{width:64.115840pt;}
._21{width:69.162240pt;}
._25{width:72.827520pt;}
._22{width:80.423680pt;}
._1c{width:82.442240pt;}
._29{width:94.553600pt;}
._24{width:124.778880pt;}
._26{width:141.883520pt;}
._28{width:159.997440pt;}
._1e{width:210.066987pt;}
._1a{width:373.637547pt;}
._20{width:592.736427pt;}
._3{width:669.003947pt;}
._31{width:1053.803947pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.200000pt;}
.y7d{bottom:3.360000pt;}
.y82{bottom:18.560000pt;}
.y7f{bottom:18.720000pt;}
.y7c{bottom:18.760000pt;}
.y8f{bottom:33.920000pt;}
.y92{bottom:34.080000pt;}
.y3f{bottom:50.400000pt;}
.y9f{bottom:84.672000pt;}
.yae{bottom:86.592000pt;}
.yeb{bottom:89.152000pt;}
.y78{bottom:91.392000pt;}
.y3e{bottom:93.792000pt;}
.y9e{bottom:101.632000pt;}
.yad{bottom:101.792000pt;}
.yea{bottom:102.912000pt;}
.y3d{bottom:107.552000pt;}
.y77{bottom:108.192000pt;}
.ye9{bottom:116.032000pt;}
.yac{bottom:117.152000pt;}
.y9d{bottom:118.432000pt;}
.y3c{bottom:121.152000pt;}
.y76{bottom:125.152000pt;}
.ye8{bottom:127.872000pt;}
.yab{bottom:132.512000pt;}
.y3b{bottom:134.266667pt;}
.y9c{bottom:135.226667pt;}
.y75{bottom:141.946667pt;}
.ye7{bottom:143.226667pt;}
.yaa{bottom:147.866667pt;}
.y3a{bottom:151.226667pt;}
.y9b{bottom:152.186667pt;}
.ye6{bottom:158.586667pt;}
.y74{bottom:158.746667pt;}
.ya9{bottom:163.226667pt;}
.y39{bottom:168.026667pt;}
.y9a{bottom:168.986667pt;}
.ye5{bottom:173.946667pt;}
.y73{bottom:175.706667pt;}
.ya8{bottom:178.426667pt;}
.y38{bottom:184.826667pt;}
.y99{bottom:185.946667pt;}
.ye4{bottom:189.306667pt;}
.y72{bottom:192.506667pt;}
.ya7{bottom:193.786667pt;}
.y37{bottom:201.786667pt;}
.y98{bottom:202.746667pt;}
.ye3{bottom:204.506667pt;}
.ya6{bottom:209.146667pt;}
.y71{bottom:209.466667pt;}
.y36{bottom:218.586667pt;}
.y97{bottom:219.546667pt;}
.ye2{bottom:219.866667pt;}
.ya5{bottom:224.506667pt;}
.y70{bottom:226.266667pt;}
.ye1{bottom:235.226667pt;}
.y35{bottom:235.546667pt;}
.y96{bottom:236.506667pt;}
.ya4{bottom:239.866667pt;}
.y6f{bottom:243.226667pt;}
.ye0{bottom:250.586667pt;}
.y34{bottom:252.346667pt;}
.y95{bottom:253.306667pt;}
.ya3{bottom:255.226667pt;}
.y6e{bottom:260.026667pt;}
.ydf{bottom:265.946667pt;}
.y33{bottom:269.146667pt;}
.y94{bottom:270.266667pt;}
.ya2{bottom:270.426667pt;}
.y6d{bottom:276.826667pt;}
.yde{bottom:281.146667pt;}
.ya1{bottom:285.786667pt;}
.y32{bottom:286.106667pt;}
.y6c{bottom:293.826667pt;}
.ydd{bottom:296.546667pt;}
.y93{bottom:299.106667pt;}
.y31{bottom:302.946667pt;}
.y6b{bottom:310.626667pt;}
.y91{bottom:311.746667pt;}
.ydc{bottom:311.906667pt;}
.ya0{bottom:315.426667pt;}
.y30{bottom:319.906667pt;}
.ydb{bottom:327.266667pt;}
.y6a{bottom:327.586667pt;}
.y2f{bottom:336.706667pt;}
.yda{bottom:342.626667pt;}
.y69{bottom:344.386667pt;}
.y2e{bottom:353.506667pt;}
.yd9{bottom:357.986667pt;}
.y90{bottom:358.466667pt;}
.y68{bottom:361.186667pt;}
.y2d{bottom:370.466667pt;}
.yd8{bottom:373.186667pt;}
.y67{bottom:378.146667pt;}
.y2c{bottom:387.266667pt;}
.yd7{bottom:387.906667pt;}
.y66{bottom:394.946667pt;}
.yd6{bottom:400.866667pt;}
.y2b{bottom:404.226667pt;}
.y8e{bottom:405.186667pt;}
.y65{bottom:411.906667pt;}
.yd5{bottom:416.226667pt;}
.y2a{bottom:421.026667pt;}
.y64{bottom:428.706667pt;}
.yd4{bottom:431.586667pt;}
.y29{bottom:437.826667pt;}
.y63{bottom:445.506667pt;}
.yd3{bottom:446.786667pt;}
.y8d{bottom:451.746667pt;}
.y28{bottom:454.786667pt;}
.y62{bottom:462.466667pt;}
.y27{bottom:471.586667pt;}
.yd2{bottom:474.146667pt;}
.y61{bottom:479.266667pt;}
.y8c{bottom:486.626667pt;}
.y26{bottom:488.546667pt;}
.yd1{bottom:489.506667pt;}
.y60{bottom:496.226667pt;}
.yd0{bottom:504.866667pt;}
.y25{bottom:505.346667pt;}
.y5f{bottom:513.026667pt;}
.y8b{bottom:515.906667pt;}
.ycf{bottom:519.746667pt;}
.y24{bottom:522.306667pt;}
.y5e{bottom:529.853333pt;}
.y8a{bottom:532.733333pt;}
.y23{bottom:539.133333pt;}
.y5d{bottom:546.813333pt;}
.yce{bottom:548.093333pt;}
.y89{bottom:549.533333pt;}
.y22{bottom:555.933333pt;}
.y5c{bottom:563.613333pt;}
.y88{bottom:566.493333pt;}
.y21{bottom:572.893333pt;}
.ycd{bottom:577.693333pt;}
.y5b{bottom:580.573333pt;}
.y87{bottom:583.293333pt;}
.ycc{bottom:589.533333pt;}
.y20{bottom:589.693333pt;}
.y5a{bottom:597.373333pt;}
.y86{bottom:600.253333pt;}
.ycb{bottom:604.733333pt;}
.y1f{bottom:606.653333pt;}
.y59{bottom:614.173333pt;}
.y85{bottom:617.053333pt;}
.yca{bottom:620.093333pt;}
.y1e{bottom:623.453333pt;}
.y58{bottom:631.133333pt;}
.y84{bottom:632.893333pt;}
.yc9{bottom:635.453333pt;}
.y1d{bottom:640.253333pt;}
.y83{bottom:645.853333pt;}
.y57{bottom:647.933333pt;}
.yc8{bottom:650.813333pt;}
.y1c{bottom:657.213333pt;}
.y81{bottom:658.653333pt;}
.y56{bottom:664.893333pt;}
.yc7{bottom:666.173333pt;}
.y1b{bottom:674.013333pt;}
.yc6{bottom:681.533333pt;}
.y55{bottom:681.693333pt;}
.y80{bottom:689.853333pt;}
.yc5{bottom:696.733333pt;}
.y54{bottom:698.653333pt;}
.y1a{bottom:706.813333pt;}
.yc4{bottom:712.093333pt;}
.y53{bottom:715.453333pt;}
.y19{bottom:719.773333pt;}
.y7e{bottom:721.213333pt;}
.yc3{bottom:727.453333pt;}
.y52{bottom:732.253333pt;}
.y18{bottom:735.133333pt;}
.yc2{bottom:742.813333pt;}
.y51{bottom:749.213333pt;}
.y17{bottom:750.493333pt;}
.y7b{bottom:752.573333pt;}
.yc1{bottom:758.173333pt;}
.y16{bottom:765.853333pt;}
.y50{bottom:766.013333pt;}
.yc0{bottom:772.293333pt;}
.y15{bottom:781.093333pt;}
.y4f{bottom:783.013333pt;}
.ybf{bottom:784.293333pt;}
.y7a{bottom:787.493333pt;}
.y14{bottom:796.453333pt;}
.ybe{bottom:799.493333pt;}
.y4e{bottom:799.813333pt;}
.y79{bottom:804.453333pt;}
.y13{bottom:811.813333pt;}
.ybd{bottom:813.573333pt;}
.y4d{bottom:816.613333pt;}
.ybc{bottom:825.253333pt;}
.y12{bottom:827.173333pt;}
.y4c{bottom:833.573333pt;}
.ybb{bottom:840.613333pt;}
.y11{bottom:842.533333pt;}
.y4b{bottom:850.373333pt;}
.yba{bottom:855.973333pt;}
.y10{bottom:857.893333pt;}
.y4a{bottom:867.333333pt;}
.yb9{bottom:870.533333pt;}
.yf{bottom:873.093333pt;}
.yb8{bottom:882.373333pt;}
.y49{bottom:884.133333pt;}
.ye{bottom:887.813333pt;}
.yb7{bottom:897.733333pt;}
.yd{bottom:900.773333pt;}
.y48{bottom:900.933333pt;}
.yb6{bottom:912.933333pt;}
.yc{bottom:916.133333pt;}
.y47{bottom:917.893333pt;}
.yb5{bottom:928.293333pt;}
.yb{bottom:931.333333pt;}
.y46{bottom:934.693333pt;}
.yb4{bottom:943.653333pt;}
.ya{bottom:946.693333pt;}
.y45{bottom:951.653333pt;}
.yb3{bottom:959.013333pt;}
.y9{bottom:962.053333pt;}
.y44{bottom:968.453333pt;}
.yb2{bottom:974.373333pt;}
.y43{bottom:985.253333pt;}
.y8{bottom:989.413333pt;}
.yb1{bottom:989.733333pt;}
.y42{bottom:1002.213333pt;}
.y7{bottom:1004.640000pt;}
.yb0{bottom:1004.960000pt;}
.y41{bottom:1019.040000pt;}
.y6{bottom:1020.000000pt;}
.yaf{bottom:1020.320000pt;}
.y3{bottom:1034.880000pt;}
.y2{bottom:1048.000000pt;}
.y40{bottom:1057.120000pt;}
.y4{bottom:1059.840000pt;}
.y1{bottom:1063.360000pt;}
.h5{height:15.360000pt;}
.hf{height:30.560000pt;}
.he{height:30.720000pt;}
.hd{height:30.752000pt;}
.h13{height:36.431250pt;}
.h14{height:37.410000pt;}
.h7{height:42.084375pt;}
.h10{height:43.215000pt;}
.h4{height:44.073883pt;}
.h11{height:45.920000pt;}
.h12{height:46.080000pt;}
.ha{height:47.109375pt;}
.h15{height:47.335938pt;}
.h2{height:52.134375pt;}
.hc{height:52.468750pt;}
.h6{height:53.535000pt;}
.h3{height:54.598989pt;}
.h8{height:57.787500pt;}
.hb{height:58.563750pt;}
.h9{height:59.340000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:20.000000pt;}
.w4{width:21.600000pt;}
.w5{width:87.392000pt;}
.w9{width:144.666667pt;}
.wa{width:155.546667pt;}
.wc{width:174.746667pt;}
.wb{width:179.386667pt;}
.w8{width:179.866667pt;}
.w7{width:189.466667pt;}
.w6{width:197.626667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.880000pt;}
.x10{left:49.920000pt;}
.x4{left:56.800000pt;}
.x1a{left:80.639988pt;}
.x5{left:94.751988pt;}
.x20{left:107.391988pt;}
.x19{left:118.431988pt;}
.xe{left:126.911988pt;}
.xd{left:132.351988pt;}
.x12{left:137.946667pt;}
.x15{left:192.986655pt;}
.x16{left:195.226667pt;}
.x6{left:227.226655pt;}
.x1{left:232.986655pt;}
.x22{left:246.266655pt;}
.x1b{left:268.866655pt;}
.x21{left:323.586655pt;}
.x13{left:336.226667pt;}
.x7{left:337.506655pt;}
.x17{left:351.426667pt;}
.x8{left:389.346655pt;}
.x2{left:392.226655pt;}
.x1c{left:396.866655pt;}
.x1d{left:422.653322pt;}
.x9{left:490.173322pt;}
.x14{left:526.333333pt;}
.x23{left:527.453322pt;}
.x18{left:531.453333pt;}
.x1e{left:537.693322pt;}
.x1f{left:550.333322pt;}
.xb{left:557.373322pt;}
.xf{left:620.293322pt;}
.xa{left:679.333322pt;}
.x3{left:699.333322pt;}
.xc{left:728.133333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  