
    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_12c96bcf591de23e51efc360.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_8bc4a3b8385c37097f45d723.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_70ddf498790b1baa539fc923.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7c46f302a381fe5ea1fcb76d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_359d01edf130577d36b3965b.woff2')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_da0cfa2334c4d9330d7760da.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_5d78a8982961a810b5155160.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_58b91249752c1b11acaa6bad.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_b024ba7707d88d19bf168a7a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.948242;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_3ce9021035a6562fa68b47d7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.960449;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:-24.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:24.120000px;}
.lsc{letter-spacing:-1.956000px;}
.ls15{letter-spacing:-0.306600px;}
.ls6{letter-spacing:-0.153600px;}
.ls4{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.139800px;}
.ls7{letter-spacing:-0.129000px;}
.ls8{letter-spacing:-0.114600px;}
.lsf{letter-spacing:-0.017280px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.018720px;}
.ls9{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.078600px;}
.ls10{letter-spacing:0.139800px;}
.ls13{letter-spacing:0.140040px;}
.ls2{letter-spacing:0.144000px;}
.lse{letter-spacing:0.153600px;}
.ls11{letter-spacing:19.646640px;}
.lsb{letter-spacing:41.366640px;}
.ls0{letter-spacing:87.686640px;}
.ls12{letter-spacing:199.406640px;}
.lsd{letter-spacing:205.191360px;}
.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;}
}
.wsa{word-spacing:-16.866960px;}
.wsc{word-spacing:-16.853160px;}
.ws9{word-spacing:-16.766640px;}
.ws3{word-spacing:-16.713360px;}
.wse{word-spacing:-16.573560px;}
.wsf{word-spacing:-16.406760px;}
.ws1{word-spacing:-15.030000px;}
.ws2{word-spacing:-15.012000px;}
.ws8{word-spacing:-14.967480px;}
.ws0{word-spacing:-14.868000px;}
.ws4{word-spacing:-13.310640px;}
.wsd{word-spacing:-10.808640px;}
.wsb{word-spacing:-10.791360px;}
.ws6{word-spacing:-9.519120px;}
.ws5{word-spacing:-9.404520px;}
.ws7{word-spacing:0.000000px;}
._23{margin-left:-6.991320px;}
._22{margin-left:-5.084400px;}
._9{margin-left:-3.907800px;}
._a{margin-left:-2.398800px;}
._2{margin-left:-1.208400px;}
._5{width:1.071120px;}
._8{width:2.175360px;}
._c{width:4.088160px;}
._d{width:5.470920px;}
._13{width:6.619200px;}
._10{width:7.755480px;}
._e{width:9.739440px;}
._f{width:11.603160px;}
._11{width:12.745440px;}
._12{width:13.767480px;}
._1a{width:15.330600px;}
._1c{width:18.396720px;}
._1b{width:19.899720px;}
._b{width:21.342600px;}
._19{width:22.725360px;}
._16{width:24.769440px;}
._17{width:29.819520px;}
._14{width:31.502880px;}
._15{width:32.825520px;}
._18{width:41.160000px;}
._1f{width:48.986400px;}
._1e{width:54.506520px;}
._21{width:65.579760px;}
._3{width:68.940720px;}
._0{width:80.418000px;}
._24{width:102.274200px;}
._1d{width:125.619960px;}
._6{width:130.712520px;}
._20{width:199.286640px;}
._1{width:200.988000px;}
._4{width:360.480960px;}
._7{width:1118.596080px;}
.fc6{color:rgb(31,77,120);}
.fc3{color:rgb(0,112,192);}
.fc5{color:rgb(34,34,34);}
.fc4{color:rgb(35,31,32);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(5,99,193);}
.fc0{color:rgb(47,84,150);}
.fs8{font-size:38.880000px;}
.fs7{font-size:42.120000px;}
.fs4{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:83.880000px;}
.fs5{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:18.630000px;}
.yae{bottom:19.440000px;}
.ya9{bottom:20.790000px;}
.yad{bottom:22.050000px;}
.y87{bottom:22.500000px;}
.y88{bottom:22.590000px;}
.y8d{bottom:22.950000px;}
.y8c{bottom:23.760000px;}
.y5{bottom:24.210000px;}
.ybe{bottom:36.360000px;}
.y4{bottom:38.070000px;}
.ybb{bottom:38.160000px;}
.ybc{bottom:38.250000px;}
.y9b{bottom:38.430000px;}
.yac{bottom:39.330000px;}
.y8b{bottom:41.040000px;}
.y27{bottom:44.010000px;}
.yab{bottom:56.520000px;}
.y8a{bottom:58.320000px;}
.y26{bottom:64.170000px;}
.y3{bottom:70.650000px;}
.yb4{bottom:111.870000px;}
.y85{bottom:120.960000px;}
.yd7{bottom:130.050000px;}
.yfc{bottom:130.590000px;}
.yb3{bottom:131.670000px;}
.y84{bottom:142.380000px;}
.y69{bottom:148.860000px;}
.yb2{bottom:151.560000px;}
.yd6{bottom:156.000000px;}
.yfb{bottom:156.450000px;}
.y89{bottom:156.990000px;}
.y4a{bottom:162.840000px;}
.y24{bottom:168.510000px;}
.yb1{bottom:171.390000px;}
.y68{bottom:174.810000px;}
.yd5{bottom:181.830000px;}
.y49{bottom:188.670000px;}
.yb0{bottom:191.280000px;}
.yfa{bottom:194.340000px;}
.y67{bottom:200.640000px;}
.yd4{bottom:207.750000px;}
.y48{bottom:214.590000px;}
.yf9{bottom:217.650000px;}
.y23{bottom:217.920000px;}
.y66{bottom:226.470000px;}
.yaf{bottom:227.910000px;}
.yd3{bottom:233.580000px;}
.y86{bottom:234.210000px;}
.y47{bottom:240.420000px;}
.yf8{bottom:240.960000px;}
.yaa{bottom:242.580000px;}
.y65{bottom:252.390000px;}
.yd2{bottom:259.500000px;}
.yf7{bottom:260.670000px;}
.y46{bottom:266.340000px;}
.y22{bottom:266.520000px;}
.y64{bottom:278.220000px;}
.yf6{bottom:280.470000px;}
.y21{bottom:283.620000px;}
.yd1{bottom:285.330000px;}
.y83{bottom:289.470000px;}
.y45{bottom:292.170000px;}
.yf5{bottom:300.360000px;}
.y63{bottom:304.140000px;}
.y82{bottom:306.840000px;}
.y20{bottom:309.630000px;}
.yd0{bottom:311.250000px;}
.y44{bottom:318.090000px;}
.yf4{bottom:320.250000px;}
.y62{bottom:329.970000px;}
.y1f{bottom:335.460000px;}
.ycf{bottom:337.080000px;}
.yf3{bottom:340.140000px;}
.y81{bottom:341.670000px;}
.y43{bottom:343.920000px;}
.y61{bottom:355.890000px;}
.yf2{bottom:359.850000px;}
.y1e{bottom:361.380000px;}
.y80{bottom:361.470000px;}
.y42{bottom:369.840000px;}
.ya8{bottom:378.840000px;}
.yce{bottom:379.020000px;}
.yf1{bottom:379.740000px;}
.y60{bottom:381.720000px;}
.y1d{bottom:387.210000px;}
.y41{bottom:395.670000px;}
.y7f{bottom:396.210000px;}
.yf0{bottom:399.630000px;}
.y1c{bottom:413.130000px;}
.ya7{bottom:413.670000px;}
.ycd{bottom:415.380000px;}
.yef{bottom:419.430000px;}
.y40{bottom:421.590000px;}
.y5f{bottom:422.490000px;}
.ya6{bottom:433.470000px;}
.ycc{bottom:435.270000px;}
.y7e{bottom:438.240000px;}
.y1b{bottom:438.960000px;}
.yee{bottom:439.320000px;}
.y3f{bottom:447.420000px;}
.ycb{bottom:455.070000px;}
.yed{bottom:459.120000px;}
.y5e{bottom:463.530000px;}
.y1a{bottom:464.880000px;}
.ya5{bottom:468.210000px;}
.y3e{bottom:473.250000px;}
.yca{bottom:474.870000px;}
.yec{bottom:478.920000px;}
.y7d{bottom:480.720000px;}
.y5d{bottom:489.360000px;}
.y19{bottom:490.710000px;}
.yc9{bottom:494.760000px;}
.yeb{bottom:498.810000px;}
.y3d{bottom:499.170000px;}
.y7c{bottom:506.550000px;}
.ya4{bottom:514.470000px;}
.y5c{bottom:515.280000px;}
.y18{bottom:516.540000px;}
.yea{bottom:518.610000px;}
.y3c{bottom:525.000000px;}
.yc8{bottom:529.590000px;}
.y7b{bottom:532.380000px;}
.ye9{bottom:538.500000px;}
.y5b{bottom:541.110000px;}
.y17{bottom:542.460000px;}
.ya3{bottom:549.390000px;}
.y3b{bottom:550.920000px;}
.ye8{bottom:558.210000px;}
.y7a{bottom:558.300000px;}
.y5a{bottom:567.030000px;}
.y16{bottom:568.290000px;}
.ya2{bottom:569.190000px;}
.yc7{bottom:569.280000px;}
.y3a{bottom:576.780000px;}
.ye7{bottom:578.130000px;}
.y79{bottom:584.160000px;}
.ya1{bottom:589.110000px;}
.y59{bottom:592.890000px;}
.y15{bottom:594.240000px;}
.ye6{bottom:598.020000px;}
.y39{bottom:602.700000px;}
.ya0{bottom:608.910000px;}
.y78{bottom:610.080000px;}
.y14{bottom:620.070000px;}
.ye5{bottom:621.150000px;}
.yc6{bottom:625.830000px;}
.y38{bottom:628.530000px;}
.y9f{bottom:628.710000px;}
.y58{bottom:633.750000px;}
.y77{bottom:635.910000px;}
.ye4{bottom:644.550000px;}
.y13{bottom:645.990000px;}
.y9e{bottom:648.600000px;}
.y37{bottom:654.450000px;}
.y76{bottom:661.830000px;}
.ye3{bottom:667.860000px;}
.yc5{bottom:669.840000px;}
.y12{bottom:671.820000px;}
.y57{bottom:674.520000px;}
.y36{bottom:680.280000px;}
.y9d{bottom:683.430000px;}
.ye2{bottom:687.570000px;}
.y75{bottom:687.660000px;}
.yc4{bottom:695.670000px;}
.y11{bottom:697.740000px;}
.y9a{bottom:698.010000px;}
.y35{bottom:706.200000px;}
.ye1{bottom:707.550000px;}
.y74{bottom:713.580000px;}
.y56{bottom:715.470000px;}
.yc3{bottom:721.590000px;}
.y10{bottom:723.570000px;}
.ye0{bottom:727.350000px;}
.y34{bottom:732.030000px;}
.y73{bottom:739.410000px;}
.y55{bottom:741.390000px;}
.ydf{bottom:747.150000px;}
.yc2{bottom:747.420000px;}
.y33{bottom:757.950000px;}
.y72{bottom:765.330000px;}
.yf{bottom:765.510000px;}
.yde{bottom:767.040000px;}
.yc1{bottom:773.340000px;}
.y99{bottom:775.320000px;}
.y54{bottom:782.250000px;}
.y32{bottom:783.780000px;}
.ydd{bottom:786.840000px;}
.yc0{bottom:790.440000px;}
.y71{bottom:791.160000px;}
.ydc{bottom:806.730000px;}
.ybf{bottom:807.720000px;}
.ye{bottom:807.900000px;}
.y53{bottom:808.170000px;}
.y31{bottom:809.700000px;}
.y70{bottom:817.080000px;}
.y98{bottom:820.320000px;}
.ybd{bottom:822.390000px;}
.ydb{bottom:826.530000px;}
.y52{bottom:834.000000px;}
.y30{bottom:835.530000px;}
.y97{bottom:837.780000px;}
.y6f{bottom:842.910000px;}
.yd{bottom:844.260000px;}
.y2f{bottom:861.450000px;}
.yda{bottom:868.470000px;}
.y6e{bottom:868.830000px;}
.y96{bottom:872.610000px;}
.yc{bottom:873.510000px;}
.y51{bottom:874.860000px;}
.y2e{bottom:887.280000px;}
.yb{bottom:890.610000px;}
.y95{bottom:892.410000px;}
.y6d{bottom:894.660000px;}
.yba{bottom:895.290000px;}
.yd9{bottom:910.860000px;}
.y2d{bottom:913.200000px;}
.y50{bottom:918.690000px;}
.ya{bottom:919.770000px;}
.y6c{bottom:920.580000px;}
.y94{bottom:927.150000px;}
.yd8{bottom:936.780000px;}
.y2c{bottom:939.030000px;}
.y9{bottom:943.710000px;}
.y6b{bottom:946.410000px;}
.y93{bottom:947.130000px;}
.yb9{bottom:955.590000px;}
.y4f{bottom:962.610000px;}
.y2b{bottom:964.860000px;}
.y92{bottom:966.930000px;}
.yb8{bottom:976.650000px;}
.y8{bottom:984.030000px;}
.y91{bottom:986.730000px;}
.y4e{bottom:988.530000px;}
.y2a{bottom:990.780000px;}
.y6a{bottom:997.830000px;}
.y90{bottom:1006.650000px;}
.yb7{bottom:1011.510000px;}
.y7{bottom:1011.780000px;}
.y4d{bottom:1014.390000px;}
.y29{bottom:1016.640000px;}
.y8f{bottom:1026.450000px;}
.yb6{bottom:1031.310000px;}
.y6{bottom:1039.590000px;}
.y4c{bottom:1040.310000px;}
.y8e{bottom:1046.340000px;}
.y28{bottom:1064.520000px;}
.yb5{bottom:1066.050000px;}
.y4b{bottom:1066.140000px;}
.y2{bottom:1097.730000px;}
.y25{bottom:1099.440000px;}
.y1{bottom:1120.320000px;}
.hd{height:34.740000px;}
.hb{height:36.450000px;}
.h7{height:41.893770px;}
.ha{height:43.945137px;}
.h4{height:49.937344px;}
.hf{height:52.110000px;}
.h1{height:56.320312px;}
.h8{height:62.703281px;}
.h3{height:65.526152px;}
.h10{height:68.554688px;}
.h9{height:68.710781px;}
.he{height:70.380000px;}
.hc{height:72.180000px;}
.h6{height:75.093750px;}
.h2{height:87.484219px;}
.h5{height:100.250156px;}
.h0{height:1188.000000px;}
.w6{width:55.440000px;}
.wd{width:61.560000px;}
.wf{width:63.360000px;}
.w11{width:73.620000px;}
.we{width:78.600000px;}
.w8{width:83.640000px;}
.w4{width:83.730000px;}
.w3{width:85.230000px;}
.w7{width:85.320000px;}
.wa{width:97.200000px;}
.w10{width:120.690000px;}
.w5{width:168.030000px;}
.w9{width:227.640000px;}
.wc{width:234.570000px;}
.w2{width:253.650000px;}
.wb{width:318.180000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x26{left:4.680000px;}
.x1d{left:6.480000px;}
.xf{left:9.000000px;}
.x1f{left:12.600000px;}
.x28{left:14.040000px;}
.x14{left:16.290000px;}
.x15{left:20.340000px;}
.x2b{left:33.570000px;}
.x1b{left:66.270000px;}
.x23{left:79.680000px;}
.x1{left:107.999986px;}
.xa{left:134.999986px;}
.x1a{left:137.520000px;}
.x22{left:142.830000px;}
.x18{left:144.899986px;}
.x20{left:152.489986px;}
.xb{left:162.029986px;}
.x16{left:172.469986px;}
.x7{left:177.239986px;}
.xc{left:183.359986px;}
.xe{left:184.439986px;}
.x2{left:189.389986px;}
.x19{left:225.749986px;}
.x3{left:244.019986px;}
.x5{left:248.069986px;}
.xd{left:263.459986px;}
.x21{left:265.529986px;}
.x17{left:293.879986px;}
.x4{left:321.779986px;}
.x6{left:346.529986px;}
.x1c{left:365.160000px;}
.x24{left:377.400000px;}
.x10{left:389.100000px;}
.x8{left:423.389986px;}
.x25{left:438.960000px;}
.x1e{left:462.360000px;}
.x11{left:474.330000px;}
.x27{left:517.560000px;}
.x12{left:558.060000px;}
.x29{left:580.920000px;}
.x2a{left:701.610000px;}
.x13{left:726.090000px;}
.x9{left:784.949986px;}
@media print{
.v2{vertical-align:-21.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.440000pt;}
.lsc{letter-spacing:-1.738667pt;}
.ls15{letter-spacing:-0.272533pt;}
.ls6{letter-spacing:-0.136533pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.124267pt;}
.ls7{letter-spacing:-0.114667pt;}
.ls8{letter-spacing:-0.101867pt;}
.lsf{letter-spacing:-0.015360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.016640pt;}
.ls9{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.069867pt;}
.ls10{letter-spacing:0.124267pt;}
.ls13{letter-spacing:0.124480pt;}
.ls2{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.136533pt;}
.ls11{letter-spacing:17.463680pt;}
.lsb{letter-spacing:36.770347pt;}
.ls0{letter-spacing:77.943680pt;}
.ls12{letter-spacing:177.250347pt;}
.lsd{letter-spacing:182.392320pt;}
.wsa{word-spacing:-14.992853pt;}
.wsc{word-spacing:-14.980587pt;}
.ws9{word-spacing:-14.903680pt;}
.ws3{word-spacing:-14.856320pt;}
.wse{word-spacing:-14.732053pt;}
.wsf{word-spacing:-14.583787pt;}
.ws1{word-spacing:-13.360000pt;}
.ws2{word-spacing:-13.344000pt;}
.ws8{word-spacing:-13.304427pt;}
.ws0{word-spacing:-13.216000pt;}
.ws4{word-spacing:-11.831680pt;}
.wsd{word-spacing:-9.607680pt;}
.wsb{word-spacing:-9.592320pt;}
.ws6{word-spacing:-8.461440pt;}
.ws5{word-spacing:-8.359573pt;}
.ws7{word-spacing:0.000000pt;}
._23{margin-left:-6.214507pt;}
._22{margin-left:-4.519467pt;}
._9{margin-left:-3.473600pt;}
._a{margin-left:-2.132267pt;}
._2{margin-left:-1.074133pt;}
._5{width:0.952107pt;}
._8{width:1.933653pt;}
._c{width:3.633920pt;}
._d{width:4.863040pt;}
._13{width:5.883733pt;}
._10{width:6.893760pt;}
._e{width:8.657280pt;}
._f{width:10.313920pt;}
._11{width:11.329280pt;}
._12{width:12.237760pt;}
._1a{width:13.627200pt;}
._1c{width:16.352640pt;}
._1b{width:17.688640pt;}
._b{width:18.971200pt;}
._19{width:20.200320pt;}
._16{width:22.017280pt;}
._17{width:26.506240pt;}
._14{width:28.002560pt;}
._15{width:29.178240pt;}
._18{width:36.586667pt;}
._1f{width:43.543467pt;}
._1e{width:48.450240pt;}
._21{width:58.293120pt;}
._3{width:61.280640pt;}
._0{width:71.482667pt;}
._24{width:90.910400pt;}
._1d{width:111.662187pt;}
._6{width:116.188907pt;}
._20{width:177.143680pt;}
._1{width:178.656000pt;}
._4{width:320.427520pt;}
._7{width:994.307627pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:37.440000pt;}
.fs4{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:74.560000pt;}
.fs5{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:16.560000pt;}
.yae{bottom:17.280000pt;}
.ya9{bottom:18.480000pt;}
.yad{bottom:19.600000pt;}
.y87{bottom:20.000000pt;}
.y88{bottom:20.080000pt;}
.y8d{bottom:20.400000pt;}
.y8c{bottom:21.120000pt;}
.y5{bottom:21.520000pt;}
.ybe{bottom:32.320000pt;}
.y4{bottom:33.840000pt;}
.ybb{bottom:33.920000pt;}
.ybc{bottom:34.000000pt;}
.y9b{bottom:34.160000pt;}
.yac{bottom:34.960000pt;}
.y8b{bottom:36.480000pt;}
.y27{bottom:39.120000pt;}
.yab{bottom:50.240000pt;}
.y8a{bottom:51.840000pt;}
.y26{bottom:57.040000pt;}
.y3{bottom:62.800000pt;}
.yb4{bottom:99.440000pt;}
.y85{bottom:107.520000pt;}
.yd7{bottom:115.600000pt;}
.yfc{bottom:116.080000pt;}
.yb3{bottom:117.040000pt;}
.y84{bottom:126.560000pt;}
.y69{bottom:132.320000pt;}
.yb2{bottom:134.720000pt;}
.yd6{bottom:138.666667pt;}
.yfb{bottom:139.066667pt;}
.y89{bottom:139.546667pt;}
.y4a{bottom:144.746667pt;}
.y24{bottom:149.786667pt;}
.yb1{bottom:152.346667pt;}
.y68{bottom:155.386667pt;}
.yd5{bottom:161.626667pt;}
.y49{bottom:167.706667pt;}
.yb0{bottom:170.026667pt;}
.yfa{bottom:172.746667pt;}
.y67{bottom:178.346667pt;}
.yd4{bottom:184.666667pt;}
.y48{bottom:190.746667pt;}
.yf9{bottom:193.466667pt;}
.y23{bottom:193.706667pt;}
.y66{bottom:201.306667pt;}
.yaf{bottom:202.586667pt;}
.yd3{bottom:207.626667pt;}
.y86{bottom:208.186667pt;}
.y47{bottom:213.706667pt;}
.yf8{bottom:214.186667pt;}
.yaa{bottom:215.626667pt;}
.y65{bottom:224.346667pt;}
.yd2{bottom:230.666667pt;}
.yf7{bottom:231.706667pt;}
.y46{bottom:236.746667pt;}
.y22{bottom:236.906667pt;}
.y64{bottom:247.306667pt;}
.yf6{bottom:249.306667pt;}
.y21{bottom:252.106667pt;}
.yd1{bottom:253.626667pt;}
.y83{bottom:257.306667pt;}
.y45{bottom:259.706667pt;}
.yf5{bottom:266.986667pt;}
.y63{bottom:270.346667pt;}
.y82{bottom:272.746667pt;}
.y20{bottom:275.226667pt;}
.yd0{bottom:276.666667pt;}
.y44{bottom:282.746667pt;}
.yf4{bottom:284.666667pt;}
.y62{bottom:293.306667pt;}
.y1f{bottom:298.186667pt;}
.ycf{bottom:299.626667pt;}
.yf3{bottom:302.346667pt;}
.y81{bottom:303.706667pt;}
.y43{bottom:305.706667pt;}
.y61{bottom:316.346667pt;}
.yf2{bottom:319.866667pt;}
.y1e{bottom:321.226667pt;}
.y80{bottom:321.306667pt;}
.y42{bottom:328.746667pt;}
.ya8{bottom:336.746667pt;}
.yce{bottom:336.906667pt;}
.yf1{bottom:337.546667pt;}
.y60{bottom:339.306667pt;}
.y1d{bottom:344.186667pt;}
.y41{bottom:351.706667pt;}
.y7f{bottom:352.186667pt;}
.yf0{bottom:355.226667pt;}
.y1c{bottom:367.226667pt;}
.ya7{bottom:367.706667pt;}
.ycd{bottom:369.226667pt;}
.yef{bottom:372.826667pt;}
.y40{bottom:374.746667pt;}
.y5f{bottom:375.546667pt;}
.ya6{bottom:385.306667pt;}
.ycc{bottom:386.906667pt;}
.y7e{bottom:389.546667pt;}
.y1b{bottom:390.186667pt;}
.yee{bottom:390.506667pt;}
.y3f{bottom:397.706667pt;}
.ycb{bottom:404.506667pt;}
.yed{bottom:408.106667pt;}
.y5e{bottom:412.026667pt;}
.y1a{bottom:413.226667pt;}
.ya5{bottom:416.186667pt;}
.y3e{bottom:420.666667pt;}
.yca{bottom:422.106667pt;}
.yec{bottom:425.706667pt;}
.y7d{bottom:427.306667pt;}
.y5d{bottom:434.986667pt;}
.y19{bottom:436.186667pt;}
.yc9{bottom:439.786667pt;}
.yeb{bottom:443.386667pt;}
.y3d{bottom:443.706667pt;}
.y7c{bottom:450.266667pt;}
.ya4{bottom:457.306667pt;}
.y5c{bottom:458.026667pt;}
.y18{bottom:459.146667pt;}
.yea{bottom:460.986667pt;}
.y3c{bottom:466.666667pt;}
.yc8{bottom:470.746667pt;}
.y7b{bottom:473.226667pt;}
.ye9{bottom:478.666667pt;}
.y5b{bottom:480.986667pt;}
.y17{bottom:482.186667pt;}
.ya3{bottom:488.346667pt;}
.y3b{bottom:489.706667pt;}
.ye8{bottom:496.186667pt;}
.y7a{bottom:496.266667pt;}
.y5a{bottom:504.026667pt;}
.y16{bottom:505.146667pt;}
.ya2{bottom:505.946667pt;}
.yc7{bottom:506.026667pt;}
.y3a{bottom:512.693333pt;}
.ye7{bottom:513.893333pt;}
.y79{bottom:519.253333pt;}
.ya1{bottom:523.653333pt;}
.y59{bottom:527.013333pt;}
.y15{bottom:528.213333pt;}
.ye6{bottom:531.573333pt;}
.y39{bottom:535.733333pt;}
.ya0{bottom:541.253333pt;}
.y78{bottom:542.293333pt;}
.y14{bottom:551.173333pt;}
.ye5{bottom:552.133333pt;}
.yc6{bottom:556.293333pt;}
.y38{bottom:558.693333pt;}
.y9f{bottom:558.853333pt;}
.y58{bottom:563.333333pt;}
.y77{bottom:565.253333pt;}
.ye4{bottom:572.933333pt;}
.y13{bottom:574.213333pt;}
.y9e{bottom:576.533333pt;}
.y37{bottom:581.733333pt;}
.y76{bottom:588.293333pt;}
.ye3{bottom:593.653333pt;}
.yc5{bottom:595.413333pt;}
.y12{bottom:597.173333pt;}
.y57{bottom:599.573333pt;}
.y36{bottom:604.693333pt;}
.y9d{bottom:607.493333pt;}
.ye2{bottom:611.173333pt;}
.y75{bottom:611.253333pt;}
.yc4{bottom:618.373333pt;}
.y11{bottom:620.213333pt;}
.y9a{bottom:620.453333pt;}
.y35{bottom:627.733333pt;}
.ye1{bottom:628.933333pt;}
.y74{bottom:634.293333pt;}
.y56{bottom:635.973333pt;}
.yc3{bottom:641.413333pt;}
.y10{bottom:643.173333pt;}
.ye0{bottom:646.533333pt;}
.y34{bottom:650.693333pt;}
.y73{bottom:657.253333pt;}
.y55{bottom:659.013333pt;}
.ydf{bottom:664.133333pt;}
.yc2{bottom:664.373333pt;}
.y33{bottom:673.733333pt;}
.y72{bottom:680.293333pt;}
.yf{bottom:680.453333pt;}
.yde{bottom:681.813333pt;}
.yc1{bottom:687.413333pt;}
.y99{bottom:689.173333pt;}
.y54{bottom:695.333333pt;}
.y32{bottom:696.693333pt;}
.ydd{bottom:699.413333pt;}
.yc0{bottom:702.613333pt;}
.y71{bottom:703.253333pt;}
.ydc{bottom:717.093333pt;}
.ybf{bottom:717.973333pt;}
.ye{bottom:718.133333pt;}
.y53{bottom:718.373333pt;}
.y31{bottom:719.733333pt;}
.y70{bottom:726.293333pt;}
.y98{bottom:729.173333pt;}
.ybd{bottom:731.013333pt;}
.ydb{bottom:734.693333pt;}
.y52{bottom:741.333333pt;}
.y30{bottom:742.693333pt;}
.y97{bottom:744.693333pt;}
.y6f{bottom:749.253333pt;}
.yd{bottom:750.453333pt;}
.y2f{bottom:765.733333pt;}
.yda{bottom:771.973333pt;}
.y6e{bottom:772.293333pt;}
.y96{bottom:775.653333pt;}
.yc{bottom:776.453333pt;}
.y51{bottom:777.653333pt;}
.y2e{bottom:788.693333pt;}
.yb{bottom:791.653333pt;}
.y95{bottom:793.253333pt;}
.y6d{bottom:795.253333pt;}
.yba{bottom:795.813333pt;}
.yd9{bottom:809.653333pt;}
.y2d{bottom:811.733333pt;}
.y50{bottom:816.613333pt;}
.ya{bottom:817.573333pt;}
.y6c{bottom:818.293333pt;}
.y94{bottom:824.133333pt;}
.yd8{bottom:832.693333pt;}
.y2c{bottom:834.693333pt;}
.y9{bottom:838.853333pt;}
.y6b{bottom:841.253333pt;}
.y93{bottom:841.893333pt;}
.yb9{bottom:849.413333pt;}
.y4f{bottom:855.653333pt;}
.y2b{bottom:857.653333pt;}
.y92{bottom:859.493333pt;}
.yb8{bottom:868.133333pt;}
.y8{bottom:874.693333pt;}
.y91{bottom:877.093333pt;}
.y4e{bottom:878.693333pt;}
.y2a{bottom:880.693333pt;}
.y6a{bottom:886.960000pt;}
.y90{bottom:894.800000pt;}
.yb7{bottom:899.120000pt;}
.y7{bottom:899.360000pt;}
.y4d{bottom:901.680000pt;}
.y29{bottom:903.680000pt;}
.y8f{bottom:912.400000pt;}
.yb6{bottom:916.720000pt;}
.y6{bottom:924.080000pt;}
.y4c{bottom:924.720000pt;}
.y8e{bottom:930.080000pt;}
.y28{bottom:946.240000pt;}
.yb5{bottom:947.600000pt;}
.y4b{bottom:947.680000pt;}
.y2{bottom:975.760000pt;}
.y25{bottom:977.280000pt;}
.y1{bottom:995.840000pt;}
.hd{height:30.880000pt;}
.hb{height:32.400000pt;}
.h7{height:37.238906pt;}
.ha{height:39.062344pt;}
.h4{height:44.388750pt;}
.hf{height:46.320000pt;}
.h1{height:50.062500pt;}
.h8{height:55.736250pt;}
.h3{height:58.245469pt;}
.h10{height:60.937500pt;}
.h9{height:61.076250pt;}
.he{height:62.560000pt;}
.hc{height:64.160000pt;}
.h6{height:66.750000pt;}
.h2{height:77.763750pt;}
.h5{height:89.111250pt;}
.h0{height:1056.000000pt;}
.w6{width:49.280000pt;}
.wd{width:54.720000pt;}
.wf{width:56.320000pt;}
.w11{width:65.440000pt;}
.we{width:69.866667pt;}
.w8{width:74.346667pt;}
.w4{width:74.426667pt;}
.w3{width:75.760000pt;}
.w7{width:75.840000pt;}
.wa{width:86.400000pt;}
.w10{width:107.280000pt;}
.w5{width:149.360000pt;}
.w9{width:202.346667pt;}
.wc{width:208.506667pt;}
.w2{width:225.466667pt;}
.wb{width:282.826667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x26{left:4.160000pt;}
.x1d{left:5.760000pt;}
.xf{left:8.000000pt;}
.x1f{left:11.200000pt;}
.x28{left:12.480000pt;}
.x14{left:14.480000pt;}
.x15{left:18.080000pt;}
.x2b{left:29.840000pt;}
.x1b{left:58.906667pt;}
.x23{left:70.826667pt;}
.x1{left:95.999988pt;}
.xa{left:119.999988pt;}
.x1a{left:122.240000pt;}
.x22{left:126.960000pt;}
.x18{left:128.799988pt;}
.x20{left:135.546655pt;}
.xb{left:144.026655pt;}
.x16{left:153.306655pt;}
.x7{left:157.546655pt;}
.xc{left:162.986655pt;}
.xe{left:163.946655pt;}
.x2{left:168.346655pt;}
.x19{left:200.666655pt;}
.x3{left:216.906655pt;}
.x5{left:220.506655pt;}
.xd{left:234.186655pt;}
.x21{left:236.026655pt;}
.x17{left:261.226655pt;}
.x4{left:286.026655pt;}
.x6{left:308.026655pt;}
.x1c{left:324.586667pt;}
.x24{left:335.466667pt;}
.x10{left:345.866667pt;}
.x8{left:376.346655pt;}
.x25{left:390.186667pt;}
.x1e{left:410.986667pt;}
.x11{left:421.626667pt;}
.x27{left:460.053333pt;}
.x12{left:496.053333pt;}
.x29{left:516.373333pt;}
.x2a{left:623.653333pt;}
.x13{left:645.413333pt;}
.x9{left:697.733321pt;}
}




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