
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bd2cee567385829175f54131.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_5ed0cb16e457dbd1cb112007.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_138f793e9fcff9dcdba182e6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_9a6fff6e781e635b2afac6ef.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_878c037f1411bf934604d71a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_8996cfdb6cd56d0964cfb233.woff')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:11.880000px;}
.v2{vertical-align:15.120000px;}
.lsd{letter-spacing:-0.285600px;}
.lsb{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.lse{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls1f{letter-spacing:-0.066000px;}
.ls1a{letter-spacing:-0.049680px;}
.ls17{letter-spacing:-0.011160px;}
.ls6{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.006480px;}
.lsf{letter-spacing:0.045360px;}
.ls1b{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.065520px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.098400px;}
.ls16{letter-spacing:0.103200px;}
.ls11{letter-spacing:0.116760px;}
.ls15{letter-spacing:0.129600px;}
.ls7{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.ls1d{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.425520px;}
.ls10{letter-spacing:0.446400px;}
.ls19{letter-spacing:1.533600px;}
.ls5{letter-spacing:6.213600px;}
.ls14{letter-spacing:7.286400px;}
.ls18{letter-spacing:12.686400px;}
.ls20{letter-spacing:41.520000px;}
.ls1e{letter-spacing:47.726640px;}
.ls1c{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws8{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.wse{word-spacing:-13.425600px;}
.ws5{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.329600px;}
.wsb{word-spacing:-13.324800px;}
.ws3{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.215240px;}
.ws4{word-spacing:-13.039800px;}
.ws6{word-spacing:-12.940800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws9{word-spacing:0.000000px;}
.ws7{word-spacing:4.304880px;}
._4{margin-left:-3.191400px;}
._5{margin-left:-2.137200px;}
._0{margin-left:-1.110000px;}
._2{width:1.258200px;}
._6{width:2.524800px;}
._7{width:3.736801px;}
._1{width:5.452200px;}
._b{width:6.688080px;}
._f{width:8.416800px;}
._a{width:10.039800px;}
._c{width:11.048047px;}
._3{width:12.170160px;}
._9{width:14.849400px;}
._13{width:16.052040px;}
._d{width:17.735400px;}
._e{width:18.757440px;}
._16{width:20.414040px;}
._10{width:21.541440px;}
._14{width:23.086080px;}
._15{width:24.149760px;}
._8{width:30.781200px;}
._11{width:41.085720px;}
._12{width:42.734160px;}
._17{width:45.610680px;}
._18{width:46.653120px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.880000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:74.880000px;}
.fs4{font-size:83.880000px;}
.y5f{bottom:-47.010000px;}
.y5d{bottom:-29.370000px;}
.y5e{bottom:-24.840000px;}
.y5c{bottom:-7.290000px;}
.y0{bottom:0.000000px;}
.y70{bottom:6.030000px;}
.y52{bottom:7.830000px;}
.y4c{bottom:7.920000px;}
.y5b{bottom:10.260000px;}
.y63{bottom:10.350000px;}
.y61{bottom:10.380000px;}
.y4b{bottom:12.420000px;}
.y50{bottom:13.140000px;}
.y49{bottom:25.470000px;}
.y4a{bottom:29.970000px;}
.y75{bottom:31.500000px;}
.y72{bottom:31.590000px;}
.y4f{bottom:35.190000px;}
.y48{bottom:47.520000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yaa{bottom:114.870000px;}
.y7d{bottom:128.910000px;}
.y59{bottom:129.540000px;}
.ya9{bottom:132.420000px;}
.ycb{bottom:133.680000px;}
.y58{bottom:147.180000px;}
.y25{bottom:157.980000px;}
.yca{bottom:160.320000px;}
.y7c{bottom:161.040000px;}
.ya8{bottom:167.970000px;}
.y7b{bottom:175.080000px;}
.y24{bottom:175.530000px;}
.yc9{bottom:177.870000px;}
.y57{bottom:182.010000px;}
.ya7{bottom:185.610000px;}
.y79{bottom:187.230000px;}
.y56{bottom:196.050000px;}
.ya6{bottom:203.160000px;}
.yc8{bottom:204.420000px;}
.yf0{bottom:204.510000px;}
.y55{bottom:208.290000px;}
.y23{bottom:211.170000px;}
.y7a{bottom:212.790000px;}
.ya5{bottom:220.800000px;}
.yef{bottom:222.060000px;}
.y22{bottom:228.720000px;}
.yc7{bottom:231.060000px;}
.y54{bottom:235.650000px;}
.y77{bottom:238.260000px;}
.ya4{bottom:238.350000px;}
.yee{bottom:239.610000px;}
.y21{bottom:246.270000px;}
.yc6{bottom:248.610000px;}
.ya3{bottom:255.900000px;}
.y53{bottom:262.920000px;}
.y78{bottom:263.730000px;}
.y20{bottom:263.910000px;}
.yed{bottom:266.250000px;}
.ya2{bottom:273.540000px;}
.yc5{bottom:275.250000px;}
.yec{bottom:283.800000px;}
.y74{bottom:289.290000px;}
.y4e{bottom:290.280000px;}
.y1f{bottom:290.820000px;}
.yc4{bottom:292.800000px;}
.ya1{bottom:309.090000px;}
.yeb{bottom:310.440000px;}
.y76{bottom:314.760000px;}
.y51{bottom:317.640000px;}
.yc3{bottom:319.350000px;}
.ya0{bottom:326.730000px;}
.yea{bottom:327.990000px;}
.yc2{bottom:336.990000px;}
.y1e{bottom:339.420000px;}
.y71{bottom:340.230000px;}
.y9f{bottom:344.280000px;}
.y4d{bottom:344.910000px;}
.ye9{bottom:345.540000px;}
.yc1{bottom:354.540000px;}
.y9e{bottom:361.830000px;}
.y73{bottom:365.790000px;}
.ye8{bottom:372.180000px;}
.y47{bottom:372.270000px;}
.y1d{bottom:376.410000px;}
.y9d{bottom:379.470000px;}
.yc0{bottom:381.090000px;}
.ye7{bottom:389.730000px;}
.y6f{bottom:391.260000px;}
.y1c{bottom:394.050000px;}
.y9c{bottom:397.020000px;}
.ybf{bottom:398.730000px;}
.ye6{bottom:407.370000px;}
.y1b{bottom:411.600000px;}
.y9b{bottom:414.660000px;}
.ybe{bottom:425.280000px;}
.y1a{bottom:429.150000px;}
.y9a{bottom:432.210000px;}
.ye5{bottom:433.920000px;}
.y6e{bottom:438.150000px;}
.ybd{bottom:442.920000px;}
.y19{bottom:446.790000px;}
.y99{bottom:449.760000px;}
.ye4{bottom:451.470000px;}
.y46{bottom:460.650000px;}
.y18{bottom:464.340000px;}
.y98{bottom:467.400000px;}
.ybc{bottom:469.470000px;}
.y6d{bottom:473.730000px;}
.ye3{bottom:478.140000px;}
.y97{bottom:484.980000px;}
.ybb{bottom:487.050000px;}
.y6c{bottom:492.090000px;}
.y45{bottom:496.230000px;}
.y17{bottom:499.920000px;}
.y96{bottom:502.620000px;}
.ye2{bottom:504.690000px;}
.y6b{bottom:513.330000px;}
.yba{bottom:513.690000px;}
.y44{bottom:513.870000px;}
.y16{bottom:517.560000px;}
.ye1{bottom:522.330000px;}
.y6a{bottom:530.880000px;}
.yb9{bottom:531.240000px;}
.y43{bottom:531.420000px;}
.y15{bottom:535.110000px;}
.y95{bottom:538.170000px;}
.ye0{bottom:539.880000px;}
.y69{bottom:548.520000px;}
.y42{bottom:549.060000px;}
.y14{bottom:552.750000px;}
.y94{bottom:555.720000px;}
.yb8{bottom:558.150000px;}
.ydf{bottom:566.430000px;}
.y41{bottom:566.610000px;}
.y13{bottom:570.300000px;}
.y93{bottom:573.360000px;}
.y68{bottom:584.070000px;}
.y40{bottom:584.160000px;}
.y92{bottom:590.910000px;}
.y12{bottom:605.850000px;}
.yb7{bottom:606.480000px;}
.yde{bottom:610.620000px;}
.y3f{bottom:611.070000px;}
.y67{bottom:616.290000px;}
.y11{bottom:623.490000px;}
.y91{bottom:626.460000px;}
.ydd{bottom:628.260000px;}
.yb6{bottom:633.390000px;}
.y10{bottom:641.040000px;}
.y90{bottom:644.100000px;}
.ydc{bottom:654.810000px;}
.yf{bottom:658.680000px;}
.y3e{bottom:659.400000px;}
.y8f{bottom:661.650000px;}
.yb5{bottom:670.380000px;}
.ye{bottom:676.230000px;}
.y3d{bottom:676.950000px;}
.y8e{bottom:679.290000px;}
.ydb{bottom:681.360000px;}
.y3c{bottom:694.590000px;}
.y8d{bottom:696.840000px;}
.yb4{bottom:697.290000px;}
.yda{bottom:699.000000px;}
.yd{bottom:703.140000px;}
.y3b{bottom:712.140000px;}
.yd9{bottom:725.550000px;}
.y3a{bottom:729.690000px;}
.y8c{bottom:732.390000px;}
.yb3{bottom:734.640000px;}
.yd8{bottom:743.190000px;}
.y8b{bottom:750.030000px;}
.yc{bottom:751.380000px;}
.yd7{bottom:760.740000px;}
.y39{bottom:765.330000px;}
.y8a{bottom:767.580000px;}
.y38{bottom:782.880000px;}
.y89{bottom:785.220000px;}
.yb{bottom:787.200000px;}
.yd6{bottom:787.290000px;}
.y37{bottom:800.520000px;}
.yd5{bottom:804.930000px;}
.y88{bottom:812.130000px;}
.y36{bottom:818.070000px;}
.ya{bottom:823.200000px;}
.yd4{bottom:831.480000px;}
.yb2{bottom:835.620000px;}
.yd3{bottom:849.030000px;}
.y35{bottom:853.620000px;}
.y87{bottom:859.650000px;}
.yb1{bottom:862.530000px;}
.y9{bottom:862.980000px;}
.yd2{bottom:866.670000px;}
.y34{bottom:871.260000px;}
.y85{bottom:871.800000px;}
.y8{bottom:880.980000px;}
.y33{bottom:888.810000px;}
.yd1{bottom:893.220000px;}
.y7{bottom:895.200000px;}
.y86{bottom:897.360000px;}
.y66{bottom:904.650000px;}
.y32{bottom:906.450000px;}
.yb0{bottom:910.860000px;}
.y65{bottom:916.890000px;}
.y6{bottom:916.980000px;}
.y83{bottom:922.830000px;}
.y31{bottom:924.000000px;}
.yaf{bottom:928.410000px;}
.y30{bottom:941.550000px;}
.yae{bottom:945.960000px;}
.y64{bottom:946.590000px;}
.y84{bottom:948.300000px;}
.y5{bottom:949.290000px;}
.yd0{bottom:954.960000px;}
.y2f{bottom:968.460000px;}
.ycf{bottom:972.600000px;}
.y81{bottom:973.860000px;}
.y62{bottom:976.380000px;}
.yad{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.yac{bottom:999.150000px;}
.y82{bottom:999.330000px;}
.y60{bottom:1006.170000px;}
.y3{bottom:1012.320000px;}
.y2e{bottom:1016.820000px;}
.y7f{bottom:1024.830000px;}
.y2d{bottom:1034.370000px;}
.y5a{bottom:1035.990000px;}
.yce{bottom:1043.370000px;}
.y80{bottom:1050.390000px;}
.y2c{bottom:1051.920000px;}
.ycd{bottom:1060.920000px;}
.y2b{bottom:1069.560000px;}
.y7e{bottom:1075.860000px;}
.ycc{bottom:1078.560000px;}
.y2a{bottom:1087.110000px;}
.yab{bottom:1105.110000px;}
.y29{bottom:1122.750000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.h12{height:24.750000px;}
.h16{height:24.780000px;}
.hc{height:26.550000px;}
.ha{height:26.640000px;}
.he{height:28.980000px;}
.h10{height:29.070000px;}
.hf{height:29.100000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hd{height:40.539023px;}
.h14{height:50.220000px;}
.h15{height:50.250000px;}
.h13{height:50.310000px;}
.h7{height:50.902383px;}
.hb{height:53.910000px;}
.h5{height:55.779258px;}
.h17{height:61.793886px;}
.h11{height:63.399375px;}
.h9{height:66.240000px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w11{width:56.700000px;}
.w13{width:56.730000px;}
.w14{width:56.790000px;}
.wf{width:56.820000px;}
.w8{width:62.040000px;}
.w7{width:62.190000px;}
.w10{width:63.360000px;}
.we{width:77.850000px;}
.w6{width:107.190000px;}
.wc{width:117.630000px;}
.w3{width:125.040000px;}
.wd{width:175.680000px;}
.w12{width:175.770000px;}
.w9{width:175.800000px;}
.w4{width:177.120000px;}
.wb{width:198.210000px;}
.wa{width:250.830000px;}
.w5{width:289.470000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x32{left:10.260000px;}
.x31{left:14.220000px;}
.x13{left:18.810000px;}
.x25{left:23.400000px;}
.xa{left:25.020000px;}
.x10{left:28.710000px;}
.x9{left:32.130000px;}
.x23{left:33.930000px;}
.xc{left:35.640000px;}
.x17{left:44.730000px;}
.x11{left:48.960000px;}
.x18{left:53.100000px;}
.x27{left:55.380000px;}
.x8{left:56.430000px;}
.x15{left:60.390000px;}
.x1c{left:61.830000px;}
.x20{left:64.200000px;}
.x1f{left:65.280000px;}
.x1{left:68.040000px;}
.x19{left:69.299987px;}
.x2{left:75.870000px;}
.x33{left:79.019987px;}
.x26{left:81.630000px;}
.x24{left:85.770000px;}
.x28{left:89.910000px;}
.x5{left:96.120000px;}
.x21{left:99.120000px;}
.x12{left:105.120000px;}
.x16{left:106.650000px;}
.xd{left:109.830000px;}
.x3b{left:111.239987px;}
.x1d{left:125.370000px;}
.xe{left:144.750000px;}
.x14{left:159.120000px;}
.x2b{left:176.609987px;}
.x3{left:194.429987px;}
.x7{left:221.880000px;}
.x29{left:224.039987px;}
.x2c{left:229.890000px;}
.x36{left:233.130000px;}
.x1b{left:245.280000px;}
.x1a{left:330.959987px;}
.x34{left:389.729987px;}
.xb{left:399.720000px;}
.x2d{left:406.380000px;}
.x37{left:409.620000px;}
.x35{left:446.609987px;}
.x2e{left:484.950000px;}
.x38{left:488.280000px;}
.x1e{left:496.830000px;}
.x2f{left:542.490000px;}
.x39{left:545.820000px;}
.x3a{left:603.330000px;}
.x30{left:606.660000px;}
.xf{left:689.910000px;}
.x22{left:695.760000px;}
.x2a{left:759.389987px;}
.x4{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.560000pt;}
.v2{vertical-align:13.440000pt;}
.lsd{letter-spacing:-0.253867pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.lse{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls1f{letter-spacing:-0.058667pt;}
.ls1a{letter-spacing:-0.044160pt;}
.ls17{letter-spacing:-0.009920pt;}
.ls6{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.005760pt;}
.lsf{letter-spacing:0.040320pt;}
.ls1b{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.058240pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.087467pt;}
.ls16{letter-spacing:0.091733pt;}
.ls11{letter-spacing:0.103787pt;}
.ls15{letter-spacing:0.115200pt;}
.ls7{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.378240pt;}
.ls10{letter-spacing:0.396800pt;}
.ls19{letter-spacing:1.363200pt;}
.ls5{letter-spacing:5.523200pt;}
.ls14{letter-spacing:6.476800pt;}
.ls18{letter-spacing:11.276800pt;}
.ls20{letter-spacing:36.906667pt;}
.ls1e{letter-spacing:42.423680pt;}
.ls1c{letter-spacing:71.863680pt;}
.ws8{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.933867pt;}
.ws5{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.848533pt;}
.wsb{word-spacing:-11.844267pt;}
.ws3{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.746880pt;}
.ws4{word-spacing:-11.590933pt;}
.ws6{word-spacing:-11.502933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws9{word-spacing:0.000000pt;}
.ws7{word-spacing:3.826560pt;}
._4{margin-left:-2.836800pt;}
._5{margin-left:-1.899733pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.118400pt;}
._6{width:2.244266pt;}
._7{width:3.321601pt;}
._1{width:4.846400pt;}
._b{width:5.944960pt;}
._f{width:7.481600pt;}
._a{width:8.924266pt;}
._c{width:9.820486pt;}
._3{width:10.817920pt;}
._9{width:13.199466pt;}
._13{width:14.268480pt;}
._d{width:15.764800pt;}
._e{width:16.673280pt;}
._16{width:18.145814pt;}
._10{width:19.147946pt;}
._14{width:20.520960pt;}
._15{width:21.466454pt;}
._8{width:27.361066pt;}
._11{width:36.520640pt;}
._12{width:37.985920pt;}
._17{width:40.542827pt;}
._18{width:41.469440pt;}
.fs9{font-size:26.560000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:66.560000pt;}
.fs4{font-size:74.560000pt;}
.y5f{bottom:-41.786667pt;}
.y5d{bottom:-26.106667pt;}
.y5e{bottom:-22.080000pt;}
.y5c{bottom:-6.480000pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:5.360000pt;}
.y52{bottom:6.960000pt;}
.y4c{bottom:7.040000pt;}
.y5b{bottom:9.120000pt;}
.y63{bottom:9.200000pt;}
.y61{bottom:9.226667pt;}
.y4b{bottom:11.040000pt;}
.y50{bottom:11.680000pt;}
.y49{bottom:22.640000pt;}
.y4a{bottom:26.640000pt;}
.y75{bottom:28.000000pt;}
.y72{bottom:28.080000pt;}
.y4f{bottom:31.280000pt;}
.y48{bottom:42.240000pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yaa{bottom:102.106667pt;}
.y7d{bottom:114.586667pt;}
.y59{bottom:115.146667pt;}
.ya9{bottom:117.706667pt;}
.ycb{bottom:118.826667pt;}
.y58{bottom:130.826667pt;}
.y25{bottom:140.426667pt;}
.yca{bottom:142.506667pt;}
.y7c{bottom:143.146667pt;}
.ya8{bottom:149.306667pt;}
.y7b{bottom:155.626667pt;}
.y24{bottom:156.026667pt;}
.yc9{bottom:158.106667pt;}
.y57{bottom:161.786667pt;}
.ya7{bottom:164.986667pt;}
.y79{bottom:166.426667pt;}
.y56{bottom:174.266667pt;}
.ya6{bottom:180.586667pt;}
.yc8{bottom:181.706667pt;}
.yf0{bottom:181.786667pt;}
.y55{bottom:185.146667pt;}
.y23{bottom:187.706667pt;}
.y7a{bottom:189.146667pt;}
.ya5{bottom:196.266667pt;}
.yef{bottom:197.386667pt;}
.y22{bottom:203.306667pt;}
.yc7{bottom:205.386667pt;}
.y54{bottom:209.466667pt;}
.y77{bottom:211.786667pt;}
.ya4{bottom:211.866667pt;}
.yee{bottom:212.986667pt;}
.y21{bottom:218.906667pt;}
.yc6{bottom:220.986667pt;}
.ya3{bottom:227.466667pt;}
.y53{bottom:233.706667pt;}
.y78{bottom:234.426667pt;}
.y20{bottom:234.586667pt;}
.yed{bottom:236.666667pt;}
.ya2{bottom:243.146667pt;}
.yc5{bottom:244.666667pt;}
.yec{bottom:252.266667pt;}
.y74{bottom:257.146667pt;}
.y4e{bottom:258.026667pt;}
.y1f{bottom:258.506667pt;}
.yc4{bottom:260.266667pt;}
.ya1{bottom:274.746667pt;}
.yeb{bottom:275.946667pt;}
.y76{bottom:279.786667pt;}
.y51{bottom:282.346667pt;}
.yc3{bottom:283.866667pt;}
.ya0{bottom:290.426667pt;}
.yea{bottom:291.546667pt;}
.yc2{bottom:299.546667pt;}
.y1e{bottom:301.706667pt;}
.y71{bottom:302.426667pt;}
.y9f{bottom:306.026667pt;}
.y4d{bottom:306.586667pt;}
.ye9{bottom:307.146667pt;}
.yc1{bottom:315.146667pt;}
.y9e{bottom:321.626667pt;}
.y73{bottom:325.146667pt;}
.ye8{bottom:330.826667pt;}
.y47{bottom:330.906667pt;}
.y1d{bottom:334.586667pt;}
.y9d{bottom:337.306667pt;}
.yc0{bottom:338.746667pt;}
.ye7{bottom:346.426667pt;}
.y6f{bottom:347.786667pt;}
.y1c{bottom:350.266667pt;}
.y9c{bottom:352.906667pt;}
.ybf{bottom:354.426667pt;}
.ye6{bottom:362.106667pt;}
.y1b{bottom:365.866667pt;}
.y9b{bottom:368.586667pt;}
.ybe{bottom:378.026667pt;}
.y1a{bottom:381.466667pt;}
.y9a{bottom:384.186667pt;}
.ye5{bottom:385.706667pt;}
.y6e{bottom:389.466667pt;}
.ybd{bottom:393.706667pt;}
.y19{bottom:397.146667pt;}
.y99{bottom:399.786667pt;}
.ye4{bottom:401.306667pt;}
.y46{bottom:409.466667pt;}
.y18{bottom:412.746667pt;}
.y98{bottom:415.466667pt;}
.ybc{bottom:417.306667pt;}
.y6d{bottom:421.093333pt;}
.ye3{bottom:425.013333pt;}
.y97{bottom:431.093333pt;}
.ybb{bottom:432.933333pt;}
.y6c{bottom:437.413333pt;}
.y45{bottom:441.093333pt;}
.y17{bottom:444.373333pt;}
.y96{bottom:446.773333pt;}
.ye2{bottom:448.613333pt;}
.y6b{bottom:456.293333pt;}
.yba{bottom:456.613333pt;}
.y44{bottom:456.773333pt;}
.y16{bottom:460.053333pt;}
.ye1{bottom:464.293333pt;}
.y6a{bottom:471.893333pt;}
.yb9{bottom:472.213333pt;}
.y43{bottom:472.373333pt;}
.y15{bottom:475.653333pt;}
.y95{bottom:478.373333pt;}
.ye0{bottom:479.893333pt;}
.y69{bottom:487.573333pt;}
.y42{bottom:488.053333pt;}
.y14{bottom:491.333333pt;}
.y94{bottom:493.973333pt;}
.yb8{bottom:496.133333pt;}
.ydf{bottom:503.493333pt;}
.y41{bottom:503.653333pt;}
.y13{bottom:506.933333pt;}
.y93{bottom:509.653333pt;}
.y68{bottom:519.173333pt;}
.y40{bottom:519.253333pt;}
.y92{bottom:525.253333pt;}
.y12{bottom:538.533333pt;}
.yb7{bottom:539.093333pt;}
.yde{bottom:542.773333pt;}
.y3f{bottom:543.173333pt;}
.y67{bottom:547.813333pt;}
.y11{bottom:554.213333pt;}
.y91{bottom:556.853333pt;}
.ydd{bottom:558.453333pt;}
.yb6{bottom:563.013333pt;}
.y10{bottom:569.813333pt;}
.y90{bottom:572.533333pt;}
.ydc{bottom:582.053333pt;}
.yf{bottom:585.493333pt;}
.y3e{bottom:586.133333pt;}
.y8f{bottom:588.133333pt;}
.yb5{bottom:595.893333pt;}
.ye{bottom:601.093333pt;}
.y3d{bottom:601.733333pt;}
.y8e{bottom:603.813333pt;}
.ydb{bottom:605.653333pt;}
.y3c{bottom:617.413333pt;}
.y8d{bottom:619.413333pt;}
.yb4{bottom:619.813333pt;}
.yda{bottom:621.333333pt;}
.yd{bottom:625.013333pt;}
.y3b{bottom:633.013333pt;}
.yd9{bottom:644.933333pt;}
.y3a{bottom:648.613333pt;}
.y8c{bottom:651.013333pt;}
.yb3{bottom:653.013333pt;}
.yd8{bottom:660.613333pt;}
.y8b{bottom:666.693333pt;}
.yc{bottom:667.893333pt;}
.yd7{bottom:676.213333pt;}
.y39{bottom:680.293333pt;}
.y8a{bottom:682.293333pt;}
.y38{bottom:695.893333pt;}
.y89{bottom:697.973333pt;}
.yb{bottom:699.733333pt;}
.yd6{bottom:699.813333pt;}
.y37{bottom:711.573333pt;}
.yd5{bottom:715.493333pt;}
.y88{bottom:721.893333pt;}
.y36{bottom:727.173333pt;}
.ya{bottom:731.733333pt;}
.yd4{bottom:739.093333pt;}
.yb2{bottom:742.773333pt;}
.yd3{bottom:754.693333pt;}
.y35{bottom:758.773333pt;}
.y87{bottom:764.133333pt;}
.yb1{bottom:766.693333pt;}
.y9{bottom:767.093333pt;}
.yd2{bottom:770.373333pt;}
.y34{bottom:774.453333pt;}
.y85{bottom:774.933333pt;}
.y8{bottom:783.093333pt;}
.y33{bottom:790.053333pt;}
.yd1{bottom:793.973333pt;}
.y7{bottom:795.733333pt;}
.y86{bottom:797.653333pt;}
.y66{bottom:804.133333pt;}
.y32{bottom:805.733333pt;}
.yb0{bottom:809.653333pt;}
.y65{bottom:815.013333pt;}
.y6{bottom:815.093333pt;}
.y83{bottom:820.293333pt;}
.y31{bottom:821.333333pt;}
.yaf{bottom:825.253333pt;}
.y30{bottom:836.933333pt;}
.yae{bottom:840.853333pt;}
.y64{bottom:841.413333pt;}
.y84{bottom:842.933333pt;}
.y5{bottom:843.813333pt;}
.yd0{bottom:848.853333pt;}
.y2f{bottom:860.853333pt;}
.ycf{bottom:864.533333pt;}
.y81{bottom:865.653333pt;}
.y62{bottom:867.893333pt;}
.yad{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.yac{bottom:888.133333pt;}
.y82{bottom:888.293333pt;}
.y60{bottom:894.373333pt;}
.y3{bottom:899.840000pt;}
.y2e{bottom:903.840000pt;}
.y7f{bottom:910.960000pt;}
.y2d{bottom:919.440000pt;}
.y5a{bottom:920.880000pt;}
.yce{bottom:927.440000pt;}
.y80{bottom:933.680000pt;}
.y2c{bottom:935.040000pt;}
.ycd{bottom:943.040000pt;}
.y2b{bottom:950.720000pt;}
.y7e{bottom:956.320000pt;}
.ycc{bottom:958.720000pt;}
.y2a{bottom:966.320000pt;}
.yab{bottom:982.320000pt;}
.y29{bottom:998.000000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.h12{height:22.000000pt;}
.h16{height:22.026667pt;}
.hc{height:23.600000pt;}
.ha{height:23.680000pt;}
.he{height:25.760000pt;}
.h10{height:25.840000pt;}
.hf{height:25.866667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hd{height:36.034687pt;}
.h14{height:44.640000pt;}
.h15{height:44.666667pt;}
.h13{height:44.720000pt;}
.h7{height:45.246562pt;}
.hb{height:47.920000pt;}
.h5{height:49.581562pt;}
.h17{height:54.927899pt;}
.h11{height:56.355000pt;}
.h9{height:58.880000pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w11{width:50.400000pt;}
.w13{width:50.426667pt;}
.w14{width:50.480000pt;}
.wf{width:50.506667pt;}
.w8{width:55.146667pt;}
.w7{width:55.280000pt;}
.w10{width:56.320000pt;}
.we{width:69.200000pt;}
.w6{width:95.280000pt;}
.wc{width:104.560000pt;}
.w3{width:111.146667pt;}
.wd{width:156.160000pt;}
.w12{width:156.240000pt;}
.w9{width:156.266667pt;}
.w4{width:157.440000pt;}
.wb{width:176.186667pt;}
.wa{width:222.960000pt;}
.w5{width:257.306667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x32{left:9.120000pt;}
.x31{left:12.640000pt;}
.x13{left:16.720000pt;}
.x25{left:20.800000pt;}
.xa{left:22.240000pt;}
.x10{left:25.520000pt;}
.x9{left:28.560000pt;}
.x23{left:30.160000pt;}
.xc{left:31.680000pt;}
.x17{left:39.760000pt;}
.x11{left:43.520000pt;}
.x18{left:47.200000pt;}
.x27{left:49.226667pt;}
.x8{left:50.160000pt;}
.x15{left:53.680000pt;}
.x1c{left:54.960000pt;}
.x20{left:57.066667pt;}
.x1f{left:58.026667pt;}
.x1{left:60.480000pt;}
.x19{left:61.599988pt;}
.x2{left:67.440000pt;}
.x33{left:70.239988pt;}
.x26{left:72.560000pt;}
.x24{left:76.240000pt;}
.x28{left:79.920000pt;}
.x5{left:85.440000pt;}
.x21{left:88.106667pt;}
.x12{left:93.440000pt;}
.x16{left:94.800000pt;}
.xd{left:97.626667pt;}
.x3b{left:98.879988pt;}
.x1d{left:111.440000pt;}
.xe{left:128.666667pt;}
.x14{left:141.440000pt;}
.x2b{left:156.986655pt;}
.x3{left:172.826655pt;}
.x7{left:197.226667pt;}
.x29{left:199.146655pt;}
.x2c{left:204.346667pt;}
.x36{left:207.226667pt;}
.x1b{left:218.026667pt;}
.x1a{left:294.186655pt;}
.x34{left:346.426655pt;}
.xb{left:355.306667pt;}
.x2d{left:361.226667pt;}
.x37{left:364.106667pt;}
.x35{left:396.986655pt;}
.x2e{left:431.066667pt;}
.x38{left:434.026667pt;}
.x1e{left:441.626667pt;}
.x2f{left:482.213333pt;}
.x39{left:485.173333pt;}
.x3a{left:536.293333pt;}
.x30{left:539.253333pt;}
.xf{left:613.253333pt;}
.x22{left:618.453333pt;}
.x2a{left:675.013322pt;}
.x4{left:711.413322pt;}
}




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