
    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_589d7cd1edc5697a84d66047.woff')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_260eccef6862ebb52a39f465.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_18e47bf1926980fa384d8cce.woff')format("woff");}.ff3{font-family:ff3;line-height:0.939941;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_cd2f51afd211247f054cd511.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')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_8da0b9bcbbb9a963334e0e36.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_9e743c97066a777fec29e26a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_42f12a990a7547e8a8596980.woff')format("woff");}.ff8{font-family:ff8;line-height:0.999512;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_5577bcdbd753407ad14b4af7.woff')format("woff");}.ff9{font-family:ff9;line-height:0.999512;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;}
.lse{letter-spacing:-0.924000px;}
.ls10{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.900000px;}
.lsd{letter-spacing:4.500000px;}
.lsc{letter-spacing:16.506720px;}
.lsb{letter-spacing:46.026720px;}
.ls4{letter-spacing:71.460000px;}
.ls6{letter-spacing:188.820000px;}
.ls7{letter-spacing:253.620000px;}
.ls5{letter-spacing:993.360000px;}
.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;}
}
.ws2{word-spacing:-24.300000px;}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.733600px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._29{margin-left:-7.450080px;}
._b{margin-left:-6.321120px;}
._12{margin-left:-4.509840px;}
._23{margin-left:-3.472320px;}
._10{margin-left:-2.384880px;}
._0{margin-left:-1.080000px;}
._11{width:1.149120px;}
._1{width:2.220000px;}
._15{width:3.649680px;}
._16{width:4.901040px;}
._17{width:5.901840px;}
._14{width:7.052880px;}
._13{width:9.031440px;}
._6{width:10.800000px;}
._1d{width:12.191040px;}
._1c{width:13.326480px;}
._1b{width:16.314480px;}
._26{width:17.569440px;}
._21{width:19.780560px;}
._22{width:21.036000px;}
._20{width:22.051440px;}
._1a{width:23.356800px;}
._18{width:27.668880px;}
._19{width:33.405840px;}
._1e{width:51.977520px;}
._25{width:55.337760px;}
._7{width:76.284960px;}
._27{width:80.377200px;}
._28{width:81.379440px;}
._24{width:85.443120px;}
._8{width:154.080000px;}
._d{width:195.120000px;}
._2{width:255.512640px;}
._1f{width:322.869600px;}
._3{width:357.300000px;}
._5{width:436.440000px;}
._4{width:443.166240px;}
._9{width:604.364160px;}
._e{width:653.880000px;}
._f{width:703.560000px;}
._a{width:1096.860000px;}
._c{width:1176.060000px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:5.760000px;}
.yab{bottom:5.940000px;}
.ye{bottom:6.300000px;}
.y3b{bottom:6.660000px;}
.yc3{bottom:7.770000px;}
.y60{bottom:7.920000px;}
.y48{bottom:10.260000px;}
.y6{bottom:12.420000px;}
.yb3{bottom:12.780000px;}
.ya9{bottom:12.960000px;}
.yb5{bottom:13.140000px;}
.yb1{bottom:13.320000px;}
.ya7{bottom:14.220000px;}
.yae{bottom:15.840000px;}
.y37{bottom:17.820000px;}
.y56{bottom:18.000000px;}
.y8{bottom:18.180000px;}
.ya3{bottom:20.880000px;}
.ya1{bottom:21.060000px;}
.y41{bottom:21.600000px;}
.y6b{bottom:25.560000px;}
.yaf{bottom:25.920000px;}
.y3a{bottom:26.490000px;}
.y5f{bottom:27.720000px;}
.y47{bottom:30.240000px;}
.yc{bottom:38.520000px;}
.y5{bottom:40.320000px;}
.y40{bottom:41.400000px;}
.y74{bottom:44.130000px;}
.y6a{bottom:45.540000px;}
.y39{bottom:46.290000px;}
.y5e{bottom:47.520000px;}
.y46{bottom:50.040000px;}
.yb{bottom:60.300000px;}
.y3f{bottom:61.380000px;}
.y73{bottom:63.930000px;}
.y69{bottom:65.340000px;}
.y5d{bottom:67.500000px;}
.y4{bottom:68.400000px;}
.y45{bottom:69.840000px;}
.yd{bottom:77.940000px;}
.y3e{bottom:81.180000px;}
.ya{bottom:81.900000px;}
.y72{bottom:83.730000px;}
.y68{bottom:85.185000px;}
.y5c{bottom:87.300000px;}
.y44{bottom:89.640000px;}
.y3{bottom:96.330000px;}
.y3d{bottom:100.980000px;}
.y71{bottom:103.530000px;}
.y67{bottom:104.985000px;}
.yc1{bottom:105.840000px;}
.y5b{bottom:107.100000px;}
.y43{bottom:109.485000px;}
.ydc{bottom:109.620000px;}
.y8f{bottom:114.840000px;}
.yfe{bottom:116.460000px;}
.y50{bottom:120.810000px;}
.y70{bottom:123.330000px;}
.y66{bottom:124.785000px;}
.yc0{bottom:125.640000px;}
.y2{bottom:125.670000px;}
.y5a{bottom:126.900000px;}
.y38{bottom:128.700000px;}
.ydb{bottom:129.420000px;}
.y8e{bottom:134.820000px;}
.yfd{bottom:135.720000px;}
.y4f{bottom:140.610000px;}
.y6f{bottom:143.310000px;}
.y65{bottom:144.765000px;}
.ybf{bottom:145.440000px;}
.y59{bottom:146.700000px;}
.yda{bottom:149.220000px;}
.y8d{bottom:154.650000px;}
.yfc{bottom:155.010000px;}
.y4e{bottom:160.590000px;}
.y6e{bottom:163.110000px;}
.y64{bottom:164.565000px;}
.ybe{bottom:165.450000px;}
.y58{bottom:166.725000px;}
.yd9{bottom:169.050000px;}
.y8c{bottom:174.450000px;}
.yfb{bottom:177.150000px;}
.y4d{bottom:180.390000px;}
.y63{bottom:184.365000px;}
.ybd{bottom:185.250000px;}
.yd8{bottom:188.850000px;}
.y36{bottom:191.010000px;}
.y8b{bottom:194.250000px;}
.yfa{bottom:196.950000px;}
.y4c{bottom:200.190000px;}
.ybc{bottom:202.530000px;}
.y62{bottom:204.165000px;}
.yd7{bottom:208.830000px;}
.y8a{bottom:214.050000px;}
.yf9{bottom:216.750000px;}
.y4b{bottom:219.990000px;}
.ybb{bottom:222.330000px;}
.yd6{bottom:228.630000px;}
.y35{bottom:230.610000px;}
.y89{bottom:234.030000px;}
.yf8{bottom:236.550000px;}
.yba{bottom:238.890000px;}
.y4a{bottom:239.790000px;}
.yc2{bottom:246.780000px;}
.yd5{bottom:248.430000px;}
.y57{bottom:249.510000px;}
.y34{bottom:250.410000px;}
.y88{bottom:253.830000px;}
.yf7{bottom:256.530000px;}
.yd4{bottom:268.230000px;}
.y33{bottom:270.210000px;}
.y87{bottom:273.630000px;}
.yf6{bottom:276.330000px;}
.yb9{bottom:285.150000px;}
.yd3{bottom:288.030000px;}
.y32{bottom:290.010000px;}
.y86{bottom:293.430000px;}
.yf5{bottom:296.130000px;}
.yb8{bottom:299.730000px;}
.yd2{bottom:308.010000px;}
.y31{bottom:309.810000px;}
.y85{bottom:313.230000px;}
.yf4{bottom:315.930000px;}
.yb7{bottom:327.090000px;}
.yd1{bottom:327.810000px;}
.y30{bottom:329.790000px;}
.y84{bottom:333.210000px;}
.yf3{bottom:335.730000px;}
.yd0{bottom:345.090000px;}
.y2f{bottom:349.590000px;}
.y83{bottom:353.010000px;}
.yb6{bottom:354.630000px;}
.yf2{bottom:355.710000px;}
.ycf{bottom:364.890000px;}
.y2e{bottom:369.390000px;}
.y82{bottom:372.810000px;}
.yf1{bottom:375.510000px;}
.yb4{bottom:381.810000px;}
.yce{bottom:384.690000px;}
.y2d{bottom:389.190000px;}
.y81{bottom:392.610000px;}
.yf0{bottom:395.310000px;}
.ycd{bottom:404.535000px;}
.y2c{bottom:409.035000px;}
.yb2{bottom:409.395000px;}
.y80{bottom:412.455000px;}
.yef{bottom:415.155000px;}
.ycc{bottom:424.335000px;}
.y2b{bottom:429.015000px;}
.y55{bottom:432.075000px;}
.y7f{bottom:432.435000px;}
.yee{bottom:434.955000px;}
.yb0{bottom:436.575000px;}
.ycb{bottom:444.315000px;}
.y2a{bottom:448.815000px;}
.y7e{bottom:452.235000px;}
.yed{bottom:454.935000px;}
.yca{bottom:464.115000px;}
.yad{bottom:464.295000px;}
.y29{bottom:468.615000px;}
.y54{bottom:471.855000px;}
.y7d{bottom:472.035000px;}
.yec{bottom:474.735000px;}
.yc9{bottom:483.915000px;}
.y28{bottom:488.415000px;}
.y53{bottom:491.655000px;}
.y7c{bottom:491.835000px;}
.yeb{bottom:494.535000px;}
.yc8{bottom:503.715000px;}
.yac{bottom:504.615000px;}
.y27{bottom:508.215000px;}
.y52{bottom:511.455000px;}
.y7b{bottom:511.635000px;}
.yea{bottom:514.335000px;}
.yc7{bottom:523.515000px;}
.y26{bottom:528.195000px;}
.y51{bottom:531.255000px;}
.y7a{bottom:531.615000px;}
.yaa{bottom:531.975000px;}
.ye9{bottom:534.135000px;}
.yc6{bottom:540.795000px;}
.y49{bottom:546.015000px;}
.y25{bottom:547.995000px;}
.y79{bottom:551.415000px;}
.ye8{bottom:554.115000px;}
.ya8{bottom:559.335000px;}
.yc5{bottom:560.595000px;}
.y24{bottom:567.795000px;}
.y78{bottom:571.215000px;}
.ye7{bottom:573.915000px;}
.yc4{bottom:574.635000px;}
.ya6{bottom:586.875000px;}
.y23{bottom:587.595000px;}
.y77{bottom:591.015000px;}
.ye6{bottom:593.715000px;}
.y22{bottom:607.395000px;}
.y76{bottom:610.815000px;}
.ye5{bottom:613.515000px;}
.ya5{bottom:623.235000px;}
.y21{bottom:627.375000px;}
.y75{bottom:630.795000px;}
.ye4{bottom:633.315000px;}
.ya4{bottom:643.035000px;}
.y6d{bottom:645.555000px;}
.y20{bottom:647.175000px;}
.ye3{bottom:653.325000px;}
.ya2{bottom:657.105000px;}
.y1f{bottom:667.005000px;}
.ye2{bottom:673.125000px;}
.y1e{bottom:686.805000px;}
.ya0{bottom:692.745000px;}
.ye1{bottom:692.925000px;}
.y1d{bottom:706.605000px;}
.ye0{bottom:712.725000px;}
.y1c{bottom:726.585000px;}
.ydf{bottom:732.525000px;}
.y9f{bottom:735.225000px;}
.y1b{bottom:746.385000px;}
.yde{bottom:752.505000px;}
.y9e{bottom:755.025000px;}
.y1a{bottom:766.185000px;}
.ydd{bottom:772.305000px;}
.y9d{bottom:774.825000px;}
.y19{bottom:785.985000px;}
.y9c{bottom:792.105000px;}
.y42{bottom:801.825000px;}
.y18{bottom:805.785000px;}
.y9b{bottom:811.905000px;}
.y61{bottom:824.325000px;}
.y17{bottom:825.765000px;}
.y9a{bottom:831.705000px;}
.y16{bottom:845.565000px;}
.y99{bottom:851.685000px;}
.y15{bottom:865.365000px;}
.y98{bottom:871.485000px;}
.y14{bottom:885.165000px;}
.y97{bottom:891.285000px;}
.y13{bottom:905.010000px;}
.y96{bottom:911.130000px;}
.y12{bottom:925.530000px;}
.y3c{bottom:927.330000px;}
.y95{bottom:930.930000px;}
.y11{bottom:947.310000px;}
.y94{bottom:950.910000px;}
.y93{bottom:970.710000px;}
.y10{bottom:972.150000px;}
.y92{bottom:990.510000px;}
.yf{bottom:1003.830000px;}
.y91{bottom:1010.310000px;}
.y90{bottom:1030.110000px;}
.y9{bottom:1047.570000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h7{height:2.581875px;}
.ha{height:21.780000px;}
.h1e{height:22.140000px;}
.h1c{height:26.820000px;}
.h19{height:27.000000px;}
.h1d{height:27.216000px;}
.h1b{height:27.360000px;}
.h18{height:28.260000px;}
.hd{height:31.860000px;}
.h12{height:32.040000px;}
.h8{height:33.480000px;}
.h17{height:34.920000px;}
.h16{height:35.100000px;}
.h1a{height:39.960000px;}
.hc{height:43.273477px;}
.h1f{height:45.024258px;}
.h4{height:47.965781px;}
.h5{height:53.573906px;}
.h9{height:59.383125px;}
.he{height:60.336000px;}
.h3{height:65.170898px;}
.hb{height:69.341836px;}
.h6{height:112.536000px;}
.hf{height:115.020000px;}
.h10{height:123.516000px;}
.h2{height:146.736000px;}
.h15{height:177.150000px;}
.h13{height:180.750000px;}
.h14{height:218.190000px;}
.h11{height:253.830000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w17{width:5.040000px;}
.w18{width:5.220000px;}
.w5{width:9.900000px;}
.w1a{width:10.080000px;}
.w1b{width:10.260000px;}
.w19{width:19.980000px;}
.w1c{width:20.160000px;}
.w14{width:38.340000px;}
.wa{width:62.460000px;}
.w9{width:75.636000px;}
.w12{width:94.176000px;}
.w15{width:101.016000px;}
.w6{width:120.276000px;}
.w3{width:131.796000px;}
.wd{width:138.096000px;}
.w13{width:144.756000px;}
.w10{width:144.936000px;}
.wb{width:164.190000px;}
.w7{width:180.030000px;}
.wf{width:181.470000px;}
.we{width:192.990000px;}
.w11{width:392.475000px;}
.w16{width:393.660000px;}
.wc{width:465.225000px;}
.w8{width:467.385000px;}
.w2{width:654.630000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:4.320000px;}
.x2{left:8.100000px;}
.x16{left:29.700000px;}
.x15{left:45.900000px;}
.x1{left:53.280000px;}
.x6{left:64.619987px;}
.xf{left:70.019987px;}
.xb{left:72.000000px;}
.x1c{left:75.420000px;}
.x2b{left:80.999987px;}
.x2c{left:108.035987px;}
.x4{left:118.290000px;}
.x7{left:133.055987px;}
.x10{left:147.636000px;}
.x12{left:186.690000px;}
.xc{left:192.990000px;}
.x11{left:210.810000px;}
.xa{left:345.494987px;}
.x1d{left:371.520000px;}
.xd{left:373.755000px;}
.x9{left:376.274987px;}
.x13{left:380.415000px;}
.x17{left:438.555000px;}
.x8{left:443.774987px;}
.x1f{left:480.060000px;}
.x1e{left:495.000000px;}
.x20{left:498.420000px;}
.x21{left:505.980000px;}
.x18{left:532.905000px;}
.x14{left:561.525000px;}
.x24{left:574.200000px;}
.x23{left:588.960000px;}
.x22{left:592.560000px;}
.x25{left:600.300000px;}
.x19{left:678.030000px;}
.x3{left:707.910000px;}
.x1a{left:716.730000px;}
.x28{left:744.480000px;}
.x27{left:759.420000px;}
.x26{left:762.840000px;}
.x29{left:770.400000px;}
.x1b{left:817.559987px;}
.x2a{left:821.339987px;}
.x5{left:829.260000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-0.821333pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.800000pt;}
.lsd{letter-spacing:4.000000pt;}
.lsc{letter-spacing:14.672640pt;}
.lsb{letter-spacing:40.912640pt;}
.ls4{letter-spacing:63.520000pt;}
.ls6{letter-spacing:167.840000pt;}
.ls7{letter-spacing:225.440000pt;}
.ls5{letter-spacing:882.986667pt;}
.ws2{word-spacing:-21.600000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.096533pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._29{margin-left:-6.622293pt;}
._b{margin-left:-5.618773pt;}
._12{margin-left:-4.008747pt;}
._23{margin-left:-3.086507pt;}
._10{margin-left:-2.119893pt;}
._0{margin-left:-0.960000pt;}
._11{width:1.021440pt;}
._1{width:1.973333pt;}
._15{width:3.244160pt;}
._16{width:4.356480pt;}
._17{width:5.246080pt;}
._14{width:6.269227pt;}
._13{width:8.027947pt;}
._6{width:9.600000pt;}
._1d{width:10.836480pt;}
._1c{width:11.845760pt;}
._1b{width:14.501760pt;}
._26{width:15.617280pt;}
._21{width:17.582720pt;}
._22{width:18.698667pt;}
._20{width:19.601280pt;}
._1a{width:20.761600pt;}
._18{width:24.594560pt;}
._19{width:29.694080pt;}
._1e{width:46.202240pt;}
._25{width:49.189120pt;}
._7{width:67.808853pt;}
._27{width:71.446400pt;}
._28{width:72.337280pt;}
._24{width:75.949440pt;}
._8{width:136.960000pt;}
._d{width:173.440000pt;}
._2{width:227.122347pt;}
._1f{width:286.995200pt;}
._3{width:317.600000pt;}
._5{width:387.946667pt;}
._4{width:393.925547pt;}
._9{width:537.212587pt;}
._e{width:581.226667pt;}
._f{width:625.386667pt;}
._a{width:974.986667pt;}
._c{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:5.120000pt;}
.yab{bottom:5.280000pt;}
.ye{bottom:5.600000pt;}
.y3b{bottom:5.920000pt;}
.yc3{bottom:6.906667pt;}
.y60{bottom:7.040000pt;}
.y48{bottom:9.120000pt;}
.y6{bottom:11.040000pt;}
.yb3{bottom:11.360000pt;}
.ya9{bottom:11.520000pt;}
.yb5{bottom:11.680000pt;}
.yb1{bottom:11.840000pt;}
.ya7{bottom:12.640000pt;}
.yae{bottom:14.080000pt;}
.y37{bottom:15.840000pt;}
.y56{bottom:16.000000pt;}
.y8{bottom:16.160000pt;}
.ya3{bottom:18.560000pt;}
.ya1{bottom:18.720000pt;}
.y41{bottom:19.200000pt;}
.y6b{bottom:22.720000pt;}
.yaf{bottom:23.040000pt;}
.y3a{bottom:23.546667pt;}
.y5f{bottom:24.640000pt;}
.y47{bottom:26.880000pt;}
.yc{bottom:34.240000pt;}
.y5{bottom:35.840000pt;}
.y40{bottom:36.800000pt;}
.y74{bottom:39.226667pt;}
.y6a{bottom:40.480000pt;}
.y39{bottom:41.146667pt;}
.y5e{bottom:42.240000pt;}
.y46{bottom:44.480000pt;}
.yb{bottom:53.600000pt;}
.y3f{bottom:54.560000pt;}
.y73{bottom:56.826667pt;}
.y69{bottom:58.080000pt;}
.y5d{bottom:60.000000pt;}
.y4{bottom:60.800000pt;}
.y45{bottom:62.080000pt;}
.yd{bottom:69.280000pt;}
.y3e{bottom:72.160000pt;}
.ya{bottom:72.800000pt;}
.y72{bottom:74.426667pt;}
.y68{bottom:75.720000pt;}
.y5c{bottom:77.600000pt;}
.y44{bottom:79.680000pt;}
.y3{bottom:85.626667pt;}
.y3d{bottom:89.760000pt;}
.y71{bottom:92.026667pt;}
.y67{bottom:93.320000pt;}
.yc1{bottom:94.080000pt;}
.y5b{bottom:95.200000pt;}
.y43{bottom:97.320000pt;}
.ydc{bottom:97.440000pt;}
.y8f{bottom:102.080000pt;}
.yfe{bottom:103.520000pt;}
.y50{bottom:107.386667pt;}
.y70{bottom:109.626667pt;}
.y66{bottom:110.920000pt;}
.yc0{bottom:111.680000pt;}
.y2{bottom:111.706667pt;}
.y5a{bottom:112.800000pt;}
.y38{bottom:114.400000pt;}
.ydb{bottom:115.040000pt;}
.y8e{bottom:119.840000pt;}
.yfd{bottom:120.640000pt;}
.y4f{bottom:124.986667pt;}
.y6f{bottom:127.386667pt;}
.y65{bottom:128.680000pt;}
.ybf{bottom:129.280000pt;}
.y59{bottom:130.400000pt;}
.yda{bottom:132.640000pt;}
.y8d{bottom:137.466667pt;}
.yfc{bottom:137.786667pt;}
.y4e{bottom:142.746667pt;}
.y6e{bottom:144.986667pt;}
.y64{bottom:146.280000pt;}
.ybe{bottom:147.066667pt;}
.y58{bottom:148.200000pt;}
.yd9{bottom:150.266667pt;}
.y8c{bottom:155.066667pt;}
.yfb{bottom:157.466667pt;}
.y4d{bottom:160.346667pt;}
.y63{bottom:163.880000pt;}
.ybd{bottom:164.666667pt;}
.yd8{bottom:167.866667pt;}
.y36{bottom:169.786667pt;}
.y8b{bottom:172.666667pt;}
.yfa{bottom:175.066667pt;}
.y4c{bottom:177.946667pt;}
.ybc{bottom:180.026667pt;}
.y62{bottom:181.480000pt;}
.yd7{bottom:185.626667pt;}
.y8a{bottom:190.266667pt;}
.yf9{bottom:192.666667pt;}
.y4b{bottom:195.546667pt;}
.ybb{bottom:197.626667pt;}
.yd6{bottom:203.226667pt;}
.y35{bottom:204.986667pt;}
.y89{bottom:208.026667pt;}
.yf8{bottom:210.266667pt;}
.yba{bottom:212.346667pt;}
.y4a{bottom:213.146667pt;}
.yc2{bottom:219.360000pt;}
.yd5{bottom:220.826667pt;}
.y57{bottom:221.786667pt;}
.y34{bottom:222.586667pt;}
.y88{bottom:225.626667pt;}
.yf7{bottom:228.026667pt;}
.yd4{bottom:238.426667pt;}
.y33{bottom:240.186667pt;}
.y87{bottom:243.226667pt;}
.yf6{bottom:245.626667pt;}
.yb9{bottom:253.466667pt;}
.yd3{bottom:256.026667pt;}
.y32{bottom:257.786667pt;}
.y86{bottom:260.826667pt;}
.yf5{bottom:263.226667pt;}
.yb8{bottom:266.426667pt;}
.yd2{bottom:273.786667pt;}
.y31{bottom:275.386667pt;}
.y85{bottom:278.426667pt;}
.yf4{bottom:280.826667pt;}
.yb7{bottom:290.746667pt;}
.yd1{bottom:291.386667pt;}
.y30{bottom:293.146667pt;}
.y84{bottom:296.186667pt;}
.yf3{bottom:298.426667pt;}
.yd0{bottom:306.746667pt;}
.y2f{bottom:310.746667pt;}
.y83{bottom:313.786667pt;}
.yb6{bottom:315.226667pt;}
.yf2{bottom:316.186667pt;}
.ycf{bottom:324.346667pt;}
.y2e{bottom:328.346667pt;}
.y82{bottom:331.386667pt;}
.yf1{bottom:333.786667pt;}
.yb4{bottom:339.386667pt;}
.yce{bottom:341.946667pt;}
.y2d{bottom:345.946667pt;}
.y81{bottom:348.986667pt;}
.yf0{bottom:351.386667pt;}
.ycd{bottom:359.586667pt;}
.y2c{bottom:363.586667pt;}
.yb2{bottom:363.906667pt;}
.y80{bottom:366.626667pt;}
.yef{bottom:369.026667pt;}
.ycc{bottom:377.186667pt;}
.y2b{bottom:381.346667pt;}
.y55{bottom:384.066667pt;}
.y7f{bottom:384.386667pt;}
.yee{bottom:386.626667pt;}
.yb0{bottom:388.066667pt;}
.ycb{bottom:394.946667pt;}
.y2a{bottom:398.946667pt;}
.y7e{bottom:401.986667pt;}
.yed{bottom:404.386667pt;}
.yca{bottom:412.546667pt;}
.yad{bottom:412.706667pt;}
.y29{bottom:416.546667pt;}
.y54{bottom:419.426667pt;}
.y7d{bottom:419.586667pt;}
.yec{bottom:421.986667pt;}
.yc9{bottom:430.146667pt;}
.y28{bottom:434.146667pt;}
.y53{bottom:437.026667pt;}
.y7c{bottom:437.186667pt;}
.yeb{bottom:439.586667pt;}
.yc8{bottom:447.746667pt;}
.yac{bottom:448.546667pt;}
.y27{bottom:451.746667pt;}
.y52{bottom:454.626667pt;}
.y7b{bottom:454.786667pt;}
.yea{bottom:457.186667pt;}
.yc7{bottom:465.346667pt;}
.y26{bottom:469.506667pt;}
.y51{bottom:472.226667pt;}
.y7a{bottom:472.546667pt;}
.yaa{bottom:472.866667pt;}
.ye9{bottom:474.786667pt;}
.yc6{bottom:480.706667pt;}
.y49{bottom:485.346667pt;}
.y25{bottom:487.106667pt;}
.y79{bottom:490.146667pt;}
.ye8{bottom:492.546667pt;}
.ya8{bottom:497.186667pt;}
.yc5{bottom:498.306667pt;}
.y24{bottom:504.706667pt;}
.y78{bottom:507.746667pt;}
.ye7{bottom:510.146667pt;}
.yc4{bottom:510.786667pt;}
.ya6{bottom:521.666667pt;}
.y23{bottom:522.306667pt;}
.y77{bottom:525.346667pt;}
.ye6{bottom:527.746667pt;}
.y22{bottom:539.906667pt;}
.y76{bottom:542.946667pt;}
.ye5{bottom:545.346667pt;}
.ya5{bottom:553.986667pt;}
.y21{bottom:557.666667pt;}
.y75{bottom:560.706667pt;}
.ye4{bottom:562.946667pt;}
.ya4{bottom:571.586667pt;}
.y6d{bottom:573.826667pt;}
.y20{bottom:575.266667pt;}
.ye3{bottom:580.733333pt;}
.ya2{bottom:584.093333pt;}
.y1f{bottom:592.893333pt;}
.ye2{bottom:598.333333pt;}
.y1e{bottom:610.493333pt;}
.ya0{bottom:615.773333pt;}
.ye1{bottom:615.933333pt;}
.y1d{bottom:628.093333pt;}
.ye0{bottom:633.533333pt;}
.y1c{bottom:645.853333pt;}
.ydf{bottom:651.133333pt;}
.y9f{bottom:653.533333pt;}
.y1b{bottom:663.453333pt;}
.yde{bottom:668.893333pt;}
.y9e{bottom:671.133333pt;}
.y1a{bottom:681.053333pt;}
.ydd{bottom:686.493333pt;}
.y9d{bottom:688.733333pt;}
.y19{bottom:698.653333pt;}
.y9c{bottom:704.093333pt;}
.y42{bottom:712.733333pt;}
.y18{bottom:716.253333pt;}
.y9b{bottom:721.693333pt;}
.y61{bottom:732.733333pt;}
.y17{bottom:734.013333pt;}
.y9a{bottom:739.293333pt;}
.y16{bottom:751.613333pt;}
.y99{bottom:757.053333pt;}
.y15{bottom:769.213333pt;}
.y98{bottom:774.653333pt;}
.y14{bottom:786.813333pt;}
.y97{bottom:792.253333pt;}
.y13{bottom:804.453333pt;}
.y96{bottom:809.893333pt;}
.y12{bottom:822.693333pt;}
.y3c{bottom:824.293333pt;}
.y95{bottom:827.493333pt;}
.y11{bottom:842.053333pt;}
.y94{bottom:845.253333pt;}
.y93{bottom:862.853333pt;}
.y10{bottom:864.133333pt;}
.y92{bottom:880.453333pt;}
.yf{bottom:892.293333pt;}
.y91{bottom:898.053333pt;}
.y90{bottom:915.653333pt;}
.y9{bottom:931.173333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h7{height:2.295000pt;}
.ha{height:19.360000pt;}
.h1e{height:19.680000pt;}
.h1c{height:23.840000pt;}
.h19{height:24.000000pt;}
.h1d{height:24.192000pt;}
.h1b{height:24.320000pt;}
.h18{height:25.120000pt;}
.hd{height:28.320000pt;}
.h12{height:28.480000pt;}
.h8{height:29.760000pt;}
.h17{height:31.040000pt;}
.h16{height:31.200000pt;}
.h1a{height:35.520000pt;}
.hc{height:38.465312pt;}
.h1f{height:40.021563pt;}
.h4{height:42.636250pt;}
.h5{height:47.621250pt;}
.h9{height:52.785000pt;}
.he{height:53.632000pt;}
.h3{height:57.929688pt;}
.hb{height:61.637188pt;}
.h6{height:100.032000pt;}
.hf{height:102.240000pt;}
.h10{height:109.792000pt;}
.h2{height:130.432000pt;}
.h15{height:157.466667pt;}
.h13{height:160.666667pt;}
.h14{height:193.946667pt;}
.h11{height:225.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w17{width:4.480000pt;}
.w18{width:4.640000pt;}
.w5{width:8.800000pt;}
.w1a{width:8.960000pt;}
.w1b{width:9.120000pt;}
.w19{width:17.760000pt;}
.w1c{width:17.920000pt;}
.w14{width:34.080000pt;}
.wa{width:55.520000pt;}
.w9{width:67.232000pt;}
.w12{width:83.712000pt;}
.w15{width:89.792000pt;}
.w6{width:106.912000pt;}
.w3{width:117.152000pt;}
.wd{width:122.752000pt;}
.w13{width:128.672000pt;}
.w10{width:128.832000pt;}
.wb{width:145.946667pt;}
.w7{width:160.026667pt;}
.wf{width:161.306667pt;}
.we{width:171.546667pt;}
.w11{width:348.866667pt;}
.w16{width:349.920000pt;}
.wc{width:413.533333pt;}
.w8{width:415.453333pt;}
.w2{width:581.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:3.840000pt;}
.x2{left:7.200000pt;}
.x16{left:26.400000pt;}
.x15{left:40.800000pt;}
.x1{left:47.360000pt;}
.x6{left:57.439988pt;}
.xf{left:62.239988pt;}
.xb{left:64.000000pt;}
.x1c{left:67.040000pt;}
.x2b{left:71.999988pt;}
.x2c{left:96.031988pt;}
.x4{left:105.146667pt;}
.x7{left:118.271988pt;}
.x10{left:131.232000pt;}
.x12{left:165.946667pt;}
.xc{left:171.546667pt;}
.x11{left:187.386667pt;}
.xa{left:307.106655pt;}
.x1d{left:330.240000pt;}
.xd{left:332.226667pt;}
.x9{left:334.466655pt;}
.x13{left:338.146667pt;}
.x17{left:389.826667pt;}
.x8{left:394.466655pt;}
.x1f{left:426.720000pt;}
.x1e{left:440.000000pt;}
.x20{left:443.040000pt;}
.x21{left:449.760000pt;}
.x18{left:473.693333pt;}
.x14{left:499.133333pt;}
.x24{left:510.400000pt;}
.x23{left:523.520000pt;}
.x22{left:526.720000pt;}
.x25{left:533.600000pt;}
.x19{left:602.693333pt;}
.x3{left:629.253333pt;}
.x1a{left:637.093333pt;}
.x28{left:661.760000pt;}
.x27{left:675.040000pt;}
.x26{left:678.080000pt;}
.x29{left:684.800000pt;}
.x1b{left:726.719988pt;}
.x2a{left:730.079988pt;}
.x5{left:737.120000pt;}
}




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