
    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_d6e70da9bd51d83f2b34f559.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_804f39f3de39194513f46bdc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_88c8363ab0a59936f8d0d207.woff')format("woff");}.ff3{font-family:ff3;line-height:0.871094;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_0b66946faa5d540d211af087.woff')format("woff");}.ff4{font-family:ff4;line-height:0.891113;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:-22.326000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:13.730400px;}
.ls0{letter-spacing:56.154000px;}
.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;}
}
.ws3{word-spacing:-65.501100px;}
.ws9{word-spacing:-55.944000px;}
.ws0{word-spacing:-45.314100px;}
.ws2{word-spacing:-44.682900px;}
.ws1{word-spacing:-44.603100px;}
.ws8a{word-spacing:-38.668200px;}
.ws86{word-spacing:-38.652300px;}
.ws32{word-spacing:-38.579400px;}
.ws6{word-spacing:-38.439900px;}
.ws4{word-spacing:-38.438100px;}
.ws72{word-spacing:-38.369100px;}
.ws41{word-spacing:-38.166000px;}
.ws20{word-spacing:-38.160000px;}
.ws81{word-spacing:-38.158200px;}
.ws85{word-spacing:-38.157300px;}
.ws4a{word-spacing:-38.156400px;}
.ws4f{word-spacing:-38.154600px;}
.ws6f{word-spacing:-38.154000px;}
.ws7{word-spacing:-38.152800px;}
.ws22{word-spacing:-37.944000px;}
.ws2c{word-spacing:-37.940100px;}
.ws4e{word-spacing:-37.938600px;}
.ws7d{word-spacing:-37.936800px;}
.ws38{word-spacing:-37.935900px;}
.ws6c{word-spacing:-37.874400px;}
.ws60{word-spacing:-37.872000px;}
.ws8{word-spacing:-37.867200px;}
.ws93{word-spacing:-37.726200px;}
.ws3b{word-spacing:-37.440000px;}
.ws92{word-spacing:-37.427700px;}
.ws80{word-spacing:-37.425600px;}
.ws21{word-spacing:-37.414200px;}
.ws7a{word-spacing:-37.230000px;}
.ws68{word-spacing:-37.224000px;}
.ws5c{word-spacing:-37.208700px;}
.ws84{word-spacing:-37.203600px;}
.ws71{word-spacing:-37.195200px;}
.ws3d{word-spacing:-37.144800px;}
.wsf{word-spacing:-36.726000px;}
.ws1b{word-spacing:-36.720000px;}
.ws19{word-spacing:-36.417600px;}
.ws5{word-spacing:-36.363600px;}
.ws1f{word-spacing:-36.000000px;}
.ws49{word-spacing:-35.994000px;}
.ws82{word-spacing:-35.784000px;}
.wsb{word-spacing:-35.710200px;}
.ws59{word-spacing:-35.286000px;}
.ws2b{word-spacing:-35.280000px;}
.ws5a{word-spacing:-35.058000px;}
.ws16{word-spacing:-34.566000px;}
.ws1d{word-spacing:-34.344000px;}
.ws6d{word-spacing:-34.339500px;}
.ws53{word-spacing:-33.630000px;}
.ws44{word-spacing:-33.624000px;}
.ws6b{word-spacing:-33.611400px;}
.ws43{word-spacing:-33.609600px;}
.ws95{word-spacing:-33.126000px;}
.ws70{word-spacing:-33.120000px;}
.ws51{word-spacing:-33.112800px;}
.ws2e{word-spacing:-32.904000px;}
.ws8c{word-spacing:-32.679000px;}
.ws4c{word-spacing:-32.400000px;}
.ws8f{word-spacing:-32.181300px;}
.ws8e{word-spacing:-32.176200px;}
.ws8d{word-spacing:-31.968000px;}
.ws69{word-spacing:-31.680000px;}
.ws7f{word-spacing:-31.677000px;}
.ws5d{word-spacing:-31.666200px;}
.ws4b{word-spacing:-31.458000px;}
.ws77{word-spacing:-30.966000px;}
.ws30{word-spacing:-30.960000px;}
.ws48{word-spacing:-30.744000px;}
.ws88{word-spacing:-30.740100px;}
.ws87{word-spacing:-30.734100px;}
.ws14{word-spacing:-30.240000px;}
.ws97{word-spacing:-30.225000px;}
.ws2a{word-spacing:-30.024000px;}
.ws34{word-spacing:-29.526000px;}
.ws1c{word-spacing:-29.520000px;}
.ws31{word-spacing:-29.518200px;}
.ws96{word-spacing:-29.288700px;}
.ws10{word-spacing:-28.800000px;}
.ws64{word-spacing:-28.789200px;}
.wse{word-spacing:-28.578600px;}
.ws7c{word-spacing:-28.510200px;}
.ws7b{word-spacing:-28.497000px;}
.ws35{word-spacing:-28.080000px;}
.ws58{word-spacing:-28.066800px;}
.ws74{word-spacing:-27.870000px;}
.ws54{word-spacing:-27.366000px;}
.ws6a{word-spacing:-27.360000px;}
.ws78{word-spacing:-26.646000px;}
.ws42{word-spacing:-25.920000px;}
.ws75{word-spacing:-25.200000px;}
.ws83{word-spacing:-24.990000px;}
.ws94{word-spacing:-24.969600px;}
.ws66{word-spacing:-24.480000px;}
.ws57{word-spacing:-23.749200px;}
.ws2f{word-spacing:-23.544000px;}
.ws50{word-spacing:-23.040000px;}
.ws15{word-spacing:-22.830000px;}
.ws40{word-spacing:-22.320000px;}
.wsa{word-spacing:-22.104000px;}
.ws3c{word-spacing:-22.029000px;}
.ws62{word-spacing:-20.154000px;}
.ws37{word-spacing:-19.859400px;}
.ws11{word-spacing:-19.440000px;}
.ws5f{word-spacing:-18.720000px;}
.ws33{word-spacing:-18.711000px;}
.ws6e{word-spacing:-18.430200px;}
.wsd{word-spacing:-18.000000px;}
.ws65{word-spacing:-17.712000px;}
.ws26{word-spacing:-17.048700px;}
.ws24{word-spacing:-17.041500px;}
.ws45{word-spacing:-16.983000px;}
.ws25{word-spacing:-16.671300px;}
.ws46{word-spacing:-16.554000px;}
.ws4d{word-spacing:-16.344000px;}
.ws23{word-spacing:-16.107300px;}
.ws36{word-spacing:-15.840000px;}
.ws52{word-spacing:-15.624000px;}
.ws61{word-spacing:-15.615000px;}
.ws89{word-spacing:-14.904000px;}
.ws67{word-spacing:-14.838000px;}
.ws2d{word-spacing:-14.406000px;}
.ws3a{word-spacing:-13.672800px;}
.ws90{word-spacing:-12.935100px;}
.wsc{word-spacing:-12.744000px;}
.ws8b{word-spacing:-12.741900px;}
.ws28{word-spacing:-12.246000px;}
.ws1e{word-spacing:-12.240000px;}
.ws91{word-spacing:-12.214800px;}
.ws79{word-spacing:-11.300400px;}
.ws5e{word-spacing:-10.800000px;}
.ws73{word-spacing:-10.791000px;}
.ws1a{word-spacing:-10.080000px;}
.ws13{word-spacing:-7.200000px;}
.ws3e{word-spacing:-5.760000px;}
.ws12{word-spacing:-5.544000px;}
.ws55{word-spacing:-5.037900px;}
.ws76{word-spacing:-4.326000px;}
.ws47{word-spacing:-3.303000px;}
.ws56{word-spacing:-1.944000px;}
.ws17{word-spacing:-0.504000px;}
.ws18{word-spacing:-0.428400px;}
.ws27{word-spacing:0.000000px;}
.ws39{word-spacing:0.714000px;}
.ws3f{word-spacing:0.738000px;}
.ws63{word-spacing:2.880000px;}
.ws29{word-spacing:4.314000px;}
.ws5b{word-spacing:5.979600px;}
.ws7e{word-spacing:6.187800px;}
._0{margin-left:-1.032600px;}
._3{width:1.203300px;}
._11{width:15.227400px;}
._15{width:17.443200px;}
._2{width:18.782100px;}
._1{width:19.815000px;}
._10{width:21.003300px;}
._a{width:22.398000px;}
._12{width:24.126000px;}
._17{width:25.770000px;}
._8{width:26.790000px;}
._6{width:28.230000px;}
._18{width:30.008700px;}
._20{width:31.830000px;}
._1a{width:33.198000px;}
._9{width:34.310700px;}
._4{width:35.430000px;}
._d{width:37.806000px;}
._5{width:38.958000px;}
._1d{width:39.968700px;}
._13{width:41.210700px;}
._f{width:42.650700px;}
._e{width:44.718000px;}
._1f{width:45.792000px;}
._c{width:46.878000px;}
._7{width:49.758000px;}
._16{width:51.722700px;}
._1e{width:52.788000px;}
._19{width:55.590000px;}
._b{width:56.952000px;}
._14{width:58.182000px;}
._1c{width:59.982000px;}
._1b{width:63.290400px;}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:42.600000px;}
.fs2{font-size:46.800000px;}
.fs4{font-size:59.700000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:11.311500px;}
.y5d{bottom:12.946500px;}
.y96{bottom:111.855000px;}
.y55{bottom:112.036500px;}
.y25{bottom:116.355000px;}
.y6a{bottom:118.696500px;}
.y24{bottom:130.575000px;}
.y95{bottom:132.555000px;}
.y54{bottom:132.736500px;}
.yc0{bottom:135.255000px;}
.y69{bottom:139.396500px;}
.y94{bottom:153.255000px;}
.y53{bottom:153.436500px;}
.y23{bottom:154.875000px;}
.ybf{bottom:155.955000px;}
.y68{bottom:160.096500px;}
.y52{bottom:174.136500px;}
.y22{bottom:175.036500px;}
.y93{bottom:175.575000px;}
.ybe{bottom:176.655000px;}
.y67{bottom:180.796500px;}
.y51{bottom:194.836500px;}
.ybd{bottom:197.355000px;}
.y66{bottom:201.496500px;}
.y50{bottom:215.536500px;}
.ybc{bottom:218.055000px;}
.y21{bottom:219.315000px;}
.y92{bottom:220.215000px;}
.y65{bottom:222.196500px;}
.y4f{bottom:236.236500px;}
.ybb{bottom:238.755000px;}
.y91{bottom:242.715000px;}
.y64{bottom:242.896500px;}
.y4e{bottom:256.936500px;}
.yba{bottom:259.455000px;}
.y63{bottom:263.596500px;}
.y20{bottom:263.955000px;}
.y90{bottom:265.036500px;}
.y4d{bottom:277.636500px;}
.yb9{bottom:280.155000px;}
.y62{bottom:284.295000px;}
.y1f{bottom:286.275000px;}
.y8f{bottom:287.355000px;}
.y4c{bottom:298.336500px;}
.yb8{bottom:300.855000px;}
.y61{bottom:304.996500px;}
.y1e{bottom:308.596500px;}
.y8e{bottom:309.675000px;}
.y4b{bottom:319.036500px;}
.yb7{bottom:321.555000px;}
.y60{bottom:325.696500px;}
.y1d{bottom:330.915000px;}
.y8d{bottom:331.996500px;}
.y4a{bottom:339.736500px;}
.yb6{bottom:342.255000px;}
.y5f{bottom:346.396500px;}
.y1c{bottom:353.415000px;}
.y8c{bottom:354.315000px;}
.y49{bottom:360.436500px;}
.yb5{bottom:362.955000px;}
.y5e{bottom:367.096500px;}
.y1b{bottom:375.736500px;}
.y8b{bottom:376.636500px;}
.y48{bottom:380.955000px;}
.yb4{bottom:383.655000px;}
.y1a{bottom:398.055000px;}
.y8a{bottom:398.955000px;}
.y47{bottom:401.655000px;}
.y5c{bottom:404.550000px;}
.y19{bottom:420.375000px;}
.y89{bottom:421.275000px;}
.y46{bottom:422.355000px;}
.yb3{bottom:428.295000px;}
.y18{bottom:442.696500px;}
.y88{bottom:443.596500px;}
.yb2{bottom:450.615000px;}
.y45{bottom:463.755000px;}
.y17{bottom:465.015000px;}
.y87{bottom:465.915000px;}
.yb1{bottom:472.936500px;}
.y44{bottom:484.455000px;}
.y16{bottom:487.336500px;}
.y86{bottom:488.415000px;}
.yb0{bottom:495.255000px;}
.y43{bottom:505.155000px;}
.y15{bottom:509.655000px;}
.y85{bottom:510.736500px;}
.yaf{bottom:517.575000px;}
.y42{bottom:525.855000px;}
.y14{bottom:531.975000px;}
.y84{bottom:533.055000px;}
.yae{bottom:540.075000px;}
.y41{bottom:546.555000px;}
.y13{bottom:554.296500px;}
.y83{bottom:555.375000px;}
.yad{bottom:562.396500px;}
.y40{bottom:567.255000px;}
.y12{bottom:576.615000px;}
.y82{bottom:577.695000px;}
.yac{bottom:584.715000px;}
.y3f{bottom:587.955000px;}
.y11{bottom:599.115000px;}
.y81{bottom:600.015000px;}
.yab{bottom:607.036500px;}
.y3e{bottom:608.655000px;}
.y10{bottom:621.436500px;}
.y80{bottom:622.336500px;}
.y3d{bottom:629.355000px;}
.y7f{bottom:643.036500px;}
.yf{bottom:643.755000px;}
.y3c{bottom:650.055000px;}
.yaa{bottom:651.675000px;}
.y7e{bottom:663.736500px;}
.ye{bottom:666.075000px;}
.y3b{bottom:670.755000px;}
.ya9{bottom:673.996500px;}
.y7d{bottom:684.436500px;}
.yd{bottom:688.396500px;}
.y3a{bottom:691.455000px;}
.ya8{bottom:696.315000px;}
.y7c{bottom:705.136500px;}
.yc{bottom:710.715000px;}
.y39{bottom:712.155000px;}
.ya7{bottom:718.815000px;}
.y7b{bottom:725.836500px;}
.y38{bottom:732.855000px;}
.yb{bottom:733.036500px;}
.ya6{bottom:740.955000px;}
.y7a{bottom:746.536500px;}
.y37{bottom:753.555000px;}
.ya{bottom:755.355000px;}
.ya5{bottom:763.275000px;}
.y79{bottom:767.236500px;}
.y36{bottom:774.255000px;}
.y9{bottom:777.675000px;}
.ya4{bottom:785.775000px;}
.y78{bottom:787.936500px;}
.y35{bottom:794.955000px;}
.y8{bottom:800.175000px;}
.ya3{bottom:808.096500px;}
.y77{bottom:808.636500px;}
.y34{bottom:815.655000px;}
.y7{bottom:822.315000px;}
.y76{bottom:829.336500px;}
.ya2{bottom:830.415000px;}
.y33{bottom:836.355000px;}
.y75{bottom:850.036500px;}
.ya1{bottom:852.736500px;}
.y32{bottom:857.055000px;}
.y6{bottom:867.136500px;}
.y74{bottom:870.736500px;}
.ya0{bottom:875.055000px;}
.y31{bottom:877.755000px;}
.y5{bottom:889.455000px;}
.y73{bottom:891.436500px;}
.y5a{bottom:891.825000px;}
.y9f{bottom:897.375000px;}
.y30{bottom:898.455000px;}
.y72{bottom:912.136500px;}
.y2f{bottom:919.155000px;}
.y9e{bottom:919.695000px;}
.y71{bottom:932.836500px;}
.y2e{bottom:939.855000px;}
.y9d{bottom:942.015000px;}
.y4{bottom:947.055000px;}
.y70{bottom:953.536500px;}
.y2d{bottom:960.555000px;}
.y9c{bottom:964.515000px;}
.y3{bottom:973.155000px;}
.y6f{bottom:974.236500px;}
.y2c{bottom:981.255000px;}
.y9b{bottom:986.655000px;}
.y6e{bottom:994.936500px;}
.y2{bottom:999.075000px;}
.y2b{bottom:1001.955000px;}
.y9a{bottom:1008.975000px;}
.y6d{bottom:1015.636500px;}
.y2a{bottom:1022.655000px;}
.y1{bottom:1025.175000px;}
.y99{bottom:1031.475000px;}
.y6c{bottom:1036.336500px;}
.y29{bottom:1043.355000px;}
.y98{bottom:1053.795000px;}
.y6b{bottom:1057.036500px;}
.y28{bottom:1064.055000px;}
.y97{bottom:1076.115000px;}
.y59{bottom:1077.736500px;}
.y27{bottom:1084.755000px;}
.y58{bottom:1098.436500px;}
.y26{bottom:1105.455000px;}
.y57{bottom:1119.136500px;}
.y56{bottom:1139.836500px;}
.h7{height:29.516309px;}
.h9{height:37.125000px;}
.ha{height:38.700000px;}
.h8{height:41.364404px;}
.h6{height:63.175781px;}
.h5{height:63.949219px;}
.h4{height:65.320992px;}
.h3{height:66.046992px;}
.h2{height:74.873877px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w3{width:303.825000px;}
.w2{width:318.450000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:23.325000px;}
.xf{left:29.938500px;}
.xc{left:55.680000px;}
.xb{left:120.000000px;}
.x8{left:127.438500px;}
.x1{left:129.960000px;}
.x5{left:133.380000px;}
.x2{left:142.738500px;}
.xa{left:169.920000px;}
.x3{left:176.400000px;}
.x9{left:180.538500px;}
.x6{left:379.800000px;}
.x4{left:381.060000px;}
.x7{left:415.438500px;}
.xd{left:438.375000px;}
@media print{
.v2{vertical-align:-19.845333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:12.204800pt;}
.ls0{letter-spacing:49.914667pt;}
.ws3{word-spacing:-58.223200pt;}
.ws9{word-spacing:-49.728000pt;}
.ws0{word-spacing:-40.279200pt;}
.ws2{word-spacing:-39.718133pt;}
.ws1{word-spacing:-39.647200pt;}
.ws8a{word-spacing:-34.371733pt;}
.ws86{word-spacing:-34.357600pt;}
.ws32{word-spacing:-34.292800pt;}
.ws6{word-spacing:-34.168800pt;}
.ws4{word-spacing:-34.167200pt;}
.ws72{word-spacing:-34.105867pt;}
.ws41{word-spacing:-33.925333pt;}
.ws20{word-spacing:-33.920000pt;}
.ws81{word-spacing:-33.918400pt;}
.ws85{word-spacing:-33.917600pt;}
.ws4a{word-spacing:-33.916800pt;}
.ws4f{word-spacing:-33.915200pt;}
.ws6f{word-spacing:-33.914667pt;}
.ws7{word-spacing:-33.913600pt;}
.ws22{word-spacing:-33.728000pt;}
.ws2c{word-spacing:-33.724533pt;}
.ws4e{word-spacing:-33.723200pt;}
.ws7d{word-spacing:-33.721600pt;}
.ws38{word-spacing:-33.720800pt;}
.ws6c{word-spacing:-33.666133pt;}
.ws60{word-spacing:-33.664000pt;}
.ws8{word-spacing:-33.659733pt;}
.ws93{word-spacing:-33.534400pt;}
.ws3b{word-spacing:-33.280000pt;}
.ws92{word-spacing:-33.269067pt;}
.ws80{word-spacing:-33.267200pt;}
.ws21{word-spacing:-33.257067pt;}
.ws7a{word-spacing:-33.093333pt;}
.ws68{word-spacing:-33.088000pt;}
.ws5c{word-spacing:-33.074400pt;}
.ws84{word-spacing:-33.069867pt;}
.ws71{word-spacing:-33.062400pt;}
.ws3d{word-spacing:-33.017600pt;}
.wsf{word-spacing:-32.645333pt;}
.ws1b{word-spacing:-32.640000pt;}
.ws19{word-spacing:-32.371200pt;}
.ws5{word-spacing:-32.323200pt;}
.ws1f{word-spacing:-32.000000pt;}
.ws49{word-spacing:-31.994667pt;}
.ws82{word-spacing:-31.808000pt;}
.wsb{word-spacing:-31.742400pt;}
.ws59{word-spacing:-31.365333pt;}
.ws2b{word-spacing:-31.360000pt;}
.ws5a{word-spacing:-31.162667pt;}
.ws16{word-spacing:-30.725333pt;}
.ws1d{word-spacing:-30.528000pt;}
.ws6d{word-spacing:-30.524000pt;}
.ws53{word-spacing:-29.893333pt;}
.ws44{word-spacing:-29.888000pt;}
.ws6b{word-spacing:-29.876800pt;}
.ws43{word-spacing:-29.875200pt;}
.ws95{word-spacing:-29.445333pt;}
.ws70{word-spacing:-29.440000pt;}
.ws51{word-spacing:-29.433600pt;}
.ws2e{word-spacing:-29.248000pt;}
.ws8c{word-spacing:-29.048000pt;}
.ws4c{word-spacing:-28.800000pt;}
.ws8f{word-spacing:-28.605600pt;}
.ws8e{word-spacing:-28.601067pt;}
.ws8d{word-spacing:-28.416000pt;}
.ws69{word-spacing:-28.160000pt;}
.ws7f{word-spacing:-28.157333pt;}
.ws5d{word-spacing:-28.147733pt;}
.ws4b{word-spacing:-27.962667pt;}
.ws77{word-spacing:-27.525333pt;}
.ws30{word-spacing:-27.520000pt;}
.ws48{word-spacing:-27.328000pt;}
.ws88{word-spacing:-27.324533pt;}
.ws87{word-spacing:-27.319200pt;}
.ws14{word-spacing:-26.880000pt;}
.ws97{word-spacing:-26.866667pt;}
.ws2a{word-spacing:-26.688000pt;}
.ws34{word-spacing:-26.245333pt;}
.ws1c{word-spacing:-26.240000pt;}
.ws31{word-spacing:-26.238400pt;}
.ws96{word-spacing:-26.034400pt;}
.ws10{word-spacing:-25.600000pt;}
.ws64{word-spacing:-25.590400pt;}
.wse{word-spacing:-25.403200pt;}
.ws7c{word-spacing:-25.342400pt;}
.ws7b{word-spacing:-25.330667pt;}
.ws35{word-spacing:-24.960000pt;}
.ws58{word-spacing:-24.948267pt;}
.ws74{word-spacing:-24.773333pt;}
.ws54{word-spacing:-24.325333pt;}
.ws6a{word-spacing:-24.320000pt;}
.ws78{word-spacing:-23.685333pt;}
.ws42{word-spacing:-23.040000pt;}
.ws75{word-spacing:-22.400000pt;}
.ws83{word-spacing:-22.213333pt;}
.ws94{word-spacing:-22.195200pt;}
.ws66{word-spacing:-21.760000pt;}
.ws57{word-spacing:-21.110400pt;}
.ws2f{word-spacing:-20.928000pt;}
.ws50{word-spacing:-20.480000pt;}
.ws15{word-spacing:-20.293333pt;}
.ws40{word-spacing:-19.840000pt;}
.wsa{word-spacing:-19.648000pt;}
.ws3c{word-spacing:-19.581333pt;}
.ws62{word-spacing:-17.914667pt;}
.ws37{word-spacing:-17.652800pt;}
.ws11{word-spacing:-17.280000pt;}
.ws5f{word-spacing:-16.640000pt;}
.ws33{word-spacing:-16.632000pt;}
.ws6e{word-spacing:-16.382400pt;}
.wsd{word-spacing:-16.000000pt;}
.ws65{word-spacing:-15.744000pt;}
.ws26{word-spacing:-15.154400pt;}
.ws24{word-spacing:-15.148000pt;}
.ws45{word-spacing:-15.096000pt;}
.ws25{word-spacing:-14.818933pt;}
.ws46{word-spacing:-14.714667pt;}
.ws4d{word-spacing:-14.528000pt;}
.ws23{word-spacing:-14.317600pt;}
.ws36{word-spacing:-14.080000pt;}
.ws52{word-spacing:-13.888000pt;}
.ws61{word-spacing:-13.880000pt;}
.ws89{word-spacing:-13.248000pt;}
.ws67{word-spacing:-13.189333pt;}
.ws2d{word-spacing:-12.805333pt;}
.ws3a{word-spacing:-12.153600pt;}
.ws90{word-spacing:-11.497867pt;}
.wsc{word-spacing:-11.328000pt;}
.ws8b{word-spacing:-11.326133pt;}
.ws28{word-spacing:-10.885333pt;}
.ws1e{word-spacing:-10.880000pt;}
.ws91{word-spacing:-10.857600pt;}
.ws79{word-spacing:-10.044800pt;}
.ws5e{word-spacing:-9.600000pt;}
.ws73{word-spacing:-9.592000pt;}
.ws1a{word-spacing:-8.960000pt;}
.ws13{word-spacing:-6.400000pt;}
.ws3e{word-spacing:-5.120000pt;}
.ws12{word-spacing:-4.928000pt;}
.ws55{word-spacing:-4.478133pt;}
.ws76{word-spacing:-3.845333pt;}
.ws47{word-spacing:-2.936000pt;}
.ws56{word-spacing:-1.728000pt;}
.ws17{word-spacing:-0.448000pt;}
.ws18{word-spacing:-0.380800pt;}
.ws27{word-spacing:0.000000pt;}
.ws39{word-spacing:0.634667pt;}
.ws3f{word-spacing:0.656000pt;}
.ws63{word-spacing:2.560000pt;}
.ws29{word-spacing:3.834667pt;}
.ws5b{word-spacing:5.315200pt;}
.ws7e{word-spacing:5.500267pt;}
._0{margin-left:-0.917867pt;}
._3{width:1.069600pt;}
._11{width:13.535467pt;}
._15{width:15.505067pt;}
._2{width:16.695200pt;}
._1{width:17.613333pt;}
._10{width:18.669600pt;}
._a{width:19.909333pt;}
._12{width:21.445333pt;}
._17{width:22.906667pt;}
._8{width:23.813333pt;}
._6{width:25.093333pt;}
._18{width:26.674400pt;}
._20{width:28.293333pt;}
._1a{width:29.509333pt;}
._9{width:30.498400pt;}
._4{width:31.493333pt;}
._d{width:33.605333pt;}
._5{width:34.629333pt;}
._1d{width:35.527733pt;}
._13{width:36.631733pt;}
._f{width:37.911733pt;}
._e{width:39.749333pt;}
._1f{width:40.704000pt;}
._c{width:41.669333pt;}
._7{width:44.229333pt;}
._16{width:45.975733pt;}
._1e{width:46.922667pt;}
._19{width:49.413333pt;}
._b{width:50.624000pt;}
._14{width:51.717333pt;}
._1c{width:53.317333pt;}
._1b{width:56.258133pt;}
.fs3{font-size:37.866667pt;}
.fs2{font-size:41.600000pt;}
.fs4{font-size:53.066667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:10.054667pt;}
.y5d{bottom:11.508000pt;}
.y96{bottom:99.426667pt;}
.y55{bottom:99.588000pt;}
.y25{bottom:103.426667pt;}
.y6a{bottom:105.508000pt;}
.y24{bottom:116.066667pt;}
.y95{bottom:117.826667pt;}
.y54{bottom:117.988000pt;}
.yc0{bottom:120.226667pt;}
.y69{bottom:123.908000pt;}
.y94{bottom:136.226667pt;}
.y53{bottom:136.388000pt;}
.y23{bottom:137.666667pt;}
.ybf{bottom:138.626667pt;}
.y68{bottom:142.308000pt;}
.y52{bottom:154.788000pt;}
.y22{bottom:155.588000pt;}
.y93{bottom:156.066667pt;}
.ybe{bottom:157.026667pt;}
.y67{bottom:160.708000pt;}
.y51{bottom:173.188000pt;}
.ybd{bottom:175.426667pt;}
.y66{bottom:179.108000pt;}
.y50{bottom:191.588000pt;}
.ybc{bottom:193.826667pt;}
.y21{bottom:194.946667pt;}
.y92{bottom:195.746667pt;}
.y65{bottom:197.508000pt;}
.y4f{bottom:209.988000pt;}
.ybb{bottom:212.226667pt;}
.y91{bottom:215.746667pt;}
.y64{bottom:215.908000pt;}
.y4e{bottom:228.388000pt;}
.yba{bottom:230.626667pt;}
.y63{bottom:234.308000pt;}
.y20{bottom:234.626667pt;}
.y90{bottom:235.588000pt;}
.y4d{bottom:246.788000pt;}
.yb9{bottom:249.026667pt;}
.y62{bottom:252.706667pt;}
.y1f{bottom:254.466667pt;}
.y8f{bottom:255.426667pt;}
.y4c{bottom:265.188000pt;}
.yb8{bottom:267.426667pt;}
.y61{bottom:271.108000pt;}
.y1e{bottom:274.308000pt;}
.y8e{bottom:275.266667pt;}
.y4b{bottom:283.588000pt;}
.yb7{bottom:285.826667pt;}
.y60{bottom:289.508000pt;}
.y1d{bottom:294.146667pt;}
.y8d{bottom:295.108000pt;}
.y4a{bottom:301.988000pt;}
.yb6{bottom:304.226667pt;}
.y5f{bottom:307.908000pt;}
.y1c{bottom:314.146667pt;}
.y8c{bottom:314.946667pt;}
.y49{bottom:320.388000pt;}
.yb5{bottom:322.626667pt;}
.y5e{bottom:326.308000pt;}
.y1b{bottom:333.988000pt;}
.y8b{bottom:334.788000pt;}
.y48{bottom:338.626667pt;}
.yb4{bottom:341.026667pt;}
.y1a{bottom:353.826667pt;}
.y8a{bottom:354.626667pt;}
.y47{bottom:357.026667pt;}
.y5c{bottom:359.600000pt;}
.y19{bottom:373.666667pt;}
.y89{bottom:374.466667pt;}
.y46{bottom:375.426667pt;}
.yb3{bottom:380.706667pt;}
.y18{bottom:393.508000pt;}
.y88{bottom:394.308000pt;}
.yb2{bottom:400.546667pt;}
.y45{bottom:412.226667pt;}
.y17{bottom:413.346667pt;}
.y87{bottom:414.146667pt;}
.yb1{bottom:420.388000pt;}
.y44{bottom:430.626667pt;}
.y16{bottom:433.188000pt;}
.y86{bottom:434.146667pt;}
.yb0{bottom:440.226667pt;}
.y43{bottom:449.026667pt;}
.y15{bottom:453.026667pt;}
.y85{bottom:453.988000pt;}
.yaf{bottom:460.066667pt;}
.y42{bottom:467.426667pt;}
.y14{bottom:472.866667pt;}
.y84{bottom:473.826667pt;}
.yae{bottom:480.066667pt;}
.y41{bottom:485.826667pt;}
.y13{bottom:492.708000pt;}
.y83{bottom:493.666667pt;}
.yad{bottom:499.908000pt;}
.y40{bottom:504.226667pt;}
.y12{bottom:512.546667pt;}
.y82{bottom:513.506667pt;}
.yac{bottom:519.746667pt;}
.y3f{bottom:522.626667pt;}
.y11{bottom:532.546667pt;}
.y81{bottom:533.346667pt;}
.yab{bottom:539.588000pt;}
.y3e{bottom:541.026667pt;}
.y10{bottom:552.388000pt;}
.y80{bottom:553.188000pt;}
.y3d{bottom:559.426667pt;}
.y7f{bottom:571.588000pt;}
.yf{bottom:572.226667pt;}
.y3c{bottom:577.826667pt;}
.yaa{bottom:579.266667pt;}
.y7e{bottom:589.988000pt;}
.ye{bottom:592.066667pt;}
.y3b{bottom:596.226667pt;}
.ya9{bottom:599.108000pt;}
.y7d{bottom:608.388000pt;}
.yd{bottom:611.908000pt;}
.y3a{bottom:614.626667pt;}
.ya8{bottom:618.946667pt;}
.y7c{bottom:626.788000pt;}
.yc{bottom:631.746667pt;}
.y39{bottom:633.026667pt;}
.ya7{bottom:638.946667pt;}
.y7b{bottom:645.188000pt;}
.y38{bottom:651.426667pt;}
.yb{bottom:651.588000pt;}
.ya6{bottom:658.626667pt;}
.y7a{bottom:663.588000pt;}
.y37{bottom:669.826667pt;}
.ya{bottom:671.426667pt;}
.ya5{bottom:678.466667pt;}
.y79{bottom:681.988000pt;}
.y36{bottom:688.226667pt;}
.y9{bottom:691.266667pt;}
.ya4{bottom:698.466667pt;}
.y78{bottom:700.388000pt;}
.y35{bottom:706.626667pt;}
.y8{bottom:711.266667pt;}
.ya3{bottom:718.308000pt;}
.y77{bottom:718.788000pt;}
.y34{bottom:725.026667pt;}
.y7{bottom:730.946667pt;}
.y76{bottom:737.188000pt;}
.ya2{bottom:738.146667pt;}
.y33{bottom:743.426667pt;}
.y75{bottom:755.588000pt;}
.ya1{bottom:757.988000pt;}
.y32{bottom:761.826667pt;}
.y6{bottom:770.788000pt;}
.y74{bottom:773.988000pt;}
.ya0{bottom:777.826667pt;}
.y31{bottom:780.226667pt;}
.y5{bottom:790.626667pt;}
.y73{bottom:792.388000pt;}
.y5a{bottom:792.733333pt;}
.y9f{bottom:797.666667pt;}
.y30{bottom:798.626667pt;}
.y72{bottom:810.788000pt;}
.y2f{bottom:817.026667pt;}
.y9e{bottom:817.506667pt;}
.y71{bottom:829.188000pt;}
.y2e{bottom:835.426667pt;}
.y9d{bottom:837.346667pt;}
.y4{bottom:841.826667pt;}
.y70{bottom:847.588000pt;}
.y2d{bottom:853.826667pt;}
.y9c{bottom:857.346667pt;}
.y3{bottom:865.026667pt;}
.y6f{bottom:865.988000pt;}
.y2c{bottom:872.226667pt;}
.y9b{bottom:877.026667pt;}
.y6e{bottom:884.388000pt;}
.y2{bottom:888.066667pt;}
.y2b{bottom:890.626667pt;}
.y9a{bottom:896.866667pt;}
.y6d{bottom:902.788000pt;}
.y2a{bottom:909.026667pt;}
.y1{bottom:911.266667pt;}
.y99{bottom:916.866667pt;}
.y6c{bottom:921.188000pt;}
.y29{bottom:927.426667pt;}
.y98{bottom:936.706667pt;}
.y6b{bottom:939.588000pt;}
.y28{bottom:945.826667pt;}
.y97{bottom:956.546667pt;}
.y59{bottom:957.988000pt;}
.y27{bottom:964.226667pt;}
.y58{bottom:976.388000pt;}
.y26{bottom:982.626667pt;}
.y57{bottom:994.788000pt;}
.y56{bottom:1013.188000pt;}
.h7{height:26.236719pt;}
.h9{height:33.000000pt;}
.ha{height:34.400000pt;}
.h8{height:36.768359pt;}
.h6{height:56.156250pt;}
.h5{height:56.843750pt;}
.h4{height:58.063104pt;}
.h3{height:58.708437pt;}
.h2{height:66.554557pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w3{width:270.066667pt;}
.w2{width:283.066667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:20.733333pt;}
.xf{left:26.612000pt;}
.xc{left:49.493333pt;}
.xb{left:106.666667pt;}
.x8{left:113.278667pt;}
.x1{left:115.520000pt;}
.x5{left:118.560000pt;}
.x2{left:126.878667pt;}
.xa{left:151.040000pt;}
.x3{left:156.800000pt;}
.x9{left:160.478667pt;}
.x6{left:337.600000pt;}
.x4{left:338.720000pt;}
.x7{left:369.278667pt;}
.xd{left:389.666667pt;}
}




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