
    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_94a0e568e797ff6dbd6dff2e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_e34ad24c561e1fc91ed95fac.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_2cd78404944587f910e5d962.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0fb1daae9c396a2fd8bab035.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_e839376157a2a1d8f169d83c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_249b302e7db70f781d7ab58e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_bb645c4bfe61516d03719504.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_69735b62fc2952570e3d32c3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_68033e42b03702d33e35a642.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_65e0032b0708c66de83e965f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.690918;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:ffc;src:url('chunks/assets/font_c4628a419b160c9e25c529dd.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.ls15{letter-spacing:-1.404000px;}
.ls1a{letter-spacing:-1.080000px;}
.ls25{letter-spacing:-0.900000px;}
.ls1d{letter-spacing:-0.738000px;}
.lsb{letter-spacing:-0.690000px;}
.ls1b{letter-spacing:-0.378600px;}
.ls11{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.350400px;}
.ls10{letter-spacing:-0.341400px;}
.lsa{letter-spacing:-0.180000px;}
.ls20{letter-spacing:-0.037440px;}
.ls23{letter-spacing:-0.018720px;}
.ls19{letter-spacing:-0.018000px;}
.ls16{letter-spacing:-0.009360px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.028080px;}
.ls13{letter-spacing:0.037440px;}
.lsd{letter-spacing:0.208080px;}
.ls14{letter-spacing:0.252720px;}
.ls18{letter-spacing:0.256200px;}
.ls5{letter-spacing:0.291600px;}
.ls22{letter-spacing:0.336000px;}
.lse{letter-spacing:0.341280px;}
.lsc{letter-spacing:0.341400px;}
.ls21{letter-spacing:0.350400px;}
.lsf{letter-spacing:0.360000px;}
.ls1f{letter-spacing:1.080000px;}
.ls17{letter-spacing:1.260000px;}
.ls6{letter-spacing:4.860000px;}
.ls9{letter-spacing:13.500000px;}
.ls1e{letter-spacing:15.660000px;}
.ls1c{letter-spacing:21.221280px;}
.ls4{letter-spacing:22.140000px;}
.ls8{letter-spacing:59.580000px;}
.ls7{letter-spacing:59.760000px;}
.ls12{letter-spacing:64.026720px;}
.ls0{letter-spacing:197.429760px;}
.ls1{letter-spacing:1083.329760px;}
.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;}
}
.ws7{word-spacing:-59.760000px;}
.ws11{word-spacing:-22.140000px;}
.ws4{word-spacing:-21.420000px;}
.ws13{word-spacing:-21.410400px;}
.ws8{word-spacing:-21.401400px;}
.ws14{word-spacing:-21.312720px;}
.wsd{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws9{word-spacing:-21.050640px;}
.ws15{word-spacing:-21.041280px;}
.ws12{word-spacing:-21.022560px;}
.ws5{word-spacing:-20.718600px;}
.ws16{word-spacing:-20.709600px;}
.ws6{word-spacing:-20.700000px;}
.wsf{word-spacing:-20.681400px;}
.wsb{word-spacing:-20.370000px;}
.ws10{word-spacing:-20.322000px;}
.wse{word-spacing:-19.980000px;}
.ws1{word-spacing:-18.000000px;}
.wsc{word-spacing:-12.186000px;}
.wsa{word-spacing:-0.322440px;}
.ws0{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-196.973760px;}
._41{margin-left:-19.635840px;}
._3d{margin-left:-3.571440px;}
._4{margin-left:-2.162880px;}
._1{margin-left:-1.126080px;}
._3{width:1.044240px;}
._8{width:2.924160px;}
._1e{width:4.572480px;}
._2c{width:6.173040px;}
._9{width:7.352400px;}
._b{width:8.388480px;}
._a{width:10.106640px;}
._35{width:11.128320px;}
._5{width:12.130560px;}
._f{width:13.892160px;}
._e{width:14.934000px;}
._2e{width:16.288560px;}
._2b{width:17.330640px;}
._13{width:18.556320px;}
._2a{width:19.928880px;}
._14{width:22.354560px;}
._12{width:24.233760px;}
._10{width:25.464000px;}
._11{width:26.478720px;}
._32{width:27.506160px;}
._28{width:28.725840px;}
._29{width:29.756400px;}
._36{width:30.762000px;}
._15{width:31.789440px;}
._1f{width:33.313200px;}
._16{width:34.369920px;}
._38{width:35.806320px;}
._18{width:37.096560px;}
._19{width:38.858160px;}
._1a{width:40.846320px;}
._31{width:41.899680px;}
._25{width:42.935040px;}
._2f{width:44.495520px;}
._27{width:46.447200px;}
._26{width:47.764080px;}
._30{width:48.827760px;}
._37{width:50.073600px;}
._c{width:51.133680px;}
._d{width:52.344000px;}
._1b{width:54.305040px;}
._34{width:55.578480px;}
._20{width:57.482640px;}
._22{width:58.542960px;}
._6{width:59.894640px;}
._7{width:60.934080px;}
._17{width:62.506080px;}
._3f{width:64.802400px;}
._3e{width:65.938080px;}
._3b{width:67.981680px;}
._3c{width:69.016080px;}
._33{width:70.050480px;}
._21{width:71.772480px;}
._40{width:73.625760px;}
._3a{width:75.418320px;}
._39{width:76.934640px;}
._2d{width:79.017120px;}
._1d{width:80.911440px;}
._1c{width:82.106640px;}
._23{width:87.019920px;}
._24{width:89.267040px;}
._2{width:638.842080px;}
.fc5{color:rgb(23,23,26);}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc7{color:rgb(64,64,64);}
.fc6{color:rgb(89,89,89);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.760000px;}
.y3{bottom:6.120000px;}
.y97{bottom:8.064000px;}
.y91{bottom:8.130000px;}
.y94{bottom:8.172000px;}
.ya5{bottom:8.280000px;}
.y95{bottom:14.724000px;}
.y2{bottom:26.100000px;}
.y4{bottom:28.980000px;}
.y8d{bottom:35.535000px;}
.y92{bottom:36.252000px;}
.y8c{bottom:51.915000px;}
.y86{bottom:51.945000px;}
.y8f{bottom:57.810000px;}
.y8b{bottom:68.475000px;}
.y85{bottom:68.505000px;}
.yaa{bottom:82.080000px;}
.y79{bottom:82.440000px;}
.y8a{bottom:84.855000px;}
.y84{bottom:84.885000px;}
.y36{bottom:86.760000px;}
.y4c{bottom:95.760000px;}
.y21{bottom:101.160000px;}
.y89{bottom:101.415000px;}
.y83{bottom:101.445000px;}
.y80{bottom:106.200000px;}
.y8e{bottom:107.460000px;}
.y68{bottom:109.620000px;}
.y96{bottom:113.760000px;}
.y88{bottom:117.975000px;}
.y82{bottom:118.005000px;}
.ya9{bottom:118.260000px;}
.y78{bottom:118.620000px;}
.y35{bottom:123.120000px;}
.y98{bottom:129.960000px;}
.ya8{bottom:132.195000px;}
.y93{bottom:135.180000px;}
.y20{bottom:137.376000px;}
.y81{bottom:142.200000px;}
.y67{bottom:145.836000px;}
.y87{bottom:150.480000px;}
.y4b{bottom:153.030000px;}
.yaf{bottom:154.650000px;}
.y77{bottom:155.010000px;}
.ya7{bottom:156.315000px;}
.y90{bottom:156.780000px;}
.y34{bottom:159.330000px;}
.y9d{bottom:163.080000px;}
.y99{bottom:163.110000px;}
.y9b{bottom:163.155000px;}
.y9e{bottom:171.360000px;}
.y1f{bottom:173.550000px;}
.y66{bottom:182.010000px;}
.y9a{bottom:188.460000px;}
.yae{bottom:190.830000px;}
.y76{bottom:191.190000px;}
.y9f{bottom:191.955000px;}
.y33{bottom:195.510000px;}
.y9c{bottom:196.740000px;}
.y1e{bottom:209.910000px;}
.y4a{bottom:210.270000px;}
.ya0{bottom:212.550000px;}
.y65{bottom:218.190000px;}
.yad{bottom:227.010000px;}
.y75{bottom:227.370000px;}
.y32{bottom:231.690000px;}
.ya1{bottom:233.130000px;}
.y1d{bottom:246.090000px;}
.y49{bottom:246.270000px;}
.ya2{bottom:253.695000px;}
.y64{bottom:254.550000px;}
.y74{bottom:263.550000px;}
.y31{bottom:267.870000px;}
.ya3{bottom:274.290000px;}
.ya6{bottom:276.660000px;}
.y1c{bottom:282.270000px;}
.ya4{bottom:290.880000px;}
.y73{bottom:299.910000px;}
.y48{bottom:303.150000px;}
.y30{bottom:304.230000px;}
.y63{bottom:306.030000px;}
.y1b{bottom:318.450000px;}
.y72{bottom:336.090000px;}
.y2f{bottom:340.410000px;}
.y62{bottom:342.210000px;}
.y1a{bottom:354.810000px;}
.y47{bottom:360.750000px;}
.y71{bottom:372.270000px;}
.y19{bottom:391.035000px;}
.y61{bottom:393.555000px;}
.y2e{bottom:397.515000px;}
.yb0{bottom:408.135000px;}
.y70{bottom:408.495000px;}
.y46{bottom:417.855000px;}
.y18{bottom:427.215000px;}
.y60{bottom:429.735000px;}
.y6f{bottom:444.855000px;}
.y2d{bottom:455.115000px;}
.y17{bottom:463.395000px;}
.y5f{bottom:465.915000px;}
.y45{bottom:475.095000px;}
.y6e{bottom:481.035000px;}
.y16{bottom:499.755000px;}
.y5e{bottom:502.275000px;}
.y2c{bottom:512.355000px;}
.y7f{bottom:516.855000px;}
.y6d{bottom:517.215000px;}
.y44{bottom:532.695000px;}
.y15{bottom:535.935000px;}
.y5d{bottom:538.455000px;}
.y7e{bottom:553.035000px;}
.y6c{bottom:553.395000px;}
.y43{bottom:568.695000px;}
.y2b{bottom:569.595000px;}
.y14{bottom:572.115000px;}
.y5c{bottom:574.635000px;}
.y6b{bottom:589.755000px;}
.y42{bottom:604.875000px;}
.y2a{bottom:605.595000px;}
.y13{bottom:608.295000px;}
.y5b{bottom:610.815000px;}
.y6a{bottom:625.935000px;}
.y12{bottom:644.505000px;}
.y5a{bottom:647.205000px;}
.y7d{bottom:661.785000px;}
.y69{bottom:662.145000px;}
.y41{bottom:662.325000px;}
.y29{bottom:662.505000px;}
.y11{bottom:680.865000px;}
.y59{bottom:683.385000px;}
.y7c{bottom:697.965000px;}
.y40{bottom:698.325000px;}
.y10{bottom:717.045000px;}
.y58{bottom:719.565000px;}
.y28{bottom:720.105000px;}
.y7b{bottom:734.145000px;}
.y3f{bottom:734.505000px;}
.y57{bottom:755.745000px;}
.yf{bottom:767.805000px;}
.y7a{bottom:770.505000px;}
.y3e{bottom:770.865000px;}
.y27{bottom:776.985000px;}
.y56{bottom:792.105000px;}
.y3d{bottom:807.045000px;}
.ye{bottom:819.465000px;}
.y55{bottom:828.285000px;}
.y26{bottom:834.405000px;}
.y3c{bottom:843.225000px;}
.y54{bottom:864.465000px;}
.yd{bottom:870.765000px;}
.y3b{bottom:879.405000px;}
.y53{bottom:900.690000px;}
.y3a{bottom:915.810000px;}
.yc{bottom:921.930000px;}
.y52{bottom:937.050000px;}
.yac{bottom:951.630000px;}
.y39{bottom:951.990000px;}
.yb{bottom:958.110000px;}
.y51{bottom:973.230000px;}
.yab{bottom:987.810000px;}
.y38{bottom:988.170000px;}
.y25{bottom:994.470000px;}
.ya{bottom:1009.410000px;}
.y37{bottom:1024.350000px;}
.y24{bottom:1045.230000px;}
.y50{bottom:1045.590000px;}
.y9{bottom:1060.710000px;}
.y4f{bottom:1081.770000px;}
.y8{bottom:1096.530000px;}
.y23{bottom:1096.890000px;}
.y4e{bottom:1118.130000px;}
.y7{bottom:1132.710000px;}
.y22{bottom:1133.070000px;}
.y4d{bottom:1168.920000px;}
.y6{bottom:1169.280000px;}
.y1{bottom:1226.160000px;}
.hd{height:21.060000px;}
.h4{height:21.420000px;}
.hf{height:27.720000px;}
.he{height:49.140000px;}
.hb{height:53.709961px;}
.h9{height:59.066719px;}
.h2{height:65.884219px;}
.h8{height:69.432187px;}
.h3{height:70.628906px;}
.hc{height:70.740000px;}
.h7{height:82.635820px;}
.h6{height:82.676953px;}
.h5{height:84.898125px;}
.h13{height:86.580000px;}
.h14{height:86.585445px;}
.ha{height:130.860000px;}
.h11{height:178.200000px;}
.h10{height:178.380000px;}
.h12{height:356.580000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:23.220000px;}
.w9{width:23.400000px;}
.we{width:30.060000px;}
.w8{width:30.240000px;}
.wa{width:36.900000px;}
.w2{width:49.536000px;}
.wc{width:70.560000px;}
.w7{width:87.300000px;}
.w10{width:125.280000px;}
.w3{width:143.640000px;}
.w5{width:148.140000px;}
.w6{width:150.840000px;}
.w4{width:160.200000px;}
.wd{width:165.060000px;}
.w11{width:465.840000px;}
.wf{width:626.040000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:8.355000px;}
.x3c{left:15.120000px;}
.x18{left:16.410000px;}
.x4{left:20.550000px;}
.x3e{left:23.940000px;}
.x1c{left:41.145000px;}
.x1e{left:42.585000px;}
.x25{left:44.925000px;}
.x1d{left:48.525000px;}
.x23{left:50.730000px;}
.x21{left:53.430000px;}
.x22{left:55.590000px;}
.x20{left:56.850000px;}
.x28{left:57.930000px;}
.x27{left:59.190000px;}
.x1{left:95.796000px;}
.x5{left:98.676000px;}
.x15{left:106.416000px;}
.x2{left:111.636000px;}
.x17{left:122.796000px;}
.xe{left:126.396000px;}
.x11{left:128.196000px;}
.xd{left:148.896000px;}
.x3a{left:160.275000px;}
.x19{left:161.310000px;}
.x16{left:163.830000px;}
.x3b{left:165.240000px;}
.x39{left:167.115000px;}
.x13{left:168.150000px;}
.x38{left:173.985000px;}
.x29{left:181.440000px;}
.x3d{left:228.960000px;}
.x3f{left:300.315000px;}
.xb{left:306.435000px;}
.x12{left:321.195000px;}
.x8{left:323.535000px;}
.xf{left:328.035000px;}
.xc{left:329.835000px;}
.x10{left:333.435000px;}
.x9{left:340.815000px;}
.xa{left:343.515000px;}
.x14{left:350.355000px;}
.x6{left:357.735000px;}
.x2b{left:379.080000px;}
.x2f{left:382.500000px;}
.x34{left:403.380000px;}
.x1f{left:416.700000px;}
.x1a{left:432.615000px;}
.x3{left:438.915000px;}
.x7{left:462.525000px;}
.x31{left:465.840000px;}
.x2c{left:486.540000px;}
.x40{left:489.165000px;}
.x35{left:507.420000px;}
.x24{left:528.300000px;}
.x32{left:563.040000px;}
.x2d{left:583.920000px;}
.x30{left:587.340000px;}
.x36{left:608.040000px;}
.x26{left:624.060000px;}
.x33{left:673.920000px;}
.x2e{left:694.800000px;}
.x37{left:715.680000px;}
.x1b{left:776.670000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-1.248000pt;}
.ls1a{letter-spacing:-0.960000pt;}
.ls25{letter-spacing:-0.800000pt;}
.ls1d{letter-spacing:-0.656000pt;}
.lsb{letter-spacing:-0.613333pt;}
.ls1b{letter-spacing:-0.336533pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.311467pt;}
.ls10{letter-spacing:-0.303467pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls20{letter-spacing:-0.033280pt;}
.ls23{letter-spacing:-0.016640pt;}
.ls19{letter-spacing:-0.016000pt;}
.ls16{letter-spacing:-0.008320pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.024960pt;}
.ls13{letter-spacing:0.033280pt;}
.lsd{letter-spacing:0.184960pt;}
.ls14{letter-spacing:0.224640pt;}
.ls18{letter-spacing:0.227733pt;}
.ls5{letter-spacing:0.259200pt;}
.ls22{letter-spacing:0.298667pt;}
.lse{letter-spacing:0.303360pt;}
.lsc{letter-spacing:0.303467pt;}
.ls21{letter-spacing:0.311467pt;}
.lsf{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.960000pt;}
.ls17{letter-spacing:1.120000pt;}
.ls6{letter-spacing:4.320000pt;}
.ls9{letter-spacing:12.000000pt;}
.ls1e{letter-spacing:13.920000pt;}
.ls1c{letter-spacing:18.863360pt;}
.ls4{letter-spacing:19.680000pt;}
.ls8{letter-spacing:52.960000pt;}
.ls7{letter-spacing:53.120000pt;}
.ls12{letter-spacing:56.912640pt;}
.ls0{letter-spacing:175.493120pt;}
.ls1{letter-spacing:962.959787pt;}
.ws7{word-spacing:-53.120000pt;}
.ws11{word-spacing:-19.680000pt;}
.ws4{word-spacing:-19.040000pt;}
.ws13{word-spacing:-19.031467pt;}
.ws8{word-spacing:-19.023467pt;}
.ws14{word-spacing:-18.944640pt;}
.wsd{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws9{word-spacing:-18.711680pt;}
.ws15{word-spacing:-18.703360pt;}
.ws12{word-spacing:-18.686720pt;}
.ws5{word-spacing:-18.416533pt;}
.ws16{word-spacing:-18.408533pt;}
.ws6{word-spacing:-18.400000pt;}
.wsf{word-spacing:-18.383467pt;}
.wsb{word-spacing:-18.106667pt;}
.ws10{word-spacing:-18.064000pt;}
.wse{word-spacing:-17.760000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsc{word-spacing:-10.832000pt;}
.wsa{word-spacing:-0.286613pt;}
.ws0{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-175.087787pt;}
._41{margin-left:-17.454080pt;}
._3d{margin-left:-3.174613pt;}
._4{margin-left:-1.922560pt;}
._1{margin-left:-1.000960pt;}
._3{width:0.928213pt;}
._8{width:2.599253pt;}
._1e{width:4.064427pt;}
._2c{width:5.487147pt;}
._9{width:6.535467pt;}
._b{width:7.456427pt;}
._a{width:8.983680pt;}
._35{width:9.891840pt;}
._5{width:10.782720pt;}
._f{width:12.348587pt;}
._e{width:13.274667pt;}
._2e{width:14.478720pt;}
._2b{width:15.405013pt;}
._13{width:16.494507pt;}
._2a{width:17.714560pt;}
._14{width:19.870720pt;}
._12{width:21.541120pt;}
._10{width:22.634667pt;}
._11{width:23.536640pt;}
._32{width:24.449920pt;}
._28{width:25.534080pt;}
._29{width:26.450133pt;}
._36{width:27.344000pt;}
._15{width:28.257280pt;}
._1f{width:29.611733pt;}
._16{width:30.551040pt;}
._38{width:31.827840pt;}
._18{width:32.974720pt;}
._19{width:34.540587pt;}
._1a{width:36.307840pt;}
._31{width:37.244160pt;}
._25{width:38.164480pt;}
._2f{width:39.551573pt;}
._27{width:41.286400pt;}
._26{width:42.456960pt;}
._30{width:43.402453pt;}
._37{width:44.509867pt;}
._c{width:45.452160pt;}
._d{width:46.528000pt;}
._1b{width:48.271147pt;}
._34{width:49.403093pt;}
._20{width:51.095680pt;}
._22{width:52.038187pt;}
._6{width:53.239680pt;}
._7{width:54.163627pt;}
._17{width:55.560960pt;}
._3f{width:57.602133pt;}
._3e{width:58.611627pt;}
._3b{width:60.428160pt;}
._3c{width:61.347627pt;}
._33{width:62.267093pt;}
._21{width:63.797760pt;}
._40{width:65.445120pt;}
._3a{width:67.038507pt;}
._39{width:68.386347pt;}
._2d{width:70.237440pt;}
._1d{width:71.921280pt;}
._1c{width:72.983680pt;}
._23{width:77.351040pt;}
._24{width:79.348480pt;}
._2{width:567.859627pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.120000pt;}
.y3{bottom:5.440000pt;}
.y97{bottom:7.168000pt;}
.y91{bottom:7.226667pt;}
.y94{bottom:7.264000pt;}
.ya5{bottom:7.360000pt;}
.y95{bottom:13.088000pt;}
.y2{bottom:23.200000pt;}
.y4{bottom:25.760000pt;}
.y8d{bottom:31.586667pt;}
.y92{bottom:32.224000pt;}
.y8c{bottom:46.146667pt;}
.y86{bottom:46.173333pt;}
.y8f{bottom:51.386667pt;}
.y8b{bottom:60.866667pt;}
.y85{bottom:60.893333pt;}
.yaa{bottom:72.960000pt;}
.y79{bottom:73.280000pt;}
.y8a{bottom:75.426667pt;}
.y84{bottom:75.453333pt;}
.y36{bottom:77.120000pt;}
.y4c{bottom:85.120000pt;}
.y21{bottom:89.920000pt;}
.y89{bottom:90.146667pt;}
.y83{bottom:90.173333pt;}
.y80{bottom:94.400000pt;}
.y8e{bottom:95.520000pt;}
.y68{bottom:97.440000pt;}
.y96{bottom:101.120000pt;}
.y88{bottom:104.866667pt;}
.y82{bottom:104.893333pt;}
.ya9{bottom:105.120000pt;}
.y78{bottom:105.440000pt;}
.y35{bottom:109.440000pt;}
.y98{bottom:115.520000pt;}
.ya8{bottom:117.506667pt;}
.y93{bottom:120.160000pt;}
.y20{bottom:122.112000pt;}
.y81{bottom:126.400000pt;}
.y67{bottom:129.632000pt;}
.y87{bottom:133.760000pt;}
.y4b{bottom:136.026667pt;}
.yaf{bottom:137.466667pt;}
.y77{bottom:137.786667pt;}
.ya7{bottom:138.946667pt;}
.y90{bottom:139.360000pt;}
.y34{bottom:141.626667pt;}
.y9d{bottom:144.960000pt;}
.y99{bottom:144.986667pt;}
.y9b{bottom:145.026667pt;}
.y9e{bottom:152.320000pt;}
.y1f{bottom:154.266667pt;}
.y66{bottom:161.786667pt;}
.y9a{bottom:167.520000pt;}
.yae{bottom:169.626667pt;}
.y76{bottom:169.946667pt;}
.y9f{bottom:170.626667pt;}
.y33{bottom:173.786667pt;}
.y9c{bottom:174.880000pt;}
.y1e{bottom:186.586667pt;}
.y4a{bottom:186.906667pt;}
.ya0{bottom:188.933333pt;}
.y65{bottom:193.946667pt;}
.yad{bottom:201.786667pt;}
.y75{bottom:202.106667pt;}
.y32{bottom:205.946667pt;}
.ya1{bottom:207.226667pt;}
.y1d{bottom:218.746667pt;}
.y49{bottom:218.906667pt;}
.ya2{bottom:225.506667pt;}
.y64{bottom:226.266667pt;}
.y74{bottom:234.266667pt;}
.y31{bottom:238.106667pt;}
.ya3{bottom:243.813333pt;}
.ya6{bottom:245.920000pt;}
.y1c{bottom:250.906667pt;}
.ya4{bottom:258.560000pt;}
.y73{bottom:266.586667pt;}
.y48{bottom:269.466667pt;}
.y30{bottom:270.426667pt;}
.y63{bottom:272.026667pt;}
.y1b{bottom:283.066667pt;}
.y72{bottom:298.746667pt;}
.y2f{bottom:302.586667pt;}
.y62{bottom:304.186667pt;}
.y1a{bottom:315.386667pt;}
.y47{bottom:320.666667pt;}
.y71{bottom:330.906667pt;}
.y19{bottom:347.586667pt;}
.y61{bottom:349.826667pt;}
.y2e{bottom:353.346667pt;}
.yb0{bottom:362.786667pt;}
.y70{bottom:363.106667pt;}
.y46{bottom:371.426667pt;}
.y18{bottom:379.746667pt;}
.y60{bottom:381.986667pt;}
.y6f{bottom:395.426667pt;}
.y2d{bottom:404.546667pt;}
.y17{bottom:411.906667pt;}
.y5f{bottom:414.146667pt;}
.y45{bottom:422.306667pt;}
.y6e{bottom:427.586667pt;}
.y16{bottom:444.226667pt;}
.y5e{bottom:446.466667pt;}
.y2c{bottom:455.426667pt;}
.y7f{bottom:459.426667pt;}
.y6d{bottom:459.746667pt;}
.y44{bottom:473.506667pt;}
.y15{bottom:476.386667pt;}
.y5d{bottom:478.626667pt;}
.y7e{bottom:491.586667pt;}
.y6c{bottom:491.906667pt;}
.y43{bottom:505.506667pt;}
.y2b{bottom:506.306667pt;}
.y14{bottom:508.546667pt;}
.y5c{bottom:510.786667pt;}
.y6b{bottom:524.226667pt;}
.y42{bottom:537.666667pt;}
.y2a{bottom:538.306667pt;}
.y13{bottom:540.706667pt;}
.y5b{bottom:542.946667pt;}
.y6a{bottom:556.386667pt;}
.y12{bottom:572.893333pt;}
.y5a{bottom:575.293333pt;}
.y7d{bottom:588.253333pt;}
.y69{bottom:588.573333pt;}
.y41{bottom:588.733333pt;}
.y29{bottom:588.893333pt;}
.y11{bottom:605.213333pt;}
.y59{bottom:607.453333pt;}
.y7c{bottom:620.413333pt;}
.y40{bottom:620.733333pt;}
.y10{bottom:637.373333pt;}
.y58{bottom:639.613333pt;}
.y28{bottom:640.093333pt;}
.y7b{bottom:652.573333pt;}
.y3f{bottom:652.893333pt;}
.y57{bottom:671.773333pt;}
.yf{bottom:682.493333pt;}
.y7a{bottom:684.893333pt;}
.y3e{bottom:685.213333pt;}
.y27{bottom:690.653333pt;}
.y56{bottom:704.093333pt;}
.y3d{bottom:717.373333pt;}
.ye{bottom:728.413333pt;}
.y55{bottom:736.253333pt;}
.y26{bottom:741.693333pt;}
.y3c{bottom:749.533333pt;}
.y54{bottom:768.413333pt;}
.yd{bottom:774.013333pt;}
.y3b{bottom:781.693333pt;}
.y53{bottom:800.613333pt;}
.y3a{bottom:814.053333pt;}
.yc{bottom:819.493333pt;}
.y52{bottom:832.933333pt;}
.yac{bottom:845.893333pt;}
.y39{bottom:846.213333pt;}
.yb{bottom:851.653333pt;}
.y51{bottom:865.093333pt;}
.yab{bottom:878.053333pt;}
.y38{bottom:878.373333pt;}
.y25{bottom:883.973333pt;}
.ya{bottom:897.253333pt;}
.y37{bottom:910.533333pt;}
.y24{bottom:929.093333pt;}
.y50{bottom:929.413333pt;}
.y9{bottom:942.853333pt;}
.y4f{bottom:961.573333pt;}
.y8{bottom:974.693333pt;}
.y23{bottom:975.013333pt;}
.y4e{bottom:993.893333pt;}
.y7{bottom:1006.853333pt;}
.y22{bottom:1007.173333pt;}
.y4d{bottom:1039.040000pt;}
.y6{bottom:1039.360000pt;}
.y1{bottom:1089.920000pt;}
.hd{height:18.720000pt;}
.h4{height:19.040000pt;}
.hf{height:24.640000pt;}
.he{height:43.680000pt;}
.hb{height:47.742188pt;}
.h9{height:52.503750pt;}
.h2{height:58.563750pt;}
.h8{height:61.717500pt;}
.h3{height:62.781250pt;}
.hc{height:62.880000pt;}
.h7{height:73.454062pt;}
.h6{height:73.490625pt;}
.h5{height:75.465000pt;}
.h13{height:76.960000pt;}
.h14{height:76.964840pt;}
.ha{height:116.320000pt;}
.h11{height:158.400000pt;}
.h10{height:158.560000pt;}
.h12{height:316.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:20.640000pt;}
.w9{width:20.800000pt;}
.we{width:26.720000pt;}
.w8{width:26.880000pt;}
.wa{width:32.800000pt;}
.w2{width:44.032000pt;}
.wc{width:62.720000pt;}
.w7{width:77.600000pt;}
.w10{width:111.360000pt;}
.w3{width:127.680000pt;}
.w5{width:131.680000pt;}
.w6{width:134.080000pt;}
.w4{width:142.400000pt;}
.wd{width:146.720000pt;}
.w11{width:414.080000pt;}
.wf{width:556.480000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:7.426667pt;}
.x3c{left:13.440000pt;}
.x18{left:14.586667pt;}
.x4{left:18.266667pt;}
.x3e{left:21.280000pt;}
.x1c{left:36.573333pt;}
.x1e{left:37.853333pt;}
.x25{left:39.933333pt;}
.x1d{left:43.133333pt;}
.x23{left:45.093333pt;}
.x21{left:47.493333pt;}
.x22{left:49.413333pt;}
.x20{left:50.533333pt;}
.x28{left:51.493333pt;}
.x27{left:52.613333pt;}
.x1{left:85.152000pt;}
.x5{left:87.712000pt;}
.x15{left:94.592000pt;}
.x2{left:99.232000pt;}
.x17{left:109.152000pt;}
.xe{left:112.352000pt;}
.x11{left:113.952000pt;}
.xd{left:132.352000pt;}
.x3a{left:142.466667pt;}
.x19{left:143.386667pt;}
.x16{left:145.626667pt;}
.x3b{left:146.880000pt;}
.x39{left:148.546667pt;}
.x13{left:149.466667pt;}
.x38{left:154.653333pt;}
.x29{left:161.280000pt;}
.x3d{left:203.520000pt;}
.x3f{left:266.946667pt;}
.xb{left:272.386667pt;}
.x12{left:285.506667pt;}
.x8{left:287.586667pt;}
.xf{left:291.586667pt;}
.xc{left:293.186667pt;}
.x10{left:296.386667pt;}
.x9{left:302.946667pt;}
.xa{left:305.346667pt;}
.x14{left:311.426667pt;}
.x6{left:317.986667pt;}
.x2b{left:336.960000pt;}
.x2f{left:340.000000pt;}
.x34{left:358.560000pt;}
.x1f{left:370.400000pt;}
.x1a{left:384.546667pt;}
.x3{left:390.146667pt;}
.x7{left:411.133333pt;}
.x31{left:414.080000pt;}
.x2c{left:432.480000pt;}
.x40{left:434.813333pt;}
.x35{left:451.040000pt;}
.x24{left:469.600000pt;}
.x32{left:500.480000pt;}
.x2d{left:519.040000pt;}
.x30{left:522.080000pt;}
.x36{left:540.480000pt;}
.x26{left:554.720000pt;}
.x33{left:599.040000pt;}
.x2e{left:617.600000pt;}
.x37{left:636.160000pt;}
.x1b{left:690.373333pt;}
}




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