
    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_e3e9040ce208d8f04aa76a60.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_3f6a4d3ed8db3de89249f9ab.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_541cc5c1558a1cba902238d0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_37143353463b1fbb8e6f6bcf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.123047;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_fc71327d1cd2795db3038e82.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_fa31c388259dc7d593876b9d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_56e39d1371bf048f896f6428.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_efb34fcc9ebb06ecd6a4d00f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-69.300000px;}
.v7{vertical-align:-57.600000px;}
.v1{vertical-align:-47.700000px;}
.v4{vertical-align:-21.600000px;}
.v5{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:5.760000px;}
.v3{vertical-align:21.600000px;}
.ls37{letter-spacing:-1.998000px;}
.ls2d{letter-spacing:-1.944000px;}
.ls39{letter-spacing:-1.914000px;}
.ls13{letter-spacing:-1.908000px;}
.ls25{letter-spacing:-1.596000px;}
.ls26{letter-spacing:-1.458000px;}
.ls1f{letter-spacing:-1.440000px;}
.ls3d{letter-spacing:-1.254000px;}
.ls2b{letter-spacing:-0.972000px;}
.ls3c{letter-spacing:-0.810000px;}
.ls2a{letter-spacing:-0.720000px;}
.ls22{letter-spacing:-0.678000px;}
.ls36{letter-spacing:-0.510000px;}
.ls35{letter-spacing:-0.507000px;}
.ls38{letter-spacing:-0.492600px;}
.ls2e{letter-spacing:-0.486600px;}
.ls3b{letter-spacing:-0.475200px;}
.ls11{letter-spacing:-0.466800px;}
.ls12{letter-spacing:-0.417600px;}
.ls27{letter-spacing:-0.397200px;}
.ls20{letter-spacing:-0.020160px;}
.ls10{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.020160px;}
.ls23{letter-spacing:0.120000px;}
.ls1e{letter-spacing:0.140160px;}
.ls24{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.316800px;}
.ls2c{letter-spacing:0.466800px;}
.ls21{letter-spacing:0.486600px;}
.ls3a{letter-spacing:0.630000px;}
.ls2{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.864000px;}
.ls1a{letter-spacing:1.460160px;}
.ls31{letter-spacing:1.906560px;}
.ls1b{letter-spacing:2.160000px;}
.ls17{letter-spacing:3.600000px;}
.ls1c{letter-spacing:5.040000px;}
.ls5{letter-spacing:6.480000px;}
.ls32{letter-spacing:6.600000px;}
.ls33{letter-spacing:6.660000px;}
.lsb{letter-spacing:7.920000px;}
.ls9{letter-spacing:9.360000px;}
.ls8{letter-spacing:10.800000px;}
.lsa{letter-spacing:10.920000px;}
.ls16{letter-spacing:12.240000px;}
.lsc{letter-spacing:13.680000px;}
.ls18{letter-spacing:15.120000px;}
.ls19{letter-spacing:15.300000px;}
.ls4{letter-spacing:18.000000px;}
.lsd{letter-spacing:20.880000px;}
.ls1d{letter-spacing:21.024000px;}
.ls28{letter-spacing:22.320000px;}
.ls15{letter-spacing:23.760000px;}
.ls14{letter-spacing:36.720000px;}
.ls6{letter-spacing:38.160000px;}
.ls7{letter-spacing:39.780000px;}
.lse{letter-spacing:154.800000px;}
.ls30{letter-spacing:163.318560px;}
.ls29{letter-spacing:193.438560px;}
.ls2f{letter-spacing:193.558560px;}
.ls1{letter-spacing:549.636000px;}
.ls34{letter-spacing:772.980000px;}
.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;}
}
.wsb{word-spacing:-18.000000px;}
.ws8{word-spacing:-15.606600px;}
.wse{word-spacing:-15.586800px;}
.ws6{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws7{word-spacing:-15.099840px;}
.ws2{word-spacing:-14.702400px;}
.ws1{word-spacing:-14.653200px;}
.wsf{word-spacing:-14.633400px;}
.ws10{word-spacing:-14.613000px;}
.ws11{word-spacing:-14.610000px;}
.ws9{word-spacing:-14.442000px;}
.ws15{word-spacing:-14.310000px;}
.wsc{word-spacing:-14.148000px;}
.ws3{word-spacing:-13.680000px;}
.ws4{word-spacing:-13.212000px;}
.ws16{word-spacing:-13.204800px;}
.ws13{word-spacing:-13.187400px;}
.wsd{word-spacing:-13.176000px;}
.ws17{word-spacing:-12.870000px;}
.ws18{word-spacing:-12.426000px;}
.ws12{word-spacing:-12.240000px;}
.ws14{word-spacing:-11.766000px;}
.wsa{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._28{margin-left:-10.080960px;}
._8{margin-left:-3.825600px;}
._1{margin-left:-2.684160px;}
._0{margin-left:-1.440000px;}
._2{width:1.849920px;}
._3{width:2.931360px;}
._d{width:3.969600px;}
._c{width:5.008320px;}
._e{width:6.248640px;}
._b{width:7.367040px;}
._7{width:8.626080px;}
._a{width:9.731520px;}
._9{width:10.765440px;}
._1d{width:11.903040px;}
._f{width:12.930240px;}
._10{width:14.094720px;}
._6{width:16.655040px;}
._5{width:18.313920px;}
._14{width:19.353600px;}
._13{width:21.216960px;}
._1c{width:22.472160px;}
._1b{width:23.839680px;}
._4{width:26.006400px;}
._20{width:27.145920px;}
._1e{width:29.139360px;}
._19{width:30.824640px;}
._1a{width:31.983360px;}
._1f{width:34.015680px;}
._18{width:35.877120px;}
._29{width:36.925440px;}
._12{width:38.092800px;}
._11{width:39.658080px;}
._22{width:41.707200px;}
._21{width:43.413120px;}
._23{width:44.624640px;}
._17{width:48.940800px;}
._15{width:50.283840px;}
._16{width:51.651840px;}
._27{width:55.677120px;}
._26{width:57.227520px;}
._2a{width:61.012800px;}
._2b{width:62.085120px;}
._24{width:91.180800px;}
._25{width:92.216640px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(33,33,33);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs4{font-size:47.520000px;}
.fs3{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8b{bottom:3.240000px;}
.y74{bottom:3.600000px;}
.y73{bottom:17.280000px;}
.y2{bottom:24.480000px;}
.y1{bottom:65.520000px;}
.y76{bottom:102.270000px;}
.yb6{bottom:105.120000px;}
.y37{bottom:109.080000px;}
.y6d{bottom:113.436000px;}
.yb5{bottom:122.436000px;}
.yd1{bottom:123.516000px;}
.y36{bottom:124.596000px;}
.y89{bottom:129.276000px;}
.y6c{bottom:130.716000px;}
.yb4{bottom:139.716000px;}
.yd0{bottom:140.796000px;}
.y88{bottom:146.556000px;}
.y6b{bottom:147.996000px;}
.ycf{bottom:156.270000px;}
.yb3{bottom:156.990000px;}
.y35{bottom:157.710000px;}
.y87{bottom:163.830000px;}
.y6a{bottom:165.270000px;}
.yb2{bottom:173.910000px;}
.y34{bottom:174.990000px;}
.y86{bottom:181.110000px;}
.y69{bottom:182.190000px;}
.yce{bottom:185.790000px;}
.yb1{bottom:191.190000px;}
.y33{bottom:192.270000px;}
.y85{bottom:198.390000px;}
.y68{bottom:199.470000px;}
.ycd{bottom:203.070000px;}
.yb0{bottom:208.470000px;}
.y32{bottom:209.550000px;}
.y84{bottom:215.670000px;}
.y67{bottom:216.750000px;}
.ycc{bottom:220.035000px;}
.yaf{bottom:225.795000px;}
.y31{bottom:226.875000px;}
.y83{bottom:232.995000px;}
.y66{bottom:234.075000px;}
.ycb{bottom:237.675000px;}
.yae{bottom:243.075000px;}
.y30{bottom:244.155000px;}
.y82{bottom:250.275000px;}
.y65{bottom:251.355000px;}
.yca{bottom:254.955000px;}
.yad{bottom:260.355000px;}
.y2f{bottom:261.435000px;}
.y81{bottom:267.195000px;}
.y64{bottom:268.635000px;}
.yc9{bottom:271.875000px;}
.yac{bottom:277.635000px;}
.y2e{bottom:278.715000px;}
.y80{bottom:284.835000px;}
.y63{bottom:285.915000px;}
.yc8{bottom:289.515000px;}
.yab{bottom:294.915000px;}
.y2d{bottom:295.275000px;}
.y7f{bottom:301.755000px;}
.y62{bottom:303.195000px;}
.yc7{bottom:306.435000px;}
.yaa{bottom:312.195000px;}
.y2c{bottom:312.915000px;}
.y7e{bottom:319.035000px;}
.y61{bottom:320.475000px;}
.yc6{bottom:323.385000px;}
.ya9{bottom:329.505000px;}
.y2b{bottom:330.225000px;}
.y7d{bottom:336.345000px;}
.y60{bottom:337.785000px;}
.yc5{bottom:341.025000px;}
.ya8{bottom:346.785000px;}
.y2a{bottom:347.505000px;}
.y7c{bottom:353.625000px;}
.y5f{bottom:355.065000px;}
.yc4{bottom:358.305000px;}
.ya7{bottom:364.065000px;}
.y29{bottom:364.785000px;}
.y7b{bottom:370.905000px;}
.y5e{bottom:371.985000px;}
.yc3{bottom:375.585000px;}
.ya6{bottom:380.985000px;}
.y28{bottom:382.065000px;}
.y7a{bottom:388.185000px;}
.y5d{bottom:389.265000px;}
.yc2{bottom:392.865000px;}
.ya5{bottom:398.265000px;}
.y27{bottom:399.345000px;}
.y79{bottom:405.465000px;}
.y5c{bottom:406.545000px;}
.yc1{bottom:409.785000px;}
.ya4{bottom:415.545000px;}
.y26{bottom:416.625000px;}
.y78{bottom:422.745000px;}
.y5b{bottom:423.825000px;}
.yc0{bottom:427.470000px;}
.ya3{bottom:432.510000px;}
.y25{bottom:433.950000px;}
.y77{bottom:440.070000px;}
.y5a{bottom:441.150000px;}
.ybf{bottom:444.390000px;}
.y24{bottom:451.230000px;}
.y75{bottom:453.750000px;}
.y59{bottom:458.430000px;}
.ybe{bottom:462.030000px;}
.ya2{bottom:463.830000px;}
.y23{bottom:468.510000px;}
.y8d{bottom:472.470000px;}
.y58{bottom:475.710000px;}
.ybd{bottom:479.310000px;}
.ya1{bottom:481.110000px;}
.y22{bottom:485.430000px;}
.y57{bottom:492.990000px;}
.ybc{bottom:496.230000px;}
.ya0{bottom:498.030000px;}
.y21{bottom:502.710000px;}
.y56{bottom:510.270000px;}
.ybb{bottom:513.510000px;}
.y9f{bottom:515.670000px;}
.y20{bottom:519.990000px;}
.y55{bottom:527.550000px;}
.yba{bottom:530.790000px;}
.y9e{bottom:532.980000px;}
.y1f{bottom:537.300000px;}
.y54{bottom:544.860000px;}
.yb9{bottom:548.100000px;}
.y9d{bottom:550.260000px;}
.y1e{bottom:554.580000px;}
.y53{bottom:562.140000px;}
.yb8{bottom:565.020000px;}
.y9c{bottom:567.180000px;}
.y1d{bottom:571.860000px;}
.y52{bottom:579.060000px;}
.yb7{bottom:581.940000px;}
.y9b{bottom:584.820000px;}
.y1c{bottom:589.140000px;}
.y51{bottom:596.340000px;}
.y9a{bottom:602.100000px;}
.y1b{bottom:606.420000px;}
.y50{bottom:613.620000px;}
.y99{bottom:619.380000px;}
.y1a{bottom:623.700000px;}
.y4f{bottom:630.900000px;}
.y98{bottom:636.690000px;}
.y19{bottom:641.010000px;}
.y4e{bottom:648.210000px;}
.y97{bottom:653.610000px;}
.y18{bottom:658.290000px;}
.y4d{bottom:665.490000px;}
.y72{bottom:669.810000px;}
.y96{bottom:670.890000px;}
.y17{bottom:675.570000px;}
.y4c{bottom:682.770000px;}
.y95{bottom:688.170000px;}
.y16{bottom:692.490000px;}
.y4b{bottom:700.050000px;}
.y8c{bottom:702.570000px;}
.y94{bottom:705.450000px;}
.y8a{bottom:709.050000px;}
.y15{bottom:709.410000px;}
.y4a{bottom:717.330000px;}
.y93{bottom:722.730000px;}
.y14{bottom:727.050000px;}
.y49{bottom:734.610000px;}
.y92{bottom:740.010000px;}
.y13{bottom:744.015000px;}
.y48{bottom:751.935000px;}
.y91{bottom:757.335000px;}
.y12{bottom:761.295000px;}
.y47{bottom:768.495000px;}
.y71{bottom:768.855000px;}
.y90{bottom:773.535000px;}
.y11{bottom:776.775000px;}
.y46{bottom:785.775000px;}
.y70{bottom:786.135000px;}
.y8f{bottom:788.295000px;}
.y10{bottom:792.255000px;}
.y8e{bottom:801.975000px;}
.y45{bottom:803.415000px;}
.yf{bottom:807.735000px;}
.y6f{bottom:820.695000px;}
.ye{bottom:823.935000px;}
.y44{bottom:837.975000px;}
.yd{bottom:846.255000px;}
.y43{bottom:855.285000px;}
.yc{bottom:863.565000px;}
.y42{bottom:872.565000px;}
.yb{bottom:875.085000px;}
.y6e{bottom:889.485000px;}
.y41{bottom:889.845000px;}
.ya{bottom:892.365000px;}
.y40{bottom:907.125000px;}
.y9{bottom:909.645000px;}
.y3f{bottom:924.405000px;}
.y8{bottom:927.285000px;}
.y3e{bottom:941.685000px;}
.y3d{bottom:959.010000px;}
.y7{bottom:961.890000px;}
.y3c{bottom:975.930000px;}
.y6{bottom:979.170000px;}
.y3b{bottom:993.210000px;}
.y5{bottom:996.450000px;}
.y3a{bottom:1010.490000px;}
.y4{bottom:1013.730000px;}
.y39{bottom:1027.770000px;}
.y3{bottom:1035.330000px;}
.y38{bottom:1045.050000px;}
.hc{height:20.160000px;}
.he{height:20.520000px;}
.h6{height:38.158594px;}
.h13{height:46.638281px;}
.hf{height:47.891250px;}
.h12{height:49.848750px;}
.h8{height:53.704687px;}
.h9{height:54.219375px;}
.h7{height:55.147500px;}
.h5{height:59.328281px;}
.h2{height:59.357813px;}
.h11{height:60.332344px;}
.h4{height:60.952500px;}
.h10{height:62.163910px;}
.h3{height:70.664062px;}
.hd{height:72.562500px;}
.hb{height:216.075000px;}
.ha{height:319.785000px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.w9{width:34.236000px;}
.w8{width:34.560000px;}
.w7{width:34.596000px;}
.w6{width:276.630000px;}
.w4{width:291.420000px;}
.w3{width:301.830000px;}
.w5{width:316.620000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x17{left:10.836000px;}
.x4{left:51.155989px;}
.x3{left:68.795989px;}
.x6{left:75.995989px;}
.x13{left:81.755989px;}
.x1a{left:90.036000px;}
.x2{left:93.635989px;}
.x12{left:100.115989px;}
.x7{left:103.751989px;}
.x1c{left:115.631989px;}
.xb{left:119.231989px;}
.x14{left:128.951989px;}
.x15{left:130.031989px;}
.x9{left:144.071989px;}
.xf{left:145.905000px;}
.x8{left:196.664989px;}
.x1e{left:235.184989px;}
.xe{left:279.900000px;}
.xc{left:285.984000px;}
.x10{left:313.734000px;}
.x1{left:337.859989px;}
.x5{left:349.019989px;}
.xa{left:363.419989px;}
.xd{left:370.260000px;}
.x11{left:385.050000px;}
.x16{left:395.849989px;}
.x18{left:407.010000px;}
.x1d{left:410.969989px;}
.x19{left:412.050000px;}
.x1b{left:620.969989px;}
@media print{
.v2{vertical-align:-61.600000pt;}
.v7{vertical-align:-51.200000pt;}
.v1{vertical-align:-42.400000pt;}
.v4{vertical-align:-19.200000pt;}
.v5{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.120000pt;}
.v3{vertical-align:19.200000pt;}
.ls37{letter-spacing:-1.776000pt;}
.ls2d{letter-spacing:-1.728000pt;}
.ls39{letter-spacing:-1.701333pt;}
.ls13{letter-spacing:-1.696000pt;}
.ls25{letter-spacing:-1.418667pt;}
.ls26{letter-spacing:-1.296000pt;}
.ls1f{letter-spacing:-1.280000pt;}
.ls3d{letter-spacing:-1.114667pt;}
.ls2b{letter-spacing:-0.864000pt;}
.ls3c{letter-spacing:-0.720000pt;}
.ls2a{letter-spacing:-0.640000pt;}
.ls22{letter-spacing:-0.602667pt;}
.ls36{letter-spacing:-0.453333pt;}
.ls35{letter-spacing:-0.450667pt;}
.ls38{letter-spacing:-0.437867pt;}
.ls2e{letter-spacing:-0.432533pt;}
.ls3b{letter-spacing:-0.422400pt;}
.ls11{letter-spacing:-0.414933pt;}
.ls12{letter-spacing:-0.371200pt;}
.ls27{letter-spacing:-0.353067pt;}
.ls20{letter-spacing:-0.017920pt;}
.ls10{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.017920pt;}
.ls23{letter-spacing:0.106667pt;}
.ls1e{letter-spacing:0.124587pt;}
.ls24{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.281600pt;}
.ls2c{letter-spacing:0.414933pt;}
.ls21{letter-spacing:0.432533pt;}
.ls3a{letter-spacing:0.560000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.768000pt;}
.ls1a{letter-spacing:1.297920pt;}
.ls31{letter-spacing:1.694720pt;}
.ls1b{letter-spacing:1.920000pt;}
.ls17{letter-spacing:3.200000pt;}
.ls1c{letter-spacing:4.480000pt;}
.ls5{letter-spacing:5.760000pt;}
.ls32{letter-spacing:5.866667pt;}
.ls33{letter-spacing:5.920000pt;}
.lsb{letter-spacing:7.040000pt;}
.ls9{letter-spacing:8.320000pt;}
.ls8{letter-spacing:9.600000pt;}
.lsa{letter-spacing:9.706667pt;}
.ls16{letter-spacing:10.880000pt;}
.lsc{letter-spacing:12.160000pt;}
.ls18{letter-spacing:13.440000pt;}
.ls19{letter-spacing:13.600000pt;}
.ls4{letter-spacing:16.000000pt;}
.lsd{letter-spacing:18.560000pt;}
.ls1d{letter-spacing:18.688000pt;}
.ls28{letter-spacing:19.840000pt;}
.ls15{letter-spacing:21.120000pt;}
.ls14{letter-spacing:32.640000pt;}
.ls6{letter-spacing:33.920000pt;}
.ls7{letter-spacing:35.360000pt;}
.lse{letter-spacing:137.600000pt;}
.ls30{letter-spacing:145.172053pt;}
.ls29{letter-spacing:171.945387pt;}
.ls2f{letter-spacing:172.052053pt;}
.ls1{letter-spacing:488.565333pt;}
.ls34{letter-spacing:687.093333pt;}
.wsb{word-spacing:-16.000000pt;}
.ws8{word-spacing:-13.872533pt;}
.wse{word-spacing:-13.854933pt;}
.ws6{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.422080pt;}
.ws2{word-spacing:-13.068800pt;}
.ws1{word-spacing:-13.025067pt;}
.wsf{word-spacing:-13.007467pt;}
.ws10{word-spacing:-12.989333pt;}
.ws11{word-spacing:-12.986667pt;}
.ws9{word-spacing:-12.837333pt;}
.ws15{word-spacing:-12.720000pt;}
.wsc{word-spacing:-12.576000pt;}
.ws3{word-spacing:-12.160000pt;}
.ws4{word-spacing:-11.744000pt;}
.ws16{word-spacing:-11.737600pt;}
.ws13{word-spacing:-11.722133pt;}
.wsd{word-spacing:-11.712000pt;}
.ws17{word-spacing:-11.440000pt;}
.ws18{word-spacing:-11.045333pt;}
.ws12{word-spacing:-10.880000pt;}
.ws14{word-spacing:-10.458667pt;}
.wsa{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._28{margin-left:-8.960853pt;}
._8{margin-left:-3.400533pt;}
._1{margin-left:-2.385920pt;}
._0{margin-left:-1.280000pt;}
._2{width:1.644373pt;}
._3{width:2.605653pt;}
._d{width:3.528533pt;}
._c{width:4.451840pt;}
._e{width:5.554347pt;}
._b{width:6.548480pt;}
._7{width:7.667627pt;}
._a{width:8.650240pt;}
._9{width:9.569280pt;}
._1d{width:10.580480pt;}
._f{width:11.493547pt;}
._10{width:12.528640pt;}
._6{width:14.804480pt;}
._5{width:16.279040pt;}
._14{width:17.203200pt;}
._13{width:18.859520pt;}
._1c{width:19.975253pt;}
._1b{width:21.190827pt;}
._4{width:23.116800pt;}
._20{width:24.129707pt;}
._1e{width:25.901653pt;}
._19{width:27.399680pt;}
._1a{width:28.429653pt;}
._1f{width:30.236160pt;}
._18{width:31.890773pt;}
._29{width:32.822613pt;}
._12{width:33.860267pt;}
._11{width:35.251627pt;}
._22{width:37.073067pt;}
._21{width:38.589440pt;}
._23{width:39.666347pt;}
._17{width:43.502933pt;}
._15{width:44.696747pt;}
._16{width:45.912747pt;}
._27{width:49.490773pt;}
._26{width:50.868907pt;}
._2a{width:54.233600pt;}
._2b{width:55.186773pt;}
._24{width:81.049600pt;}
._25{width:81.970347pt;}
.fs2{font-size:34.560000pt;}
.fs4{font-size:42.240000pt;}
.fs3{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:2.880000pt;}
.y74{bottom:3.200000pt;}
.y73{bottom:15.360000pt;}
.y2{bottom:21.760000pt;}
.y1{bottom:58.240000pt;}
.y76{bottom:90.906667pt;}
.yb6{bottom:93.440000pt;}
.y37{bottom:96.960000pt;}
.y6d{bottom:100.832000pt;}
.yb5{bottom:108.832000pt;}
.yd1{bottom:109.792000pt;}
.y36{bottom:110.752000pt;}
.y89{bottom:114.912000pt;}
.y6c{bottom:116.192000pt;}
.yb4{bottom:124.192000pt;}
.yd0{bottom:125.152000pt;}
.y88{bottom:130.272000pt;}
.y6b{bottom:131.552000pt;}
.ycf{bottom:138.906667pt;}
.yb3{bottom:139.546667pt;}
.y35{bottom:140.186667pt;}
.y87{bottom:145.626667pt;}
.y6a{bottom:146.906667pt;}
.yb2{bottom:154.586667pt;}
.y34{bottom:155.546667pt;}
.y86{bottom:160.986667pt;}
.y69{bottom:161.946667pt;}
.yce{bottom:165.146667pt;}
.yb1{bottom:169.946667pt;}
.y33{bottom:170.906667pt;}
.y85{bottom:176.346667pt;}
.y68{bottom:177.306667pt;}
.ycd{bottom:180.506667pt;}
.yb0{bottom:185.306667pt;}
.y32{bottom:186.266667pt;}
.y84{bottom:191.706667pt;}
.y67{bottom:192.666667pt;}
.ycc{bottom:195.586667pt;}
.yaf{bottom:200.706667pt;}
.y31{bottom:201.666667pt;}
.y83{bottom:207.106667pt;}
.y66{bottom:208.066667pt;}
.ycb{bottom:211.266667pt;}
.yae{bottom:216.066667pt;}
.y30{bottom:217.026667pt;}
.y82{bottom:222.466667pt;}
.y65{bottom:223.426667pt;}
.yca{bottom:226.626667pt;}
.yad{bottom:231.426667pt;}
.y2f{bottom:232.386667pt;}
.y81{bottom:237.506667pt;}
.y64{bottom:238.786667pt;}
.yc9{bottom:241.666667pt;}
.yac{bottom:246.786667pt;}
.y2e{bottom:247.746667pt;}
.y80{bottom:253.186667pt;}
.y63{bottom:254.146667pt;}
.yc8{bottom:257.346667pt;}
.yab{bottom:262.146667pt;}
.y2d{bottom:262.466667pt;}
.y7f{bottom:268.226667pt;}
.y62{bottom:269.506667pt;}
.yc7{bottom:272.386667pt;}
.yaa{bottom:277.506667pt;}
.y2c{bottom:278.146667pt;}
.y7e{bottom:283.586667pt;}
.y61{bottom:284.866667pt;}
.yc6{bottom:287.453333pt;}
.ya9{bottom:292.893333pt;}
.y2b{bottom:293.533333pt;}
.y7d{bottom:298.973333pt;}
.y60{bottom:300.253333pt;}
.yc5{bottom:303.133333pt;}
.ya8{bottom:308.253333pt;}
.y2a{bottom:308.893333pt;}
.y7c{bottom:314.333333pt;}
.y5f{bottom:315.613333pt;}
.yc4{bottom:318.493333pt;}
.ya7{bottom:323.613333pt;}
.y29{bottom:324.253333pt;}
.y7b{bottom:329.693333pt;}
.y5e{bottom:330.653333pt;}
.yc3{bottom:333.853333pt;}
.ya6{bottom:338.653333pt;}
.y28{bottom:339.613333pt;}
.y7a{bottom:345.053333pt;}
.y5d{bottom:346.013333pt;}
.yc2{bottom:349.213333pt;}
.ya5{bottom:354.013333pt;}
.y27{bottom:354.973333pt;}
.y79{bottom:360.413333pt;}
.y5c{bottom:361.373333pt;}
.yc1{bottom:364.253333pt;}
.ya4{bottom:369.373333pt;}
.y26{bottom:370.333333pt;}
.y78{bottom:375.773333pt;}
.y5b{bottom:376.733333pt;}
.yc0{bottom:379.973333pt;}
.ya3{bottom:384.453333pt;}
.y25{bottom:385.733333pt;}
.y77{bottom:391.173333pt;}
.y5a{bottom:392.133333pt;}
.ybf{bottom:395.013333pt;}
.y24{bottom:401.093333pt;}
.y75{bottom:403.333333pt;}
.y59{bottom:407.493333pt;}
.ybe{bottom:410.693333pt;}
.ya2{bottom:412.293333pt;}
.y23{bottom:416.453333pt;}
.y8d{bottom:419.973333pt;}
.y58{bottom:422.853333pt;}
.ybd{bottom:426.053333pt;}
.ya1{bottom:427.653333pt;}
.y22{bottom:431.493333pt;}
.y57{bottom:438.213333pt;}
.ybc{bottom:441.093333pt;}
.ya0{bottom:442.693333pt;}
.y21{bottom:446.853333pt;}
.y56{bottom:453.573333pt;}
.ybb{bottom:456.453333pt;}
.y9f{bottom:458.373333pt;}
.y20{bottom:462.213333pt;}
.y55{bottom:468.933333pt;}
.yba{bottom:471.813333pt;}
.y9e{bottom:473.760000pt;}
.y1f{bottom:477.600000pt;}
.y54{bottom:484.320000pt;}
.yb9{bottom:487.200000pt;}
.y9d{bottom:489.120000pt;}
.y1e{bottom:492.960000pt;}
.y53{bottom:499.680000pt;}
.yb8{bottom:502.240000pt;}
.y9c{bottom:504.160000pt;}
.y1d{bottom:508.320000pt;}
.y52{bottom:514.720000pt;}
.yb7{bottom:517.280000pt;}
.y9b{bottom:519.840000pt;}
.y1c{bottom:523.680000pt;}
.y51{bottom:530.080000pt;}
.y9a{bottom:535.200000pt;}
.y1b{bottom:539.040000pt;}
.y50{bottom:545.440000pt;}
.y99{bottom:550.560000pt;}
.y1a{bottom:554.400000pt;}
.y4f{bottom:560.800000pt;}
.y98{bottom:565.946667pt;}
.y19{bottom:569.786667pt;}
.y4e{bottom:576.186667pt;}
.y97{bottom:580.986667pt;}
.y18{bottom:585.146667pt;}
.y4d{bottom:591.546667pt;}
.y72{bottom:595.386667pt;}
.y96{bottom:596.346667pt;}
.y17{bottom:600.506667pt;}
.y4c{bottom:606.906667pt;}
.y95{bottom:611.706667pt;}
.y16{bottom:615.546667pt;}
.y4b{bottom:622.266667pt;}
.y8c{bottom:624.506667pt;}
.y94{bottom:627.066667pt;}
.y8a{bottom:630.266667pt;}
.y15{bottom:630.586667pt;}
.y4a{bottom:637.626667pt;}
.y93{bottom:642.426667pt;}
.y14{bottom:646.266667pt;}
.y49{bottom:652.986667pt;}
.y92{bottom:657.786667pt;}
.y13{bottom:661.346667pt;}
.y48{bottom:668.386667pt;}
.y91{bottom:673.186667pt;}
.y12{bottom:676.706667pt;}
.y47{bottom:683.106667pt;}
.y71{bottom:683.426667pt;}
.y90{bottom:687.586667pt;}
.y11{bottom:690.466667pt;}
.y46{bottom:698.466667pt;}
.y70{bottom:698.786667pt;}
.y8f{bottom:700.706667pt;}
.y10{bottom:704.226667pt;}
.y8e{bottom:712.866667pt;}
.y45{bottom:714.146667pt;}
.yf{bottom:717.986667pt;}
.y6f{bottom:729.506667pt;}
.ye{bottom:732.386667pt;}
.y44{bottom:744.866667pt;}
.yd{bottom:752.226667pt;}
.y43{bottom:760.253333pt;}
.yc{bottom:767.613333pt;}
.y42{bottom:775.613333pt;}
.yb{bottom:777.853333pt;}
.y6e{bottom:790.653333pt;}
.y41{bottom:790.973333pt;}
.ya{bottom:793.213333pt;}
.y40{bottom:806.333333pt;}
.y9{bottom:808.573333pt;}
.y3f{bottom:821.693333pt;}
.y8{bottom:824.253333pt;}
.y3e{bottom:837.053333pt;}
.y3d{bottom:852.453333pt;}
.y7{bottom:855.013333pt;}
.y3c{bottom:867.493333pt;}
.y6{bottom:870.373333pt;}
.y3b{bottom:882.853333pt;}
.y5{bottom:885.733333pt;}
.y3a{bottom:898.213333pt;}
.y4{bottom:901.093333pt;}
.y39{bottom:913.573333pt;}
.y3{bottom:920.293333pt;}
.y38{bottom:928.933333pt;}
.hc{height:17.920000pt;}
.he{height:18.240000pt;}
.h6{height:33.918750pt;}
.h13{height:41.456250pt;}
.hf{height:42.570000pt;}
.h12{height:44.310000pt;}
.h8{height:47.737500pt;}
.h9{height:48.195000pt;}
.h7{height:49.020000pt;}
.h5{height:52.736250pt;}
.h2{height:52.762500pt;}
.h11{height:53.628750pt;}
.h4{height:54.180000pt;}
.h10{height:55.256809pt;}
.h3{height:62.812500pt;}
.hd{height:64.500000pt;}
.hb{height:192.066667pt;}
.ha{height:284.253333pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.w9{width:30.432000pt;}
.w8{width:30.720000pt;}
.w7{width:30.752000pt;}
.w6{width:245.893333pt;}
.w4{width:259.040000pt;}
.w3{width:268.293333pt;}
.w5{width:281.440000pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x17{left:9.632000pt;}
.x4{left:45.471990pt;}
.x3{left:61.151990pt;}
.x6{left:67.551990pt;}
.x13{left:72.671990pt;}
.x1a{left:80.032000pt;}
.x2{left:83.231990pt;}
.x12{left:88.991990pt;}
.x7{left:92.223990pt;}
.x1c{left:102.783990pt;}
.xb{left:105.983990pt;}
.x14{left:114.623990pt;}
.x15{left:115.583990pt;}
.x9{left:128.063990pt;}
.xf{left:129.693333pt;}
.x8{left:174.813324pt;}
.x1e{left:209.053324pt;}
.xe{left:248.800000pt;}
.xc{left:254.208000pt;}
.x10{left:278.874667pt;}
.x1{left:300.319990pt;}
.x5{left:310.239990pt;}
.xa{left:323.039990pt;}
.xd{left:329.120000pt;}
.x11{left:342.266667pt;}
.x16{left:351.866657pt;}
.x18{left:361.786667pt;}
.x1d{left:365.306657pt;}
.x19{left:366.266667pt;}
.x1b{left:551.973324pt;}
}




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