
    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_1e7e2321939734cff1fad169.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f3c6feafe7d954881cbf5740.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c5b90c9e7807ac14768e689b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7c8d2e8db664fb4d6b5dba7d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a986cad55cf121996917c2aa.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c3ce86ee8958360eb70e7564.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_5762361091cb92459ea3707d.woff')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v1{vertical-align:-80.640000px;}
.v3{vertical-align:-73.440000px;}
.v2{vertical-align:-72.000000px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-1.728000px;}
.ls2{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.288000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.648000px;}
.ls0{letter-spacing:0.720000px;}
.lsf{letter-spacing:1.152000px;}
.ls7{letter-spacing:15.120000px;}
.ls4{letter-spacing:28.944000px;}
.lsa{letter-spacing:195.276000px;}
.lsc{letter-spacing:261.480000px;}
.lse{letter-spacing:347.916000px;}
.lsd{letter-spacing:353.640000px;}
.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;}
}
.ws8{word-spacing:-19.152000px;}
.ws4{word-spacing:-18.648000px;}
.ws5{word-spacing:-18.504000px;}
.ws2{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.712000px;}
.ws6{word-spacing:-17.496000px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.120000px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-4.887360px;}
._7{margin-left:-3.811680px;}
._0{margin-left:-2.089440px;}
._3{margin-left:-1.006560px;}
._1{width:1.294560px;}
._5{width:2.452320px;}
._4{width:3.559200px;}
._13{width:5.045760px;}
._14{width:6.750720px;}
._8{width:8.352000px;}
._9{width:9.361440px;}
._10{width:11.016000px;}
._6{width:12.166560px;}
._15{width:14.047200px;}
._16{width:15.340320px;}
._17{width:16.515360px;}
._d{width:19.301760px;}
._c{width:21.170880px;}
._1e{width:22.394880px;}
._f{width:23.398560px;}
._e{width:24.413760px;}
._18{width:26.064000px;}
._20{width:27.720000px;}
._1f{width:28.730880px;}
._19{width:29.954880px;}
._1a{width:31.030560px;}
._11{width:32.042880px;}
._12{width:33.725760px;}
._21{width:35.712000px;}
._22{width:37.575360px;}
._b{width:43.260480px;}
._a{width:44.359200px;}
._26{width:66.757920px;}
._28{width:69.660960px;}
._27{width:71.482560px;}
._24{width:94.811520px;}
._23{width:95.962560px;}
._2c{width:154.661760px;}
._2b{width:155.956320px;}
._25{width:157.826880px;}
._1d{width:198.156000px;}
._1c{width:210.456000px;}
._1b{width:211.609440px;}
._29{width:279.662880px;}
._2a{width:280.708800px;}
.fc6{color:rgb(128,0,0);}
.fc4{color:rgb(17,85,204);}
.fc3{color:rgb(64,61,57);}
.fc2{color:transparent;}
.fc1{color:rgb(68,71,70);}
.fc7{color:rgb(31,31,31);}
.fc5{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.720000px;}
.fs3{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y9a{bottom:3.600000px;}
.y9c{bottom:3.960000px;}
.yb6{bottom:4.320000px;}
.yb3{bottom:4.680000px;}
.ya{bottom:5.040000px;}
.y74{bottom:8.640000px;}
.y79{bottom:8.670000px;}
.y72{bottom:9.000000px;}
.y3{bottom:10.800000px;}
.ya1{bottom:23.040000px;}
.y9e{bottom:23.085000px;}
.y2{bottom:30.240000px;}
.y1{bottom:34.236000px;}
.ya3{bottom:42.120000px;}
.y9{bottom:56.556000px;}
.y8{bottom:57.276000px;}
.y3a{bottom:91.476000px;}
.y67{bottom:97.956000px;}
.ycd{bottom:99.396000px;}
.y50{bottom:101.916000px;}
.y102{bottom:103.716000px;}
.y66{bottom:111.636000px;}
.y39{bottom:112.356000px;}
.yb7{bottom:114.156000px;}
.y63{bottom:122.436000px;}
.y101{bottom:124.236000px;}
.ycc{bottom:130.356000px;}
.y38{bottom:132.912000px;}
.y97{bottom:137.952000px;}
.y6e{bottom:143.352000px;}
.y100{bottom:145.152000px;}
.yb5{bottom:150.555000px;}
.y37{bottom:153.795000px;}
.y96{bottom:157.755000px;}
.ycb{bottom:161.715000px;}
.y4f{bottom:163.875000px;}
.yff{bottom:165.675000px;}
.y36{bottom:174.315000px;}
.y95{bottom:175.035000px;}
.y62{bottom:184.755000px;}
.yfe{bottom:186.555000px;}
.yb4{bottom:186.915000px;}
.y94{bottom:192.315000px;}
.yca{bottom:192.675000px;}
.y35{bottom:195.195000px;}
.y6d{bottom:205.275000px;}
.yfd{bottom:207.075000px;}
.y93{bottom:209.595000px;}
.y34{bottom:215.715000px;}
.yb2{bottom:223.275000px;}
.yc9{bottom:223.635000px;}
.y6c{bottom:225.795000px;}
.y4e{bottom:226.155000px;}
.y92{bottom:226.875000px;}
.yfc{bottom:227.955000px;}
.y33{bottom:236.595000px;}
.y91{bottom:244.155000px;}
.yc8{bottom:244.515000px;}
.y98{bottom:246.315000px;}
.y61{bottom:246.675000px;}
.yfb{bottom:248.475000px;}
.y32{bottom:257.115000px;}
.y90{bottom:261.435000px;}
.yc7{bottom:264.315000px;}
.yfa{bottom:269.385000px;}
.yb1{bottom:274.065000px;}
.y31{bottom:278.025000px;}
.y8f{bottom:278.745000px;}
.y4d{bottom:288.105000px;}
.yf9{bottom:289.905000px;}
.y8e{bottom:296.745000px;}
.yb0{bottom:305.025000px;}
.yd0{bottom:308.625000px;}
.y30{bottom:308.985000px;}
.yf8{bottom:310.785000px;}
.y4c{bottom:319.425000px;}
.y8d{bottom:328.065000px;}
.y2f{bottom:329.145000px;}
.yf7{bottom:331.305000px;}
.yaf{bottom:336.345000px;}
.y60{bottom:339.945000px;}
.y4b{bottom:350.385000px;}
.yf6{bottom:352.185000px;}
.y8c{bottom:359.025000px;}
.y2e{bottom:360.825000px;}
.yae{bottom:367.305000px;}
.y5f{bottom:370.905000px;}
.yf5{bottom:372.705000px;}
.y2d{bottom:381.345000px;}
.y8b{bottom:389.985000px;}
.yf4{bottom:393.585000px;}
.yad{bottom:398.310000px;}
.y2c{bottom:402.270000px;}
.y4a{bottom:412.350000px;}
.yf3{bottom:414.150000px;}
.y8a{bottom:420.990000px;}
.yac{bottom:429.270000px;}
.y2b{bottom:433.230000px;}
.yf2{bottom:435.030000px;}
.y49{bottom:443.670000px;}
.y89{bottom:451.950000px;}
.y2a{bottom:453.750000px;}
.yf1{bottom:455.550000px;}
.yab{bottom:460.590000px;}
.ycf{bottom:463.830000px;}
.y5e{bottom:464.190000px;}
.y29{bottom:474.630000px;}
.yf0{bottom:476.430000px;}
.y88{bottom:483.270000px;}
.yaa{bottom:491.550000px;}
.yce{bottom:494.790000px;}
.y28{bottom:495.150000px;}
.yef{bottom:496.950000px;}
.y48{bottom:505.590000px;}
.y87{bottom:514.230000px;}
.y27{bottom:516.030000px;}
.yee{bottom:517.830000px;}
.ya9{bottom:522.510000px;}
.y5d{bottom:526.470000px;}
.y26{bottom:536.580000px;}
.yed{bottom:538.380000px;}
.y86{bottom:545.220000px;}
.ya8{bottom:553.500000px;}
.y25{bottom:557.460000px;}
.yec{bottom:559.260000px;}
.y47{bottom:567.900000px;}
.y65{bottom:570.420000px;}
.y85{bottom:576.180000px;}
.y24{bottom:577.980000px;}
.yeb{bottom:579.780000px;}
.ya7{bottom:584.820000px;}
.y64{bottom:588.060000px;}
.y5c{bottom:588.420000px;}
.y23{bottom:598.860000px;}
.yea{bottom:600.660000px;}
.y84{bottom:607.500000px;}
.ya6{bottom:615.780000px;}
.y22{bottom:619.380000px;}
.ye9{bottom:621.180000px;}
.y46{bottom:629.820000px;}
.ya5{bottom:636.300000px;}
.y83{bottom:638.460000px;}
.y21{bottom:640.260000px;}
.ye8{bottom:642.060000px;}
.y5b{bottom:650.700000px;}
.ya4{bottom:656.460000px;}
.y20{bottom:660.780000px;}
.ye7{bottom:662.580000px;}
.y82{bottom:669.450000px;}
.ya2{bottom:672.330000px;}
.y1f{bottom:681.690000px;}
.ye6{bottom:683.490000px;}
.y45{bottom:692.130000px;}
.yc6{bottom:694.290000px;}
.y81{bottom:700.410000px;}
.y1e{bottom:702.210000px;}
.ye5{bottom:704.010000px;}
.y5a{bottom:712.650000px;}
.y1d{bottom:723.090000px;}
.ye4{bottom:724.890000px;}
.yc5{bottom:725.250000px;}
.ya0{bottom:729.930000px;}
.y80{bottom:731.730000px;}
.y1c{bottom:743.610000px;}
.ye3{bottom:745.410000px;}
.y44{bottom:754.050000px;}
.yc4{bottom:756.210000px;}
.y1b{bottom:764.490000px;}
.ye2{bottom:766.290000px;}
.y9f{bottom:768.810000px;}
.y59{bottom:774.930000px;}
.y7f{bottom:782.850000px;}
.y1a{bottom:785.010000px;}
.ye1{bottom:786.810000px;}
.yc3{bottom:787.530000px;}
.y9d{bottom:791.850000px;}
.y7e{bottom:803.415000px;}
.y58{bottom:805.935000px;}
.ye0{bottom:807.735000px;}
.y19{bottom:816.375000px;}
.yc2{bottom:818.535000px;}
.y7d{bottom:819.255000px;}
.y105{bottom:826.455000px;}
.ydf{bottom:828.255000px;}
.y9b{bottom:830.775000px;}
.y18{bottom:836.535000px;}
.y57{bottom:836.895000px;}
.y7c{bottom:846.975000px;}
.y43{bottom:847.335000px;}
.yde{bottom:849.135000px;}
.yc1{bottom:849.495000px;}
.y99{bottom:853.815000px;}
.y17{bottom:867.855000px;}
.ydd{bottom:869.655000px;}
.y7b{bottom:874.335000px;}
.y42{bottom:878.295000px;}
.yc0{bottom:880.455000px;}
.y16{bottom:888.015000px;}
.y104{bottom:888.735000px;}
.ydc{bottom:890.535000px;}
.y56{bottom:898.815000px;}
.y7a{bottom:902.055000px;}
.y15{bottom:907.455000px;}
.y41{bottom:909.255000px;}
.ydb{bottom:911.055000px;}
.ybf{bottom:911.415000px;}
.y14{bottom:928.335000px;}
.y78{bottom:929.415000px;}
.y40{bottom:929.775000px;}
.y55{bottom:930.135000px;}
.yda{bottom:931.935000px;}
.y54{bottom:939.885000px;}
.y6b{bottom:940.245000px;}
.ybe{bottom:942.765000px;}
.y13{bottom:948.525000px;}
.y103{bottom:950.685000px;}
.yd9{bottom:952.485000px;}
.y77{bottom:956.805000px;}
.y53{bottom:960.765000px;}
.y3f{bottom:961.125000px;}
.y12{bottom:967.965000px;}
.y6a{bottom:971.565000px;}
.yd8{bottom:973.365000px;}
.ybd{bottom:973.725000px;}
.y3e{bottom:981.645000px;}
.y76{bottom:984.525000px;}
.y11{bottom:987.405000px;}
.y52{bottom:992.085000px;}
.yd7{bottom:993.885000px;}
.y69{bottom:1002.525000px;}
.y10{bottom:1003.605000px;}
.ybc{bottom:1004.685000px;}
.y75{bottom:1011.885000px;}
.y3d{bottom:1012.965000px;}
.yd6{bottom:1014.765000px;}
.yf{bottom:1023.045000px;}
.ybb{bottom:1025.565000px;}
.y3c{bottom:1033.485000px;}
.yd5{bottom:1035.285000px;}
.y73{bottom:1039.605000px;}
.yba{bottom:1045.365000px;}
.ye{bottom:1054.365000px;}
.yd4{bottom:1055.805000px;}
.y68{bottom:1064.445000px;}
.y71{bottom:1067.010000px;}
.yb9{bottom:1067.370000px;}
.yd{bottom:1074.930000px;}
.yd3{bottom:1076.730000px;}
.y51{bottom:1085.370000px;}
.yc{bottom:1095.810000px;}
.yd2{bottom:1097.250000px;}
.y70{bottom:1099.050000px;}
.yb8{bottom:1103.730000px;}
.yb{bottom:1115.970000px;}
.y3b{bottom:1116.330000px;}
.yd1{bottom:1117.410000px;}
.y6f{bottom:1118.850000px;}
.y7{bottom:1136.130000px;}
.y6{bottom:1155.570000px;}
.y5{bottom:1174.290000px;}
.y4{bottom:1193.010000px;}
.h6{height:20.520000px;}
.h19{height:20.556000px;}
.h18{height:20.880000px;}
.h14{height:22.320000px;}
.h13{height:22.680000px;}
.h11{height:26.640000px;}
.h10{height:26.676000px;}
.hf{height:27.000000px;}
.h16{height:38.160000px;}
.h15{height:38.196000px;}
.h2{height:45.000000px;}
.ha{height:53.704687px;}
.h17{height:56.880000px;}
.h12{height:59.357813px;}
.he{height:60.952500px;}
.hd{height:64.546875px;}
.h4{height:64.978594px;}
.h3{height:65.010937px;}
.h7{height:66.757500px;}
.h5{height:68.084282px;}
.hb{height:70.628906px;}
.h9{height:70.664062px;}
.h8{height:72.562500px;}
.hc{height:74.953125px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:68.076000px;}
.w9{width:73.476000px;}
.w5{width:95.832000px;}
.w7{width:179.355000px;}
.w2{width:235.545000px;}
.w4{width:349.350000px;}
.w8{width:412.350000px;}
.w6{width:579.090000px;}
.wb{width:605.775000px;}
.w3{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x2a{left:2.520000px;}
.x2c{left:7.560000px;}
.x20{left:9.036000px;}
.x8{left:10.800000px;}
.x35{left:15.876000px;}
.x32{left:18.396000px;}
.x2b{left:23.763000px;}
.x30{left:24.840000px;}
.x1c{left:28.479000px;}
.x19{left:30.999000px;}
.x2f{left:33.840000px;}
.x1f{left:36.720000px;}
.x26{left:48.963000px;}
.x39{left:75.270000px;}
.x37{left:91.110000px;}
.x36{left:97.950000px;}
.x1d{left:105.165000px;}
.x7{left:116.676000px;}
.x6{left:127.475987px;}
.x31{left:129.270000px;}
.x3{left:130.755000px;}
.xa{left:134.351987px;}
.x2d{left:137.910000px;}
.x21{left:144.405000px;}
.x24{left:148.725000px;}
.x1e{left:162.045000px;}
.x38{left:167.115000px;}
.x23{left:170.325000px;}
.x2e{left:174.660000px;}
.x18{left:180.074987px;}
.x13{left:181.514987px;}
.x28{left:184.380000px;}
.x3c{left:191.954987px;}
.x22{left:197.715000px;}
.x33{left:199.515000px;}
.x1a{left:226.905000px;}
.x1b{left:251.715000px;}
.x17{left:264.344987px;}
.x34{left:280.905000px;}
.x25{left:297.464987px;}
.x27{left:314.790000px;}
.x15{left:354.389987px;}
.x3b{left:403.379987px;}
.x12{left:418.859987px;}
.x11{left:428.219987px;}
.x9{left:467.819987px;}
.x14{left:494.129987px;}
.xd{left:560.729987px;}
.x1{left:572.970000px;}
.xc{left:610.094987px;}
.xf{left:625.574987px;}
.xb{left:632.054987px;}
.x10{left:633.854987px;}
.xe{left:660.494987px;}
.x29{left:727.845000px;}
.x16{left:753.044987px;}
.x5{left:783.329987px;}
.x3a{left:804.569987px;}
.x4{left:808.169987px;}
@media print{
.v1{vertical-align:-71.680000pt;}
.v3{vertical-align:-65.280000pt;}
.v2{vertical-align:-64.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-1.536000pt;}
.ls2{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.576000pt;}
.ls0{letter-spacing:0.640000pt;}
.lsf{letter-spacing:1.024000pt;}
.ls7{letter-spacing:13.440000pt;}
.ls4{letter-spacing:25.728000pt;}
.lsa{letter-spacing:173.578667pt;}
.lsc{letter-spacing:232.426667pt;}
.lse{letter-spacing:309.258667pt;}
.lsd{letter-spacing:314.346667pt;}
.ws8{word-spacing:-17.024000pt;}
.ws4{word-spacing:-16.576000pt;}
.ws5{word-spacing:-16.448000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws6{word-spacing:-15.552000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.440000pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-4.344320pt;}
._7{margin-left:-3.388160pt;}
._0{margin-left:-1.857280pt;}
._3{margin-left:-0.894720pt;}
._1{width:1.150720pt;}
._5{width:2.179840pt;}
._4{width:3.163733pt;}
._13{width:4.485120pt;}
._14{width:6.000640pt;}
._8{width:7.424000pt;}
._9{width:8.321280pt;}
._10{width:9.792000pt;}
._6{width:10.814720pt;}
._15{width:12.486400pt;}
._16{width:13.635840pt;}
._17{width:14.680320pt;}
._d{width:17.157120pt;}
._c{width:18.818560pt;}
._1e{width:19.906560pt;}
._f{width:20.798720pt;}
._e{width:21.701120pt;}
._18{width:23.168000pt;}
._20{width:24.640000pt;}
._1f{width:25.538560pt;}
._19{width:26.626560pt;}
._1a{width:27.582720pt;}
._11{width:28.482560pt;}
._12{width:29.978453pt;}
._21{width:31.744000pt;}
._22{width:33.400320pt;}
._b{width:38.453760pt;}
._a{width:39.430400pt;}
._26{width:59.340373pt;}
._28{width:61.920853pt;}
._27{width:63.540053pt;}
._24{width:84.276907pt;}
._23{width:85.300053pt;}
._2c{width:137.477120pt;}
._2b{width:138.627840pt;}
._25{width:140.290560pt;}
._1d{width:176.138667pt;}
._1c{width:187.072000pt;}
._1b{width:188.097280pt;}
._29{width:248.589227pt;}
._2a{width:249.518933pt;}
.fs2{font-size:48.640000pt;}
.fs3{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:3.200000pt;}
.y9c{bottom:3.520000pt;}
.yb6{bottom:3.840000pt;}
.yb3{bottom:4.160000pt;}
.ya{bottom:4.480000pt;}
.y74{bottom:7.680000pt;}
.y79{bottom:7.706667pt;}
.y72{bottom:8.000000pt;}
.y3{bottom:9.600000pt;}
.ya1{bottom:20.480000pt;}
.y9e{bottom:20.520000pt;}
.y2{bottom:26.880000pt;}
.y1{bottom:30.432000pt;}
.ya3{bottom:37.440000pt;}
.y9{bottom:50.272000pt;}
.y8{bottom:50.912000pt;}
.y3a{bottom:81.312000pt;}
.y67{bottom:87.072000pt;}
.ycd{bottom:88.352000pt;}
.y50{bottom:90.592000pt;}
.y102{bottom:92.192000pt;}
.y66{bottom:99.232000pt;}
.y39{bottom:99.872000pt;}
.yb7{bottom:101.472000pt;}
.y63{bottom:108.832000pt;}
.y101{bottom:110.432000pt;}
.ycc{bottom:115.872000pt;}
.y38{bottom:118.144000pt;}
.y97{bottom:122.624000pt;}
.y6e{bottom:127.424000pt;}
.y100{bottom:129.024000pt;}
.yb5{bottom:133.826667pt;}
.y37{bottom:136.706667pt;}
.y96{bottom:140.226667pt;}
.ycb{bottom:143.746667pt;}
.y4f{bottom:145.666667pt;}
.yff{bottom:147.266667pt;}
.y36{bottom:154.946667pt;}
.y95{bottom:155.586667pt;}
.y62{bottom:164.226667pt;}
.yfe{bottom:165.826667pt;}
.yb4{bottom:166.146667pt;}
.y94{bottom:170.946667pt;}
.yca{bottom:171.266667pt;}
.y35{bottom:173.506667pt;}
.y6d{bottom:182.466667pt;}
.yfd{bottom:184.066667pt;}
.y93{bottom:186.306667pt;}
.y34{bottom:191.746667pt;}
.yb2{bottom:198.466667pt;}
.yc9{bottom:198.786667pt;}
.y6c{bottom:200.706667pt;}
.y4e{bottom:201.026667pt;}
.y92{bottom:201.666667pt;}
.yfc{bottom:202.626667pt;}
.y33{bottom:210.306667pt;}
.y91{bottom:217.026667pt;}
.yc8{bottom:217.346667pt;}
.y98{bottom:218.946667pt;}
.y61{bottom:219.266667pt;}
.yfb{bottom:220.866667pt;}
.y32{bottom:228.546667pt;}
.y90{bottom:232.386667pt;}
.yc7{bottom:234.946667pt;}
.yfa{bottom:239.453333pt;}
.yb1{bottom:243.613333pt;}
.y31{bottom:247.133333pt;}
.y8f{bottom:247.773333pt;}
.y4d{bottom:256.093333pt;}
.yf9{bottom:257.693333pt;}
.y8e{bottom:263.773333pt;}
.yb0{bottom:271.133333pt;}
.yd0{bottom:274.333333pt;}
.y30{bottom:274.653333pt;}
.yf8{bottom:276.253333pt;}
.y4c{bottom:283.933333pt;}
.y8d{bottom:291.613333pt;}
.y2f{bottom:292.573333pt;}
.yf7{bottom:294.493333pt;}
.yaf{bottom:298.973333pt;}
.y60{bottom:302.173333pt;}
.y4b{bottom:311.453333pt;}
.yf6{bottom:313.053333pt;}
.y8c{bottom:319.133333pt;}
.y2e{bottom:320.733333pt;}
.yae{bottom:326.493333pt;}
.y5f{bottom:329.693333pt;}
.yf5{bottom:331.293333pt;}
.y2d{bottom:338.973333pt;}
.y8b{bottom:346.653333pt;}
.yf4{bottom:349.853333pt;}
.yad{bottom:354.053333pt;}
.y2c{bottom:357.573333pt;}
.y4a{bottom:366.533333pt;}
.yf3{bottom:368.133333pt;}
.y8a{bottom:374.213333pt;}
.yac{bottom:381.573333pt;}
.y2b{bottom:385.093333pt;}
.yf2{bottom:386.693333pt;}
.y49{bottom:394.373333pt;}
.y89{bottom:401.733333pt;}
.y2a{bottom:403.333333pt;}
.yf1{bottom:404.933333pt;}
.yab{bottom:409.413333pt;}
.ycf{bottom:412.293333pt;}
.y5e{bottom:412.613333pt;}
.y29{bottom:421.893333pt;}
.yf0{bottom:423.493333pt;}
.y88{bottom:429.573333pt;}
.yaa{bottom:436.933333pt;}
.yce{bottom:439.813333pt;}
.y28{bottom:440.133333pt;}
.yef{bottom:441.733333pt;}
.y48{bottom:449.413333pt;}
.y87{bottom:457.093333pt;}
.y27{bottom:458.693333pt;}
.yee{bottom:460.293333pt;}
.ya9{bottom:464.453333pt;}
.y5d{bottom:467.973333pt;}
.y26{bottom:476.960000pt;}
.yed{bottom:478.560000pt;}
.y86{bottom:484.640000pt;}
.ya8{bottom:492.000000pt;}
.y25{bottom:495.520000pt;}
.yec{bottom:497.120000pt;}
.y47{bottom:504.800000pt;}
.y65{bottom:507.040000pt;}
.y85{bottom:512.160000pt;}
.y24{bottom:513.760000pt;}
.yeb{bottom:515.360000pt;}
.ya7{bottom:519.840000pt;}
.y64{bottom:522.720000pt;}
.y5c{bottom:523.040000pt;}
.y23{bottom:532.320000pt;}
.yea{bottom:533.920000pt;}
.y84{bottom:540.000000pt;}
.ya6{bottom:547.360000pt;}
.y22{bottom:550.560000pt;}
.ye9{bottom:552.160000pt;}
.y46{bottom:559.840000pt;}
.ya5{bottom:565.600000pt;}
.y83{bottom:567.520000pt;}
.y21{bottom:569.120000pt;}
.ye8{bottom:570.720000pt;}
.y5b{bottom:578.400000pt;}
.ya4{bottom:583.520000pt;}
.y20{bottom:587.360000pt;}
.ye7{bottom:588.960000pt;}
.y82{bottom:595.066667pt;}
.ya2{bottom:597.626667pt;}
.y1f{bottom:605.946667pt;}
.ye6{bottom:607.546667pt;}
.y45{bottom:615.226667pt;}
.yc6{bottom:617.146667pt;}
.y81{bottom:622.586667pt;}
.y1e{bottom:624.186667pt;}
.ye5{bottom:625.786667pt;}
.y5a{bottom:633.466667pt;}
.y1d{bottom:642.746667pt;}
.ye4{bottom:644.346667pt;}
.yc5{bottom:644.666667pt;}
.ya0{bottom:648.826667pt;}
.y80{bottom:650.426667pt;}
.y1c{bottom:660.986667pt;}
.ye3{bottom:662.586667pt;}
.y44{bottom:670.266667pt;}
.yc4{bottom:672.186667pt;}
.y1b{bottom:679.546667pt;}
.ye2{bottom:681.146667pt;}
.y9f{bottom:683.386667pt;}
.y59{bottom:688.826667pt;}
.y7f{bottom:695.866667pt;}
.y1a{bottom:697.786667pt;}
.ye1{bottom:699.386667pt;}
.yc3{bottom:700.026667pt;}
.y9d{bottom:703.866667pt;}
.y7e{bottom:714.146667pt;}
.y58{bottom:716.386667pt;}
.ye0{bottom:717.986667pt;}
.y19{bottom:725.666667pt;}
.yc2{bottom:727.586667pt;}
.y7d{bottom:728.226667pt;}
.y105{bottom:734.626667pt;}
.ydf{bottom:736.226667pt;}
.y9b{bottom:738.466667pt;}
.y18{bottom:743.586667pt;}
.y57{bottom:743.906667pt;}
.y7c{bottom:752.866667pt;}
.y43{bottom:753.186667pt;}
.yde{bottom:754.786667pt;}
.yc1{bottom:755.106667pt;}
.y99{bottom:758.946667pt;}
.y17{bottom:771.426667pt;}
.ydd{bottom:773.026667pt;}
.y7b{bottom:777.186667pt;}
.y42{bottom:780.706667pt;}
.yc0{bottom:782.626667pt;}
.y16{bottom:789.346667pt;}
.y104{bottom:789.986667pt;}
.ydc{bottom:791.586667pt;}
.y56{bottom:798.946667pt;}
.y7a{bottom:801.826667pt;}
.y15{bottom:806.626667pt;}
.y41{bottom:808.226667pt;}
.ydb{bottom:809.826667pt;}
.ybf{bottom:810.146667pt;}
.y14{bottom:825.186667pt;}
.y78{bottom:826.146667pt;}
.y40{bottom:826.466667pt;}
.y55{bottom:826.786667pt;}
.yda{bottom:828.386667pt;}
.y54{bottom:835.453333pt;}
.y6b{bottom:835.773333pt;}
.ybe{bottom:838.013333pt;}
.y13{bottom:843.133333pt;}
.y103{bottom:845.053333pt;}
.yd9{bottom:846.653333pt;}
.y77{bottom:850.493333pt;}
.y53{bottom:854.013333pt;}
.y3f{bottom:854.333333pt;}
.y12{bottom:860.413333pt;}
.y6a{bottom:863.613333pt;}
.yd8{bottom:865.213333pt;}
.ybd{bottom:865.533333pt;}
.y3e{bottom:872.573333pt;}
.y76{bottom:875.133333pt;}
.y11{bottom:877.693333pt;}
.y52{bottom:881.853333pt;}
.yd7{bottom:883.453333pt;}
.y69{bottom:891.133333pt;}
.y10{bottom:892.093333pt;}
.ybc{bottom:893.053333pt;}
.y75{bottom:899.453333pt;}
.y3d{bottom:900.413333pt;}
.yd6{bottom:902.013333pt;}
.yf{bottom:909.373333pt;}
.ybb{bottom:911.613333pt;}
.y3c{bottom:918.653333pt;}
.yd5{bottom:920.253333pt;}
.y73{bottom:924.093333pt;}
.yba{bottom:929.213333pt;}
.ye{bottom:937.213333pt;}
.yd4{bottom:938.493333pt;}
.y68{bottom:946.173333pt;}
.y71{bottom:948.453333pt;}
.yb9{bottom:948.773333pt;}
.yd{bottom:955.493333pt;}
.yd3{bottom:957.093333pt;}
.y51{bottom:964.773333pt;}
.yc{bottom:974.053333pt;}
.yd2{bottom:975.333333pt;}
.y70{bottom:976.933333pt;}
.yb8{bottom:981.093333pt;}
.yb{bottom:991.973333pt;}
.y3b{bottom:992.293333pt;}
.yd1{bottom:993.253333pt;}
.y6f{bottom:994.533333pt;}
.y7{bottom:1009.893333pt;}
.y6{bottom:1027.173333pt;}
.y5{bottom:1043.813333pt;}
.y4{bottom:1060.453333pt;}
.h6{height:18.240000pt;}
.h19{height:18.272000pt;}
.h18{height:18.560000pt;}
.h14{height:19.840000pt;}
.h13{height:20.160000pt;}
.h11{height:23.680000pt;}
.h10{height:23.712000pt;}
.hf{height:24.000000pt;}
.h16{height:33.920000pt;}
.h15{height:33.952000pt;}
.h2{height:40.000000pt;}
.ha{height:47.737500pt;}
.h17{height:50.560000pt;}
.h12{height:52.762500pt;}
.he{height:54.180000pt;}
.hd{height:57.375000pt;}
.h4{height:57.758750pt;}
.h3{height:57.787500pt;}
.h7{height:59.340000pt;}
.h5{height:60.519362pt;}
.hb{height:62.781250pt;}
.h9{height:62.812500pt;}
.h8{height:64.500000pt;}
.hc{height:66.625000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:60.512000pt;}
.w9{width:65.312000pt;}
.w5{width:85.184000pt;}
.w7{width:159.426667pt;}
.w2{width:209.373333pt;}
.w4{width:310.533333pt;}
.w8{width:366.533333pt;}
.w6{width:514.746667pt;}
.wb{width:538.466667pt;}
.w3{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x2a{left:2.240000pt;}
.x2c{left:6.720000pt;}
.x20{left:8.032000pt;}
.x8{left:9.600000pt;}
.x35{left:14.112000pt;}
.x32{left:16.352000pt;}
.x2b{left:21.122667pt;}
.x30{left:22.080000pt;}
.x1c{left:25.314667pt;}
.x19{left:27.554667pt;}
.x2f{left:30.080000pt;}
.x1f{left:32.640000pt;}
.x26{left:43.522667pt;}
.x39{left:66.906667pt;}
.x37{left:80.986667pt;}
.x36{left:87.066667pt;}
.x1d{left:93.480000pt;}
.x7{left:103.712000pt;}
.x6{left:113.311988pt;}
.x31{left:114.906667pt;}
.x3{left:116.226667pt;}
.xa{left:119.423988pt;}
.x2d{left:122.586667pt;}
.x21{left:128.360000pt;}
.x24{left:132.200000pt;}
.x1e{left:144.040000pt;}
.x38{left:148.546667pt;}
.x23{left:151.400000pt;}
.x2e{left:155.253333pt;}
.x18{left:160.066655pt;}
.x13{left:161.346655pt;}
.x28{left:163.893333pt;}
.x3c{left:170.626655pt;}
.x22{left:175.746667pt;}
.x33{left:177.346667pt;}
.x1a{left:201.693333pt;}
.x1b{left:223.746667pt;}
.x17{left:234.973322pt;}
.x34{left:249.693333pt;}
.x25{left:264.413322pt;}
.x27{left:279.813333pt;}
.x15{left:315.013322pt;}
.x3b{left:358.559988pt;}
.x12{left:372.319988pt;}
.x11{left:380.639988pt;}
.x9{left:415.839988pt;}
.x14{left:439.226655pt;}
.xd{left:498.426655pt;}
.x1{left:509.306667pt;}
.xc{left:542.306655pt;}
.xf{left:556.066655pt;}
.xb{left:561.826655pt;}
.x10{left:563.426655pt;}
.xe{left:587.106655pt;}
.x29{left:646.973333pt;}
.x16{left:669.373322pt;}
.x5{left:696.293322pt;}
.x3a{left:715.173322pt;}
.x4{left:718.373322pt;}
}




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