
    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_64da7d4ccef8a994d7467c9b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_87dcc1ca8162b84078da2157.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6c4907bd452e3a07f58e7b09.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0f3953b0030f98e229344ad7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_2c1be8dc29955752e6a9eb64.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_311c976b5a7371c5b804c182.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c8dcf32d9909c0be28628259.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls15{letter-spacing:-0.942000px;}
.lsd{letter-spacing:-0.774000px;}
.ls1d{letter-spacing:-0.612000px;}
.ls24{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.460200px;}
.ls13{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.249000px;}
.ls14{letter-spacing:-0.106800px;}
.ls17{letter-spacing:-0.053280px;}
.lsc{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.053280px;}
.ls21{letter-spacing:0.106560px;}
.ls12{letter-spacing:0.106800px;}
.ls16{letter-spacing:0.135600px;}
.ls10{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.206640px;}
.lse{letter-spacing:0.259800px;}
.ls1a{letter-spacing:0.298800px;}
.ls18{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.900000px;}
.ls3{letter-spacing:1.098720px;}
.ls4{letter-spacing:1.416000px;}
.ls8{letter-spacing:1.421280px;}
.ls1{letter-spacing:1.458000px;}
.ls0{letter-spacing:1.629360px;}
.ls5{letter-spacing:1.711920px;}
.ls7{letter-spacing:1.762560px;}
.ls2{letter-spacing:1.800000px;}
.ls6{letter-spacing:2.160000px;}
.lsb{letter-spacing:4.680000px;}
.ls1f{letter-spacing:6.120000px;}
.ls20{letter-spacing:10.260000px;}
.lsa{letter-spacing:10.980000px;}
.ls22{letter-spacing:11.466720px;}
.ls23{letter-spacing:21.060000px;}
.lsf{letter-spacing:26.880000px;}
.ls1e{letter-spacing:41.850720px;}
.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;}
}
.wsb{word-spacing:-33.814200px;}
.ws0{word-spacing:-20.856000px;}
.ws1{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws5{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.479800px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-2681.838480px;}
._4{margin-left:-1391.774400px;}
._6{margin-left:-1023.235200px;}
._5{margin-left:-997.269120px;}
._1b{margin-left:-526.143360px;}
._1c{margin-left:-524.845440px;}
._30{margin-left:-523.392000px;}
._10{margin-left:-514.883520px;}
._7{margin-left:-510.073920px;}
._f{margin-left:-498.360000px;}
._c{margin-left:-413.280000px;}
._b{margin-left:-363.600000px;}
._e{margin-left:-314.640000px;}
._17{margin-left:-271.248480px;}
._13{margin-left:-247.680000px;}
._18{margin-left:-204.151680px;}
._12{margin-left:-197.280000px;}
._14{margin-left:-165.600000px;}
._1a{margin-left:-151.920000px;}
._9{margin-left:-144.000000px;}
._8{margin-left:-115.920000px;}
._16{margin-left:-101.340000px;}
._11{margin-left:-99.360000px;}
._d{margin-left:-82.980000px;}
._15{margin-left:-66.240000px;}
._19{margin-left:-49.680000px;}
._a{margin-left:-33.390720px;}
._2f{margin-left:-32.366400px;}
._2d{margin-left:-26.618160px;}
._2e{margin-left:-2.084160px;}
._3{margin-left:-1.059840px;}
._1{width:1.321920px;}
._0{width:2.740080px;}
._22{width:3.755280px;}
._1e{width:4.815600px;}
._1f{width:6.039600px;}
._26{width:7.399200px;}
._20{width:9.083520px;}
._21{width:10.338480px;}
._23{width:11.526480px;}
._27{width:12.728880px;}
._24{width:13.880400px;}
._28{width:16.277040px;}
._2c{width:17.330400px;}
._34{width:18.379920px;}
._31{width:20.299680px;}
._32{width:21.692880px;}
._33{width:23.232480px;}
._25{width:32.210640px;}
._2a{width:39.673440px;}
._29{width:40.816080px;}
._2b{width:42.084720px;}
._1d{width:58.892400px;}
.fc3{color:rgb(14,16,26);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(13,13,13);}
.fc2{color:rgb(41,37,38);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y53{bottom:5.760000px;}
.y88{bottom:5.940000px;}
.y51{bottom:6.120000px;}
.ya3{bottom:6.300000px;}
.y80{bottom:7.050000px;}
.y98{bottom:7.560000px;}
.yae{bottom:7.740000px;}
.yad{bottom:7.920000px;}
.y73{bottom:8.460000px;}
.y96{bottom:8.820000px;}
.y89{bottom:9.000000px;}
.y70{bottom:9.180000px;}
.y72{bottom:10.980000px;}
.y75{bottom:12.060000px;}
.y8d{bottom:12.240000px;}
.y6f{bottom:12.420000px;}
.y8b{bottom:13.860000px;}
.ya1{bottom:23.220000px;}
.y7c{bottom:24.840000px;}
.y7e{bottom:29.160000px;}
.yab{bottom:29.880000px;}
.y6{bottom:60.336000px;}
.y9b{bottom:96.516000px;}
.yd0{bottom:103.896000px;}
.y9a{bottom:116.316000px;}
.y33{bottom:116.676000px;}
.ycf{bottom:123.876000px;}
.y32{bottom:136.476000px;}
.yce{bottom:143.676000px;}
.y6a{bottom:150.690000px;}
.y31{bottom:156.450000px;}
.ycd{bottom:163.110000px;}
.y69{bottom:170.490000px;}
.y99{bottom:170.850000px;}
.y30{bottom:176.250000px;}
.ycc{bottom:182.910000px;}
.y68{bottom:190.290000px;}
.y97{bottom:193.350000px;}
.y2f{bottom:196.050000px;}
.ycb{bottom:203.070000px;}
.y67{bottom:210.090000px;}
.y95{bottom:214.590000px;}
.y2e{bottom:215.850000px;}
.yca{bottom:223.050000px;}
.y66{bottom:229.890000px;}
.y2d{bottom:235.650000px;}
.y94{bottom:237.810000px;}
.yc9{bottom:242.850000px;}
.y65{bottom:249.870000px;}
.y2c{bottom:255.630000px;}
.yc8{bottom:262.650000px;}
.y93{bottom:265.530000px;}
.y64{bottom:269.670000px;}
.y2b{bottom:275.430000px;}
.yc7{bottom:282.450000px;}
.y92{bottom:285.690000px;}
.y63{bottom:289.470000px;}
.y2a{bottom:295.230000px;}
.yc6{bottom:302.250000px;}
.y91{bottom:305.670000px;}
.y62{bottom:309.270000px;}
.y29{bottom:315.030000px;}
.yc5{bottom:322.230000px;}
.y90{bottom:325.470000px;}
.y61{bottom:329.115000px;}
.y28{bottom:334.875000px;}
.y8f{bottom:339.915000px;}
.yc4{bottom:342.075000px;}
.y60{bottom:349.095000px;}
.y27{bottom:354.855000px;}
.y8e{bottom:359.715000px;}
.yc3{bottom:361.875000px;}
.y5f{bottom:368.895000px;}
.y26{bottom:374.655000px;}
.yc2{bottom:381.675000px;}
.y8c{bottom:387.255000px;}
.y5e{bottom:388.695000px;}
.y25{bottom:394.095000px;}
.yc1{bottom:401.475000px;}
.y5d{bottom:408.495000px;}
.y8a{bottom:413.175000px;}
.y24{bottom:413.895000px;}
.yc0{bottom:421.455000px;}
.y5c{bottom:428.295000px;}
.y23{bottom:436.395000px;}
.ybf{bottom:441.255000px;}
.y87{bottom:441.435000px;}
.y5b{bottom:448.275000px;}
.ybe{bottom:461.055000px;}
.y22{bottom:465.195000px;}
.y5a{bottom:468.075000px;}
.y86{bottom:474.015000px;}
.ybd{bottom:480.855000px;}
.y21{bottom:484.995000px;}
.y59{bottom:487.875000px;}
.y85{bottom:494.175000px;}
.ybc{bottom:500.295000px;}
.y20{bottom:504.975000px;}
.y58{bottom:507.675000px;}
.y84{bottom:513.975000px;}
.y1f{bottom:524.775000px;}
.y57{bottom:527.475000px;}
.y83{bottom:533.775000px;}
.ybb{bottom:541.695000px;}
.y1e{bottom:544.575000px;}
.y56{bottom:547.455000px;}
.y82{bottom:553.755000px;}
.yba{bottom:561.315000px;}
.y1d{bottom:564.375000px;}
.y55{bottom:567.255000px;}
.y81{bottom:568.155000px;}
.yb9{bottom:581.295000px;}
.y1c{bottom:584.175000px;}
.y54{bottom:587.055000px;}
.y7f{bottom:587.955000px;}
.y52{bottom:600.765000px;}
.y1b{bottom:604.185000px;}
.yb8{bottom:606.345000px;}
.yd3{bottom:606.885000px;}
.y7d{bottom:608.685000px;}
.yb6{bottom:615.525000px;}
.y50{bottom:620.565000px;}
.y1a{bottom:623.985000px;}
.yd2{bottom:626.685000px;}
.yb7{bottom:638.385000px;}
.y19{bottom:643.785000px;}
.y4f{bottom:646.665000px;}
.y7b{bottom:651.525000px;}
.yb5{bottom:659.985000px;}
.y18{bottom:663.585000px;}
.y4e{bottom:666.465000px;}
.y17{bottom:683.385000px;}
.yb4{bottom:683.565000px;}
.y4d{bottom:686.265000px;}
.y7a{bottom:690.765000px;}
.y16{bottom:703.365000px;}
.y4c{bottom:706.065000px;}
.yb3{bottom:711.825000px;}
.y15{bottom:723.165000px;}
.y4b{bottom:725.505000px;}
.yd1{bottom:725.865000px;}
.yb2{bottom:731.625000px;}
.y79{bottom:740.805000px;}
.y14{bottom:742.965000px;}
.y4a{bottom:745.845000px;}
.yb1{bottom:751.785000px;}
.y78{bottom:760.605000px;}
.y13{bottom:762.765000px;}
.y49{bottom:765.645000px;}
.yb0{bottom:771.585000px;}
.y77{bottom:780.765000px;}
.y12{bottom:782.565000px;}
.y48{bottom:785.445000px;}
.y76{bottom:800.745000px;}
.y11{bottom:802.545000px;}
.y47{bottom:805.245000px;}
.y74{bottom:815.145000px;}
.yaf{bottom:817.845000px;}
.y10{bottom:822.345000px;}
.y46{bottom:825.045000px;}
.yaa{bottom:826.845000px;}
.y71{bottom:841.245000px;}
.yf{bottom:842.145000px;}
.y45{bottom:845.025000px;}
.yac{bottom:849.705000px;}
.ye{bottom:864.330000px;}
.y44{bottom:864.870000px;}
.y6e{bottom:865.950000px;}
.ya9{bottom:871.350000px;}
.yd{bottom:884.130000px;}
.y43{bottom:884.670000px;}
.y6d{bottom:892.770000px;}
.ya8{bottom:895.110000px;}
.y42{bottom:904.470000px;}
.yc{bottom:909.150000px;}
.ya7{bottom:923.190000px;}
.y6c{bottom:923.910000px;}
.y41{bottom:924.270000px;}
.yb{bottom:928.950000px;}
.ya{bottom:943.890000px;}
.y40{bottom:944.250000px;}
.y6b{bottom:963.690000px;}
.y3f{bottom:964.050000px;}
.ya6{bottom:964.590000px;}
.y9{bottom:965.490000px;}
.y3e{bottom:983.850000px;}
.ya5{bottom:984.210000px;}
.y8{bottom:988.530000px;}
.y3d{bottom:1003.650000px;}
.ya4{bottom:1004.010000px;}
.ya2{bottom:1018.410000px;}
.y7{bottom:1020.210000px;}
.y3c{bottom:1023.450000px;}
.ya0{bottom:1038.390000px;}
.y3b{bottom:1043.430000px;}
.y5{bottom:1060.710000px;}
.y3a{bottom:1063.230000px;}
.y9d{bottom:1076.190000px;}
.y39{bottom:1083.030000px;}
.y4{bottom:1091.490000px;}
.y9f{bottom:1095.990000px;}
.y38{bottom:1102.830000px;}
.y9e{bottom:1115.790000px;}
.y3{bottom:1122.270000px;}
.y37{bottom:1122.630000px;}
.y9c{bottom:1142.280000px;}
.y36{bottom:1142.640000px;}
.y2{bottom:1153.260000px;}
.y35{bottom:1171.800000px;}
.y1{bottom:1186.560000px;}
.y34{bottom:1193.580000px;}
.h8{height:19.800000px;}
.h16{height:19.836000px;}
.h19{height:19.980000px;}
.h10{height:20.736000px;}
.h13{height:21.240000px;}
.h1a{height:21.600000px;}
.h1d{height:21.636000px;}
.h14{height:22.500000px;}
.h1b{height:22.860000px;}
.ha{height:24.660000px;}
.hc{height:24.696000px;}
.h12{height:25.920000px;}
.hb{height:26.100000px;}
.h11{height:27.540000px;}
.h17{height:36.900000px;}
.h6{height:38.158594px;}
.he{height:38.520000px;}
.hf{height:42.840000px;}
.hd{height:43.560000px;}
.h18{height:56.880000px;}
.h5{height:58.651172px;}
.h9{height:59.038594px;}
.h15{height:59.436000px;}
.h7{height:60.226875px;}
.h1f{height:61.423863px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.h1e{height:67.320000px;}
.h1c{height:67.356000px;}
.h2{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:34.920000px;}
.w1b{width:64.800000px;}
.w21{width:67.140000px;}
.w13{width:70.920000px;}
.w14{width:77.436000px;}
.wa{width:78.120000px;}
.w19{width:78.300000px;}
.w1a{width:79.416000px;}
.w1f{width:81.180000px;}
.w20{width:82.116000px;}
.w6{width:88.236000px;}
.w17{width:89.460000px;}
.w1c{width:92.016000px;}
.w1d{width:92.520000px;}
.w10{width:94.500000px;}
.w22{width:95.256000px;}
.w4{width:101.196000px;}
.w18{width:102.636000px;}
.w1e{width:106.236000px;}
.wc{width:106.596000px;}
.w5{width:110.916000px;}
.w15{width:112.680000px;}
.wd{width:115.200000px;}
.w9{width:126.576000px;}
.w7{width:132.660000px;}
.w16{width:135.036000px;}
.w8{width:145.476000px;}
.wf{width:155.730000px;}
.we{width:157.890000px;}
.w11{width:162.210000px;}
.wb{width:183.090000px;}
.w12{width:247.710000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:9.000000px;}
.x5{left:18.036000px;}
.x8{left:31.365000px;}
.xd{left:32.760000px;}
.xf{left:38.385000px;}
.xc{left:40.005000px;}
.xb{left:41.580000px;}
.x6{left:45.036000px;}
.x10{left:49.320000px;}
.xe{left:53.100000px;}
.x1{left:54.179987px;}
.x2a{left:80.999987px;}
.x4{left:88.920000px;}
.x2b{left:108.035987px;}
.x1b{left:167.430000px;}
.x25{left:184.350000px;}
.x20{left:193.170000px;}
.x18{left:242.490000px;}
.x15{left:244.110000px;}
.x12{left:271.470000px;}
.x26{left:276.870000px;}
.x7{left:280.650000px;}
.x21{left:282.630000px;}
.x1c{left:329.655000px;}
.x27{left:383.115000px;}
.x22{left:385.275000px;}
.x9{left:391.575000px;}
.x19{left:400.395000px;}
.x13{left:416.955000px;}
.x16{left:427.215000px;}
.x1f{left:442.335000px;}
.x11{left:446.474987px;}
.x23{left:463.575000px;}
.xa{left:479.805000px;}
.x17{left:533.805000px;}
.x14{left:543.525000px;}
.x28{left:546.405000px;}
.x1a{left:556.125000px;}
.x1d{left:577.365000px;}
.x24{left:607.785000px;}
.x29{left:613.545000px;}
.x1e{left:648.285000px;}
.x2{left:811.409987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls15{letter-spacing:-0.837333pt;}
.lsd{letter-spacing:-0.688000pt;}
.ls1d{letter-spacing:-0.544000pt;}
.ls24{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.409067pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.221333pt;}
.ls14{letter-spacing:-0.094933pt;}
.ls17{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.047360pt;}
.ls21{letter-spacing:0.094720pt;}
.ls12{letter-spacing:0.094933pt;}
.ls16{letter-spacing:0.120533pt;}
.ls10{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.183680pt;}
.lse{letter-spacing:0.230933pt;}
.ls1a{letter-spacing:0.265600pt;}
.ls18{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.800000pt;}
.ls3{letter-spacing:0.976640pt;}
.ls4{letter-spacing:1.258667pt;}
.ls8{letter-spacing:1.263360pt;}
.ls1{letter-spacing:1.296000pt;}
.ls0{letter-spacing:1.448320pt;}
.ls5{letter-spacing:1.521707pt;}
.ls7{letter-spacing:1.566720pt;}
.ls2{letter-spacing:1.600000pt;}
.ls6{letter-spacing:1.920000pt;}
.lsb{letter-spacing:4.160000pt;}
.ls1f{letter-spacing:5.440000pt;}
.ls20{letter-spacing:9.120000pt;}
.lsa{letter-spacing:9.760000pt;}
.ls22{letter-spacing:10.192640pt;}
.ls23{letter-spacing:18.720000pt;}
.lsf{letter-spacing:23.893333pt;}
.ls1e{letter-spacing:37.200640pt;}
.wsb{word-spacing:-30.057067pt;}
.ws0{word-spacing:-18.538667pt;}
.ws1{word-spacing:-14.720000pt;}
.wsa{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.185067pt;}
.ws7{word-spacing:-12.870933pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-2383.856427pt;}
._4{margin-left:-1237.132800pt;}
._6{margin-left:-909.542400pt;}
._5{margin-left:-886.461440pt;}
._1b{margin-left:-467.682987pt;}
._1c{margin-left:-466.529280pt;}
._30{margin-left:-465.237333pt;}
._10{margin-left:-457.674240pt;}
._7{margin-left:-453.399040pt;}
._f{margin-left:-442.986667pt;}
._c{margin-left:-367.360000pt;}
._b{margin-left:-323.200000pt;}
._e{margin-left:-279.680000pt;}
._17{margin-left:-241.109760pt;}
._13{margin-left:-220.160000pt;}
._18{margin-left:-181.468160pt;}
._12{margin-left:-175.360000pt;}
._14{margin-left:-147.200000pt;}
._1a{margin-left:-135.040000pt;}
._9{margin-left:-128.000000pt;}
._8{margin-left:-103.040000pt;}
._16{margin-left:-90.080000pt;}
._11{margin-left:-88.320000pt;}
._d{margin-left:-73.760000pt;}
._15{margin-left:-58.880000pt;}
._19{margin-left:-44.160000pt;}
._a{margin-left:-29.680640pt;}
._2f{margin-left:-28.770133pt;}
._2d{margin-left:-23.660587pt;}
._2e{margin-left:-1.852587pt;}
._3{margin-left:-0.942080pt;}
._1{width:1.175040pt;}
._0{width:2.435627pt;}
._22{width:3.338027pt;}
._1e{width:4.280533pt;}
._1f{width:5.368533pt;}
._26{width:6.577067pt;}
._20{width:8.074240pt;}
._21{width:9.189760pt;}
._23{width:10.245760pt;}
._27{width:11.314560pt;}
._24{width:12.338133pt;}
._28{width:14.468480pt;}
._2c{width:15.404800pt;}
._34{width:16.337707pt;}
._31{width:18.044160pt;}
._32{width:19.282560pt;}
._33{width:20.651093pt;}
._25{width:28.631680pt;}
._2a{width:35.265280pt;}
._29{width:36.280960pt;}
._2b{width:37.408640pt;}
._1d{width:52.348800pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:5.120000pt;}
.y88{bottom:5.280000pt;}
.y51{bottom:5.440000pt;}
.ya3{bottom:5.600000pt;}
.y80{bottom:6.266667pt;}
.y98{bottom:6.720000pt;}
.yae{bottom:6.880000pt;}
.yad{bottom:7.040000pt;}
.y73{bottom:7.520000pt;}
.y96{bottom:7.840000pt;}
.y89{bottom:8.000000pt;}
.y70{bottom:8.160000pt;}
.y72{bottom:9.760000pt;}
.y75{bottom:10.720000pt;}
.y8d{bottom:10.880000pt;}
.y6f{bottom:11.040000pt;}
.y8b{bottom:12.320000pt;}
.ya1{bottom:20.640000pt;}
.y7c{bottom:22.080000pt;}
.y7e{bottom:25.920000pt;}
.yab{bottom:26.560000pt;}
.y6{bottom:53.632000pt;}
.y9b{bottom:85.792000pt;}
.yd0{bottom:92.352000pt;}
.y9a{bottom:103.392000pt;}
.y33{bottom:103.712000pt;}
.ycf{bottom:110.112000pt;}
.y32{bottom:121.312000pt;}
.yce{bottom:127.712000pt;}
.y6a{bottom:133.946667pt;}
.y31{bottom:139.066667pt;}
.ycd{bottom:144.986667pt;}
.y69{bottom:151.546667pt;}
.y99{bottom:151.866667pt;}
.y30{bottom:156.666667pt;}
.ycc{bottom:162.586667pt;}
.y68{bottom:169.146667pt;}
.y97{bottom:171.866667pt;}
.y2f{bottom:174.266667pt;}
.ycb{bottom:180.506667pt;}
.y67{bottom:186.746667pt;}
.y95{bottom:190.746667pt;}
.y2e{bottom:191.866667pt;}
.yca{bottom:198.266667pt;}
.y66{bottom:204.346667pt;}
.y2d{bottom:209.466667pt;}
.y94{bottom:211.386667pt;}
.yc9{bottom:215.866667pt;}
.y65{bottom:222.106667pt;}
.y2c{bottom:227.226667pt;}
.yc8{bottom:233.466667pt;}
.y93{bottom:236.026667pt;}
.y64{bottom:239.706667pt;}
.y2b{bottom:244.826667pt;}
.yc7{bottom:251.066667pt;}
.y92{bottom:253.946667pt;}
.y63{bottom:257.306667pt;}
.y2a{bottom:262.426667pt;}
.yc6{bottom:268.666667pt;}
.y91{bottom:271.706667pt;}
.y62{bottom:274.906667pt;}
.y29{bottom:280.026667pt;}
.yc5{bottom:286.426667pt;}
.y90{bottom:289.306667pt;}
.y61{bottom:292.546667pt;}
.y28{bottom:297.666667pt;}
.y8f{bottom:302.146667pt;}
.yc4{bottom:304.066667pt;}
.y60{bottom:310.306667pt;}
.y27{bottom:315.426667pt;}
.y8e{bottom:319.746667pt;}
.yc3{bottom:321.666667pt;}
.y5f{bottom:327.906667pt;}
.y26{bottom:333.026667pt;}
.yc2{bottom:339.266667pt;}
.y8c{bottom:344.226667pt;}
.y5e{bottom:345.506667pt;}
.y25{bottom:350.306667pt;}
.yc1{bottom:356.866667pt;}
.y5d{bottom:363.106667pt;}
.y8a{bottom:367.266667pt;}
.y24{bottom:367.906667pt;}
.yc0{bottom:374.626667pt;}
.y5c{bottom:380.706667pt;}
.y23{bottom:387.906667pt;}
.ybf{bottom:392.226667pt;}
.y87{bottom:392.386667pt;}
.y5b{bottom:398.466667pt;}
.ybe{bottom:409.826667pt;}
.y22{bottom:413.506667pt;}
.y5a{bottom:416.066667pt;}
.y86{bottom:421.346667pt;}
.ybd{bottom:427.426667pt;}
.y21{bottom:431.106667pt;}
.y59{bottom:433.666667pt;}
.y85{bottom:439.266667pt;}
.ybc{bottom:444.706667pt;}
.y20{bottom:448.866667pt;}
.y58{bottom:451.266667pt;}
.y84{bottom:456.866667pt;}
.y1f{bottom:466.466667pt;}
.y57{bottom:468.866667pt;}
.y83{bottom:474.466667pt;}
.ybb{bottom:481.506667pt;}
.y1e{bottom:484.066667pt;}
.y56{bottom:486.626667pt;}
.y82{bottom:492.226667pt;}
.yba{bottom:498.946667pt;}
.y1d{bottom:501.666667pt;}
.y55{bottom:504.226667pt;}
.y81{bottom:505.026667pt;}
.yb9{bottom:516.706667pt;}
.y1c{bottom:519.266667pt;}
.y54{bottom:521.826667pt;}
.y7f{bottom:522.626667pt;}
.y52{bottom:534.013333pt;}
.y1b{bottom:537.053333pt;}
.yb8{bottom:538.973333pt;}
.yd3{bottom:539.453333pt;}
.y7d{bottom:541.053333pt;}
.yb6{bottom:547.133333pt;}
.y50{bottom:551.613333pt;}
.y1a{bottom:554.653333pt;}
.yd2{bottom:557.053333pt;}
.yb7{bottom:567.453333pt;}
.y19{bottom:572.253333pt;}
.y4f{bottom:574.813333pt;}
.y7b{bottom:579.133333pt;}
.yb5{bottom:586.653333pt;}
.y18{bottom:589.853333pt;}
.y4e{bottom:592.413333pt;}
.y17{bottom:607.453333pt;}
.yb4{bottom:607.613333pt;}
.y4d{bottom:610.013333pt;}
.y7a{bottom:614.013333pt;}
.y16{bottom:625.213333pt;}
.y4c{bottom:627.613333pt;}
.yb3{bottom:632.733333pt;}
.y15{bottom:642.813333pt;}
.y4b{bottom:644.893333pt;}
.yd1{bottom:645.213333pt;}
.yb2{bottom:650.333333pt;}
.y79{bottom:658.493333pt;}
.y14{bottom:660.413333pt;}
.y4a{bottom:662.973333pt;}
.yb1{bottom:668.253333pt;}
.y78{bottom:676.093333pt;}
.y13{bottom:678.013333pt;}
.y49{bottom:680.573333pt;}
.yb0{bottom:685.853333pt;}
.y77{bottom:694.013333pt;}
.y12{bottom:695.613333pt;}
.y48{bottom:698.173333pt;}
.y76{bottom:711.773333pt;}
.y11{bottom:713.373333pt;}
.y47{bottom:715.773333pt;}
.y74{bottom:724.573333pt;}
.yaf{bottom:726.973333pt;}
.y10{bottom:730.973333pt;}
.y46{bottom:733.373333pt;}
.yaa{bottom:734.973333pt;}
.y71{bottom:747.773333pt;}
.yf{bottom:748.573333pt;}
.y45{bottom:751.133333pt;}
.yac{bottom:755.293333pt;}
.ye{bottom:768.293333pt;}
.y44{bottom:768.773333pt;}
.y6e{bottom:769.733333pt;}
.ya9{bottom:774.533333pt;}
.yd{bottom:785.893333pt;}
.y43{bottom:786.373333pt;}
.y6d{bottom:793.573333pt;}
.ya8{bottom:795.653333pt;}
.y42{bottom:803.973333pt;}
.yc{bottom:808.133333pt;}
.ya7{bottom:820.613333pt;}
.y6c{bottom:821.253333pt;}
.y41{bottom:821.573333pt;}
.yb{bottom:825.733333pt;}
.ya{bottom:839.013333pt;}
.y40{bottom:839.333333pt;}
.y6b{bottom:856.613333pt;}
.y3f{bottom:856.933333pt;}
.ya6{bottom:857.413333pt;}
.y9{bottom:858.213333pt;}
.y3e{bottom:874.533333pt;}
.ya5{bottom:874.853333pt;}
.y8{bottom:878.693333pt;}
.y3d{bottom:892.133333pt;}
.ya4{bottom:892.453333pt;}
.ya2{bottom:905.253333pt;}
.y7{bottom:906.853333pt;}
.y3c{bottom:909.733333pt;}
.ya0{bottom:923.013333pt;}
.y3b{bottom:927.493333pt;}
.y5{bottom:942.853333pt;}
.y3a{bottom:945.093333pt;}
.y9d{bottom:956.613333pt;}
.y39{bottom:962.693333pt;}
.y4{bottom:970.213333pt;}
.y9f{bottom:974.213333pt;}
.y38{bottom:980.293333pt;}
.y9e{bottom:991.813333pt;}
.y3{bottom:997.573333pt;}
.y37{bottom:997.893333pt;}
.y9c{bottom:1015.360000pt;}
.y36{bottom:1015.680000pt;}
.y2{bottom:1025.120000pt;}
.y35{bottom:1041.600000pt;}
.y1{bottom:1054.720000pt;}
.y34{bottom:1060.960000pt;}
.h8{height:17.600000pt;}
.h16{height:17.632000pt;}
.h19{height:17.760000pt;}
.h10{height:18.432000pt;}
.h13{height:18.880000pt;}
.h1a{height:19.200000pt;}
.h1d{height:19.232000pt;}
.h14{height:20.000000pt;}
.h1b{height:20.320000pt;}
.ha{height:21.920000pt;}
.hc{height:21.952000pt;}
.h12{height:23.040000pt;}
.hb{height:23.200000pt;}
.h11{height:24.480000pt;}
.h17{height:32.800000pt;}
.h6{height:33.918750pt;}
.he{height:34.240000pt;}
.hf{height:38.080000pt;}
.hd{height:38.720000pt;}
.h18{height:50.560000pt;}
.h5{height:52.134375pt;}
.h9{height:52.478750pt;}
.h15{height:52.832000pt;}
.h7{height:53.535000pt;}
.h1f{height:54.598989pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.h1e{height:59.840000pt;}
.h1c{height:59.872000pt;}
.h2{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:31.040000pt;}
.w1b{width:57.600000pt;}
.w21{width:59.680000pt;}
.w13{width:63.040000pt;}
.w14{width:68.832000pt;}
.wa{width:69.440000pt;}
.w19{width:69.600000pt;}
.w1a{width:70.592000pt;}
.w1f{width:72.160000pt;}
.w20{width:72.992000pt;}
.w6{width:78.432000pt;}
.w17{width:79.520000pt;}
.w1c{width:81.792000pt;}
.w1d{width:82.240000pt;}
.w10{width:84.000000pt;}
.w22{width:84.672000pt;}
.w4{width:89.952000pt;}
.w18{width:91.232000pt;}
.w1e{width:94.432000pt;}
.wc{width:94.752000pt;}
.w5{width:98.592000pt;}
.w15{width:100.160000pt;}
.wd{width:102.400000pt;}
.w9{width:112.512000pt;}
.w7{width:117.920000pt;}
.w16{width:120.032000pt;}
.w8{width:129.312000pt;}
.wf{width:138.426667pt;}
.we{width:140.346667pt;}
.w11{width:144.186667pt;}
.wb{width:162.746667pt;}
.w12{width:220.186667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:8.000000pt;}
.x5{left:16.032000pt;}
.x8{left:27.880000pt;}
.xd{left:29.120000pt;}
.xf{left:34.120000pt;}
.xc{left:35.560000pt;}
.xb{left:36.960000pt;}
.x6{left:40.032000pt;}
.x10{left:43.840000pt;}
.xe{left:47.200000pt;}
.x1{left:48.159988pt;}
.x2a{left:71.999988pt;}
.x4{left:79.040000pt;}
.x2b{left:96.031988pt;}
.x1b{left:148.826667pt;}
.x25{left:163.866667pt;}
.x20{left:171.706667pt;}
.x18{left:215.546667pt;}
.x15{left:216.986667pt;}
.x12{left:241.306667pt;}
.x26{left:246.106667pt;}
.x7{left:249.466667pt;}
.x21{left:251.226667pt;}
.x1c{left:293.026667pt;}
.x27{left:340.546667pt;}
.x22{left:342.466667pt;}
.x9{left:348.066667pt;}
.x19{left:355.906667pt;}
.x13{left:370.626667pt;}
.x16{left:379.746667pt;}
.x1f{left:393.186667pt;}
.x11{left:396.866655pt;}
.x23{left:412.066667pt;}
.xa{left:426.493333pt;}
.x17{left:474.493333pt;}
.x14{left:483.133333pt;}
.x28{left:485.693333pt;}
.x1a{left:494.333333pt;}
.x1d{left:513.213333pt;}
.x24{left:540.253333pt;}
.x29{left:545.373333pt;}
.x1e{left:576.253333pt;}
.x2{left:721.253322pt;}
}




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