
    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_24d971564d86f32bd85431bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f3f2d24090f1ae5100824f3f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_81042c622ed510c7091e4a12.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e3e91cff976de866036a6dfc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5623dad7355e0b13e16edd81.woff')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fa0df3e1d8f900450adc9601.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ce10faaba38a5b7eb0e76204.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_044b83c73fd1bb31d6f27ecc.woff')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_236fb2b254be70be4d242af9.woff')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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:-21.060000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls14{letter-spacing:-1.332000px;}
.ls4{letter-spacing:-0.774000px;}
.ls7{letter-spacing:-0.666000px;}
.lsf{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.259800px;}
.ls11{letter-spacing:-0.220800px;}
.ls13{letter-spacing:-0.054720px;}
.ls5{letter-spacing:-0.053280px;}
.ls10{letter-spacing:-0.027360px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.259800px;}
.ls1a{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.284400px;}
.ls18{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.828000px;}
.ls12{letter-spacing:1.080000px;}
.lsb{letter-spacing:1.620000px;}
.ls1{letter-spacing:3.060000px;}
.ls8{letter-spacing:14.556000px;}
.ls19{letter-spacing:16.506720px;}
.ls17{letter-spacing:19.620000px;}
.ls16{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.020000px;}
.ws5{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.120000px;}
.ws7{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.680200px;}
.wse{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.504400px;}
.ws9{word-spacing:-14.220000px;}
.ws8{word-spacing:-14.192640px;}
.wsd{word-spacing:-14.165280px;}
.wsa{word-spacing:-13.999200px;}
.ws10{word-spacing:-13.500000px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._19{margin-left:-3.648240px;}
._b{margin-left:-2.269440px;}
._0{margin-left:-1.080000px;}
._10{width:1.062480px;}
._1{width:2.220000px;}
._11{width:3.778080px;}
._12{width:4.800960px;}
._13{width:5.827440px;}
._15{width:7.529760px;}
._16{width:9.276000px;}
._6{width:10.800000px;}
._17{width:12.204240px;}
._18{width:13.386240px;}
._35{width:15.243840px;}
._14{width:16.686240px;}
._1b{width:17.772480px;}
._1a{width:18.824400px;}
._27{width:20.309040px;}
._36{width:21.557520px;}
._2d{width:23.361120px;}
._67{width:24.467280px;}
._31{width:25.652880px;}
._71{width:27.084480px;}
._32{width:29.236320px;}
._5c{width:30.260160px;}
._40{width:31.454640px;}
._49{width:32.876640px;}
._25{width:34.924320px;}
._2e{width:36.232560px;}
._33{width:37.768320px;}
._22{width:39.133440px;}
._68{width:40.157280px;}
._5a{width:42.261840px;}
._65{width:44.764560px;}
._6d{width:46.584720px;}
._50{width:47.892960px;}
._70{width:49.240080px;}
._30{width:50.623200px;}
._54{width:51.874560px;}
._26{width:53.580960px;}
._6a{width:55.059840px;}
._57{width:59.667120px;}
._3e{width:60.861600px;}
._5e{width:62.169840px;}
._1e{width:63.307440px;}
._53{width:65.525760px;}
._1f{width:66.720240px;}
._47{width:69.052320px;}
._2c{width:70.474320px;}
._4e{width:72.237600px;}
._58{width:73.725840px;}
._7{width:76.284960px;}
._1d{width:82.589760px;}
._51{width:88.448400px;}
._28{width:90.666720px;}
._3f{width:91.804320px;}
._20{width:94.193280px;}
._41{width:97.037280px;}
._5d{width:100.677600px;}
._55{width:103.692240px;}
._4c{width:105.512400px;}
._29{width:107.389440px;}
._59{width:109.000320px;}
._5b{width:110.005920px;}
._44{width:112.906800px;}
._3c{width:114.442560px;}
._62{width:115.637040px;}
._66{width:117.627840px;}
._2f{width:119.618640px;}
._6e{width:120.728400px;}
._6f{width:121.908720px;}
._38{width:123.884640px;}
._2b{width:126.102960px;}
._60{width:127.232640px;}
._48{width:130.027680px;}
._24{width:131.392800px;}
._3b{width:132.611520px;}
._4a{width:135.317520px;}
._37{width:138.559680px;}
._6c{width:139.754160px;}
._3a{width:141.688080px;}
._2a{width:143.337600px;}
._43{width:145.214640px;}
._21{width:148.115520px;}
._4d{width:149.708160px;}
._46{width:152.722800px;}
._8{width:154.080000px;}
._4f{width:158.581440px;}
._39{width:162.449280px;}
._4b{width:166.544640px;}
._42{width:167.852880px;}
._34{width:171.493200px;}
._69{width:173.313360px;}
._56{width:179.304000px;}
._45{width:180.782880px;}
._3d{width:183.228720px;}
._52{width:186.338880px;}
._64{width:187.476480px;}
._5f{width:189.069120px;}
._d{width:195.120000px;}
._61{width:215.177040px;}
._6b{width:227.463120px;}
._63{width:233.947440px;}
._2{width:255.512640px;}
._23{width:257.666400px;}
._3{width:357.300000px;}
._5{width:436.440000px;}
._4{width:443.166240px;}
._1c{width:444.355680px;}
._9{width:604.364160px;}
._e{width:653.880000px;}
._f{width:703.560000px;}
._a{width:1096.860000px;}
._c{width:1176.060000px;}
.fc3{color:rgb(75,92,94);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y81{bottom:2.160000px;}
.y7f{bottom:5.400000px;}
.y6f{bottom:5.580000px;}
.y98{bottom:5.610000px;}
.ye{bottom:6.300000px;}
.y6{bottom:12.420000px;}
.y8{bottom:18.180000px;}
.y6e{bottom:24.300000px;}
.y7e{bottom:24.330000px;}
.y76{bottom:24.480000px;}
.y94{bottom:24.510000px;}
.y9f{bottom:24.525000px;}
.yc{bottom:38.520000px;}
.y5{bottom:40.320000px;}
.y6d{bottom:43.200000px;}
.y7d{bottom:43.230000px;}
.y9e{bottom:43.245000px;}
.ybc{bottom:43.380000px;}
.ya2{bottom:43.410000px;}
.yb{bottom:60.300000px;}
.y87{bottom:61.920000px;}
.y7c{bottom:61.950000px;}
.y75{bottom:62.100000px;}
.y8d{bottom:62.130000px;}
.y9d{bottom:62.145000px;}
.y4{bottom:68.400000px;}
.yd{bottom:77.940000px;}
.y86{bottom:80.820000px;}
.y7b{bottom:80.850000px;}
.y74{bottom:81.000000px;}
.y8c{bottom:81.030000px;}
.y9c{bottom:81.045000px;}
.ya{bottom:82.080000px;}
.y3{bottom:96.330000px;}
.y73{bottom:99.720000px;}
.y7a{bottom:99.750000px;}
.y84{bottom:99.900000px;}
.y97{bottom:99.930000px;}
.y9b{bottom:99.945000px;}
.y3c{bottom:111.060000px;}
.ya1{bottom:115.380000px;}
.y6b{bottom:117.540000px;}
.y92{bottom:118.440000px;}
.y79{bottom:118.470000px;}
.y83{bottom:118.620000px;}
.y8b{bottom:118.650000px;}
.y72{bottom:118.665000px;}
.yb9{bottom:118.800000px;}
.y2{bottom:125.670000px;}
.y3b{bottom:130.860000px;}
.y93{bottom:135.000000px;}
.yc0{bottom:135.180000px;}
.y6a{bottom:137.340000px;}
.y78{bottom:137.370000px;}
.y8a{bottom:137.550000px;}
.y71{bottom:137.565000px;}
.yb8{bottom:138.600000px;}
.y77{bottom:138.960000px;}
.y3a{bottom:150.660000px;}
.ybf{bottom:155.010000px;}
.y8f{bottom:156.240000px;}
.y91{bottom:156.285000px;}
.y89{bottom:156.450000px;}
.y69{bottom:157.350000px;}
.yb7{bottom:158.430000px;}
.y39{bottom:170.490000px;}
.y68{bottom:177.150000px;}
.yb6{bottom:178.410000px;}
.y38{bottom:190.290000px;}
.y67{bottom:196.950000px;}
.yb5{bottom:198.210000px;}
.y37{bottom:210.270000px;}
.y66{bottom:216.750000px;}
.yb4{bottom:218.010000px;}
.ya0{bottom:229.350000px;}
.y36{bottom:230.070000px;}
.y65{bottom:236.550000px;}
.yb3{bottom:237.810000px;}
.y90{bottom:248.970000px;}
.y35{bottom:249.870000px;}
.y64{bottom:256.530000px;}
.yb2{bottom:257.610000px;}
.y34{bottom:269.670000px;}
.y63{bottom:276.330000px;}
.yb1{bottom:277.590000px;}
.y33{bottom:289.470000px;}
.y70{bottom:290.370000px;}
.y62{bottom:296.130000px;}
.yb0{bottom:297.390000px;}
.y32{bottom:309.450000px;}
.y61{bottom:315.930000px;}
.yaf{bottom:317.190000px;}
.y31{bottom:329.250000px;}
.y60{bottom:335.730000px;}
.yae{bottom:336.990000px;}
.y30{bottom:349.050000px;}
.y5f{bottom:355.710000px;}
.yad{bottom:356.790000px;}
.y2f{bottom:368.850000px;}
.y5e{bottom:375.510000px;}
.yac{bottom:376.770000px;}
.y9a{bottom:380.730000px;}
.y2e{bottom:388.650000px;}
.y5d{bottom:395.310000px;}
.yab{bottom:396.570000px;}
.y2d{bottom:408.675000px;}
.y5c{bottom:415.155000px;}
.yaa{bottom:416.415000px;}
.y8e{bottom:419.295000px;}
.y2c{bottom:428.475000px;}
.y5b{bottom:434.955000px;}
.ya9{bottom:436.215000px;}
.y6c{bottom:441.975000px;}
.y2b{bottom:448.275000px;}
.y5a{bottom:454.935000px;}
.ya8{bottom:456.015000px;}
.y2a{bottom:468.075000px;}
.y59{bottom:474.735000px;}
.ya7{bottom:475.995000px;}
.y29{bottom:487.875000px;}
.y58{bottom:494.535000px;}
.ya6{bottom:495.795000px;}
.y28{bottom:507.855000px;}
.y80{bottom:509.115000px;}
.y57{bottom:514.335000px;}
.ya5{bottom:515.595000px;}
.y27{bottom:527.655000px;}
.y99{bottom:532.335000px;}
.y56{bottom:534.135000px;}
.ya4{bottom:535.395000px;}
.y26{bottom:547.455000px;}
.y55{bottom:554.115000px;}
.ya3{bottom:555.195000px;}
.y25{bottom:567.255000px;}
.ybe{bottom:569.955000px;}
.y54{bottom:573.915000px;}
.y24{bottom:587.055000px;}
.y88{bottom:589.575000px;}
.y53{bottom:593.715000px;}
.y23{bottom:607.035000px;}
.y52{bottom:613.515000px;}
.y22{bottom:624.315000px;}
.y51{bottom:633.315000px;}
.y21{bottom:644.115000px;}
.y96{bottom:646.095000px;}
.y50{bottom:653.325000px;}
.y20{bottom:661.425000px;}
.y4f{bottom:673.125000px;}
.y1f{bottom:681.225000px;}
.y4e{bottom:692.925000px;}
.y1e{bottom:701.025000px;}
.ybd{bottom:702.645000px;}
.y4d{bottom:712.725000px;}
.y1d{bottom:720.825000px;}
.y4c{bottom:732.525000px;}
.y1c{bottom:740.625000px;}
.y4b{bottom:752.505000px;}
.y85{bottom:760.065000px;}
.y1b{bottom:760.425000px;}
.y4a{bottom:772.305000px;}
.y1a{bottom:780.405000px;}
.y49{bottom:792.105000px;}
.y95{bottom:797.685000px;}
.y19{bottom:800.205000px;}
.y48{bottom:811.905000px;}
.y18{bottom:820.005000px;}
.y47{bottom:831.705000px;}
.ybb{bottom:835.305000px;}
.y17{bottom:839.805000px;}
.y46{bottom:851.685000px;}
.y16{bottom:857.085000px;}
.y45{bottom:871.485000px;}
.y15{bottom:876.885000px;}
.y44{bottom:891.285000px;}
.y14{bottom:901.950000px;}
.y43{bottom:911.130000px;}
.y82{bottom:911.490000px;}
.y13{bottom:917.250000px;}
.y42{bottom:930.930000px;}
.y12{bottom:939.030000px;}
.y41{bottom:950.910000px;}
.y11{bottom:957.750000px;}
.y40{bottom:970.710000px;}
.y10{bottom:981.150000px;}
.yba{bottom:986.910000px;}
.y3f{bottom:990.510000px;}
.y3e{bottom:1010.310000px;}
.yf{bottom:1012.830000px;}
.y3d{bottom:1030.110000px;}
.y9{bottom:1047.570000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h7{height:2.581875px;}
.h13{height:16.200000px;}
.ha{height:21.780000px;}
.h8{height:33.480000px;}
.hd{height:34.855313px;}
.h16{height:40.132617px;}
.he{height:42.164648px;}
.h4{height:46.736719px;}
.h20{height:48.496641px;}
.h1f{height:49.255313px;}
.h10{height:50.992031px;}
.hc{height:53.224453px;}
.h5{height:53.573906px;}
.hf{height:56.520000px;}
.h9{height:59.383125px;}
.h3{height:63.500977px;}
.hb{height:67.565039px;}
.h14{height:67.824844px;}
.h6{height:112.536000px;}
.h1b{height:113.040000px;}
.h1a{height:113.076000px;}
.h1d{height:113.256000px;}
.h15{height:131.940000px;}
.h1e{height:131.976000px;}
.h2{height:146.736000px;}
.h1c{height:150.660000px;}
.h12{height:150.690000px;}
.h11{height:150.870000px;}
.h18{height:169.560000px;}
.h19{height:169.590000px;}
.h17{height:169.770000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.720000px;}
.w6{width:39.420000px;}
.w8{width:59.940000px;}
.w7{width:73.476000px;}
.wa{width:86.940000px;}
.wb{width:100.476000px;}
.wc{width:101.160000px;}
.w9{width:127.476000px;}
.w3{width:131.976000px;}
.we{width:134.316000px;}
.wd{width:147.816000px;}
.wf{width:370.695000px;}
.w2{width:654.450000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x16{left:10.800000px;}
.x15{left:41.940000px;}
.xd{left:48.060000px;}
.x1{left:53.460000px;}
.x17{left:80.999987px;}
.x6{left:96.335987px;}
.x18{left:108.035987px;}
.x4{left:118.290000px;}
.xe{left:122.436000px;}
.x9{left:159.869987px;}
.x7{left:168.869987px;}
.xf{left:183.090000px;}
.xb{left:219.449987px;}
.xc{left:269.714987px;}
.x10{left:311.475000px;}
.xa{left:342.614987px;}
.x11{left:399.135000px;}
.x8{left:446.504987px;}
.x12{left:500.505000px;}
.x13{left:602.385000px;}
.x3{left:707.910000px;}
.x14{left:750.930000px;}
.x5{left:829.440000px;}
@media print{
.v2{vertical-align:-18.720000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls14{letter-spacing:-1.184000pt;}
.ls4{letter-spacing:-0.688000pt;}
.ls7{letter-spacing:-0.592000pt;}
.lsf{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.230933pt;}
.ls11{letter-spacing:-0.196267pt;}
.ls13{letter-spacing:-0.048640pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls10{letter-spacing:-0.024320pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.230933pt;}
.ls1a{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.252800pt;}
.ls18{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.736000pt;}
.ls12{letter-spacing:0.960000pt;}
.lsb{letter-spacing:1.440000pt;}
.ls1{letter-spacing:2.720000pt;}
.ls8{letter-spacing:12.938667pt;}
.ls19{letter-spacing:14.672640pt;}
.ls17{letter-spacing:17.440000pt;}
.ls16{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.240000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.232640pt;}
.ws6{word-spacing:-13.049067pt;}
.wse{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.892800pt;}
.ws9{word-spacing:-12.640000pt;}
.ws8{word-spacing:-12.615680pt;}
.wsd{word-spacing:-12.591360pt;}
.wsa{word-spacing:-12.443733pt;}
.ws10{word-spacing:-12.000000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._19{margin-left:-3.242880pt;}
._b{margin-left:-2.017280pt;}
._0{margin-left:-0.960000pt;}
._10{width:0.944427pt;}
._1{width:1.973333pt;}
._11{width:3.358293pt;}
._12{width:4.267520pt;}
._13{width:5.179947pt;}
._15{width:6.693120pt;}
._16{width:8.245333pt;}
._6{width:9.600000pt;}
._17{width:10.848213pt;}
._18{width:11.898880pt;}
._35{width:13.550080pt;}
._14{width:14.832213pt;}
._1b{width:15.797760pt;}
._1a{width:16.732800pt;}
._27{width:18.052480pt;}
._36{width:19.162240pt;}
._2d{width:20.765440pt;}
._67{width:21.748693pt;}
._31{width:22.802560pt;}
._71{width:24.075093pt;}
._32{width:25.987840pt;}
._5c{width:26.897920pt;}
._40{width:27.959680pt;}
._49{width:29.223680pt;}
._25{width:31.043840pt;}
._2e{width:32.206720pt;}
._33{width:33.571840pt;}
._22{width:34.785280pt;}
._68{width:35.695360pt;}
._5a{width:37.566080pt;}
._65{width:39.790720pt;}
._6d{width:41.408640pt;}
._50{width:42.571520pt;}
._70{width:43.768960pt;}
._30{width:44.998400pt;}
._54{width:46.110720pt;}
._26{width:47.627520pt;}
._6a{width:48.942080pt;}
._57{width:53.037440pt;}
._3e{width:54.099200pt;}
._5e{width:55.262080pt;}
._1e{width:56.273280pt;}
._53{width:58.245120pt;}
._1f{width:59.306880pt;}
._47{width:61.379840pt;}
._2c{width:62.643840pt;}
._4e{width:64.211200pt;}
._58{width:65.534080pt;}
._7{width:67.808853pt;}
._1d{width:73.413120pt;}
._51{width:78.620800pt;}
._28{width:80.592640pt;}
._3f{width:81.603840pt;}
._20{width:83.727360pt;}
._41{width:86.255360pt;}
._5d{width:89.491200pt;}
._55{width:92.170880pt;}
._4c{width:93.788800pt;}
._29{width:95.457280pt;}
._59{width:96.889173pt;}
._5b{width:97.783040pt;}
._44{width:100.361600pt;}
._3c{width:101.726720pt;}
._62{width:102.788480pt;}
._66{width:104.558080pt;}
._2f{width:106.327680pt;}
._6e{width:107.314133pt;}
._6f{width:108.363307pt;}
._38{width:110.119680pt;}
._2b{width:112.091520pt;}
._60{width:113.095680pt;}
._48{width:115.580160pt;}
._24{width:116.793600pt;}
._3b{width:117.876907pt;}
._4a{width:120.282240pt;}
._37{width:123.164160pt;}
._6c{width:124.225920pt;}
._3a{width:125.944960pt;}
._2a{width:127.411200pt;}
._43{width:129.079680pt;}
._21{width:131.658240pt;}
._4d{width:133.073920pt;}
._46{width:135.753600pt;}
._8{width:136.960000pt;}
._4f{width:140.961280pt;}
._39{width:144.399360pt;}
._4b{width:148.039680pt;}
._42{width:149.202560pt;}
._34{width:152.438400pt;}
._69{width:154.056320pt;}
._56{width:159.381333pt;}
._45{width:160.695893pt;}
._3d{width:162.869973pt;}
._52{width:165.634560pt;}
._64{width:166.645760pt;}
._5f{width:168.061440pt;}
._d{width:173.440000pt;}
._61{width:191.268480pt;}
._6b{width:202.189440pt;}
._63{width:207.953280pt;}
._2{width:227.122347pt;}
._23{width:229.036800pt;}
._3{width:317.600000pt;}
._5{width:387.946667pt;}
._4{width:393.925547pt;}
._1c{width:394.982827pt;}
._9{width:537.212587pt;}
._e{width:581.226667pt;}
._f{width:625.386667pt;}
._a{width:974.986667pt;}
._c{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:1.920000pt;}
.y7f{bottom:4.800000pt;}
.y6f{bottom:4.960000pt;}
.y98{bottom:4.986667pt;}
.ye{bottom:5.600000pt;}
.y6{bottom:11.040000pt;}
.y8{bottom:16.160000pt;}
.y6e{bottom:21.600000pt;}
.y7e{bottom:21.626667pt;}
.y76{bottom:21.760000pt;}
.y94{bottom:21.786667pt;}
.y9f{bottom:21.800000pt;}
.yc{bottom:34.240000pt;}
.y5{bottom:35.840000pt;}
.y6d{bottom:38.400000pt;}
.y7d{bottom:38.426667pt;}
.y9e{bottom:38.440000pt;}
.ybc{bottom:38.560000pt;}
.ya2{bottom:38.586667pt;}
.yb{bottom:53.600000pt;}
.y87{bottom:55.040000pt;}
.y7c{bottom:55.066667pt;}
.y75{bottom:55.200000pt;}
.y8d{bottom:55.226667pt;}
.y9d{bottom:55.240000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:69.280000pt;}
.y86{bottom:71.840000pt;}
.y7b{bottom:71.866667pt;}
.y74{bottom:72.000000pt;}
.y8c{bottom:72.026667pt;}
.y9c{bottom:72.040000pt;}
.ya{bottom:72.960000pt;}
.y3{bottom:85.626667pt;}
.y73{bottom:88.640000pt;}
.y7a{bottom:88.666667pt;}
.y84{bottom:88.800000pt;}
.y97{bottom:88.826667pt;}
.y9b{bottom:88.840000pt;}
.y3c{bottom:98.720000pt;}
.ya1{bottom:102.560000pt;}
.y6b{bottom:104.480000pt;}
.y92{bottom:105.280000pt;}
.y79{bottom:105.306667pt;}
.y83{bottom:105.440000pt;}
.y8b{bottom:105.466667pt;}
.y72{bottom:105.480000pt;}
.yb9{bottom:105.600000pt;}
.y2{bottom:111.706667pt;}
.y3b{bottom:116.320000pt;}
.y93{bottom:120.000000pt;}
.yc0{bottom:120.160000pt;}
.y6a{bottom:122.080000pt;}
.y78{bottom:122.106667pt;}
.y8a{bottom:122.266667pt;}
.y71{bottom:122.280000pt;}
.yb8{bottom:123.200000pt;}
.y77{bottom:123.520000pt;}
.y3a{bottom:133.920000pt;}
.ybf{bottom:137.786667pt;}
.y8f{bottom:138.880000pt;}
.y91{bottom:138.920000pt;}
.y89{bottom:139.066667pt;}
.y69{bottom:139.866667pt;}
.yb7{bottom:140.826667pt;}
.y39{bottom:151.546667pt;}
.y68{bottom:157.466667pt;}
.yb6{bottom:158.586667pt;}
.y38{bottom:169.146667pt;}
.y67{bottom:175.066667pt;}
.yb5{bottom:176.186667pt;}
.y37{bottom:186.906667pt;}
.y66{bottom:192.666667pt;}
.yb4{bottom:193.786667pt;}
.ya0{bottom:203.866667pt;}
.y36{bottom:204.506667pt;}
.y65{bottom:210.266667pt;}
.yb3{bottom:211.386667pt;}
.y90{bottom:221.306667pt;}
.y35{bottom:222.106667pt;}
.y64{bottom:228.026667pt;}
.yb2{bottom:228.986667pt;}
.y34{bottom:239.706667pt;}
.y63{bottom:245.626667pt;}
.yb1{bottom:246.746667pt;}
.y33{bottom:257.306667pt;}
.y70{bottom:258.106667pt;}
.y62{bottom:263.226667pt;}
.yb0{bottom:264.346667pt;}
.y32{bottom:275.066667pt;}
.y61{bottom:280.826667pt;}
.yaf{bottom:281.946667pt;}
.y31{bottom:292.666667pt;}
.y60{bottom:298.426667pt;}
.yae{bottom:299.546667pt;}
.y30{bottom:310.266667pt;}
.y5f{bottom:316.186667pt;}
.yad{bottom:317.146667pt;}
.y2f{bottom:327.866667pt;}
.y5e{bottom:333.786667pt;}
.yac{bottom:334.906667pt;}
.y9a{bottom:338.426667pt;}
.y2e{bottom:345.466667pt;}
.y5d{bottom:351.386667pt;}
.yab{bottom:352.506667pt;}
.y2d{bottom:363.266667pt;}
.y5c{bottom:369.026667pt;}
.yaa{bottom:370.146667pt;}
.y8e{bottom:372.706667pt;}
.y2c{bottom:380.866667pt;}
.y5b{bottom:386.626667pt;}
.ya9{bottom:387.746667pt;}
.y6c{bottom:392.866667pt;}
.y2b{bottom:398.466667pt;}
.y5a{bottom:404.386667pt;}
.ya8{bottom:405.346667pt;}
.y2a{bottom:416.066667pt;}
.y59{bottom:421.986667pt;}
.ya7{bottom:423.106667pt;}
.y29{bottom:433.666667pt;}
.y58{bottom:439.586667pt;}
.ya6{bottom:440.706667pt;}
.y28{bottom:451.426667pt;}
.y80{bottom:452.546667pt;}
.y57{bottom:457.186667pt;}
.ya5{bottom:458.306667pt;}
.y27{bottom:469.026667pt;}
.y99{bottom:473.186667pt;}
.y56{bottom:474.786667pt;}
.ya4{bottom:475.906667pt;}
.y26{bottom:486.626667pt;}
.y55{bottom:492.546667pt;}
.ya3{bottom:493.506667pt;}
.y25{bottom:504.226667pt;}
.ybe{bottom:506.626667pt;}
.y54{bottom:510.146667pt;}
.y24{bottom:521.826667pt;}
.y88{bottom:524.066667pt;}
.y53{bottom:527.746667pt;}
.y23{bottom:539.586667pt;}
.y52{bottom:545.346667pt;}
.y22{bottom:554.946667pt;}
.y51{bottom:562.946667pt;}
.y21{bottom:572.546667pt;}
.y96{bottom:574.306667pt;}
.y50{bottom:580.733333pt;}
.y20{bottom:587.933333pt;}
.y4f{bottom:598.333333pt;}
.y1f{bottom:605.533333pt;}
.y4e{bottom:615.933333pt;}
.y1e{bottom:623.133333pt;}
.ybd{bottom:624.573333pt;}
.y4d{bottom:633.533333pt;}
.y1d{bottom:640.733333pt;}
.y4c{bottom:651.133333pt;}
.y1c{bottom:658.333333pt;}
.y4b{bottom:668.893333pt;}
.y85{bottom:675.613333pt;}
.y1b{bottom:675.933333pt;}
.y4a{bottom:686.493333pt;}
.y1a{bottom:693.693333pt;}
.y49{bottom:704.093333pt;}
.y95{bottom:709.053333pt;}
.y19{bottom:711.293333pt;}
.y48{bottom:721.693333pt;}
.y18{bottom:728.893333pt;}
.y47{bottom:739.293333pt;}
.ybb{bottom:742.493333pt;}
.y17{bottom:746.493333pt;}
.y46{bottom:757.053333pt;}
.y16{bottom:761.853333pt;}
.y45{bottom:774.653333pt;}
.y15{bottom:779.453333pt;}
.y44{bottom:792.253333pt;}
.y14{bottom:801.733333pt;}
.y43{bottom:809.893333pt;}
.y82{bottom:810.213333pt;}
.y13{bottom:815.333333pt;}
.y42{bottom:827.493333pt;}
.y12{bottom:834.693333pt;}
.y41{bottom:845.253333pt;}
.y11{bottom:851.333333pt;}
.y40{bottom:862.853333pt;}
.y10{bottom:872.133333pt;}
.yba{bottom:877.253333pt;}
.y3f{bottom:880.453333pt;}
.y3e{bottom:898.053333pt;}
.yf{bottom:900.293333pt;}
.y3d{bottom:915.653333pt;}
.y9{bottom:931.173333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h7{height:2.295000pt;}
.h13{height:14.400000pt;}
.ha{height:19.360000pt;}
.h8{height:29.760000pt;}
.hd{height:30.982500pt;}
.h16{height:35.673437pt;}
.he{height:37.479688pt;}
.h4{height:41.543750pt;}
.h20{height:43.108125pt;}
.h1f{height:43.782500pt;}
.h10{height:45.326250pt;}
.hc{height:47.310625pt;}
.h5{height:47.621250pt;}
.hf{height:50.240000pt;}
.h9{height:52.785000pt;}
.h3{height:56.445312pt;}
.hb{height:60.057813pt;}
.h14{height:60.288750pt;}
.h6{height:100.032000pt;}
.h1b{height:100.480000pt;}
.h1a{height:100.512000pt;}
.h1d{height:100.672000pt;}
.h15{height:117.280000pt;}
.h1e{height:117.312000pt;}
.h2{height:130.432000pt;}
.h1c{height:133.920000pt;}
.h12{height:133.946667pt;}
.h11{height:134.106667pt;}
.h18{height:150.720000pt;}
.h19{height:150.746667pt;}
.h17{height:150.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.640000pt;}
.w6{width:35.040000pt;}
.w8{width:53.280000pt;}
.w7{width:65.312000pt;}
.wa{width:77.280000pt;}
.wb{width:89.312000pt;}
.wc{width:89.920000pt;}
.w9{width:113.312000pt;}
.w3{width:117.312000pt;}
.we{width:119.392000pt;}
.wd{width:131.392000pt;}
.wf{width:329.506667pt;}
.w2{width:581.733333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x16{left:9.600000pt;}
.x15{left:37.280000pt;}
.xd{left:42.720000pt;}
.x1{left:47.520000pt;}
.x17{left:71.999988pt;}
.x6{left:85.631988pt;}
.x18{left:96.031988pt;}
.x4{left:105.146667pt;}
.xe{left:108.832000pt;}
.x9{left:142.106655pt;}
.x7{left:150.106655pt;}
.xf{left:162.746667pt;}
.xb{left:195.066655pt;}
.xc{left:239.746655pt;}
.x10{left:276.866667pt;}
.xa{left:304.546655pt;}
.x11{left:354.786667pt;}
.x8{left:396.893322pt;}
.x12{left:444.893333pt;}
.x13{left:535.453333pt;}
.x3{left:629.253333pt;}
.x14{left:667.493333pt;}
.x5{left:737.280000pt;}
}




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