
    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_e135339b66c675474acc3e31.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_3e997780a01737bff8760779.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_b969e0adf4a95f6fa23522ea.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.799000;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_9655e79770a5a8da4a1e8a9f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.724000;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_19b33caf4e5198ba1ace3c19.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942000;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_ea6198c7a66472c162e95749.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.031738;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_988055b3beca42206267e8c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.799000;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_baa6d203c2f8070343aceb67.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.799000;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_62a5c29ae40d94a7655ac4f6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941000;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_0da9f0cb143d5546661fbdbd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c0a9937847207a4d12e49a5a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_65a50b42cbacc9b444d86476.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.031738;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:ffd;src:url('chunks/assets/font_5c925b32bce1a1942b3d43d6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.675781;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:ffe;src:url('chunks/assets/font_e5b3c5629984a3d0c8ee5201.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.953125;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:fff;src:url('chunks/assets/font_3286fcb7a0916007bf0cc6aa.woff2')format("woff");}.fff{font-family:fff;line-height:0.973633;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:ff10;src:url('chunks/assets/font_e7adaf7d3ab759d437ecfe1b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.899902;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:ff11;src:url('chunks/assets/font_8bb619d0442261f9ab9fd387.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.031738;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:ff12;src:url('chunks/assets/font_c7b0cf147e58552f2efa9479.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.031738;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:ff13;src:url('chunks/assets/font_c7b03ae5b8ce9c69bbc002aa.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;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:ff14;src:url('chunks/assets/font_6e9c93db9af7057a9b08bfb6.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.899902;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:ff15;src:url('chunks/assets/font_df6000c60920997404e6b086.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.031738;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:ff16;src:url('chunks/assets/font_fab9750246002be2df35dcc8.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.031738;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);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls1{letter-spacing:-0.660000px;}
.ls5{letter-spacing:-0.346302px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.761400px;}
.ls3{letter-spacing:2.520000px;}
.ls4{letter-spacing:8.737200px;}
.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;}
}
.ws2{word-spacing:-16.962000px;}
.ws6{word-spacing:-16.434000px;}
.wse{word-spacing:-16.368000px;}
.ws0{word-spacing:-16.200000px;}
.ws5{word-spacing:-16.170000px;}
.ws17{word-spacing:-14.880000px;}
.ws3{word-spacing:-9.542544px;}
.ws16{word-spacing:-9.196242px;}
.ws4{word-spacing:-8.696028px;}
.ws7{word-spacing:-8.675040px;}
.ws9{word-spacing:-2.970000px;}
.ws12{word-spacing:-2.706000px;}
.ws13{word-spacing:-2.574000px;}
.wsa{word-spacing:-1.716000px;}
.wsf{word-spacing:-1.224000px;}
.ws1a{word-spacing:-1.188000px;}
.ws15{word-spacing:-0.924000px;}
.wsd{word-spacing:-0.198000px;}
.ws10{word-spacing:-0.144000px;}
.ws1{word-spacing:0.000000px;}
.ws14{word-spacing:1.122000px;}
.ws8{word-spacing:1.518000px;}
.ws18{word-spacing:2.772000px;}
.ws11{word-spacing:3.498000px;}
.wsc{word-spacing:3.630000px;}
.ws1b{word-spacing:5.148000px;}
.ws19{word-spacing:7.788000px;}
.wsb{word-spacing:8.250000px;}
._3{margin-left:-7.804800px;}
._d{margin-left:-6.664560px;}
._4{margin-left:-5.073600px;}
._2{margin-left:-3.862800px;}
._1{margin-left:-1.990800px;}
._5{width:1.071000px;}
._8{width:2.133000px;}
._b{width:3.392400px;}
._9{width:4.626600px;}
._c{width:5.680200px;}
._a{width:7.449000px;}
._6{width:8.626200px;}
._7{width:9.633600px;}
._e{width:11.994000px;}
._f{width:13.813800px;}
._0{width:461.664000px;}
.fc1{color:rgb(48,88,159);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:34.980000px;}
.fs7{font-size:38.478000px;}
.fs9{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:114.000000px;}
.fs5{font-size:126.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.691750px;}
.y9{bottom:9.701550px;}
.y4c{bottom:45.129900px;}
.y35{bottom:45.165300px;}
.y32{bottom:102.790200px;}
.y8a{bottom:102.790350px;}
.yd{bottom:109.849650px;}
.y44{bottom:112.845450px;}
.ybd{bottom:116.133600px;}
.y31{bottom:120.790200px;}
.yb2{bottom:120.790500px;}
.yc{bottom:131.449650px;}
.ybc{bottom:135.933600px;}
.y43{bottom:136.897350px;}
.y30{bottom:138.790200px;}
.yb1{bottom:138.790650px;}
.ybb{bottom:155.733600px;}
.y42{bottom:156.697350px;}
.y2f{bottom:156.790200px;}
.yd5{bottom:159.112200px;}
.y7a{bottom:163.996650px;}
.yba{bottom:175.533600px;}
.y41{bottom:176.497350px;}
.yd4{bottom:177.112200px;}
.y79{bottom:183.796650px;}
.yb{bottom:186.010200px;}
.y5{bottom:188.629200px;}
.y2e{bottom:194.067150px;}
.yb9{bottom:195.333600px;}
.y40{bottom:196.297350px;}
.y78{bottom:203.596650px;}
.yb0{bottom:204.253950px;}
.y4{bottom:210.229200px;}
.y2d{bottom:213.867150px;}
.yb8{bottom:215.133600px;}
.y3f{bottom:216.097350px;}
.ya{bottom:218.410200px;}
.y77{bottom:223.396500px;}
.yaf{bottom:224.053950px;}
.y3{bottom:231.829200px;}
.y8f{bottom:232.458600px;}
.y3e{bottom:235.897350px;}
.y2c{bottom:237.924150px;}
.yb7{bottom:239.185500px;}
.y76{bottom:243.196500px;}
.yae{bottom:243.853950px;}
.y8e{bottom:250.458600px;}
.y3d{bottom:255.697350px;}
.y2b{bottom:257.724150px;}
.yad{bottom:263.653800px;}
.y75{bottom:267.248550px;}
.y8d{bottom:268.458600px;}
.y2a{bottom:277.524150px;}
.y3c{bottom:279.749400px;}
.y8c{bottom:286.458600px;}
.y74{bottom:287.048550px;}
.yac{bottom:287.705850px;}
.y29{bottom:297.324150px;}
.y8{bottom:299.445750px;}
.y8b{bottom:304.458600px;}
.y73{bottom:306.848550px;}
.yab{bottom:307.505850px;}
.y49{bottom:314.037450px;}
.y6{bottom:317.151000px;}
.y28{bottom:321.376200px;}
.y72{bottom:326.648550px;}
.yaa{bottom:327.305850px;}
.y48{bottom:332.037450px;}
.y7{bottom:335.448750px;}
.y27{bottom:341.176200px;}
.y71{bottom:346.448550px;}
.ya9{bottom:347.105850px;}
.y47{bottom:350.037450px;}
.y26{bottom:360.976200px;}
.y70{bottom:366.248550px;}
.ya8{bottom:366.905850px;}
.y25{bottom:380.776050px;}
.ya7{bottom:386.705850px;}
.y6f{bottom:390.300600px;}
.ye7{bottom:394.425000px;}
.y24{bottom:400.576050px;}
.yc9{bottom:407.781450px;}
.y6e{bottom:410.100600px;}
.ya6{bottom:410.757750px;}
.ye6{bottom:414.225000px;}
.y23{bottom:420.376200px;}
.yc8{bottom:425.781450px;}
.y6d{bottom:429.900450px;}
.ya5{bottom:430.557750px;}
.ye5{bottom:434.024850px;}
.y22{bottom:440.176200px;}
.yc7{bottom:443.781450px;}
.y6c{bottom:449.700600px;}
.ya4{bottom:450.357750px;}
.ye4{bottom:453.825000px;}
.y21{bottom:459.971100px;}
.yc6{bottom:461.781450px;}
.y6b{bottom:469.500600px;}
.ya3{bottom:470.157750px;}
.ye3{bottom:473.625000px;}
.y20{bottom:479.771100px;}
.y89{bottom:489.300450px;}
.ya2{bottom:489.957750px;}
.y6a{bottom:493.552500px;}
.ye2{bottom:497.676900px;}
.y1f{bottom:499.571100px;}
.ya1{bottom:509.757750px;}
.y69{bottom:513.352500px;}
.ye1{bottom:517.476900px;}
.y1e{bottom:519.371100px;}
.y68{bottom:533.152500px;}
.ya0{bottom:533.809800px;}
.ye0{bottom:537.276900px;}
.y1d{bottom:539.171100px;}
.y67{bottom:552.952500px;}
.y9f{bottom:553.609800px;}
.ydf{bottom:557.076900px;}
.y1c{bottom:563.228100px;}
.yd3{bottom:564.962550px;}
.y66{bottom:572.752500px;}
.y9e{bottom:573.409800px;}
.yde{bottom:576.876900px;}
.yd2{bottom:582.962550px;}
.y1b{bottom:583.028100px;}
.y65{bottom:592.552500px;}
.y9d{bottom:593.209800px;}
.ydd{bottom:596.676900px;}
.y1a{bottom:602.828100px;}
.y9c{bottom:613.009800px;}
.y64{bottom:616.604400px;}
.ydc{bottom:620.728800px;}
.y19{bottom:622.628100px;}
.y9b{bottom:632.809800px;}
.y63{bottom:636.404550px;}
.ydb{bottom:640.528950px;}
.y18{bottom:642.428100px;}
.y9a{bottom:652.609800px;}
.y62{bottom:656.204400px;}
.yda{bottom:660.328800px;}
.y99{bottom:672.409800px;}
.y61{bottom:676.004400px;}
.yd9{bottom:680.128950px;}
.y98{bottom:692.209800px;}
.y46{bottom:694.647600px;}
.y60{bottom:695.804400px;}
.ycd{bottom:699.850350px;}
.yd8{bottom:699.928950px;}
.y88{bottom:700.056450px;}
.y97{bottom:712.009800px;}
.y45{bottom:712.647600px;}
.ycc{bottom:717.850350px;}
.yd7{bottom:719.728800px;}
.y5f{bottom:719.856450px;}
.y96{bottom:731.809800px;}
.ycb{bottom:735.850350px;}
.y5e{bottom:739.656450px;}
.yd6{bottom:743.780850px;}
.y87{bottom:743.908350px;}
.yca{bottom:753.850350px;}
.y95{bottom:755.861700px;}
.y5d{bottom:763.708350px;}
.y94{bottom:775.661700px;}
.y5c{bottom:783.508350px;}
.y93{bottom:795.461850px;}
.ye9{bottom:797.403600px;}
.y17{bottom:799.121250px;}
.y5b{bottom:803.308350px;}
.y86{bottom:807.560400px;}
.y92{bottom:815.261700px;}
.ye8{bottom:815.403600px;}
.y16{bottom:817.122750px;}
.y5a{bottom:823.108500px;}
.y85{bottom:827.360400px;}
.y91{bottom:835.061700px;}
.y15{bottom:835.124250px;}
.y59{bottom:842.908500px;}
.y84{bottom:847.160400px;}
.y90{bottom:859.113750px;}
.y58{bottom:862.708350px;}
.y83{bottom:866.960400px;}
.y14{bottom:875.376300px;}
.y57{bottom:882.508350px;}
.y82{bottom:886.760400px;}
.y56{bottom:902.308350px;}
.y81{bottom:906.560400px;}
.y55{bottom:922.108500px;}
.y80{bottom:926.360400px;}
.y13{bottom:929.033100px;}
.y54{bottom:946.160400px;}
.y12{bottom:947.034600px;}
.y7f{bottom:950.412300px;}
.yc5{bottom:956.568900px;}
.y11{bottom:965.036100px;}
.y53{bottom:965.960400px;}
.y7e{bottom:970.212300px;}
.yc4{bottom:974.568900px;}
.y52{bottom:985.760400px;}
.y7d{bottom:990.012300px;}
.yc3{bottom:992.568900px;}
.yb6{bottom:1001.994150px;}
.y10{bottom:1005.288000px;}
.yd1{bottom:1005.560400px;}
.y51{bottom:1009.812450px;}
.yc2{bottom:1010.568900px;}
.yb5{bottom:1019.994150px;}
.yd0{bottom:1025.360400px;}
.yc1{bottom:1028.568900px;}
.y50{bottom:1029.612300px;}
.yb4{bottom:1037.994150px;}
.ycf{bottom:1045.160400px;}
.yc0{bottom:1046.568900px;}
.y4f{bottom:1049.412300px;}
.yb3{bottom:1055.994150px;}
.yf{bottom:1058.947500px;}
.ybf{bottom:1064.568900px;}
.yce{bottom:1064.960400px;}
.y4e{bottom:1069.212300px;}
.y3b{bottom:1073.464350px;}
.ybe{bottom:1082.568900px;}
.y7c{bottom:1089.012300px;}
.y3a{bottom:1093.264350px;}
.ye{bottom:1096.747500px;}
.y7b{bottom:1108.812450px;}
.y39{bottom:1113.064200px;}
.y38{bottom:1132.864350px;}
.y1{bottom:1147.849500px;}
.y37{bottom:1152.664350px;}
.y4d{bottom:1195.334700px;}
.y4b{bottom:1196.234550px;}
.y34{bottom:1197.734550px;}
.y36{bottom:1198.334700px;}
.y4a{bottom:1217.834700px;}
.y33{bottom:1219.334700px;}
.h2{height:27.867000px;}
.h11{height:28.154766px;}
.h13{height:48.134766px;}
.hd{height:49.236000px;}
.h12{height:50.176758px;}
.h14{height:51.890625px;}
.he{height:52.948242px;}
.h10{height:52.948842px;}
.hf{height:52.968642px;}
.h4{height:54.738281px;}
.ha{height:57.761719px;}
.h3{height:67.388672px;}
.h8{height:70.728000px;}
.hc{height:80.136000px;}
.h9{height:84.996000px;}
.h7{height:93.984000px;}
.hb{height:99.162000px;}
.h6{height:103.884000px;}
.h5{height:370.726500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:665.315400px;}
.w2{width:709.518750px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:95.669250px;}
.x12{left:97.803150px;}
.x1a{left:102.533100px;}
.x11{left:119.055150px;}
.x3{left:130.748100px;}
.x9{left:132.261000px;}
.x29{left:137.601150px;}
.x2a{left:141.241350px;}
.x28{left:159.288300px;}
.x2b{left:179.909550px;}
.x2{left:242.905500px;}
.x16{left:246.091650px;}
.x2e{left:256.207650px;}
.x2c{left:269.003550px;}
.x17{left:278.607600px;}
.x8{left:286.593000px;}
.x2f{left:289.814850px;}
.x15{left:292.893450px;}
.x30{left:308.252400px;}
.xe{left:312.713400px;}
.x2d{left:317.771850px;}
.x5{left:346.985850px;}
.x18{left:348.927450px;}
.xa{left:358.869000px;}
.x6{left:400.122300px;}
.x7{left:406.494300px;}
.x4{left:457.577850px;}
.xb{left:471.582600px;}
.xf{left:515.984250px;}
.x10{left:521.891250px;}
.xd{left:534.381600px;}
.x24{left:556.567500px;}
.x21{left:557.871600px;}
.x20{left:559.713750px;}
.x26{left:560.793600px;}
.x1d{left:561.932550px;}
.x1f{left:564.218100px;}
.x1c{left:565.832700px;}
.x23{left:569.044350px;}
.x1e{left:572.812650px;}
.xc{left:575.499600px;}
.x22{left:581.971650px;}
.x27{left:585.934050px;}
.x1b{left:596.535900px;}
.x25{left:635.376150px;}
.x14{left:661.641750px;}
.x19{left:667.423800px;}
.x13{left:775.078950px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls1{letter-spacing:-0.586667pt;}
.ls5{letter-spacing:-0.307824pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.676800pt;}
.ls3{letter-spacing:2.240000pt;}
.ls4{letter-spacing:7.766400pt;}
.ws2{word-spacing:-15.077333pt;}
.ws6{word-spacing:-14.608000pt;}
.wse{word-spacing:-14.549333pt;}
.ws0{word-spacing:-14.400000pt;}
.ws5{word-spacing:-14.373333pt;}
.ws17{word-spacing:-13.226667pt;}
.ws3{word-spacing:-8.482261pt;}
.ws16{word-spacing:-8.174437pt;}
.ws4{word-spacing:-7.729803pt;}
.ws7{word-spacing:-7.711147pt;}
.ws9{word-spacing:-2.640000pt;}
.ws12{word-spacing:-2.405333pt;}
.ws13{word-spacing:-2.288000pt;}
.wsa{word-spacing:-1.525333pt;}
.wsf{word-spacing:-1.088000pt;}
.ws1a{word-spacing:-1.056000pt;}
.ws15{word-spacing:-0.821333pt;}
.wsd{word-spacing:-0.176000pt;}
.ws10{word-spacing:-0.128000pt;}
.ws1{word-spacing:0.000000pt;}
.ws14{word-spacing:0.997333pt;}
.ws8{word-spacing:1.349333pt;}
.ws18{word-spacing:2.464000pt;}
.ws11{word-spacing:3.109333pt;}
.wsc{word-spacing:3.226667pt;}
.ws1b{word-spacing:4.576000pt;}
.ws19{word-spacing:6.922667pt;}
.wsb{word-spacing:7.333333pt;}
._3{margin-left:-6.937600pt;}
._d{margin-left:-5.924053pt;}
._4{margin-left:-4.509867pt;}
._2{margin-left:-3.433600pt;}
._1{margin-left:-1.769600pt;}
._5{width:0.952000pt;}
._8{width:1.896000pt;}
._b{width:3.015467pt;}
._9{width:4.112533pt;}
._c{width:5.049067pt;}
._a{width:6.621333pt;}
._6{width:7.667733pt;}
._7{width:8.563200pt;}
._e{width:10.661333pt;}
._f{width:12.278933pt;}
._0{width:410.368000pt;}
.fs8{font-size:31.093333pt;}
.fs7{font-size:34.202667pt;}
.fs9{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:101.333333pt;}
.fs5{font-size:112.000000pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:5.059333pt;}
.y9{bottom:8.623600pt;}
.y4c{bottom:40.115467pt;}
.y35{bottom:40.146933pt;}
.y32{bottom:91.369067pt;}
.y8a{bottom:91.369200pt;}
.yd{bottom:97.644133pt;}
.y44{bottom:100.307067pt;}
.ybd{bottom:103.229867pt;}
.y31{bottom:107.369067pt;}
.yb2{bottom:107.369333pt;}
.yc{bottom:116.844133pt;}
.ybc{bottom:120.829867pt;}
.y43{bottom:121.686533pt;}
.y30{bottom:123.369067pt;}
.yb1{bottom:123.369467pt;}
.ybb{bottom:138.429867pt;}
.y42{bottom:139.286533pt;}
.y2f{bottom:139.369067pt;}
.yd5{bottom:141.433067pt;}
.y7a{bottom:145.774800pt;}
.yba{bottom:156.029867pt;}
.y41{bottom:156.886533pt;}
.yd4{bottom:157.433067pt;}
.y79{bottom:163.374800pt;}
.yb{bottom:165.342400pt;}
.y5{bottom:167.670400pt;}
.y2e{bottom:172.504133pt;}
.yb9{bottom:173.629867pt;}
.y40{bottom:174.486533pt;}
.y78{bottom:180.974800pt;}
.yb0{bottom:181.559067pt;}
.y4{bottom:186.870400pt;}
.y2d{bottom:190.104133pt;}
.yb8{bottom:191.229867pt;}
.y3f{bottom:192.086533pt;}
.ya{bottom:194.142400pt;}
.y77{bottom:198.574667pt;}
.yaf{bottom:199.159067pt;}
.y3{bottom:206.070400pt;}
.y8f{bottom:206.629867pt;}
.y3e{bottom:209.686533pt;}
.y2c{bottom:211.488133pt;}
.yb7{bottom:212.609333pt;}
.y76{bottom:216.174667pt;}
.yae{bottom:216.759067pt;}
.y8e{bottom:222.629867pt;}
.y3d{bottom:227.286533pt;}
.y2b{bottom:229.088133pt;}
.yad{bottom:234.358933pt;}
.y75{bottom:237.554267pt;}
.y8d{bottom:238.629867pt;}
.y2a{bottom:246.688133pt;}
.y3c{bottom:248.666133pt;}
.y8c{bottom:254.629867pt;}
.y74{bottom:255.154267pt;}
.yac{bottom:255.738533pt;}
.y29{bottom:264.288133pt;}
.y8{bottom:266.174000pt;}
.y8b{bottom:270.629867pt;}
.y73{bottom:272.754267pt;}
.yab{bottom:273.338533pt;}
.y49{bottom:279.144400pt;}
.y6{bottom:281.912000pt;}
.y28{bottom:285.667733pt;}
.y72{bottom:290.354267pt;}
.yaa{bottom:290.938533pt;}
.y48{bottom:295.144400pt;}
.y7{bottom:298.176667pt;}
.y27{bottom:303.267733pt;}
.y71{bottom:307.954267pt;}
.ya9{bottom:308.538533pt;}
.y47{bottom:311.144400pt;}
.y26{bottom:320.867733pt;}
.y70{bottom:325.554267pt;}
.ya8{bottom:326.138533pt;}
.y25{bottom:338.467600pt;}
.ya7{bottom:343.738533pt;}
.y6f{bottom:346.933867pt;}
.ye7{bottom:350.600000pt;}
.y24{bottom:356.067600pt;}
.yc9{bottom:362.472400pt;}
.y6e{bottom:364.533867pt;}
.ya6{bottom:365.118000pt;}
.ye6{bottom:368.200000pt;}
.y23{bottom:373.667733pt;}
.yc8{bottom:378.472400pt;}
.y6d{bottom:382.133733pt;}
.ya5{bottom:382.718000pt;}
.ye5{bottom:385.799867pt;}
.y22{bottom:391.267733pt;}
.yc7{bottom:394.472400pt;}
.y6c{bottom:399.733867pt;}
.ya4{bottom:400.318000pt;}
.ye4{bottom:403.400000pt;}
.y21{bottom:408.863200pt;}
.yc6{bottom:410.472400pt;}
.y6b{bottom:417.333867pt;}
.ya3{bottom:417.918000pt;}
.ye3{bottom:421.000000pt;}
.y20{bottom:426.463200pt;}
.y89{bottom:434.933733pt;}
.ya2{bottom:435.518000pt;}
.y6a{bottom:438.713333pt;}
.ye2{bottom:442.379467pt;}
.y1f{bottom:444.063200pt;}
.ya1{bottom:453.118000pt;}
.y69{bottom:456.313333pt;}
.ye1{bottom:459.979467pt;}
.y1e{bottom:461.663200pt;}
.y68{bottom:473.913333pt;}
.ya0{bottom:474.497600pt;}
.ye0{bottom:477.579467pt;}
.y1d{bottom:479.263200pt;}
.y67{bottom:491.513333pt;}
.y9f{bottom:492.097600pt;}
.ydf{bottom:495.179467pt;}
.y1c{bottom:500.647200pt;}
.yd3{bottom:502.188933pt;}
.y66{bottom:509.113333pt;}
.y9e{bottom:509.697600pt;}
.yde{bottom:512.779467pt;}
.yd2{bottom:518.188933pt;}
.y1b{bottom:518.247200pt;}
.y65{bottom:526.713333pt;}
.y9d{bottom:527.297600pt;}
.ydd{bottom:530.379467pt;}
.y1a{bottom:535.847200pt;}
.y9c{bottom:544.897600pt;}
.y64{bottom:548.092800pt;}
.ydc{bottom:551.758933pt;}
.y19{bottom:553.447200pt;}
.y9b{bottom:562.497600pt;}
.y63{bottom:565.692933pt;}
.ydb{bottom:569.359067pt;}
.y18{bottom:571.047200pt;}
.y9a{bottom:580.097600pt;}
.y62{bottom:583.292800pt;}
.yda{bottom:586.958933pt;}
.y99{bottom:597.697600pt;}
.y61{bottom:600.892800pt;}
.yd9{bottom:604.559067pt;}
.y98{bottom:615.297600pt;}
.y46{bottom:617.464533pt;}
.y60{bottom:618.492800pt;}
.ycd{bottom:622.089200pt;}
.yd8{bottom:622.159067pt;}
.y88{bottom:622.272400pt;}
.y97{bottom:632.897600pt;}
.y45{bottom:633.464533pt;}
.ycc{bottom:638.089200pt;}
.yd7{bottom:639.758933pt;}
.y5f{bottom:639.872400pt;}
.y96{bottom:650.497600pt;}
.ycb{bottom:654.089200pt;}
.y5e{bottom:657.472400pt;}
.yd6{bottom:661.138533pt;}
.y87{bottom:661.251867pt;}
.yca{bottom:670.089200pt;}
.y95{bottom:671.877067pt;}
.y5d{bottom:678.851867pt;}
.y94{bottom:689.477067pt;}
.y5c{bottom:696.451867pt;}
.y93{bottom:707.077200pt;}
.ye9{bottom:708.803200pt;}
.y17{bottom:710.330000pt;}
.y5b{bottom:714.051867pt;}
.y86{bottom:717.831467pt;}
.y92{bottom:724.677067pt;}
.ye8{bottom:724.803200pt;}
.y16{bottom:726.331333pt;}
.y5a{bottom:731.652000pt;}
.y85{bottom:735.431467pt;}
.y91{bottom:742.277067pt;}
.y15{bottom:742.332667pt;}
.y59{bottom:749.252000pt;}
.y84{bottom:753.031467pt;}
.y90{bottom:763.656667pt;}
.y58{bottom:766.851867pt;}
.y83{bottom:770.631467pt;}
.y14{bottom:778.112267pt;}
.y57{bottom:784.451867pt;}
.y82{bottom:788.231467pt;}
.y56{bottom:802.051867pt;}
.y81{bottom:805.831467pt;}
.y55{bottom:819.652000pt;}
.y80{bottom:823.431467pt;}
.y13{bottom:825.807200pt;}
.y54{bottom:841.031467pt;}
.y12{bottom:841.808533pt;}
.y7f{bottom:844.810933pt;}
.yc5{bottom:850.283467pt;}
.y11{bottom:857.809867pt;}
.y53{bottom:858.631467pt;}
.y7e{bottom:862.410933pt;}
.yc4{bottom:866.283467pt;}
.y52{bottom:876.231467pt;}
.y7d{bottom:880.010933pt;}
.yc3{bottom:882.283467pt;}
.yb6{bottom:890.661467pt;}
.y10{bottom:893.589333pt;}
.yd1{bottom:893.831467pt;}
.y51{bottom:897.611067pt;}
.yc2{bottom:898.283467pt;}
.yb5{bottom:906.661467pt;}
.yd0{bottom:911.431467pt;}
.yc1{bottom:914.283467pt;}
.y50{bottom:915.210933pt;}
.yb4{bottom:922.661467pt;}
.ycf{bottom:929.031467pt;}
.yc0{bottom:930.283467pt;}
.y4f{bottom:932.810933pt;}
.yb3{bottom:938.661467pt;}
.yf{bottom:941.286667pt;}
.ybf{bottom:946.283467pt;}
.yce{bottom:946.631467pt;}
.y4e{bottom:950.410933pt;}
.y3b{bottom:954.190533pt;}
.ybe{bottom:962.283467pt;}
.y7c{bottom:968.010933pt;}
.y3a{bottom:971.790533pt;}
.ye{bottom:974.886667pt;}
.y7b{bottom:985.611067pt;}
.y39{bottom:989.390400pt;}
.y38{bottom:1006.990533pt;}
.y1{bottom:1020.310667pt;}
.y37{bottom:1024.590533pt;}
.y4d{bottom:1062.519733pt;}
.y4b{bottom:1063.319600pt;}
.y34{bottom:1064.652933pt;}
.y36{bottom:1065.186400pt;}
.y4a{bottom:1082.519733pt;}
.y33{bottom:1083.853067pt;}
.h2{height:24.770667pt;}
.h11{height:25.026458pt;}
.h13{height:42.786458pt;}
.hd{height:43.765333pt;}
.h12{height:44.601562pt;}
.h14{height:46.125000pt;}
.he{height:47.065104pt;}
.h10{height:47.065638pt;}
.hf{height:47.083238pt;}
.h4{height:48.656250pt;}
.ha{height:51.343750pt;}
.h3{height:59.901042pt;}
.h8{height:62.869333pt;}
.hc{height:71.232000pt;}
.h9{height:75.552000pt;}
.h7{height:83.541333pt;}
.hb{height:88.144000pt;}
.h6{height:92.341333pt;}
.h5{height:329.534667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:591.391467pt;}
.w2{width:630.683333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:85.039333pt;}
.x12{left:86.936133pt;}
.x1a{left:91.140533pt;}
.x11{left:105.826800pt;}
.x3{left:116.220533pt;}
.x9{left:117.565333pt;}
.x29{left:122.312133pt;}
.x2a{left:125.547867pt;}
.x28{left:141.589600pt;}
.x2b{left:159.919600pt;}
.x2{left:215.916000pt;}
.x16{left:218.748133pt;}
.x2e{left:227.740133pt;}
.x2c{left:239.114267pt;}
.x17{left:247.651200pt;}
.x8{left:254.749333pt;}
.x2f{left:257.613200pt;}
.x15{left:260.349733pt;}
.x30{left:274.002133pt;}
.xe{left:277.967467pt;}
.x2d{left:282.463867pt;}
.x5{left:308.431867pt;}
.x18{left:310.157733pt;}
.xa{left:318.994667pt;}
.x6{left:355.664267pt;}
.x7{left:361.328267pt;}
.x4{left:406.735867pt;}
.xb{left:419.184533pt;}
.xf{left:458.652667pt;}
.x10{left:463.903333pt;}
.xd{left:475.005867pt;}
.x24{left:494.726667pt;}
.x21{left:495.885867pt;}
.x20{left:497.523333pt;}
.x26{left:498.483200pt;}
.x1d{left:499.495600pt;}
.x1f{left:501.527200pt;}
.x1c{left:502.962400pt;}
.x23{left:505.817200pt;}
.x1e{left:509.166800pt;}
.xc{left:511.555200pt;}
.x22{left:517.308133pt;}
.x27{left:520.830267pt;}
.x1b{left:530.254133pt;}
.x25{left:564.778800pt;}
.x14{left:588.126000pt;}
.x19{left:593.265600pt;}
.x13{left:688.959067pt;}
}




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