
    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_934bb624a0ffc19f20760fde.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_6f615bf3d846b0c6f9b7c470.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904000;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_c224a7209220c679604096c7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_b09fe641fdb563cbc224e0f7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895000;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_d83e3689f6486456a07f8052.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.968000;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_e8a51d113abccb4482f215c5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_4ec8769d11d59da0232b30e5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.454000;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_83d894803d37b15c8d3411e4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.854000;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_f96610be8a6029b5236e937c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_fb0f940d84491916e5c4ed9a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.725000;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_363f273da5fbc7e31fef4db9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.637000;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_078fb57e2eba2128bf7e1b1f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.694000;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);}
.v3{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.264000px;}
.v1{vertical-align:22.854000px;}
.v7{vertical-align:30.510000px;}
.v4{vertical-align:34.794000px;}
.v6{vertical-align:36.486000px;}
.v5{vertical-align:42.030000px;}
.ls7{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.001928px;}
.ls1a{letter-spacing:0.003358px;}
.ls26{letter-spacing:0.008876px;}
.ls3{letter-spacing:0.376589px;}
.lsf{letter-spacing:0.430387px;}
.ls22{letter-spacing:1.506355px;}
.ls1e{letter-spacing:1.560154px;}
.ls1{letter-spacing:2.987468px;}
.ls8{letter-spacing:2.987543px;}
.ls2{letter-spacing:2.993468px;}
.ls4{letter-spacing:3.819686px;}
.ls1d{letter-spacing:5.810227px;}
.ls24{letter-spacing:5.864026px;}
.ls23{letter-spacing:9.199526px;}
.ls27{letter-spacing:12.319834px;}
.ls15{letter-spacing:12.588826px;}
.ls14{letter-spacing:12.965414px;}
.ls20{letter-spacing:13.288205px;}
.lsc{letter-spacing:13.449600px;}
.lse{letter-spacing:15.332544px;}
.ls1f{letter-spacing:15.386342px;}
.ls5{letter-spacing:15.762931px;}
.ls21{letter-spacing:16.085722px;}
.ls10{letter-spacing:16.097543px;}
.ls18{letter-spacing:16.230330px;}
.ls16{letter-spacing:16.408512px;}
.ls13{letter-spacing:16.439468px;}
.lsb{letter-spacing:16.892698px;}
.lsa{letter-spacing:17.269286px;}
.ls1b{letter-spacing:18.347543px;}
.ls19{letter-spacing:18.477569px;}
.ls12{letter-spacing:18.506650px;}
.ls6{letter-spacing:19.206029px;}
.lsd{letter-spacing:20.829569px;}
.ls28{letter-spacing:21.196570px;}
.ls11{letter-spacing:21.509468px;}
.ls0{letter-spacing:22.093117px;}
.ls9{letter-spacing:26.899200px;}
.ls25{letter-spacing:43.001781px;}
.ls1c{letter-spacing:82.075559px;}
.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;}
}
.ws40{word-spacing:-55.293996px;}
.ws32{word-spacing:-36.071827px;}
.ws47{word-spacing:-26.872301px;}
.ws41{word-spacing:-23.805792px;}
.ws3f{word-spacing:-22.783622px;}
.ws9{word-spacing:-15.359443px;}
.ws2{word-spacing:-13.449600px;}
.ws45{word-spacing:-6.159917px;}
.ws42{word-spacing:-3.093408px;}
.ws3a{word-spacing:-2.994394px;}
.ws20{word-spacing:-2.958912px;}
.ws15{word-spacing:-2.851315px;}
.wsa{word-spacing:-2.582323px;}
.ws17{word-spacing:-2.151936px;}
.ws3e{word-spacing:-2.098138px;}
.ws1c{word-spacing:-1.829146px;}
.ws11{word-spacing:-1.775347px;}
.ws21{word-spacing:-1.484400px;}
.ws3{word-spacing:-1.452557px;}
.ws8{word-spacing:-1.022170px;}
.ws39{word-spacing:-0.860774px;}
.ws16{word-spacing:-0.645581px;}
.ws2d{word-spacing:-0.430387px;}
.ws2c{word-spacing:-0.376589px;}
.ws34{word-spacing:-0.322790px;}
.ws1d{word-spacing:-0.268992px;}
.ws29{word-spacing:-0.053798px;}
.ws3d{word-spacing:-0.026899px;}
.ws0{word-spacing:0.000000px;}
.ws44{word-spacing:0.026899px;}
.ws36{word-spacing:0.053798px;}
.ws35{word-spacing:0.107597px;}
.wsb{word-spacing:0.484186px;}
.ws2a{word-spacing:0.860774px;}
.ws6{word-spacing:1.075968px;}
.ws18{word-spacing:1.183565px;}
.ws7{word-spacing:1.344960px;}
.wsc{word-spacing:1.613952px;}
.ws2f{word-spacing:1.775347px;}
.ws2e{word-spacing:1.829146px;}
.ws28{word-spacing:1.882944px;}
.ws19{word-spacing:2.259533px;}
.wse{word-spacing:2.367130px;}
.ws1e{word-spacing:2.420928px;}
.ws1b{word-spacing:2.474726px;}
.ws43{word-spacing:2.636122px;}
.ws2b{word-spacing:2.905114px;}
.ws4{word-spacing:2.958912px;}
.ws1a{word-spacing:3.066509px;}
.ws22{word-spacing:3.174106px;}
.ws1f{word-spacing:3.227904px;}
.ws33{word-spacing:3.443098px;}
.ws27{word-spacing:3.604493px;}
.ws13{word-spacing:4.034880px;}
.ws25{word-spacing:4.088678px;}
.ws24{word-spacing:4.142477px;}
.ws3b{word-spacing:4.196275px;}
.ws5{word-spacing:4.303872px;}
.ws26{word-spacing:4.465267px;}
.ws38{word-spacing:5.057050px;}
.ws23{word-spacing:5.110848px;}
.ws14{word-spacing:5.864026px;}
.ws37{word-spacing:6.079219px;}
.wsf{word-spacing:6.348211px;}
.ws10{word-spacing:6.563405px;}
.ws30{word-spacing:6.832397px;}
.ws53{word-spacing:7.208986px;}
.ws3c{word-spacing:8.284954px;}
.ws51{word-spacing:8.392550px;}
.ws50{word-spacing:8.500147px;}
.ws12{word-spacing:8.661542px;}
.ws55{word-spacing:9.952704px;}
.ws46{word-spacing:12.166216px;}
.ws49{word-spacing:12.172216px;}
.ws48{word-spacing:12.177817px;}
.ws4a{word-spacing:12.183817px;}
.wsd{word-spacing:12.373632px;}
.ws4d{word-spacing:13.395802px;}
.ws4b{word-spacing:16.354714px;}
.ws4f{word-spacing:16.946496px;}
.ws4c{word-spacing:20.281997px;}
.ws54{word-spacing:20.658586px;}
.ws1{word-spacing:25.719808px;}
.ws52{word-spacing:28.644539px;}
.ws4e{word-spacing:32.225242px;}
.ws31{word-spacing:40.348800px;}
._10{margin-left:-7.370394px;}
._1{margin-left:-5.355910px;}
._2{margin-left:-3.981082px;}
._0{margin-left:-2.582310px;}
._3{margin-left:-1.452570px;}
._c{width:1.936742px;}
._6{width:3.077623px;}
._4{width:4.813807px;}
._a{width:12.104653px;}
._b{width:13.180595px;}
._11{width:14.310374px;}
._8{width:16.354714px;}
._9{width:17.916874px;}
._d{width:22.552948px;}
._5{width:24.229075px;}
._f{width:26.899200px;}
._12{width:32.332838px;}
._7{width:53.798400px;}
._e{width:107.877727px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y35{bottom:112.182000px;}
.y61{bottom:112.183500px;}
.y34{bottom:130.116000px;}
.y60{bottom:136.093500px;}
.y33{bottom:148.048500px;}
.y5f{bottom:160.003500px;}
.y5e{bottom:183.913500px;}
.y32{bottom:183.954000px;}
.y31{bottom:201.886500px;}
.y5d{bottom:211.029000px;}
.y30{bottom:219.819000px;}
.y5c{bottom:234.939000px;}
.y2f{bottom:237.751500px;}
.y2e{bottom:255.684000px;}
.y5b{bottom:258.849000px;}
.y2d{bottom:273.616500px;}
.y5a{bottom:276.781500px;}
.y2c{bottom:291.550500px;}
.y59{bottom:299.259000px;}
.y58{bottom:308.380500px;}
.y2b{bottom:309.483000px;}
.y57{bottom:334.807500px;}
.y2a{bottom:336.421500px;}
.y56{bottom:352.740000px;}
.y55{bottom:369.451500px;}
.y54{bottom:378.573000px;}
.y29{bottom:395.025000px;}
.y53{bottom:406.323000px;}
.y27{bottom:412.959000px;}
.y26{bottom:430.891500px;}
.y52{bottom:433.438500px;}
.y25{bottom:448.824000px;}
.y51{bottom:451.390500px;}
.y24{bottom:466.756500px;}
.y50{bottom:478.504500px;}
.y23{bottom:484.689000px;}
.y4f{bottom:496.438500px;}
.y28{bottom:502.621500px;}
.y22{bottom:502.623000px;}
.y4e{bottom:523.356000px;}
.y21{bottom:540.076500px;}
.y4d{bottom:579.529500px;}
.y14{bottom:580.560000px;}
.y4c{bottom:597.462000px;}
.y13{bottom:598.492500px;}
.y4b{bottom:615.394500px;}
.y12{bottom:616.425000px;}
.y82{bottom:630.951000px;}
.y4a{bottom:633.348000px;}
.y20{bottom:643.324500px;}
.y11{bottom:643.615500px;}
.y49{bottom:651.280500px;}
.y81{bottom:657.849000px;}
.y48{bottom:678.178500px;}
.y1f{bottom:697.122000px;}
.y74{bottom:711.648000px;}
.y1e{bottom:715.054500px;}
.y47{bottom:724.797000px;}
.y10{bottom:732.696000px;}
.y1d{bottom:732.987000px;}
.y73{bottom:737.052000px;}
.y46{bottom:742.729500px;}
.y80{bottom:745.188000px;}
.yf{bottom:750.628500px;}
.y1c{bottom:750.921000px;}
.y72{bottom:759.468000px;}
.y45{bottom:760.662000px;}
.ye{bottom:768.561000px;}
.y1b{bottom:768.853500px;}
.y7f{bottom:775.740000px;}
.y71{bottom:777.400500px;}
.y44{bottom:778.614000px;}
.yd{bottom:786.495000px;}
.y1a{bottom:786.786000px;}
.y7e{bottom:793.674000px;}
.y70{bottom:795.334500px;}
.y43{bottom:796.548000px;}
.yc{bottom:804.427500px;}
.y19{bottom:804.718500px;}
.y7d{bottom:812.271000px;}
.y6f{bottom:813.267000px;}
.yb{bottom:822.360000px;}
.y18{bottom:822.651000px;}
.y42{bottom:823.446000px;}
.y7c{bottom:830.203500px;}
.y6e{bottom:831.199500px;}
.ya{bottom:840.292500px;}
.y17{bottom:840.585000px;}
.y7b{bottom:848.136000px;}
.y6d{bottom:849.132000px;}
.y9{bottom:858.225000px;}
.y16{bottom:858.517500px;}
.y7a{bottom:866.068500px;}
.y41{bottom:870.064500px;}
.y6c{bottom:874.537500px;}
.y15{bottom:885.415500px;}
.y8{bottom:885.417000px;}
.y40{bottom:887.997000px;}
.y6b{bottom:892.470000px;}
.y79{bottom:899.610000px;}
.y3f{bottom:905.929500px;}
.y6a{bottom:917.874000px;}
.y78{bottom:918.207000px;}
.y3e{bottom:923.881500px;}
.y7{bottom:931.876500px;}
.y69{bottom:935.806500px;}
.y3d{bottom:941.814000px;}
.y6{bottom:946.821000px;}
.y77{bottom:951.747000px;}
.y68{bottom:953.740500px;}
.y5{bottom:961.764000px;}
.y3c{bottom:968.713500px;}
.y76{bottom:970.344000px;}
.y67{bottom:971.673000px;}
.y4{bottom:976.708500px;}
.y75{bottom:988.941000px;}
.y66{bottom:989.605500px;}
.y3{bottom:994.641000px;}
.y3b{bottom:1015.332000px;}
.y65{bottom:1016.505000px;}
.y3a{bottom:1033.264500px;}
.y64{bottom:1052.370000px;}
.y2{bottom:1054.456500px;}
.y39{bottom:1060.183500px;}
.y63{bottom:1069.929000px;}
.y62{bottom:1079.050500px;}
.y1{bottom:1084.345500px;}
.y38{bottom:1106.800500px;}
.y37{bottom:1124.733000px;}
.y36{bottom:1160.598000px;}
.h18{height:31.944161px;}
.h5{height:32.804932px;}
.ha{height:36.744307px;}
.h8{height:36.905702px;}
.he{height:37.008307px;}
.hb{height:37.014307px;}
.h7{height:38.358259px;}
.h10{height:39.000259px;}
.h11{height:39.006259px;}
.h9{height:40.348800px;}
.h6{height:41.077895px;}
.hc{height:47.916442px;}
.hf{height:48.992410px;}
.h16{height:49.207603px;}
.hd{height:50.622259px;}
.h12{height:50.628259px;}
.h4{height:58.790728px;}
.h3{height:72.201388px;}
.h2{height:73.647481px;}
.h13{height:75.142800px;}
.h14{height:75.202800px;}
.h17{height:76.834800px;}
.h15{height:78.559114px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:95.580000px;}
.x33{left:108.841500px;}
.x1e{left:112.768500px;}
.xc{left:122.478000px;}
.x3c{left:125.841000px;}
.x21{left:129.216000px;}
.x40{left:130.339500px;}
.x4e{left:131.445000px;}
.x36{left:135.325500px;}
.x1f{left:158.172000px;}
.x46{left:163.552500px;}
.xb{left:166.828500px;}
.x13{left:189.726000px;}
.x32{left:195.684000px;}
.x1b{left:206.223000px;}
.x16{left:229.012500px;}
.x4a{left:231.862500px;}
.x2c{left:237.352500px;}
.x2f{left:246.535500px;}
.x4c{left:257.638500px;}
.x22{left:272.953500px;}
.x3b{left:275.520000px;}
.x18{left:283.797000px;}
.x34{left:289.230000px;}
.x4b{left:300.022500px;}
.x4f{left:303.306000px;}
.x1c{left:322.794000px;}
.x2d{left:324.172500px;}
.x29{left:333.649500px;}
.x38{left:340.071000px;}
.x14{left:384.604500px;}
.x47{left:397.066500px;}
.x43{left:406.716000px;}
.x48{left:408.609000px;}
.x3e{left:410.994000px;}
.x4d{left:415.950000px;}
.x2a{left:418.072500px;}
.x3a{left:420.960000px;}
.x49{left:439.233000px;}
.x3f{left:443.688000px;}
.x44{left:455.316000px;}
.x2{left:464.512500px;}
.x26{left:472.131000px;}
.x50{left:477.775500px;}
.x52{left:480.381000px;}
.x8{left:483.193500px;}
.xd{left:491.412000px;}
.xf{left:495.150000px;}
.x51{left:500.377500px;}
.x24{left:502.248000px;}
.x41{left:507.556500px;}
.x35{left:514.222500px;}
.x19{left:518.494500px;}
.x27{left:522.732000px;}
.x5{left:524.581500px;}
.x3d{left:543.795000px;}
.x15{left:553.819500px;}
.x10{left:566.884500px;}
.x2e{left:571.518000px;}
.x39{left:577.309500px;}
.x1d{left:597.729000px;}
.x30{left:599.139000px;}
.x2b{left:607.632000px;}
.x12{left:615.777000px;}
.x23{left:627.096000px;}
.x1a{left:632.509500px;}
.x28{left:635.127000px;}
.x3{left:638.064000px;}
.xe{left:656.506500px;}
.x42{left:658.926000px;}
.x11{left:662.529000px;}
.x17{left:669.294000px;}
.x6{left:679.876500px;}
.x45{left:694.413000px;}
.x20{left:697.801500px;}
.x31{left:711.250500px;}
.x4{left:715.945500px;}
.x7{left:728.814000px;}
.x37{left:752.461500px;}
.xa{left:767.496000px;}
.x9{left:784.129500px;}
.x25{left:790.855500px;}
@media print{
.v3{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.901333pt;}
.v1{vertical-align:20.314667pt;}
.v7{vertical-align:27.120000pt;}
.v4{vertical-align:30.928000pt;}
.v6{vertical-align:32.432000pt;}
.v5{vertical-align:37.360000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.001713pt;}
.ls1a{letter-spacing:0.002985pt;}
.ls26{letter-spacing:0.007890pt;}
.ls3{letter-spacing:0.334746pt;}
.lsf{letter-spacing:0.382566pt;}
.ls22{letter-spacing:1.338982pt;}
.ls1e{letter-spacing:1.386803pt;}
.ls1{letter-spacing:2.655527pt;}
.ls8{letter-spacing:2.655594pt;}
.ls2{letter-spacing:2.660861pt;}
.ls4{letter-spacing:3.395277pt;}
.ls1d{letter-spacing:5.164646pt;}
.ls24{letter-spacing:5.212467pt;}
.ls23{letter-spacing:8.177357pt;}
.ls27{letter-spacing:10.950963pt;}
.ls15{letter-spacing:11.190067pt;}
.ls14{letter-spacing:11.524813pt;}
.ls20{letter-spacing:11.811738pt;}
.lsc{letter-spacing:11.955200pt;}
.lse{letter-spacing:13.628928pt;}
.ls1f{letter-spacing:13.676749pt;}
.ls5{letter-spacing:14.011494pt;}
.ls21{letter-spacing:14.298419pt;}
.ls10{letter-spacing:14.308927pt;}
.ls18{letter-spacing:14.426960pt;}
.ls16{letter-spacing:14.585344pt;}
.ls13{letter-spacing:14.612861pt;}
.lsb{letter-spacing:15.015731pt;}
.lsa{letter-spacing:15.350477pt;}
.ls1b{letter-spacing:16.308927pt;}
.ls19{letter-spacing:16.424506pt;}
.ls12{letter-spacing:16.450355pt;}
.ls6{letter-spacing:17.072026pt;}
.lsd{letter-spacing:18.515173pt;}
.ls28{letter-spacing:18.841395pt;}
.ls11{letter-spacing:19.119527pt;}
.ls0{letter-spacing:19.638326pt;}
.ls9{letter-spacing:23.910400pt;}
.ls25{letter-spacing:38.223805pt;}
.ls1c{letter-spacing:72.956052pt;}
.ws40{word-spacing:-49.150218pt;}
.ws32{word-spacing:-32.063846pt;}
.ws47{word-spacing:-23.886490pt;}
.ws41{word-spacing:-21.160704pt;}
.ws3f{word-spacing:-20.252109pt;}
.ws9{word-spacing:-13.652838pt;}
.ws2{word-spacing:-11.955200pt;}
.ws45{word-spacing:-5.475482pt;}
.ws42{word-spacing:-2.749696pt;}
.ws3a{word-spacing:-2.661683pt;}
.ws20{word-spacing:-2.630144pt;}
.ws15{word-spacing:-2.534502pt;}
.wsa{word-spacing:-2.295398pt;}
.ws17{word-spacing:-1.912832pt;}
.ws3e{word-spacing:-1.865011pt;}
.ws1c{word-spacing:-1.625907pt;}
.ws11{word-spacing:-1.578086pt;}
.ws21{word-spacing:-1.319467pt;}
.ws3{word-spacing:-1.291162pt;}
.ws8{word-spacing:-0.908595pt;}
.ws39{word-spacing:-0.765133pt;}
.ws16{word-spacing:-0.573850pt;}
.ws2d{word-spacing:-0.382566pt;}
.ws2c{word-spacing:-0.334746pt;}
.ws34{word-spacing:-0.286925pt;}
.ws1d{word-spacing:-0.239104pt;}
.ws29{word-spacing:-0.047821pt;}
.ws3d{word-spacing:-0.023910pt;}
.ws0{word-spacing:0.000000pt;}
.ws44{word-spacing:0.023910pt;}
.ws36{word-spacing:0.047821pt;}
.ws35{word-spacing:0.095642pt;}
.wsb{word-spacing:0.430387pt;}
.ws2a{word-spacing:0.765133pt;}
.ws6{word-spacing:0.956416pt;}
.ws18{word-spacing:1.052058pt;}
.ws7{word-spacing:1.195520pt;}
.wsc{word-spacing:1.434624pt;}
.ws2f{word-spacing:1.578086pt;}
.ws2e{word-spacing:1.625907pt;}
.ws28{word-spacing:1.673728pt;}
.ws19{word-spacing:2.008474pt;}
.wse{word-spacing:2.104115pt;}
.ws1e{word-spacing:2.151936pt;}
.ws1b{word-spacing:2.199757pt;}
.ws43{word-spacing:2.343219pt;}
.ws2b{word-spacing:2.582323pt;}
.ws4{word-spacing:2.630144pt;}
.ws1a{word-spacing:2.725786pt;}
.ws22{word-spacing:2.821427pt;}
.ws1f{word-spacing:2.869248pt;}
.ws33{word-spacing:3.060531pt;}
.ws27{word-spacing:3.203994pt;}
.ws13{word-spacing:3.586560pt;}
.ws25{word-spacing:3.634381pt;}
.ws24{word-spacing:3.682202pt;}
.ws3b{word-spacing:3.730022pt;}
.ws5{word-spacing:3.825664pt;}
.ws26{word-spacing:3.969126pt;}
.ws38{word-spacing:4.495155pt;}
.ws23{word-spacing:4.542976pt;}
.ws14{word-spacing:5.212467pt;}
.ws37{word-spacing:5.403750pt;}
.wsf{word-spacing:5.642854pt;}
.ws10{word-spacing:5.834138pt;}
.ws30{word-spacing:6.073242pt;}
.ws53{word-spacing:6.407987pt;}
.ws3c{word-spacing:7.364403pt;}
.ws51{word-spacing:7.460045pt;}
.ws50{word-spacing:7.555686pt;}
.ws12{word-spacing:7.699149pt;}
.ws55{word-spacing:8.846848pt;}
.ws46{word-spacing:10.814415pt;}
.ws49{word-spacing:10.819748pt;}
.ws48{word-spacing:10.824726pt;}
.ws4a{word-spacing:10.830060pt;}
.wsd{word-spacing:10.998784pt;}
.ws4d{word-spacing:11.907379pt;}
.ws4b{word-spacing:14.537523pt;}
.ws4f{word-spacing:15.063552pt;}
.ws4c{word-spacing:18.028442pt;}
.ws54{word-spacing:18.363187pt;}
.ws1{word-spacing:22.862051pt;}
.ws52{word-spacing:25.461813pt;}
.ws4e{word-spacing:28.644659pt;}
.ws31{word-spacing:35.865600pt;}
._10{margin-left:-6.551461pt;}
._1{margin-left:-4.760809pt;}
._2{margin-left:-3.538739pt;}
._0{margin-left:-2.295387pt;}
._3{margin-left:-1.291173pt;}
._c{width:1.721549pt;}
._6{width:2.735665pt;}
._4{width:4.278940pt;}
._a{width:10.759692pt;}
._b{width:11.716084pt;}
._11{width:12.720333pt;}
._8{width:14.537523pt;}
._9{width:15.926110pt;}
._d{width:20.047065pt;}
._5{width:21.536956pt;}
._f{width:23.910400pt;}
._12{width:28.740301pt;}
._7{width:47.820800pt;}
._e{width:95.891313pt;}
.fs4{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:99.717333pt;}
.y61{bottom:99.718667pt;}
.y34{bottom:115.658667pt;}
.y60{bottom:120.972000pt;}
.y33{bottom:131.598667pt;}
.y5f{bottom:142.225333pt;}
.y5e{bottom:163.478667pt;}
.y32{bottom:163.514667pt;}
.y31{bottom:179.454667pt;}
.y5d{bottom:187.581333pt;}
.y30{bottom:195.394667pt;}
.y5c{bottom:208.834667pt;}
.y2f{bottom:211.334667pt;}
.y2e{bottom:227.274667pt;}
.y5b{bottom:230.088000pt;}
.y2d{bottom:243.214667pt;}
.y5a{bottom:246.028000pt;}
.y2c{bottom:259.156000pt;}
.y59{bottom:266.008000pt;}
.y58{bottom:274.116000pt;}
.y2b{bottom:275.096000pt;}
.y57{bottom:297.606667pt;}
.y2a{bottom:299.041333pt;}
.y56{bottom:313.546667pt;}
.y55{bottom:328.401333pt;}
.y54{bottom:336.509333pt;}
.y29{bottom:351.133333pt;}
.y53{bottom:361.176000pt;}
.y27{bottom:367.074667pt;}
.y26{bottom:383.014667pt;}
.y52{bottom:385.278667pt;}
.y25{bottom:398.954667pt;}
.y51{bottom:401.236000pt;}
.y24{bottom:414.894667pt;}
.y50{bottom:425.337333pt;}
.y23{bottom:430.834667pt;}
.y4f{bottom:441.278667pt;}
.y28{bottom:446.774667pt;}
.y22{bottom:446.776000pt;}
.y4e{bottom:465.205333pt;}
.y21{bottom:480.068000pt;}
.y4d{bottom:515.137333pt;}
.y14{bottom:516.053333pt;}
.y4c{bottom:531.077333pt;}
.y13{bottom:531.993333pt;}
.y4b{bottom:547.017333pt;}
.y12{bottom:547.933333pt;}
.y82{bottom:560.845333pt;}
.y4a{bottom:562.976000pt;}
.y20{bottom:571.844000pt;}
.y11{bottom:572.102667pt;}
.y49{bottom:578.916000pt;}
.y81{bottom:584.754667pt;}
.y48{bottom:602.825333pt;}
.y1f{bottom:619.664000pt;}
.y74{bottom:632.576000pt;}
.y1e{bottom:635.604000pt;}
.y47{bottom:644.264000pt;}
.y10{bottom:651.285333pt;}
.y1d{bottom:651.544000pt;}
.y73{bottom:655.157333pt;}
.y46{bottom:660.204000pt;}
.y80{bottom:662.389333pt;}
.yf{bottom:667.225333pt;}
.y1c{bottom:667.485333pt;}
.y72{bottom:675.082667pt;}
.y45{bottom:676.144000pt;}
.ye{bottom:683.165333pt;}
.y1b{bottom:683.425333pt;}
.y7f{bottom:689.546667pt;}
.y71{bottom:691.022667pt;}
.y44{bottom:692.101333pt;}
.yd{bottom:699.106667pt;}
.y1a{bottom:699.365333pt;}
.y7e{bottom:705.488000pt;}
.y70{bottom:706.964000pt;}
.y43{bottom:708.042667pt;}
.yc{bottom:715.046667pt;}
.y19{bottom:715.305333pt;}
.y7d{bottom:722.018667pt;}
.y6f{bottom:722.904000pt;}
.yb{bottom:730.986667pt;}
.y18{bottom:731.245333pt;}
.y42{bottom:731.952000pt;}
.y7c{bottom:737.958667pt;}
.y6e{bottom:738.844000pt;}
.ya{bottom:746.926667pt;}
.y17{bottom:747.186667pt;}
.y7b{bottom:753.898667pt;}
.y6d{bottom:754.784000pt;}
.y9{bottom:762.866667pt;}
.y16{bottom:763.126667pt;}
.y7a{bottom:769.838667pt;}
.y41{bottom:773.390667pt;}
.y6c{bottom:777.366667pt;}
.y15{bottom:787.036000pt;}
.y8{bottom:787.037333pt;}
.y40{bottom:789.330667pt;}
.y6b{bottom:793.306667pt;}
.y79{bottom:799.653333pt;}
.y3f{bottom:805.270667pt;}
.y6a{bottom:815.888000pt;}
.y78{bottom:816.184000pt;}
.y3e{bottom:821.228000pt;}
.y7{bottom:828.334667pt;}
.y69{bottom:831.828000pt;}
.y3d{bottom:837.168000pt;}
.y6{bottom:841.618667pt;}
.y77{bottom:845.997333pt;}
.y68{bottom:847.769333pt;}
.y5{bottom:854.901333pt;}
.y3c{bottom:861.078667pt;}
.y76{bottom:862.528000pt;}
.y67{bottom:863.709333pt;}
.y4{bottom:868.185333pt;}
.y75{bottom:879.058667pt;}
.y66{bottom:879.649333pt;}
.y3{bottom:884.125333pt;}
.y3b{bottom:902.517333pt;}
.y65{bottom:903.560000pt;}
.y3a{bottom:918.457333pt;}
.y64{bottom:935.440000pt;}
.y2{bottom:937.294667pt;}
.y39{bottom:942.385333pt;}
.y63{bottom:951.048000pt;}
.y62{bottom:959.156000pt;}
.y1{bottom:963.862667pt;}
.y38{bottom:983.822667pt;}
.y37{bottom:999.762667pt;}
.y36{bottom:1031.642667pt;}
.h18{height:28.394810pt;}
.h5{height:29.159939pt;}
.ha{height:32.661606pt;}
.h8{height:32.805069pt;}
.he{height:32.896273pt;}
.hb{height:32.901606pt;}
.h7{height:34.096230pt;}
.h10{height:34.666897pt;}
.h11{height:34.672230pt;}
.h9{height:35.865600pt;}
.h6{height:36.513685pt;}
.hc{height:42.592393pt;}
.hf{height:43.548809pt;}
.h16{height:43.740092pt;}
.hd{height:44.997564pt;}
.h12{height:45.002897pt;}
.h4{height:52.258425pt;}
.h3{height:64.179011pt;}
.h2{height:65.464428pt;}
.h13{height:66.793600pt;}
.h14{height:66.846933pt;}
.h17{height:68.297600pt;}
.h15{height:69.830323pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:84.960000pt;}
.x33{left:96.748000pt;}
.x1e{left:100.238667pt;}
.xc{left:108.869333pt;}
.x3c{left:111.858667pt;}
.x21{left:114.858667pt;}
.x40{left:115.857333pt;}
.x4e{left:116.840000pt;}
.x36{left:120.289333pt;}
.x1f{left:140.597333pt;}
.x46{left:145.380000pt;}
.xb{left:148.292000pt;}
.x13{left:168.645333pt;}
.x32{left:173.941333pt;}
.x1b{left:183.309333pt;}
.x16{left:203.566667pt;}
.x4a{left:206.100000pt;}
.x2c{left:210.980000pt;}
.x2f{left:219.142667pt;}
.x4c{left:229.012000pt;}
.x22{left:242.625333pt;}
.x3b{left:244.906667pt;}
.x18{left:252.264000pt;}
.x34{left:257.093333pt;}
.x4b{left:266.686667pt;}
.x4f{left:269.605333pt;}
.x1c{left:286.928000pt;}
.x2d{left:288.153333pt;}
.x29{left:296.577333pt;}
.x38{left:302.285333pt;}
.x14{left:341.870667pt;}
.x47{left:352.948000pt;}
.x43{left:361.525333pt;}
.x48{left:363.208000pt;}
.x3e{left:365.328000pt;}
.x4d{left:369.733333pt;}
.x2a{left:371.620000pt;}
.x3a{left:374.186667pt;}
.x49{left:390.429333pt;}
.x3f{left:394.389333pt;}
.x44{left:404.725333pt;}
.x2{left:412.900000pt;}
.x26{left:419.672000pt;}
.x50{left:424.689333pt;}
.x52{left:427.005333pt;}
.x8{left:429.505333pt;}
.xd{left:436.810667pt;}
.xf{left:440.133333pt;}
.x51{left:444.780000pt;}
.x24{left:446.442667pt;}
.x41{left:451.161333pt;}
.x35{left:457.086667pt;}
.x19{left:460.884000pt;}
.x27{left:464.650667pt;}
.x5{left:466.294667pt;}
.x3d{left:483.373333pt;}
.x15{left:492.284000pt;}
.x10{left:503.897333pt;}
.x2e{left:508.016000pt;}
.x39{left:513.164000pt;}
.x1d{left:531.314667pt;}
.x30{left:532.568000pt;}
.x2b{left:540.117333pt;}
.x12{left:547.357333pt;}
.x23{left:557.418667pt;}
.x1a{left:562.230667pt;}
.x28{left:564.557333pt;}
.x3{left:567.168000pt;}
.xe{left:583.561333pt;}
.x42{left:585.712000pt;}
.x11{left:588.914667pt;}
.x17{left:594.928000pt;}
.x6{left:604.334667pt;}
.x45{left:617.256000pt;}
.x20{left:620.268000pt;}
.x31{left:632.222667pt;}
.x4{left:636.396000pt;}
.x7{left:647.834667pt;}
.x37{left:668.854667pt;}
.xa{left:682.218667pt;}
.x9{left:697.004000pt;}
.x25{left:702.982667pt;}
}




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