
    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_bf4861e9d9f403191cce1ec1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_da9f58f1aaa29ff0a18a2a4c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a9cdf626c150609b78e29007.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_0357506a3d61f3c8aeac6904.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ad87da2fd62b1b3ccca1eec4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.720000px;}
.ls4{letter-spacing:64.421280px;}
.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;}
}
.ws0{word-spacing:-72.000000px;}
.ws3{word-spacing:-21.060000px;}
.ws5{word-spacing:-18.720000px;}
.ws6{word-spacing:-18.288000px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws2{word-spacing:0.000000px;}
._f{margin-left:-5.192640px;}
._2{margin-left:-4.173120px;}
._1{margin-left:-2.715840px;}
._0{margin-left:-1.457280px;}
._3{width:1.126080px;}
._8{width:2.208000px;}
._9{width:3.312000px;}
._a{width:5.040000px;}
._6{width:6.264000px;}
._7{width:7.560000px;}
._10{width:8.568000px;}
._14{width:10.068480px;}
._d{width:11.424000px;}
._b{width:12.816000px;}
._4{width:14.172480px;}
._5{width:15.417360px;}
._c{width:16.783920px;}
._13{width:19.474560px;}
._e{width:20.664000px;}
._16{width:22.392000px;}
._17{width:23.688000px;}
._15{width:26.424000px;}
._11{width:28.944000px;}
._12{width:30.075840px;}
._2b{width:31.320000px;}
._2a{width:32.633280px;}
._1a{width:37.584000px;}
._18{width:39.024000px;}
._19{width:40.227840px;}
._28{width:48.960000px;}
._29{width:50.112000px;}
._24{width:52.430400px;}
._20{width:55.272000px;}
._1f{width:66.888000px;}
._23{width:77.616000px;}
._22{width:85.260000px;}
._1c{width:117.216000px;}
._1e{width:124.344000px;}
._1d{width:125.784000px;}
._25{width:154.872000px;}
._26{width:156.121920px;}
._21{width:178.848000px;}
._27{width:224.568000px;}
._2c{width:437.832000px;}
._1b{width:846.156000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y89{bottom:5.580000px;}
.y78{bottom:17.460000px;}
.y73{bottom:17.640000px;}
.y91{bottom:17.685000px;}
.yc2{bottom:19.305000px;}
.y6c{bottom:25.920000px;}
.y88{bottom:27.900000px;}
.yac{bottom:28.080000px;}
.y9e{bottom:39.780000px;}
.y72{bottom:39.960000px;}
.y7e{bottom:39.990000px;}
.yc1{bottom:41.625000px;}
.y87{bottom:50.220000px;}
.yab{bottom:50.400000px;}
.y90{bottom:52.065000px;}
.y77{bottom:62.280000px;}
.y7d{bottom:62.310000px;}
.y71{bottom:62.325000px;}
.y8f{bottom:63.945000px;}
.yc0{bottom:64.125000px;}
.y79{bottom:72.540000px;}
.yaa{bottom:72.720000px;}
.y6{bottom:82.116000px;}
.y76{bottom:84.600000px;}
.y7c{bottom:84.630000px;}
.y70{bottom:84.645000px;}
.y8e{bottom:86.445000px;}
.y86{bottom:94.860000px;}
.ya9{bottom:95.040000px;}
.y5{bottom:102.816000px;}
.y75{bottom:106.920000px;}
.y7b{bottom:106.950000px;}
.y6f{bottom:106.965000px;}
.y8d{bottom:108.765000px;}
.y85{bottom:117.180000px;}
.ya8{bottom:117.360000px;}
.ya2{bottom:117.405000px;}
.y4{bottom:129.096000px;}
.y81{bottom:129.240000px;}
.ybd{bottom:129.270000px;}
.y6e{bottom:129.285000px;}
.yaf{bottom:129.420000px;}
.y8c{bottom:131.085000px;}
.y84{bottom:139.545000px;}
.ya7{bottom:139.680000px;}
.yb6{bottom:139.710000px;}
.ya1{bottom:139.725000px;}
.y80{bottom:151.560000px;}
.ya3{bottom:151.605000px;}
.yae{bottom:151.740000px;}
.ybc{bottom:151.770000px;}
.y3{bottom:154.110000px;}
.ya6{bottom:162.000000px;}
.yb5{bottom:162.030000px;}
.y83{bottom:162.045000px;}
.y2{bottom:173.190000px;}
.y7f{bottom:173.880000px;}
.ya0{bottom:173.925000px;}
.yad{bottom:174.060000px;}
.ybb{bottom:174.090000px;}
.yb4{bottom:184.350000px;}
.y30{bottom:192.810000px;}
.y9d{bottom:196.230000px;}
.ya5{bottom:196.380000px;}
.yba{bottom:196.410000px;}
.y82{bottom:205.230000px;}
.yeb{bottom:206.490000px;}
.yb3{bottom:206.670000px;}
.y2f{bottom:213.510000px;}
.y67{bottom:217.470000px;}
.y9c{bottom:218.550000px;}
.yb9{bottom:218.730000px;}
.yc3{bottom:223.050000px;}
.yb2{bottom:228.990000px;}
.y4f{bottom:229.530000px;}
.y112{bottom:231.870000px;}
.y2e{bottom:234.210000px;}
.y9f{bottom:235.830000px;}
.yea{bottom:237.630000px;}
.y9b{bottom:240.870000px;}
.yb8{bottom:241.050000px;}
.y66{bottom:248.430000px;}
.yda{bottom:249.690000px;}
.yb1{bottom:251.310000px;}
.y111{bottom:252.570000px;}
.y2d{bottom:254.910000px;}
.y4e{bottom:260.490000px;}
.y9a{bottom:263.190000px;}
.yb7{bottom:263.370000px;}
.ye9{bottom:268.590000px;}
.y2c{bottom:275.610000px;}
.y110{bottom:279.390000px;}
.y65{bottom:279.570000px;}
.yd9{bottom:280.650000px;}
.y99{bottom:285.690000px;}
.y4d{bottom:291.630000px;}
.y2b{bottom:296.310000px;}
.ye8{bottom:299.730000px;}
.y10f{bottom:300.090000px;}
.y98{bottom:308.010000px;}
.y64{bottom:310.530000px;}
.yd8{bottom:311.790000px;}
.y2a{bottom:317.010000px;}
.y10e{bottom:320.790000px;}
.y4c{bottom:322.590000px;}
.ybf{bottom:325.110000px;}
.y97{bottom:330.330000px;}
.ye7{bottom:330.690000px;}
.y29{bottom:337.755000px;}
.y10d{bottom:341.535000px;}
.y63{bottom:341.715000px;}
.yd7{bottom:342.795000px;}
.y96{bottom:352.650000px;}
.y4b{bottom:353.775000px;}
.y28{bottom:358.455000px;}
.ye6{bottom:361.875000px;}
.y10c{bottom:368.175000px;}
.y62{bottom:372.675000px;}
.yd6{bottom:373.935000px;}
.y95{bottom:374.970000px;}
.y27{bottom:379.155000px;}
.y4a{bottom:384.735000px;}
.y10b{bottom:388.875000px;}
.ye5{bottom:392.835000px;}
.y94{bottom:397.290000px;}
.y26{bottom:399.855000px;}
.y61{bottom:403.815000px;}
.yd5{bottom:404.895000px;}
.y10a{bottom:409.575000px;}
.y49{bottom:415.875000px;}
.y93{bottom:419.610000px;}
.y25{bottom:420.555000px;}
.ye4{bottom:423.975000px;}
.y92{bottom:427.395000px;}
.ybe{bottom:429.015000px;}
.y109{bottom:430.275000px;}
.y60{bottom:434.775000px;}
.yd4{bottom:436.035000px;}
.y24{bottom:441.255000px;}
.y48{bottom:446.835000px;}
.y108{bottom:450.975000px;}
.ye3{bottom:454.935000px;}
.y23{bottom:461.955000px;}
.y5f{bottom:465.915000px;}
.yd3{bottom:466.995000px;}
.y107{bottom:477.615000px;}
.y47{bottom:477.975000px;}
.y22{bottom:482.655000px;}
.ye2{bottom:486.075000px;}
.y5e{bottom:496.875000px;}
.yd2{bottom:498.135000px;}
.y106{bottom:498.315000px;}
.y21{bottom:503.355000px;}
.y46{bottom:508.935000px;}
.ye1{bottom:517.035000px;}
.y105{bottom:519.015000px;}
.y20{bottom:524.055000px;}
.y5d{bottom:528.015000px;}
.yd1{bottom:529.095000px;}
.y104{bottom:539.715000px;}
.y45{bottom:540.075000px;}
.y129{bottom:543.135000px;}
.y1f{bottom:544.755000px;}
.ye0{bottom:548.175000px;}
.y5c{bottom:558.975000px;}
.yd0{bottom:560.235000px;}
.y1e{bottom:565.455000px;}
.y103{bottom:566.355000px;}
.y128{bottom:569.955000px;}
.y44{bottom:571.035000px;}
.yb0{bottom:575.715000px;}
.y7a{bottom:576.075000px;}
.ydf{bottom:579.135000px;}
.y1d{bottom:586.155000px;}
.y102{bottom:587.055000px;}
.y5b{bottom:590.115000px;}
.y127{bottom:590.655000px;}
.ycf{bottom:591.195000px;}
.y43{bottom:602.175000px;}
.y1c{bottom:606.885000px;}
.y101{bottom:607.785000px;}
.yde{bottom:610.305000px;}
.y126{bottom:611.385000px;}
.y5a{bottom:621.105000px;}
.yce{bottom:622.365000px;}
.y1b{bottom:627.585000px;}
.y100{bottom:628.485000px;}
.y125{bottom:632.085000px;}
.y42{bottom:633.165000px;}
.ydd{bottom:641.265000px;}
.y1a{bottom:648.285000px;}
.yee{bottom:652.245000px;}
.ycd{bottom:653.325000px;}
.yff{bottom:655.305000px;}
.y124{bottom:658.725000px;}
.y59{bottom:660.345000px;}
.y41{bottom:664.305000px;}
.y19{bottom:668.985000px;}
.ydc{bottom:672.405000px;}
.yfe{bottom:676.005000px;}
.y123{bottom:679.425000px;}
.yed{bottom:683.205000px;}
.ycc{bottom:684.465000px;}
.y18{bottom:689.685000px;}
.y40{bottom:695.265000px;}
.yfd{bottom:696.705000px;}
.y122{bottom:700.125000px;}
.y74{bottom:700.665000px;}
.y58{bottom:703.365000px;}
.y17{bottom:710.385000px;}
.ycb{bottom:715.425000px;}
.yfc{bottom:717.405000px;}
.y121{bottom:720.825000px;}
.yec{bottom:722.445000px;}
.y3f{bottom:726.405000px;}
.y16{bottom:731.085000px;}
.y57{bottom:734.505000px;}
.yfb{bottom:738.105000px;}
.y120{bottom:741.525000px;}
.yca{bottom:746.565000px;}
.y15{bottom:751.605000px;}
.y3e{bottom:757.365000px;}
.yfa{bottom:764.745000px;}
.y56{bottom:765.465000px;}
.y11f{bottom:768.165000px;}
.y14{bottom:772.305000px;}
.yc9{bottom:777.525000px;}
.yf9{bottom:785.445000px;}
.y3d{bottom:788.505000px;}
.y11e{bottom:788.865000px;}
.y13{bottom:793.005000px;}
.y55{bottom:796.605000px;}
.yf8{bottom:806.145000px;}
.yc8{bottom:808.665000px;}
.y11d{bottom:809.565000px;}
.y12{bottom:813.705000px;}
.y3c{bottom:815.685000px;}
.y6d{bottom:825.045000px;}
.yf7{bottom:826.845000px;}
.y54{bottom:827.565000px;}
.y11{bottom:834.405000px;}
.y11c{bottom:836.205000px;}
.yc7{bottom:839.625000px;}
.yf6{bottom:847.545000px;}
.y3b{bottom:848.265000px;}
.y10{bottom:855.105000px;}
.y11b{bottom:856.905000px;}
.y53{bottom:858.705000px;}
.y8b{bottom:864.465000px;}
.y3a{bottom:868.965000px;}
.yc6{bottom:870.810000px;}
.yf5{bottom:874.230000px;}
.yf{bottom:875.850000px;}
.y11a{bottom:877.650000px;}
.ya4{bottom:878.910000px;}
.y39{bottom:889.710000px;}
.yf4{bottom:894.930000px;}
.ye{bottom:896.550000px;}
.y119{bottom:898.350000px;}
.yc5{bottom:901.770000px;}
.y38{bottom:910.410000px;}
.yf3{bottom:915.630000px;}
.yd{bottom:917.250000px;}
.y118{bottom:919.050000px;}
.y52{bottom:920.850000px;}
.yc4{bottom:928.410000px;}
.y37{bottom:931.110000px;}
.yf2{bottom:936.330000px;}
.yc{bottom:939.390000px;}
.y117{bottom:939.750000px;}
.ydb{bottom:946.050000px;}
.y36{bottom:951.810000px;}
.yf1{bottom:957.030000px;}
.y116{bottom:966.570000px;}
.yb{bottom:966.930000px;}
.y6b{bottom:971.790000px;}
.y35{bottom:972.510000px;}
.y51{bottom:982.950000px;}
.yf0{bottom:983.850000px;}
.y115{bottom:987.270000px;}
.y34{bottom:993.210000px;}
.ya{bottom:994.470000px;}
.yef{bottom:1004.550000px;}
.y114{bottom:1007.970000px;}
.y8a{bottom:1013.010000px;}
.y33{bottom:1013.910000px;}
.y9{bottom:1022.190000px;}
.y6a{bottom:1025.250000px;}
.y113{bottom:1028.670000px;}
.y32{bottom:1034.610000px;}
.y50{bottom:1045.050000px;}
.y69{bottom:1045.950000px;}
.y8{bottom:1049.730000px;}
.y31{bottom:1055.310000px;}
.y68{bottom:1073.130000px;}
.y7{bottom:1076.010000px;}
.y1{bottom:1233.900000px;}
.h7{height:42.660000px;}
.h5{height:54.878906px;}
.h3{height:59.383125px;}
.h2{height:64.546875px;}
.h6{height:74.820586px;}
.hd{height:79.020000px;}
.h4{height:85.052461px;}
.h15{height:101.340000px;}
.h14{height:103.176000px;}
.h9{height:123.660000px;}
.ha{height:123.696000px;}
.h13{height:145.980000px;}
.h8{height:146.016000px;}
.he{height:147.816000px;}
.hc{height:178.770000px;}
.hb{height:190.620000px;}
.h10{height:190.650000px;}
.h11{height:213.120000px;}
.h12{height:302.475000px;}
.hf{height:436.350000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:52.380000px;}
.w4{width:105.696000px;}
.w6{width:190.470000px;}
.w3{width:211.530000px;}
.w7{width:275.835000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:8.100000px;}
.x1f{left:9.180000px;}
.xb{left:10.620000px;}
.x13{left:12.060000px;}
.x29{left:13.140000px;}
.x15{left:14.940000px;}
.x12{left:16.380000px;}
.x10{left:18.000000px;}
.x16{left:19.260000px;}
.x24{left:20.340000px;}
.x26{left:22.140000px;}
.x1e{left:23.220000px;}
.x28{left:24.480000px;}
.x22{left:26.100000px;}
.x21{left:27.360000px;}
.x2e{left:28.980000px;}
.x1c{left:30.060000px;}
.x7{left:31.860000px;}
.x31{left:33.840000px;}
.x32{left:35.100000px;}
.x27{left:36.360000px;}
.xf{left:37.620000px;}
.x18{left:38.700000px;}
.x30{left:40.140000px;}
.x25{left:42.885000px;}
.x2a{left:44.640000px;}
.x2b{left:45.900000px;}
.x2d{left:47.700000px;}
.x11{left:48.960000px;}
.x3d{left:50.040000px;}
.x19{left:52.380000px;}
.x2f{left:53.820000px;}
.x3c{left:55.260000px;}
.x1d{left:56.340000px;}
.x33{left:57.420000px;}
.x1a{left:60.120000px;}
.x35{left:62.316000px;}
.xd{left:63.570000px;}
.x36{left:65.196000px;}
.x23{left:67.170000px;}
.x1b{left:71.685000px;}
.x20{left:74.565000px;}
.x37{left:76.905000px;}
.x3b{left:79.776000px;}
.x8{left:83.736000px;}
.x3a{left:86.070000px;}
.x38{left:88.056000px;}
.x2c{left:92.925000px;}
.x14{left:96.696000px;}
.x34{left:104.625000px;}
.x4{left:106.415987px;}
.x39{left:109.665000px;}
.x2{left:148.895987px;}
.x9{left:244.110000px;}
.x6{left:246.809987px;}
.x5{left:258.329987px;}
.xa{left:350.535000px;}
.xc{left:403.815000px;}
.x1{left:467.744987px;}
.xe{left:595.005000px;}
.x3{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls4{letter-spacing:57.263360pt;}
.ws0{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws5{word-spacing:-16.640000pt;}
.ws6{word-spacing:-16.256000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws2{word-spacing:0.000000pt;}
._f{margin-left:-4.615680pt;}
._2{margin-left:-3.709440pt;}
._1{margin-left:-2.414080pt;}
._0{margin-left:-1.295360pt;}
._3{width:1.000960pt;}
._8{width:1.962667pt;}
._9{width:2.944000pt;}
._a{width:4.480000pt;}
._6{width:5.568000pt;}
._7{width:6.720000pt;}
._10{width:7.616000pt;}
._14{width:8.949760pt;}
._d{width:10.154667pt;}
._b{width:11.392000pt;}
._4{width:12.597760pt;}
._5{width:13.704320pt;}
._c{width:14.919040pt;}
._13{width:17.310720pt;}
._e{width:18.368000pt;}
._16{width:19.904000pt;}
._17{width:21.056000pt;}
._15{width:23.488000pt;}
._11{width:25.728000pt;}
._12{width:26.734080pt;}
._2b{width:27.840000pt;}
._2a{width:29.007360pt;}
._1a{width:33.408000pt;}
._18{width:34.688000pt;}
._19{width:35.758080pt;}
._28{width:43.520000pt;}
._29{width:44.544000pt;}
._24{width:46.604800pt;}
._20{width:49.130667pt;}
._1f{width:59.456000pt;}
._23{width:68.992000pt;}
._22{width:75.786667pt;}
._1c{width:104.192000pt;}
._1e{width:110.528000pt;}
._1d{width:111.808000pt;}
._25{width:137.664000pt;}
._26{width:138.775040pt;}
._21{width:158.976000pt;}
._27{width:199.616000pt;}
._2c{width:389.184000pt;}
._1b{width:752.138667pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:4.960000pt;}
.y78{bottom:15.520000pt;}
.y73{bottom:15.680000pt;}
.y91{bottom:15.720000pt;}
.yc2{bottom:17.160000pt;}
.y6c{bottom:23.040000pt;}
.y88{bottom:24.800000pt;}
.yac{bottom:24.960000pt;}
.y9e{bottom:35.360000pt;}
.y72{bottom:35.520000pt;}
.y7e{bottom:35.546667pt;}
.yc1{bottom:37.000000pt;}
.y87{bottom:44.640000pt;}
.yab{bottom:44.800000pt;}
.y90{bottom:46.280000pt;}
.y77{bottom:55.360000pt;}
.y7d{bottom:55.386667pt;}
.y71{bottom:55.400000pt;}
.y8f{bottom:56.840000pt;}
.yc0{bottom:57.000000pt;}
.y79{bottom:64.480000pt;}
.yaa{bottom:64.640000pt;}
.y6{bottom:72.992000pt;}
.y76{bottom:75.200000pt;}
.y7c{bottom:75.226667pt;}
.y70{bottom:75.240000pt;}
.y8e{bottom:76.840000pt;}
.y86{bottom:84.320000pt;}
.ya9{bottom:84.480000pt;}
.y5{bottom:91.392000pt;}
.y75{bottom:95.040000pt;}
.y7b{bottom:95.066667pt;}
.y6f{bottom:95.080000pt;}
.y8d{bottom:96.680000pt;}
.y85{bottom:104.160000pt;}
.ya8{bottom:104.320000pt;}
.ya2{bottom:104.360000pt;}
.y4{bottom:114.752000pt;}
.y81{bottom:114.880000pt;}
.ybd{bottom:114.906667pt;}
.y6e{bottom:114.920000pt;}
.yaf{bottom:115.040000pt;}
.y8c{bottom:116.520000pt;}
.y84{bottom:124.040000pt;}
.ya7{bottom:124.160000pt;}
.yb6{bottom:124.186667pt;}
.ya1{bottom:124.200000pt;}
.y80{bottom:134.720000pt;}
.ya3{bottom:134.760000pt;}
.yae{bottom:134.880000pt;}
.ybc{bottom:134.906667pt;}
.y3{bottom:136.986667pt;}
.ya6{bottom:144.000000pt;}
.yb5{bottom:144.026667pt;}
.y83{bottom:144.040000pt;}
.y2{bottom:153.946667pt;}
.y7f{bottom:154.560000pt;}
.ya0{bottom:154.600000pt;}
.yad{bottom:154.720000pt;}
.ybb{bottom:154.746667pt;}
.yb4{bottom:163.866667pt;}
.y30{bottom:171.386667pt;}
.y9d{bottom:174.426667pt;}
.ya5{bottom:174.560000pt;}
.yba{bottom:174.586667pt;}
.y82{bottom:182.426667pt;}
.yeb{bottom:183.546667pt;}
.yb3{bottom:183.706667pt;}
.y2f{bottom:189.786667pt;}
.y67{bottom:193.306667pt;}
.y9c{bottom:194.266667pt;}
.yb9{bottom:194.426667pt;}
.yc3{bottom:198.266667pt;}
.yb2{bottom:203.546667pt;}
.y4f{bottom:204.026667pt;}
.y112{bottom:206.106667pt;}
.y2e{bottom:208.186667pt;}
.y9f{bottom:209.626667pt;}
.yea{bottom:211.226667pt;}
.y9b{bottom:214.106667pt;}
.yb8{bottom:214.266667pt;}
.y66{bottom:220.826667pt;}
.yda{bottom:221.946667pt;}
.yb1{bottom:223.386667pt;}
.y111{bottom:224.506667pt;}
.y2d{bottom:226.586667pt;}
.y4e{bottom:231.546667pt;}
.y9a{bottom:233.946667pt;}
.yb7{bottom:234.106667pt;}
.ye9{bottom:238.746667pt;}
.y2c{bottom:244.986667pt;}
.y110{bottom:248.346667pt;}
.y65{bottom:248.506667pt;}
.yd9{bottom:249.466667pt;}
.y99{bottom:253.946667pt;}
.y4d{bottom:259.226667pt;}
.y2b{bottom:263.386667pt;}
.ye8{bottom:266.426667pt;}
.y10f{bottom:266.746667pt;}
.y98{bottom:273.786667pt;}
.y64{bottom:276.026667pt;}
.yd8{bottom:277.146667pt;}
.y2a{bottom:281.786667pt;}
.y10e{bottom:285.146667pt;}
.y4c{bottom:286.746667pt;}
.ybf{bottom:288.986667pt;}
.y97{bottom:293.626667pt;}
.ye7{bottom:293.946667pt;}
.y29{bottom:300.226667pt;}
.y10d{bottom:303.586667pt;}
.y63{bottom:303.746667pt;}
.yd7{bottom:304.706667pt;}
.y96{bottom:313.466667pt;}
.y4b{bottom:314.466667pt;}
.y28{bottom:318.626667pt;}
.ye6{bottom:321.666667pt;}
.y10c{bottom:327.266667pt;}
.y62{bottom:331.266667pt;}
.yd6{bottom:332.386667pt;}
.y95{bottom:333.306667pt;}
.y27{bottom:337.026667pt;}
.y4a{bottom:341.986667pt;}
.y10b{bottom:345.666667pt;}
.ye5{bottom:349.186667pt;}
.y94{bottom:353.146667pt;}
.y26{bottom:355.426667pt;}
.y61{bottom:358.946667pt;}
.yd5{bottom:359.906667pt;}
.y10a{bottom:364.066667pt;}
.y49{bottom:369.666667pt;}
.y93{bottom:372.986667pt;}
.y25{bottom:373.826667pt;}
.ye4{bottom:376.866667pt;}
.y92{bottom:379.906667pt;}
.ybe{bottom:381.346667pt;}
.y109{bottom:382.466667pt;}
.y60{bottom:386.466667pt;}
.yd4{bottom:387.586667pt;}
.y24{bottom:392.226667pt;}
.y48{bottom:397.186667pt;}
.y108{bottom:400.866667pt;}
.ye3{bottom:404.386667pt;}
.y23{bottom:410.626667pt;}
.y5f{bottom:414.146667pt;}
.yd3{bottom:415.106667pt;}
.y107{bottom:424.546667pt;}
.y47{bottom:424.866667pt;}
.y22{bottom:429.026667pt;}
.ye2{bottom:432.066667pt;}
.y5e{bottom:441.666667pt;}
.yd2{bottom:442.786667pt;}
.y106{bottom:442.946667pt;}
.y21{bottom:447.426667pt;}
.y46{bottom:452.386667pt;}
.ye1{bottom:459.586667pt;}
.y105{bottom:461.346667pt;}
.y20{bottom:465.826667pt;}
.y5d{bottom:469.346667pt;}
.yd1{bottom:470.306667pt;}
.y104{bottom:479.746667pt;}
.y45{bottom:480.066667pt;}
.y129{bottom:482.786667pt;}
.y1f{bottom:484.226667pt;}
.ye0{bottom:487.266667pt;}
.y5c{bottom:496.866667pt;}
.yd0{bottom:497.986667pt;}
.y1e{bottom:502.626667pt;}
.y103{bottom:503.426667pt;}
.y128{bottom:506.626667pt;}
.y44{bottom:507.586667pt;}
.yb0{bottom:511.746667pt;}
.y7a{bottom:512.066667pt;}
.ydf{bottom:514.786667pt;}
.y1d{bottom:521.026667pt;}
.y102{bottom:521.826667pt;}
.y5b{bottom:524.546667pt;}
.y127{bottom:525.026667pt;}
.ycf{bottom:525.506667pt;}
.y43{bottom:535.266667pt;}
.y1c{bottom:539.453333pt;}
.y101{bottom:540.253333pt;}
.yde{bottom:542.493333pt;}
.y126{bottom:543.453333pt;}
.y5a{bottom:552.093333pt;}
.yce{bottom:553.213333pt;}
.y1b{bottom:557.853333pt;}
.y100{bottom:558.653333pt;}
.y125{bottom:561.853333pt;}
.y42{bottom:562.813333pt;}
.ydd{bottom:570.013333pt;}
.y1a{bottom:576.253333pt;}
.yee{bottom:579.773333pt;}
.ycd{bottom:580.733333pt;}
.yff{bottom:582.493333pt;}
.y124{bottom:585.533333pt;}
.y59{bottom:586.973333pt;}
.y41{bottom:590.493333pt;}
.y19{bottom:594.653333pt;}
.ydc{bottom:597.693333pt;}
.yfe{bottom:600.893333pt;}
.y123{bottom:603.933333pt;}
.yed{bottom:607.293333pt;}
.ycc{bottom:608.413333pt;}
.y18{bottom:613.053333pt;}
.y40{bottom:618.013333pt;}
.yfd{bottom:619.293333pt;}
.y122{bottom:622.333333pt;}
.y74{bottom:622.813333pt;}
.y58{bottom:625.213333pt;}
.y17{bottom:631.453333pt;}
.ycb{bottom:635.933333pt;}
.yfc{bottom:637.693333pt;}
.y121{bottom:640.733333pt;}
.yec{bottom:642.173333pt;}
.y3f{bottom:645.693333pt;}
.y16{bottom:649.853333pt;}
.y57{bottom:652.893333pt;}
.yfb{bottom:656.093333pt;}
.y120{bottom:659.133333pt;}
.yca{bottom:663.613333pt;}
.y15{bottom:668.093333pt;}
.y3e{bottom:673.213333pt;}
.yfa{bottom:679.773333pt;}
.y56{bottom:680.413333pt;}
.y11f{bottom:682.813333pt;}
.y14{bottom:686.493333pt;}
.yc9{bottom:691.133333pt;}
.yf9{bottom:698.173333pt;}
.y3d{bottom:700.893333pt;}
.y11e{bottom:701.213333pt;}
.y13{bottom:704.893333pt;}
.y55{bottom:708.093333pt;}
.yf8{bottom:716.573333pt;}
.yc8{bottom:718.813333pt;}
.y11d{bottom:719.613333pt;}
.y12{bottom:723.293333pt;}
.y3c{bottom:725.053333pt;}
.y6d{bottom:733.373333pt;}
.yf7{bottom:734.973333pt;}
.y54{bottom:735.613333pt;}
.y11{bottom:741.693333pt;}
.y11c{bottom:743.293333pt;}
.yc7{bottom:746.333333pt;}
.yf6{bottom:753.373333pt;}
.y3b{bottom:754.013333pt;}
.y10{bottom:760.093333pt;}
.y11b{bottom:761.693333pt;}
.y53{bottom:763.293333pt;}
.y8b{bottom:768.413333pt;}
.y3a{bottom:772.413333pt;}
.yc6{bottom:774.053333pt;}
.yf5{bottom:777.093333pt;}
.yf{bottom:778.533333pt;}
.y11a{bottom:780.133333pt;}
.ya4{bottom:781.253333pt;}
.y39{bottom:790.853333pt;}
.yf4{bottom:795.493333pt;}
.ye{bottom:796.933333pt;}
.y119{bottom:798.533333pt;}
.yc5{bottom:801.573333pt;}
.y38{bottom:809.253333pt;}
.yf3{bottom:813.893333pt;}
.yd{bottom:815.333333pt;}
.y118{bottom:816.933333pt;}
.y52{bottom:818.533333pt;}
.yc4{bottom:825.253333pt;}
.y37{bottom:827.653333pt;}
.yf2{bottom:832.293333pt;}
.yc{bottom:835.013333pt;}
.y117{bottom:835.333333pt;}
.ydb{bottom:840.933333pt;}
.y36{bottom:846.053333pt;}
.yf1{bottom:850.693333pt;}
.y116{bottom:859.173333pt;}
.yb{bottom:859.493333pt;}
.y6b{bottom:863.813333pt;}
.y35{bottom:864.453333pt;}
.y51{bottom:873.733333pt;}
.yf0{bottom:874.533333pt;}
.y115{bottom:877.573333pt;}
.y34{bottom:882.853333pt;}
.ya{bottom:883.973333pt;}
.yef{bottom:892.933333pt;}
.y114{bottom:895.973333pt;}
.y8a{bottom:900.453333pt;}
.y33{bottom:901.253333pt;}
.y9{bottom:908.613333pt;}
.y6a{bottom:911.333333pt;}
.y113{bottom:914.373333pt;}
.y32{bottom:919.653333pt;}
.y50{bottom:928.933333pt;}
.y69{bottom:929.733333pt;}
.y8{bottom:933.093333pt;}
.y31{bottom:938.053333pt;}
.y68{bottom:953.893333pt;}
.y7{bottom:956.453333pt;}
.y1{bottom:1096.800000pt;}
.h7{height:37.920000pt;}
.h5{height:48.781250pt;}
.h3{height:52.785000pt;}
.h2{height:57.375000pt;}
.h6{height:66.507188pt;}
.hd{height:70.240000pt;}
.h4{height:75.602187pt;}
.h15{height:90.080000pt;}
.h14{height:91.712000pt;}
.h9{height:109.920000pt;}
.ha{height:109.952000pt;}
.h13{height:129.760000pt;}
.h8{height:129.792000pt;}
.he{height:131.392000pt;}
.hc{height:158.906667pt;}
.hb{height:169.440000pt;}
.h10{height:169.466667pt;}
.h11{height:189.440000pt;}
.h12{height:268.866667pt;}
.hf{height:387.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:46.560000pt;}
.w4{width:93.952000pt;}
.w6{width:169.306667pt;}
.w3{width:188.026667pt;}
.w7{width:245.186667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:7.200000pt;}
.x1f{left:8.160000pt;}
.xb{left:9.440000pt;}
.x13{left:10.720000pt;}
.x29{left:11.680000pt;}
.x15{left:13.280000pt;}
.x12{left:14.560000pt;}
.x10{left:16.000000pt;}
.x16{left:17.120000pt;}
.x24{left:18.080000pt;}
.x26{left:19.680000pt;}
.x1e{left:20.640000pt;}
.x28{left:21.760000pt;}
.x22{left:23.200000pt;}
.x21{left:24.320000pt;}
.x2e{left:25.760000pt;}
.x1c{left:26.720000pt;}
.x7{left:28.320000pt;}
.x31{left:30.080000pt;}
.x32{left:31.200000pt;}
.x27{left:32.320000pt;}
.xf{left:33.440000pt;}
.x18{left:34.400000pt;}
.x30{left:35.680000pt;}
.x25{left:38.120000pt;}
.x2a{left:39.680000pt;}
.x2b{left:40.800000pt;}
.x2d{left:42.400000pt;}
.x11{left:43.520000pt;}
.x3d{left:44.480000pt;}
.x19{left:46.560000pt;}
.x2f{left:47.840000pt;}
.x3c{left:49.120000pt;}
.x1d{left:50.080000pt;}
.x33{left:51.040000pt;}
.x1a{left:53.440000pt;}
.x35{left:55.392000pt;}
.xd{left:56.506667pt;}
.x36{left:57.952000pt;}
.x23{left:59.706667pt;}
.x1b{left:63.720000pt;}
.x20{left:66.280000pt;}
.x37{left:68.360000pt;}
.x3b{left:70.912000pt;}
.x8{left:74.432000pt;}
.x3a{left:76.506667pt;}
.x38{left:78.272000pt;}
.x2c{left:82.600000pt;}
.x14{left:85.952000pt;}
.x34{left:93.000000pt;}
.x4{left:94.591988pt;}
.x39{left:97.480000pt;}
.x2{left:132.351988pt;}
.x9{left:216.986667pt;}
.x6{left:219.386655pt;}
.x5{left:229.626655pt;}
.xa{left:311.586667pt;}
.xc{left:358.946667pt;}
.x1{left:415.773322pt;}
.xe{left:528.893333pt;}
.x3{left:699.333322pt;}
}




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