
    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_e13d8d3639b928c462d09d04.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_8dbe17596d2f407a9a92c874.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8c6c67e16361896086d7b5bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_9b9700fd0d845d3db8c1d683.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9c8eb26c91e42e69abcc574b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.738770;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b46d6b4f2696ff21f9d8beeb.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls6{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.106800px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.298800px;}
.lse{letter-spacing:0.306600px;}
.ls9{letter-spacing:0.311760px;}
.lsd{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.792000px;}
.ls11{letter-spacing:5.220000px;}
.ls3{letter-spacing:14.400000px;}
.ls12{letter-spacing:29.520000px;}
.ls2{letter-spacing:64.421280px;}
.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;}
}
.ws1{word-spacing:-48.600000px;}
.ws0{word-spacing:-23.940000px;}
.ws5{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.720000px;}
.ws3{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.wsb{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.246600px;}
.wsa{word-spacing:-15.238800px;}
.ws9{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.833200px;}
.ws2{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._a{margin-left:-4.320000px;}
._f{margin-left:-2.790720px;}
._0{margin-left:-1.457280px;}
._1{width:1.602240px;}
._13{width:3.473280px;}
._12{width:4.800000px;}
._19{width:6.336000px;}
._e{width:7.704000px;}
._d{width:8.712000px;}
._1d{width:9.864000px;}
._20{width:10.871040px;}
._17{width:11.880000px;}
._18{width:13.392000px;}
._14{width:15.048000px;}
._1f{width:16.920000px;}
._16{width:19.439040px;}
._15{width:20.952000px;}
._10{width:22.896000px;}
._11{width:24.120000px;}
._1c{width:25.128000px;}
._b{width:26.784000px;}
._c{width:28.008000px;}
._1e{width:29.513760px;}
._21{width:30.600000px;}
._5{width:31.743120px;}
._4{width:32.845680px;}
._22{width:34.546320px;}
._23{width:39.528000px;}
._1a{width:40.824000px;}
._1b{width:42.065280px;}
._24{width:52.344000px;}
._2{width:104.474160px;}
._3{width:105.840480px;}
._9{width:111.656160px;}
._8{width:112.901040px;}
._7{width:124.392240px;}
._6{width:1950.918480px;}
.fc3{color:rgb(32,33,36);}
.fc2{color:rgb(33,33,33);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs4{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y89{bottom:3.240000px;}
.y73{bottom:7.740000px;}
.y71{bottom:8.460000px;}
.y9d{bottom:8.505000px;}
.y77{bottom:8.640000px;}
.y6f{bottom:8.820000px;}
.y8c{bottom:9.180000px;}
.y87{bottom:9.360000px;}
.y6d{bottom:12.240000px;}
.y6b{bottom:13.680000px;}
.y6{bottom:82.116000px;}
.y5{bottom:109.296000px;}
.y4{bottom:134.496000px;}
.y3{bottom:153.750000px;}
.y2{bottom:172.650000px;}
.ya1{bottom:200.190000px;}
.y82{bottom:200.910000px;}
.yd0{bottom:202.170000px;}
.y64{bottom:206.490000px;}
.y2c{bottom:209.190000px;}
.y48{bottom:224.850000px;}
.y2b{bottom:229.890000px;}
.ye4{bottom:230.610000px;}
.y81{bottom:231.870000px;}
.ycf{bottom:233.130000px;}
.ya0{bottom:234.030000px;}
.ybc{bottom:236.010000px;}
.y63{bottom:237.630000px;}
.y100{bottom:241.590000px;}
.y2a{bottom:250.590000px;}
.ye3{bottom:251.310000px;}
.y47{bottom:257.610000px;}
.yff{bottom:262.290000px;}
.y80{bottom:263.010000px;}
.yce{bottom:264.270000px;}
.y9f{bottom:267.690000px;}
.y62{bottom:268.590000px;}
.y29{bottom:271.290000px;}
.ybb{bottom:271.830000px;}
.ye2{bottom:272.010000px;}
.y46{bottom:288.570000px;}
.y28{bottom:291.990000px;}
.ye1{bottom:292.710000px;}
.y7f{bottom:293.970000px;}
.ycd{bottom:295.230000px;}
.y61{bottom:299.730000px;}
.yfe{bottom:300.990000px;}
.y9e{bottom:301.530000px;}
.y27{bottom:312.690000px;}
.yba{bottom:317.910000px;}
.y45{bottom:319.710000px;}
.yfd{bottom:321.690000px;}
.y7e{bottom:325.110000px;}
.ycc{bottom:326.370000px;}
.y60{bottom:330.690000px;}
.ye0{bottom:331.410000px;}
.y26{bottom:333.390000px;}
.y9c{bottom:335.190000px;}
.yb9{bottom:348.915000px;}
.y44{bottom:350.715000px;}
.ydf{bottom:352.155000px;}
.y25{bottom:354.135000px;}
.y7d{bottom:356.115000px;}
.ycb{bottom:357.375000px;}
.yfc{bottom:360.435000px;}
.y5f{bottom:361.875000px;}
.y9b{bottom:370.695000px;}
.y24{bottom:374.835000px;}
.yb8{bottom:380.055000px;}
.yfb{bottom:381.135000px;}
.y43{bottom:381.855000px;}
.y7c{bottom:387.255000px;}
.yca{bottom:388.515000px;}
.yde{bottom:390.855000px;}
.y5e{bottom:392.835000px;}
.y23{bottom:395.535000px;}
.yfa{bottom:401.835000px;}
.ydd{bottom:411.555000px;}
.y42{bottom:412.815000px;}
.y7b{bottom:413.895000px;}
.yb7{bottom:414.975000px;}
.y22{bottom:416.235000px;}
.y9a{bottom:416.775000px;}
.yc9{bottom:419.475000px;}
.y5d{bottom:423.975000px;}
.ydc{bottom:432.255000px;}
.y7a{bottom:433.875000px;}
.y21{bottom:436.935000px;}
.yb6{bottom:438.015000px;}
.yf9{bottom:440.535000px;}
.y41{bottom:443.955000px;}
.y99{bottom:447.915000px;}
.yc8{bottom:450.615000px;}
.ydb{bottom:452.955000px;}
.y5c{bottom:454.935000px;}
.y79{bottom:456.915000px;}
.y20{bottom:457.635000px;}
.yf8{bottom:461.235000px;}
.yb5{bottom:471.675000px;}
.y40{bottom:474.915000px;}
.y1f{bottom:478.155000px;}
.y98{bottom:478.875000px;}
.yc7{bottom:481.575000px;}
.y5b{bottom:486.075000px;}
.yda{bottom:491.655000px;}
.y78{bottom:495.975000px;}
.y1e{bottom:498.855000px;}
.yf7{bottom:499.935000px;}
.yb4{bottom:505.515000px;}
.y3f{bottom:506.055000px;}
.y97{bottom:510.015000px;}
.yd9{bottom:512.355000px;}
.yc6{bottom:512.715000px;}
.y5a{bottom:517.035000px;}
.yf6{bottom:520.635000px;}
.y76{bottom:534.855000px;}
.y3e{bottom:537.015000px;}
.y1d{bottom:537.555000px;}
.yb3{bottom:539.175000px;}
.y96{bottom:540.975000px;}
.yf5{bottom:541.335000px;}
.yc5{bottom:543.675000px;}
.y59{bottom:548.175000px;}
.yd8{bottom:551.055000px;}
.y1c{bottom:558.255000px;}
.y3d{bottom:568.155000px;}
.yd7{bottom:571.755000px;}
.y95{bottom:572.115000px;}
.y75{bottom:573.915000px;}
.yc4{bottom:574.635000px;}
.yb2{bottom:578.235000px;}
.y1b{bottom:578.955000px;}
.y58{bottom:579.135000px;}
.yf4{bottom:580.035000px;}
.y3c{bottom:599.115000px;}
.y1a{bottom:599.655000px;}
.yf3{bottom:600.735000px;}
.y94{bottom:603.075000px;}
.yc3{bottom:605.805000px;}
.y57{bottom:610.305000px;}
.yd6{bottom:610.845000px;}
.yb1{bottom:611.925000px;}
.y74{bottom:613.005000px;}
.y19{bottom:620.385000px;}
.y93{bottom:623.085000px;}
.y3b{bottom:630.285000px;}
.yc2{bottom:636.765000px;}
.yf2{bottom:639.465000px;}
.y92{bottom:640.365000px;}
.y18{bottom:641.085000px;}
.y56{bottom:641.265000px;}
.yd5{bottom:643.605000px;}
.yb0{bottom:645.765000px;}
.y72{bottom:651.885000px;}
.y91{bottom:657.645000px;}
.yf1{bottom:660.165000px;}
.y3a{bottom:661.245000px;}
.y17{bottom:661.785000px;}
.yc1{bottom:667.905000px;}
.y55{bottom:672.405000px;}
.yd4{bottom:674.565000px;}
.yaf{bottom:679.425000px;}
.y90{bottom:680.505000px;}
.y16{bottom:682.485000px;}
.yc0{bottom:687.885000px;}
.y70{bottom:690.045000px;}
.y39{bottom:692.385000px;}
.yf0{bottom:698.865000px;}
.y15{bottom:703.185000px;}
.y54{bottom:703.365000px;}
.ybf{bottom:705.165000px;}
.yd3{bottom:705.705000px;}
.yae{bottom:713.265000px;}
.y8f{bottom:714.345000px;}
.ybe{bottom:719.205000px;}
.yef{bottom:719.565000px;}
.y38{bottom:723.345000px;}
.y14{bottom:723.885000px;}
.y6e{bottom:729.105000px;}
.y53{bottom:734.505000px;}
.yd2{bottom:736.665000px;}
.yad{bottom:743.505000px;}
.y8e{bottom:748.005000px;}
.y37{bottom:754.305000px;}
.yee{bottom:758.265000px;}
.y13{bottom:762.585000px;}
.yd1{bottom:763.845000px;}
.y52{bottom:765.465000px;}
.y6c{bottom:768.345000px;}
.yac{bottom:770.145000px;}
.yed{bottom:778.965000px;}
.y8d{bottom:781.845000px;}
.y12{bottom:784.905000px;}
.y36{bottom:785.445000px;}
.y51{bottom:796.605000px;}
.y107{bottom:796.965000px;}
.yec{bottom:799.665000px;}
.yab{bottom:801.105000px;}
.y11{bottom:805.605000px;}
.y6a{bottom:811.185000px;}
.y8b{bottom:815.505000px;}
.y35{bottom:816.405000px;}
.y10{bottom:826.305000px;}
.y50{bottom:827.565000px;}
.yaa{bottom:832.245000px;}
.y106{bottom:835.665000px;}
.yeb{bottom:838.365000px;}
.yf{bottom:847.005000px;}
.y34{bottom:847.545000px;}
.y69{bottom:851.865000px;}
.y8a{bottom:855.105000px;}
.y105{bottom:856.365000px;}
.y4f{bottom:858.705000px;}
.ya9{bottom:863.205000px;}
.y68{bottom:872.610000px;}
.yea{bottom:877.110000px;}
.y33{bottom:878.550000px;}
.ye{bottom:883.950000px;}
.y88{bottom:888.990000px;}
.y4e{bottom:889.710000px;}
.ya8{bottom:890.070000px;}
.y104{bottom:895.110000px;}
.y67{bottom:903.750000px;}
.y32{bottom:909.690000px;}
.ya7{bottom:910.050000px;}
.yd{bottom:911.670000px;}
.ye9{bottom:915.810000px;}
.y4d{bottom:920.850000px;}
.y86{bottom:922.650000px;}
.ya6{bottom:933.090000px;}
.y66{bottom:934.710000px;}
.ye8{bottom:936.510000px;}
.yc{bottom:939.390000px;}
.y31{bottom:940.650000px;}
.y4c{bottom:951.810000px;}
.y103{bottom:954.510000px;}
.ye7{bottom:957.210000px;}
.y65{bottom:962.070000px;}
.y85{bottom:962.610000px;}
.ya5{bottom:966.750000px;}
.yb{bottom:966.930000px;}
.y30{bottom:971.790000px;}
.y102{bottom:975.210000px;}
.y4b{bottom:982.950000px;}
.ya{bottom:994.470000px;}
.ye6{bottom:995.910000px;}
.ya4{bottom:1000.590000px;}
.y84{bottom:1001.490000px;}
.y2f{bottom:1002.750000px;}
.y4a{bottom:1013.910000px;}
.ye5{bottom:1016.610000px;}
.y9{bottom:1022.190000px;}
.y2e{bottom:1033.890000px;}
.ya3{bottom:1034.250000px;}
.y101{bottom:1034.610000px;}
.y83{bottom:1040.550000px;}
.y49{bottom:1045.050000px;}
.y8{bottom:1049.730000px;}
.ybd{bottom:1055.310000px;}
.ya2{bottom:1068.090000px;}
.y2d{bottom:1073.130000px;}
.y7{bottom:1076.010000px;}
.y1{bottom:1233.900000px;}
.h16{height:17.100000px;}
.h12{height:17.280000px;}
.h13{height:17.316000px;}
.h10{height:21.600000px;}
.hf{height:22.500000px;}
.h15{height:22.536000px;}
.he{height:22.860000px;}
.h14{height:23.220000px;}
.h11{height:23.400000px;}
.hc{height:26.280000px;}
.ha{height:27.720000px;}
.hb{height:53.077852px;}
.hd{height:53.573906px;}
.h5{height:59.343750px;}
.h3{height:59.383125px;}
.h2{height:64.546875px;}
.h4{height:65.884219px;}
.h9{height:70.606406px;}
.h8{height:74.820586px;}
.h6{height:85.052461px;}
.h7{height:85.847344px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:51.516000px;}
.wa{width:67.140000px;}
.w5{width:93.636000px;}
.w8{width:94.140000px;}
.w6{width:97.560000px;}
.wc{width:104.760000px;}
.wf{width:114.660000px;}
.wd{width:121.860000px;}
.w10{width:125.856000px;}
.w4{width:152.670000px;}
.w3{width:294.870000px;}
.we{width:386.535000px;}
.w7{width:403.455000px;}
.wb{width:440.715000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:7.380000px;}
.x23{left:9.900000px;}
.x1e{left:12.420000px;}
.x22{left:18.180000px;}
.x20{left:21.645000px;}
.x24{left:23.040000px;}
.x18{left:25.380000px;}
.x19{left:29.160000px;}
.x2f{left:36.900000px;}
.x10{left:39.780000px;}
.x14{left:41.040000px;}
.x12{left:42.660000px;}
.x32{left:44.280000px;}
.x16{left:49.320000px;}
.x31{left:52.965000px;}
.x17{left:60.474000px;}
.x2{left:106.415987px;}
.x27{left:107.856000px;}
.xe{left:120.234000px;}
.xd{left:124.956000px;}
.x2c{left:131.616000px;}
.x1b{left:136.116000px;}
.xa{left:146.915987px;}
.x9{left:148.895987px;}
.x25{left:151.409987px;}
.xb{left:160.409987px;}
.x7{left:170.129987px;}
.x4{left:171.389987px;}
.x1c{left:174.459000px;}
.x35{left:176.969987px;}
.x2d{left:187.059000px;}
.x28{left:192.999000px;}
.x2b{left:205.949987px;}
.xc{left:244.109987px;}
.x33{left:248.969987px;}
.x8{left:275.969987px;}
.x1a{left:279.074987px;}
.x26{left:281.234987px;}
.x5{left:344.234987px;}
.xf{left:421.455000px;}
.x36{left:426.314987px;}
.x6{left:446.474987px;}
.x1{left:467.744987px;}
.x34{left:473.504987px;}
.x2e{left:519.585000px;}
.x1d{left:541.005000px;}
.x29{left:550.005000px;}
.x11{left:575.565000px;}
.x30{left:635.685000px;}
.x1f{left:636.765000px;}
.x2a{left:656.250000px;}
.x13{left:670.650000px;}
.x21{left:689.910000px;}
.x37{left:733.829987px;}
.x3{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls6{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.094933pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.265600pt;}
.lse{letter-spacing:0.272533pt;}
.ls9{letter-spacing:0.277120pt;}
.lsd{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.704000pt;}
.ls11{letter-spacing:4.640000pt;}
.ls3{letter-spacing:12.800000pt;}
.ls12{letter-spacing:26.240000pt;}
.ls2{letter-spacing:57.263360pt;}
.ws1{word-spacing:-43.200000pt;}
.ws0{word-spacing:-21.280000pt;}
.ws5{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.640000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.wsb{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.552533pt;}
.wsa{word-spacing:-13.545600pt;}
.ws9{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.185067pt;}
.ws2{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._a{margin-left:-3.840000pt;}
._f{margin-left:-2.480640pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.424213pt;}
._13{width:3.087360pt;}
._12{width:4.266667pt;}
._19{width:5.632000pt;}
._e{width:6.848000pt;}
._d{width:7.744000pt;}
._1d{width:8.768000pt;}
._20{width:9.663147pt;}
._17{width:10.560000pt;}
._18{width:11.904000pt;}
._14{width:13.376000pt;}
._1f{width:15.040000pt;}
._16{width:17.279147pt;}
._15{width:18.624000pt;}
._10{width:20.352000pt;}
._11{width:21.440000pt;}
._1c{width:22.336000pt;}
._b{width:23.808000pt;}
._c{width:24.896000pt;}
._1e{width:26.234453pt;}
._21{width:27.200000pt;}
._5{width:28.216107pt;}
._4{width:29.196160pt;}
._22{width:30.707840pt;}
._23{width:35.136000pt;}
._1a{width:36.288000pt;}
._1b{width:37.391360pt;}
._24{width:46.528000pt;}
._2{width:92.865920pt;}
._3{width:94.080427pt;}
._9{width:99.249920pt;}
._8{width:100.356480pt;}
._7{width:110.570880pt;}
._6{width:1734.149760pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:2.880000pt;}
.y73{bottom:6.880000pt;}
.y71{bottom:7.520000pt;}
.y9d{bottom:7.560000pt;}
.y77{bottom:7.680000pt;}
.y6f{bottom:7.840000pt;}
.y8c{bottom:8.160000pt;}
.y87{bottom:8.320000pt;}
.y6d{bottom:10.880000pt;}
.y6b{bottom:12.160000pt;}
.y6{bottom:72.992000pt;}
.y5{bottom:97.152000pt;}
.y4{bottom:119.552000pt;}
.y3{bottom:136.666667pt;}
.y2{bottom:153.466667pt;}
.ya1{bottom:177.946667pt;}
.y82{bottom:178.586667pt;}
.yd0{bottom:179.706667pt;}
.y64{bottom:183.546667pt;}
.y2c{bottom:185.946667pt;}
.y48{bottom:199.866667pt;}
.y2b{bottom:204.346667pt;}
.ye4{bottom:204.986667pt;}
.y81{bottom:206.106667pt;}
.ycf{bottom:207.226667pt;}
.ya0{bottom:208.026667pt;}
.ybc{bottom:209.786667pt;}
.y63{bottom:211.226667pt;}
.y100{bottom:214.746667pt;}
.y2a{bottom:222.746667pt;}
.ye3{bottom:223.386667pt;}
.y47{bottom:228.986667pt;}
.yff{bottom:233.146667pt;}
.y80{bottom:233.786667pt;}
.yce{bottom:234.906667pt;}
.y9f{bottom:237.946667pt;}
.y62{bottom:238.746667pt;}
.y29{bottom:241.146667pt;}
.ybb{bottom:241.626667pt;}
.ye2{bottom:241.786667pt;}
.y46{bottom:256.506667pt;}
.y28{bottom:259.546667pt;}
.ye1{bottom:260.186667pt;}
.y7f{bottom:261.306667pt;}
.ycd{bottom:262.426667pt;}
.y61{bottom:266.426667pt;}
.yfe{bottom:267.546667pt;}
.y9e{bottom:268.026667pt;}
.y27{bottom:277.946667pt;}
.yba{bottom:282.586667pt;}
.y45{bottom:284.186667pt;}
.yfd{bottom:285.946667pt;}
.y7e{bottom:288.986667pt;}
.ycc{bottom:290.106667pt;}
.y60{bottom:293.946667pt;}
.ye0{bottom:294.586667pt;}
.y26{bottom:296.346667pt;}
.y9c{bottom:297.946667pt;}
.yb9{bottom:310.146667pt;}
.y44{bottom:311.746667pt;}
.ydf{bottom:313.026667pt;}
.y25{bottom:314.786667pt;}
.y7d{bottom:316.546667pt;}
.ycb{bottom:317.666667pt;}
.yfc{bottom:320.386667pt;}
.y5f{bottom:321.666667pt;}
.y9b{bottom:329.506667pt;}
.y24{bottom:333.186667pt;}
.yb8{bottom:337.826667pt;}
.yfb{bottom:338.786667pt;}
.y43{bottom:339.426667pt;}
.y7c{bottom:344.226667pt;}
.yca{bottom:345.346667pt;}
.yde{bottom:347.426667pt;}
.y5e{bottom:349.186667pt;}
.y23{bottom:351.586667pt;}
.yfa{bottom:357.186667pt;}
.ydd{bottom:365.826667pt;}
.y42{bottom:366.946667pt;}
.y7b{bottom:367.906667pt;}
.yb7{bottom:368.866667pt;}
.y22{bottom:369.986667pt;}
.y9a{bottom:370.466667pt;}
.yc9{bottom:372.866667pt;}
.y5d{bottom:376.866667pt;}
.ydc{bottom:384.226667pt;}
.y7a{bottom:385.666667pt;}
.y21{bottom:388.386667pt;}
.yb6{bottom:389.346667pt;}
.yf9{bottom:391.586667pt;}
.y41{bottom:394.626667pt;}
.y99{bottom:398.146667pt;}
.yc8{bottom:400.546667pt;}
.ydb{bottom:402.626667pt;}
.y5c{bottom:404.386667pt;}
.y79{bottom:406.146667pt;}
.y20{bottom:406.786667pt;}
.yf8{bottom:409.986667pt;}
.yb5{bottom:419.266667pt;}
.y40{bottom:422.146667pt;}
.y1f{bottom:425.026667pt;}
.y98{bottom:425.666667pt;}
.yc7{bottom:428.066667pt;}
.y5b{bottom:432.066667pt;}
.yda{bottom:437.026667pt;}
.y78{bottom:440.866667pt;}
.y1e{bottom:443.426667pt;}
.yf7{bottom:444.386667pt;}
.yb4{bottom:449.346667pt;}
.y3f{bottom:449.826667pt;}
.y97{bottom:453.346667pt;}
.yd9{bottom:455.426667pt;}
.yc6{bottom:455.746667pt;}
.y5a{bottom:459.586667pt;}
.yf6{bottom:462.786667pt;}
.y76{bottom:475.426667pt;}
.y3e{bottom:477.346667pt;}
.y1d{bottom:477.826667pt;}
.yb3{bottom:479.266667pt;}
.y96{bottom:480.866667pt;}
.yf5{bottom:481.186667pt;}
.yc5{bottom:483.266667pt;}
.y59{bottom:487.266667pt;}
.yd8{bottom:489.826667pt;}
.y1c{bottom:496.226667pt;}
.y3d{bottom:505.026667pt;}
.yd7{bottom:508.226667pt;}
.y95{bottom:508.546667pt;}
.y75{bottom:510.146667pt;}
.yc4{bottom:510.786667pt;}
.yb2{bottom:513.986667pt;}
.y1b{bottom:514.626667pt;}
.y58{bottom:514.786667pt;}
.yf4{bottom:515.586667pt;}
.y3c{bottom:532.546667pt;}
.y1a{bottom:533.026667pt;}
.yf3{bottom:533.986667pt;}
.y94{bottom:536.066667pt;}
.yc3{bottom:538.493333pt;}
.y57{bottom:542.493333pt;}
.yd6{bottom:542.973333pt;}
.yb1{bottom:543.933333pt;}
.y74{bottom:544.893333pt;}
.y19{bottom:551.453333pt;}
.y93{bottom:553.853333pt;}
.y3b{bottom:560.253333pt;}
.yc2{bottom:566.013333pt;}
.yf2{bottom:568.413333pt;}
.y92{bottom:569.213333pt;}
.y18{bottom:569.853333pt;}
.y56{bottom:570.013333pt;}
.yd5{bottom:572.093333pt;}
.yb0{bottom:574.013333pt;}
.y72{bottom:579.453333pt;}
.y91{bottom:584.573333pt;}
.yf1{bottom:586.813333pt;}
.y3a{bottom:587.773333pt;}
.y17{bottom:588.253333pt;}
.yc1{bottom:593.693333pt;}
.y55{bottom:597.693333pt;}
.yd4{bottom:599.613333pt;}
.yaf{bottom:603.933333pt;}
.y90{bottom:604.893333pt;}
.y16{bottom:606.653333pt;}
.yc0{bottom:611.453333pt;}
.y70{bottom:613.373333pt;}
.y39{bottom:615.453333pt;}
.yf0{bottom:621.213333pt;}
.y15{bottom:625.053333pt;}
.y54{bottom:625.213333pt;}
.ybf{bottom:626.813333pt;}
.yd3{bottom:627.293333pt;}
.yae{bottom:634.013333pt;}
.y8f{bottom:634.973333pt;}
.ybe{bottom:639.293333pt;}
.yef{bottom:639.613333pt;}
.y38{bottom:642.973333pt;}
.y14{bottom:643.453333pt;}
.y6e{bottom:648.093333pt;}
.y53{bottom:652.893333pt;}
.yd2{bottom:654.813333pt;}
.yad{bottom:660.893333pt;}
.y8e{bottom:664.893333pt;}
.y37{bottom:670.493333pt;}
.yee{bottom:674.013333pt;}
.y13{bottom:677.853333pt;}
.yd1{bottom:678.973333pt;}
.y52{bottom:680.413333pt;}
.y6c{bottom:682.973333pt;}
.yac{bottom:684.573333pt;}
.yed{bottom:692.413333pt;}
.y8d{bottom:694.973333pt;}
.y12{bottom:697.693333pt;}
.y36{bottom:698.173333pt;}
.y51{bottom:708.093333pt;}
.y107{bottom:708.413333pt;}
.yec{bottom:710.813333pt;}
.yab{bottom:712.093333pt;}
.y11{bottom:716.093333pt;}
.y6a{bottom:721.053333pt;}
.y8b{bottom:724.893333pt;}
.y35{bottom:725.693333pt;}
.y10{bottom:734.493333pt;}
.y50{bottom:735.613333pt;}
.yaa{bottom:739.773333pt;}
.y106{bottom:742.813333pt;}
.yeb{bottom:745.213333pt;}
.yf{bottom:752.893333pt;}
.y34{bottom:753.373333pt;}
.y69{bottom:757.213333pt;}
.y8a{bottom:760.093333pt;}
.y105{bottom:761.213333pt;}
.y4f{bottom:763.293333pt;}
.ya9{bottom:767.293333pt;}
.y68{bottom:775.653333pt;}
.yea{bottom:779.653333pt;}
.y33{bottom:780.933333pt;}
.ye{bottom:785.733333pt;}
.y88{bottom:790.213333pt;}
.y4e{bottom:790.853333pt;}
.ya8{bottom:791.173333pt;}
.y104{bottom:795.653333pt;}
.y67{bottom:803.333333pt;}
.y32{bottom:808.613333pt;}
.ya7{bottom:808.933333pt;}
.yd{bottom:810.373333pt;}
.ye9{bottom:814.053333pt;}
.y4d{bottom:818.533333pt;}
.y86{bottom:820.133333pt;}
.ya6{bottom:829.413333pt;}
.y66{bottom:830.853333pt;}
.ye8{bottom:832.453333pt;}
.yc{bottom:835.013333pt;}
.y31{bottom:836.133333pt;}
.y4c{bottom:846.053333pt;}
.y103{bottom:848.453333pt;}
.ye7{bottom:850.853333pt;}
.y65{bottom:855.173333pt;}
.y85{bottom:855.653333pt;}
.ya5{bottom:859.333333pt;}
.yb{bottom:859.493333pt;}
.y30{bottom:863.813333pt;}
.y102{bottom:866.853333pt;}
.y4b{bottom:873.733333pt;}
.ya{bottom:883.973333pt;}
.ye6{bottom:885.253333pt;}
.ya4{bottom:889.413333pt;}
.y84{bottom:890.213333pt;}
.y2f{bottom:891.333333pt;}
.y4a{bottom:901.253333pt;}
.ye5{bottom:903.653333pt;}
.y9{bottom:908.613333pt;}
.y2e{bottom:919.013333pt;}
.ya3{bottom:919.333333pt;}
.y101{bottom:919.653333pt;}
.y83{bottom:924.933333pt;}
.y49{bottom:928.933333pt;}
.y8{bottom:933.093333pt;}
.ybd{bottom:938.053333pt;}
.ya2{bottom:949.413333pt;}
.y2d{bottom:953.893333pt;}
.y7{bottom:956.453333pt;}
.y1{bottom:1096.800000pt;}
.h16{height:15.200000pt;}
.h12{height:15.360000pt;}
.h13{height:15.392000pt;}
.h10{height:19.200000pt;}
.hf{height:20.000000pt;}
.h15{height:20.032000pt;}
.he{height:20.320000pt;}
.h14{height:20.640000pt;}
.h11{height:20.800000pt;}
.hc{height:23.360000pt;}
.ha{height:24.640000pt;}
.hb{height:47.180312pt;}
.hd{height:47.621250pt;}
.h5{height:52.750000pt;}
.h3{height:52.785000pt;}
.h2{height:57.375000pt;}
.h4{height:58.563750pt;}
.h9{height:62.761250pt;}
.h8{height:66.507188pt;}
.h6{height:75.602187pt;}
.h7{height:76.308750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:45.792000pt;}
.wa{width:59.680000pt;}
.w5{width:83.232000pt;}
.w8{width:83.680000pt;}
.w6{width:86.720000pt;}
.wc{width:93.120000pt;}
.wf{width:101.920000pt;}
.wd{width:108.320000pt;}
.w10{width:111.872000pt;}
.w4{width:135.706667pt;}
.w3{width:262.106667pt;}
.we{width:343.586667pt;}
.w7{width:358.626667pt;}
.wb{width:391.746667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.560000pt;}
.x23{left:8.800000pt;}
.x1e{left:11.040000pt;}
.x22{left:16.160000pt;}
.x20{left:19.240000pt;}
.x24{left:20.480000pt;}
.x18{left:22.560000pt;}
.x19{left:25.920000pt;}
.x2f{left:32.800000pt;}
.x10{left:35.360000pt;}
.x14{left:36.480000pt;}
.x12{left:37.920000pt;}
.x32{left:39.360000pt;}
.x16{left:43.840000pt;}
.x31{left:47.080000pt;}
.x17{left:53.754667pt;}
.x2{left:94.591988pt;}
.x27{left:95.872000pt;}
.xe{left:106.874667pt;}
.xd{left:111.072000pt;}
.x2c{left:116.992000pt;}
.x1b{left:120.992000pt;}
.xa{left:130.591988pt;}
.x9{left:132.351988pt;}
.x25{left:134.586655pt;}
.xb{left:142.586655pt;}
.x7{left:151.226655pt;}
.x4{left:152.346655pt;}
.x1c{left:155.074667pt;}
.x35{left:157.306655pt;}
.x2d{left:166.274667pt;}
.x28{left:171.554667pt;}
.x2b{left:183.066655pt;}
.xc{left:216.986655pt;}
.x33{left:221.306655pt;}
.x8{left:245.306655pt;}
.x1a{left:248.066655pt;}
.x26{left:249.986655pt;}
.x5{left:305.986655pt;}
.xf{left:374.626667pt;}
.x36{left:378.946655pt;}
.x6{left:396.866655pt;}
.x1{left:415.773322pt;}
.x34{left:420.893322pt;}
.x2e{left:461.853333pt;}
.x1d{left:480.893333pt;}
.x29{left:488.893333pt;}
.x11{left:511.613333pt;}
.x30{left:565.053333pt;}
.x1f{left:566.013333pt;}
.x2a{left:583.333333pt;}
.x13{left:596.133333pt;}
.x21{left:613.253333pt;}
.x37{left:652.293322pt;}
.x3{left:699.333322pt;}
}




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