
    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_e78d4133a3466b2bd07e9608.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_8145b133d52051cf07ef4953.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6471c277feda1fca401391a5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.970703;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0e00cd54528dcc868f578b44.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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_201a4a8bb645e40f0a6e93ca.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls19{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.460200px;}
.ls1b{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.206400px;}
.ls11{letter-spacing:-0.106800px;}
.ls4{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.119520px;}
.ls5{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:11.466720px;}
.ls17{letter-spacing:41.682720px;}
.lse{letter-spacing:43.122720px;}
.lsc{letter-spacing:46.002720px;}
.lsf{letter-spacing:49.602720px;}
.lsb{letter-spacing:64.002720px;}
.ls13{letter-spacing:114.426720px;}
.ls15{letter-spacing:118.026720px;}
.ls8{letter-spacing:118.224000px;}
.ls9{letter-spacing:121.824000px;}
.ls6{letter-spacing:137.640000px;}
.ls16{letter-spacing:141.066720px;}
.lsa{letter-spacing:141.960000px;}
.ls3{letter-spacing:157.800000px;}
.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;}
}
.ws9{word-spacing:-59.760000px;}
.ws3{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.000000px;}
.ws2{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.246600px;}
.ws6{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.733600px;}
.wsf{word-spacing:-14.580000px;}
.ws0{word-spacing:-13.500000px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1.569840px;}
._0{width:1.109280px;}
._4{width:2.193840px;}
._8{width:3.213120px;}
._2{width:4.225920px;}
._b{width:5.610960px;}
._9{width:6.812640px;}
._a{width:8.208000px;}
._f{width:10.185360px;}
._15{width:11.414160px;}
._12{width:12.463680px;}
._7{width:13.830720px;}
._c{width:16.194960px;}
._11{width:18.154080px;}
._10{width:19.806720px;}
._16{width:21.274560px;}
._e{width:22.469760px;}
._d{width:24.083280px;}
._17{width:25.390560px;}
._1b{width:26.865840px;}
._18{width:28.412160px;}
._14{width:32.655120px;}
._13{width:33.730800px;}
._1d{width:35.377920px;}
._1e{width:59.357760px;}
._1c{width:60.742320px;}
._20{width:87.237120px;}
._1f{width:88.510800px;}
._19{width:93.670080px;}
._1a{width:95.350800px;}
._6{width:136.056000px;}
._5{width:636.906000px;}
._3{width:748.236000px;}
.fcb{color:rgb(79,86,113);}
.fcc{color:rgb(0,138,203);}
.fc8{color:rgb(23,119,188);}
.fc5{color:rgb(79,129,189);}
.fc4{color:rgb(34,35,37);}
.fc3{color:rgb(0,0,255);}
.fca{color:rgb(28,105,106);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc9{color:rgb(0,103,152);}
.fc7{color:rgb(2,114,177);}
.fc6{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ye3{bottom:3.240000px;}
.yea{bottom:20.520000px;}
.y46{bottom:23.760000px;}
.yb{bottom:36.720000px;}
.ye9{bottom:37.620000px;}
.yee{bottom:37.800000px;}
.yf4{bottom:37.830000px;}
.y4f{bottom:41.760000px;}
.y52{bottom:44.640000px;}
.y49{bottom:44.685000px;}
.y4c{bottom:44.820000px;}
.y55{bottom:44.850000px;}
.y58{bottom:47.340000px;}
.ye8{bottom:54.900000px;}
.yf0{bottom:55.080000px;}
.yf3{bottom:55.110000px;}
.yed{bottom:55.125000px;}
.ya{bottom:55.260000px;}
.y4e{bottom:59.040000px;}
.y51{bottom:61.920000px;}
.y48{bottom:61.965000px;}
.y4b{bottom:62.100000px;}
.y54{bottom:62.130000px;}
.y57{bottom:64.440000px;}
.y9{bottom:70.776000px;}
.ye7{bottom:72.180000px;}
.yec{bottom:72.405000px;}
.ye6{bottom:89.460000px;}
.ye5{bottom:106.740000px;}
.yd1{bottom:119.556000px;}
.ye1{bottom:122.436000px;}
.y3f{bottom:127.836000px;}
.y107{bottom:129.996000px;}
.y6c{bottom:134.676000px;}
.yd0{bottom:136.836000px;}
.ye0{bottom:139.716000px;}
.y9f{bottom:141.336000px;}
.y3e{bottom:145.116000px;}
.y106{bottom:147.276000px;}
.y6b{bottom:151.950000px;}
.ycf{bottom:154.110000px;}
.ydf{bottom:156.990000px;}
.y9e{bottom:158.610000px;}
.y3d{bottom:162.210000px;}
.y105{bottom:164.550000px;}
.y6a{bottom:169.230000px;}
.yce{bottom:171.390000px;}
.yde{bottom:174.270000px;}
.y9d{bottom:175.890000px;}
.y3c{bottom:179.490000px;}
.y104{bottom:181.830000px;}
.y69{bottom:186.510000px;}
.ycd{bottom:188.490000px;}
.ydd{bottom:191.550000px;}
.y9c{bottom:193.170000px;}
.y3b{bottom:196.770000px;}
.y103{bottom:199.110000px;}
.y68{bottom:203.790000px;}
.ycc{bottom:205.770000px;}
.ydc{bottom:208.830000px;}
.y9b{bottom:210.270000px;}
.y3a{bottom:214.050000px;}
.y102{bottom:216.390000px;}
.y67{bottom:220.890000px;}
.ycb{bottom:223.050000px;}
.ydb{bottom:225.930000px;}
.y9a{bottom:227.550000px;}
.y101{bottom:233.490000px;}
.y39{bottom:234.030000px;}
.y66{bottom:238.170000px;}
.yca{bottom:240.330000px;}
.yda{bottom:243.210000px;}
.y99{bottom:244.830000px;}
.y100{bottom:250.770000px;}
.y38{bottom:251.310000px;}
.y65{bottom:255.450000px;}
.yc9{bottom:257.610000px;}
.yd9{bottom:260.490000px;}
.y98{bottom:262.110000px;}
.yff{bottom:268.050000px;}
.y37{bottom:270.750000px;}
.y64{bottom:272.730000px;}
.yc8{bottom:274.890000px;}
.yd8{bottom:277.770000px;}
.y97{bottom:279.390000px;}
.yfe{bottom:285.330000px;}
.y36{bottom:288.030000px;}
.y63{bottom:290.010000px;}
.yc7{bottom:291.990000px;}
.yd7{bottom:295.050000px;}
.y96{bottom:296.670000px;}
.yfd{bottom:302.610000px;}
.y35{bottom:305.310000px;}
.y62{bottom:307.290000px;}
.yc6{bottom:309.270000px;}
.yd6{bottom:312.330000px;}
.y95{bottom:313.770000px;}
.yfc{bottom:319.890000px;}
.y34{bottom:322.590000px;}
.yc5{bottom:326.550000px;}
.y61{bottom:327.270000px;}
.yd5{bottom:329.430000px;}
.y94{bottom:331.050000px;}
.yfb{bottom:337.035000px;}
.y33{bottom:339.915000px;}
.yc4{bottom:343.875000px;}
.y60{bottom:344.595000px;}
.yd4{bottom:346.755000px;}
.y93{bottom:349.455000px;}
.yfa{bottom:354.315000px;}
.y32{bottom:357.195000px;}
.yc3{bottom:361.155000px;}
.y5f{bottom:361.875000px;}
.yd3{bottom:364.035000px;}
.y92{bottom:366.735000px;}
.yf9{bottom:371.595000px;}
.y31{bottom:374.295000px;}
.yd2{bottom:378.075000px;}
.yc2{bottom:378.255000px;}
.y5e{bottom:378.975000px;}
.y91{bottom:385.095000px;}
.yf8{bottom:388.875000px;}
.y30{bottom:391.575000px;}
.yc1{bottom:395.535000px;}
.y5d{bottom:396.255000px;}
.y90{bottom:402.195000px;}
.yf7{bottom:406.155000px;}
.y2f{bottom:408.855000px;}
.yc0{bottom:412.815000px;}
.y5c{bottom:413.535000px;}
.y8f{bottom:420.555000px;}
.yf6{bottom:423.255000px;}
.y2e{bottom:426.135000px;}
.ybf{bottom:430.095000px;}
.y5b{bottom:430.815000px;}
.y8e{bottom:437.835000px;}
.yf5{bottom:438.015000px;}
.y2d{bottom:443.415000px;}
.ybe{bottom:447.375000px;}
.y5a{bottom:448.095000px;}
.y8d{bottom:456.195000px;}
.y2c{bottom:460.695000px;}
.ybd{bottom:464.655000px;}
.y59{bottom:465.375000px;}
.y8c{bottom:473.475000px;}
.y2b{bottom:477.795000px;}
.y56{bottom:480.135000px;}
.ybc{bottom:481.755000px;}
.y8b{bottom:490.755000px;}
.y2a{bottom:495.075000px;}
.ybb{bottom:499.035000px;}
.y8a{bottom:507.855000px;}
.y29{bottom:512.355000px;}
.yba{bottom:516.315000px;}
.y89{bottom:525.315000px;}
.y28{bottom:529.635000px;}
.yb9{bottom:533.595000px;}
.y88{bottom:545.295000px;}
.y27{bottom:546.915000px;}
.yb8{bottom:550.875000px;}
.y53{bottom:559.335000px;}
.y87{bottom:562.395000px;}
.y26{bottom:564.015000px;}
.yb7{bottom:568.155000px;}
.yf2{bottom:577.515000px;}
.y86{bottom:579.675000px;}
.y25{bottom:581.295000px;}
.yb6{bottom:585.255000px;}
.y85{bottom:596.955000px;}
.y24{bottom:598.575000px;}
.yb5{bottom:602.535000px;}
.y84{bottom:614.265000px;}
.y23{bottom:615.885000px;}
.yb4{bottom:619.845000px;}
.y83{bottom:631.545000px;}
.y22{bottom:633.165000px;}
.y50{bottom:636.225000px;}
.yb3{bottom:637.125000px;}
.yf1{bottom:647.385000px;}
.y82{bottom:648.825000px;}
.y21{bottom:650.445000px;}
.yb2{bottom:654.405000px;}
.y81{bottom:665.925000px;}
.y20{bottom:667.545000px;}
.yb1{bottom:671.685000px;}
.y80{bottom:683.205000px;}
.y1f{bottom:684.825000px;}
.yb0{bottom:688.785000px;}
.y7f{bottom:700.485000px;}
.y1e{bottom:704.265000px;}
.yaf{bottom:706.065000px;}
.y4d{bottom:712.905000px;}
.y7e{bottom:717.765000px;}
.y1d{bottom:722.085000px;}
.yae{bottom:723.345000px;}
.yef{bottom:734.325000px;}
.y7d{bottom:735.045000px;}
.yad{bottom:740.625000px;}
.y1c{bottom:740.985000px;}
.y7c{bottom:752.325000px;}
.yac{bottom:757.905000px;}
.y1b{bottom:760.065000px;}
.y7b{bottom:772.305000px;}
.yab{bottom:775.005000px;}
.y1a{bottom:778.965000px;}
.y4a{bottom:786.705000px;}
.y7a{bottom:789.585000px;}
.yaa{bottom:792.285000px;}
.y19{bottom:797.865000px;}
.y79{bottom:806.865000px;}
.ya9{bottom:809.565000px;}
.y18{bottom:816.945000px;}
.yeb{bottom:821.265000px;}
.y78{bottom:823.965000px;}
.ya8{bottom:826.845000px;}
.y17{bottom:835.845000px;}
.y77{bottom:841.245000px;}
.ya7{bottom:844.125000px;}
.y16{bottom:854.925000px;}
.y76{bottom:858.525000px;}
.ya6{bottom:861.405000px;}
.y47{bottom:863.565000px;}
.y15{bottom:873.870000px;}
.y75{bottom:875.850000px;}
.ya5{bottom:878.550000px;}
.y14{bottom:892.770000px;}
.y74{bottom:893.130000px;}
.ya4{bottom:895.830000px;}
.ye4{bottom:908.430000px;}
.y73{bottom:910.230000px;}
.y13{bottom:911.850000px;}
.ya3{bottom:913.110000px;}
.y72{bottom:927.510000px;}
.ya2{bottom:930.390000px;}
.y12{bottom:930.750000px;}
.y45{bottom:940.290000px;}
.y71{bottom:944.790000px;}
.ya1{bottom:947.670000px;}
.y11{bottom:949.830000px;}
.y70{bottom:962.070000px;}
.ya0{bottom:964.950000px;}
.y10{bottom:968.730000px;}
.y6f{bottom:979.350000px;}
.y44{bottom:982.050000px;}
.yf{bottom:987.810000px;}
.y6e{bottom:996.630000px;}
.y43{bottom:999.330000px;}
.ye{bottom:1007.070000px;}
.y6d{bottom:1013.910000px;}
.y42{bottom:1016.610000px;}
.yd{bottom:1027.770000px;}
.ye2{bottom:1029.930000px;}
.y41{bottom:1033.890000px;}
.yc{bottom:1048.290000px;}
.y40{bottom:1051.170000px;}
.y8{bottom:1069.530000px;}
.y7{bottom:1088.250000px;}
.y6{bottom:1104.090000px;}
.y5{bottom:1121.910000px;}
.y4{bottom:1138.680000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h13{height:17.100000px;}
.h6{height:37.705078px;}
.hc{height:37.800000px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.hb{height:43.302656px;}
.h11{height:43.506914px;}
.h12{height:45.461953px;}
.h3{height:46.251562px;}
.h9{height:46.736719px;}
.h4{height:50.800781px;}
.ha{height:52.417969px;}
.h8{height:53.224453px;}
.h7{height:65.884219px;}
.h18{height:68.940000px;}
.h19{height:69.120000px;}
.h17{height:69.156000px;}
.hf{height:73.080000px;}
.he{height:75.960000px;}
.hd{height:75.996000px;}
.h10{height:78.480000px;}
.h16{height:86.220000px;}
.h15{height:86.436000px;}
.h14{height:120.780000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:140.760000px;}
.w3{width:169.560000px;}
.w8{width:247.710000px;}
.w5{width:252.930000px;}
.w4{width:287.715000px;}
.w7{width:302.655000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:7.740000px;}
.x23{left:36.180000px;}
.x17{left:58.854000px;}
.x27{left:61.560000px;}
.x1b{left:64.080000px;}
.x19{left:84.105000px;}
.x25{left:91.485000px;}
.x16{left:100.296000px;}
.x1{left:108.035987px;}
.x2{left:123.155987px;}
.x1f{left:129.635987px;}
.x14{left:135.035987px;}
.x7{left:139.715987px;}
.x4{left:157.169987px;}
.x1d{left:162.029987px;}
.x8{left:169.229987px;}
.xd{left:200.549987px;}
.x24{left:241.770000px;}
.x15{left:245.549987px;}
.x9{left:262.649987px;}
.x10{left:268.949987px;}
.x18{left:270.570000px;}
.xc{left:334.154987px;}
.xb{left:336.494987px;}
.x12{left:348.374987px;}
.x1e{left:354.314987px;}
.x22{left:370.874987px;}
.xa{left:374.654987px;}
.xf{left:382.934987px;}
.x13{left:386.534987px;}
.x11{left:394.634987px;}
.x6{left:396.434987px;}
.x20{left:411.014987px;}
.x5{left:412.274987px;}
.xe{left:446.474987px;}
.x3{left:518.504987px;}
.x26{left:545.145000px;}
.x1a{left:559.005000px;}
.x21{left:667.049987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls19{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.409067pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.183467pt;}
.ls11{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.106240pt;}
.ls5{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:10.192640pt;}
.ls17{letter-spacing:37.051307pt;}
.lse{letter-spacing:38.331307pt;}
.lsc{letter-spacing:40.891307pt;}
.lsf{letter-spacing:44.091307pt;}
.lsb{letter-spacing:56.891307pt;}
.ls13{letter-spacing:101.712640pt;}
.ls15{letter-spacing:104.912640pt;}
.ls8{letter-spacing:105.088000pt;}
.ls9{letter-spacing:108.288000pt;}
.ls6{letter-spacing:122.346667pt;}
.ls16{letter-spacing:125.392640pt;}
.lsa{letter-spacing:126.186667pt;}
.ls3{letter-spacing:140.266667pt;}
.ws9{word-spacing:-53.120000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.552533pt;}
.ws6{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.185067pt;}
.wsd{word-spacing:-13.096533pt;}
.wsf{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-1.395413pt;}
._0{width:0.986027pt;}
._4{width:1.950080pt;}
._8{width:2.856107pt;}
._2{width:3.756373pt;}
._b{width:4.987520pt;}
._9{width:6.055680pt;}
._a{width:7.296000pt;}
._f{width:9.053653pt;}
._15{width:10.145920pt;}
._12{width:11.078827pt;}
._7{width:12.293973pt;}
._c{width:14.395520pt;}
._11{width:16.136960pt;}
._10{width:17.605973pt;}
._16{width:18.910720pt;}
._e{width:19.973120pt;}
._d{width:21.407360pt;}
._17{width:22.569387pt;}
._1b{width:23.880747pt;}
._18{width:25.255253pt;}
._14{width:29.026773pt;}
._13{width:29.982933pt;}
._1d{width:31.447040pt;}
._1e{width:52.762453pt;}
._1c{width:53.993173pt;}
._20{width:77.544107pt;}
._1f{width:78.676267pt;}
._19{width:83.262293pt;}
._1a{width:84.756267pt;}
._6{width:120.938667pt;}
._5{width:566.138667pt;}
._3{width:665.098667pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ye3{bottom:2.880000pt;}
.yea{bottom:18.240000pt;}
.y46{bottom:21.120000pt;}
.yb{bottom:32.640000pt;}
.ye9{bottom:33.440000pt;}
.yee{bottom:33.600000pt;}
.yf4{bottom:33.626667pt;}
.y4f{bottom:37.120000pt;}
.y52{bottom:39.680000pt;}
.y49{bottom:39.720000pt;}
.y4c{bottom:39.840000pt;}
.y55{bottom:39.866667pt;}
.y58{bottom:42.080000pt;}
.ye8{bottom:48.800000pt;}
.yf0{bottom:48.960000pt;}
.yf3{bottom:48.986667pt;}
.yed{bottom:49.000000pt;}
.ya{bottom:49.120000pt;}
.y4e{bottom:52.480000pt;}
.y51{bottom:55.040000pt;}
.y48{bottom:55.080000pt;}
.y4b{bottom:55.200000pt;}
.y54{bottom:55.226667pt;}
.y57{bottom:57.280000pt;}
.y9{bottom:62.912000pt;}
.ye7{bottom:64.160000pt;}
.yec{bottom:64.360000pt;}
.ye6{bottom:79.520000pt;}
.ye5{bottom:94.880000pt;}
.yd1{bottom:106.272000pt;}
.ye1{bottom:108.832000pt;}
.y3f{bottom:113.632000pt;}
.y107{bottom:115.552000pt;}
.y6c{bottom:119.712000pt;}
.yd0{bottom:121.632000pt;}
.ye0{bottom:124.192000pt;}
.y9f{bottom:125.632000pt;}
.y3e{bottom:128.992000pt;}
.y106{bottom:130.912000pt;}
.y6b{bottom:135.066667pt;}
.ycf{bottom:136.986667pt;}
.ydf{bottom:139.546667pt;}
.y9e{bottom:140.986667pt;}
.y3d{bottom:144.186667pt;}
.y105{bottom:146.266667pt;}
.y6a{bottom:150.426667pt;}
.yce{bottom:152.346667pt;}
.yde{bottom:154.906667pt;}
.y9d{bottom:156.346667pt;}
.y3c{bottom:159.546667pt;}
.y104{bottom:161.626667pt;}
.y69{bottom:165.786667pt;}
.ycd{bottom:167.546667pt;}
.ydd{bottom:170.266667pt;}
.y9c{bottom:171.706667pt;}
.y3b{bottom:174.906667pt;}
.y103{bottom:176.986667pt;}
.y68{bottom:181.146667pt;}
.ycc{bottom:182.906667pt;}
.ydc{bottom:185.626667pt;}
.y9b{bottom:186.906667pt;}
.y3a{bottom:190.266667pt;}
.y102{bottom:192.346667pt;}
.y67{bottom:196.346667pt;}
.ycb{bottom:198.266667pt;}
.ydb{bottom:200.826667pt;}
.y9a{bottom:202.266667pt;}
.y101{bottom:207.546667pt;}
.y39{bottom:208.026667pt;}
.y66{bottom:211.706667pt;}
.yca{bottom:213.626667pt;}
.yda{bottom:216.186667pt;}
.y99{bottom:217.626667pt;}
.y100{bottom:222.906667pt;}
.y38{bottom:223.386667pt;}
.y65{bottom:227.066667pt;}
.yc9{bottom:228.986667pt;}
.yd9{bottom:231.546667pt;}
.y98{bottom:232.986667pt;}
.yff{bottom:238.266667pt;}
.y37{bottom:240.666667pt;}
.y64{bottom:242.426667pt;}
.yc8{bottom:244.346667pt;}
.yd8{bottom:246.906667pt;}
.y97{bottom:248.346667pt;}
.yfe{bottom:253.626667pt;}
.y36{bottom:256.026667pt;}
.y63{bottom:257.786667pt;}
.yc7{bottom:259.546667pt;}
.yd7{bottom:262.266667pt;}
.y96{bottom:263.706667pt;}
.yfd{bottom:268.986667pt;}
.y35{bottom:271.386667pt;}
.y62{bottom:273.146667pt;}
.yc6{bottom:274.906667pt;}
.yd6{bottom:277.626667pt;}
.y95{bottom:278.906667pt;}
.yfc{bottom:284.346667pt;}
.y34{bottom:286.746667pt;}
.yc5{bottom:290.266667pt;}
.y61{bottom:290.906667pt;}
.yd5{bottom:292.826667pt;}
.y94{bottom:294.266667pt;}
.yfb{bottom:299.586667pt;}
.y33{bottom:302.146667pt;}
.yc4{bottom:305.666667pt;}
.y60{bottom:306.306667pt;}
.yd4{bottom:308.226667pt;}
.y93{bottom:310.626667pt;}
.yfa{bottom:314.946667pt;}
.y32{bottom:317.506667pt;}
.yc3{bottom:321.026667pt;}
.y5f{bottom:321.666667pt;}
.yd3{bottom:323.586667pt;}
.y92{bottom:325.986667pt;}
.yf9{bottom:330.306667pt;}
.y31{bottom:332.706667pt;}
.yd2{bottom:336.066667pt;}
.yc2{bottom:336.226667pt;}
.y5e{bottom:336.866667pt;}
.y91{bottom:342.306667pt;}
.yf8{bottom:345.666667pt;}
.y30{bottom:348.066667pt;}
.yc1{bottom:351.586667pt;}
.y5d{bottom:352.226667pt;}
.y90{bottom:357.506667pt;}
.yf7{bottom:361.026667pt;}
.y2f{bottom:363.426667pt;}
.yc0{bottom:366.946667pt;}
.y5c{bottom:367.586667pt;}
.y8f{bottom:373.826667pt;}
.yf6{bottom:376.226667pt;}
.y2e{bottom:378.786667pt;}
.ybf{bottom:382.306667pt;}
.y5b{bottom:382.946667pt;}
.y8e{bottom:389.186667pt;}
.yf5{bottom:389.346667pt;}
.y2d{bottom:394.146667pt;}
.ybe{bottom:397.666667pt;}
.y5a{bottom:398.306667pt;}
.y8d{bottom:405.506667pt;}
.y2c{bottom:409.506667pt;}
.ybd{bottom:413.026667pt;}
.y59{bottom:413.666667pt;}
.y8c{bottom:420.866667pt;}
.y2b{bottom:424.706667pt;}
.y56{bottom:426.786667pt;}
.ybc{bottom:428.226667pt;}
.y8b{bottom:436.226667pt;}
.y2a{bottom:440.066667pt;}
.ybb{bottom:443.586667pt;}
.y8a{bottom:451.426667pt;}
.y29{bottom:455.426667pt;}
.yba{bottom:458.946667pt;}
.y89{bottom:466.946667pt;}
.y28{bottom:470.786667pt;}
.yb9{bottom:474.306667pt;}
.y88{bottom:484.706667pt;}
.y27{bottom:486.146667pt;}
.yb8{bottom:489.666667pt;}
.y53{bottom:497.186667pt;}
.y87{bottom:499.906667pt;}
.y26{bottom:501.346667pt;}
.yb7{bottom:505.026667pt;}
.yf2{bottom:513.346667pt;}
.y86{bottom:515.266667pt;}
.y25{bottom:516.706667pt;}
.yb6{bottom:520.226667pt;}
.y85{bottom:530.626667pt;}
.y24{bottom:532.066667pt;}
.yb5{bottom:535.586667pt;}
.y84{bottom:546.013333pt;}
.y23{bottom:547.453333pt;}
.yb4{bottom:550.973333pt;}
.y83{bottom:561.373333pt;}
.y22{bottom:562.813333pt;}
.y50{bottom:565.533333pt;}
.yb3{bottom:566.333333pt;}
.yf1{bottom:575.453333pt;}
.y82{bottom:576.733333pt;}
.y21{bottom:578.173333pt;}
.yb2{bottom:581.693333pt;}
.y81{bottom:591.933333pt;}
.y20{bottom:593.373333pt;}
.yb1{bottom:597.053333pt;}
.y80{bottom:607.293333pt;}
.y1f{bottom:608.733333pt;}
.yb0{bottom:612.253333pt;}
.y7f{bottom:622.653333pt;}
.y1e{bottom:626.013333pt;}
.yaf{bottom:627.613333pt;}
.y4d{bottom:633.693333pt;}
.y7e{bottom:638.013333pt;}
.y1d{bottom:641.853333pt;}
.yae{bottom:642.973333pt;}
.yef{bottom:652.733333pt;}
.y7d{bottom:653.373333pt;}
.yad{bottom:658.333333pt;}
.y1c{bottom:658.653333pt;}
.y7c{bottom:668.733333pt;}
.yac{bottom:673.693333pt;}
.y1b{bottom:675.613333pt;}
.y7b{bottom:686.493333pt;}
.yab{bottom:688.893333pt;}
.y1a{bottom:692.413333pt;}
.y4a{bottom:699.293333pt;}
.y7a{bottom:701.853333pt;}
.yaa{bottom:704.253333pt;}
.y19{bottom:709.213333pt;}
.y79{bottom:717.213333pt;}
.ya9{bottom:719.613333pt;}
.y18{bottom:726.173333pt;}
.yeb{bottom:730.013333pt;}
.y78{bottom:732.413333pt;}
.ya8{bottom:734.973333pt;}
.y17{bottom:742.973333pt;}
.y77{bottom:747.773333pt;}
.ya7{bottom:750.333333pt;}
.y16{bottom:759.933333pt;}
.y76{bottom:763.133333pt;}
.ya6{bottom:765.693333pt;}
.y47{bottom:767.613333pt;}
.y15{bottom:776.773333pt;}
.y75{bottom:778.533333pt;}
.ya5{bottom:780.933333pt;}
.y14{bottom:793.573333pt;}
.y74{bottom:793.893333pt;}
.ya4{bottom:796.293333pt;}
.ye4{bottom:807.493333pt;}
.y73{bottom:809.093333pt;}
.y13{bottom:810.533333pt;}
.ya3{bottom:811.653333pt;}
.y72{bottom:824.453333pt;}
.ya2{bottom:827.013333pt;}
.y12{bottom:827.333333pt;}
.y45{bottom:835.813333pt;}
.y71{bottom:839.813333pt;}
.ya1{bottom:842.373333pt;}
.y11{bottom:844.293333pt;}
.y70{bottom:855.173333pt;}
.ya0{bottom:857.733333pt;}
.y10{bottom:861.093333pt;}
.y6f{bottom:870.533333pt;}
.y44{bottom:872.933333pt;}
.yf{bottom:878.053333pt;}
.y6e{bottom:885.893333pt;}
.y43{bottom:888.293333pt;}
.ye{bottom:895.173333pt;}
.y6d{bottom:901.253333pt;}
.y42{bottom:903.653333pt;}
.yd{bottom:913.573333pt;}
.ye2{bottom:915.493333pt;}
.y41{bottom:919.013333pt;}
.yc{bottom:931.813333pt;}
.y40{bottom:934.373333pt;}
.y8{bottom:950.693333pt;}
.y7{bottom:967.333333pt;}
.y6{bottom:981.413333pt;}
.y5{bottom:997.253333pt;}
.y4{bottom:1012.160000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h13{height:15.200000pt;}
.h6{height:33.515625pt;}
.hc{height:33.600000pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.hb{height:38.491250pt;}
.h11{height:38.672812pt;}
.h12{height:40.410625pt;}
.h3{height:41.112500pt;}
.h9{height:41.543750pt;}
.h4{height:45.156250pt;}
.ha{height:46.593750pt;}
.h8{height:47.310625pt;}
.h7{height:58.563750pt;}
.h18{height:61.280000pt;}
.h19{height:61.440000pt;}
.h17{height:61.472000pt;}
.hf{height:64.960000pt;}
.he{height:67.520000pt;}
.hd{height:67.552000pt;}
.h10{height:69.760000pt;}
.h16{height:76.640000pt;}
.h15{height:76.832000pt;}
.h14{height:107.360000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:125.120000pt;}
.w3{width:150.720000pt;}
.w8{width:220.186667pt;}
.w5{width:224.826667pt;}
.w4{width:255.746667pt;}
.w7{width:269.026667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.880000pt;}
.x23{left:32.160000pt;}
.x17{left:52.314667pt;}
.x27{left:54.720000pt;}
.x1b{left:56.960000pt;}
.x19{left:74.760000pt;}
.x25{left:81.320000pt;}
.x16{left:89.152000pt;}
.x1{left:96.031988pt;}
.x2{left:109.471988pt;}
.x1f{left:115.231988pt;}
.x14{left:120.031988pt;}
.x7{left:124.191988pt;}
.x4{left:139.706655pt;}
.x1d{left:144.026655pt;}
.x8{left:150.426655pt;}
.xd{left:178.266655pt;}
.x24{left:214.906667pt;}
.x15{left:218.266655pt;}
.x9{left:233.466655pt;}
.x10{left:239.066655pt;}
.x18{left:240.506667pt;}
.xc{left:297.026655pt;}
.xb{left:299.106655pt;}
.x12{left:309.666655pt;}
.x1e{left:314.946655pt;}
.x22{left:329.666655pt;}
.xa{left:333.026655pt;}
.xf{left:340.386655pt;}
.x13{left:343.586655pt;}
.x11{left:350.786655pt;}
.x6{left:352.386655pt;}
.x20{left:365.346655pt;}
.x5{left:366.466655pt;}
.xe{left:396.866655pt;}
.x3{left:460.893322pt;}
.x26{left:484.573333pt;}
.x1a{left:496.893333pt;}
.x21{left:592.933322pt;}
}




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