
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_13099206afd54c534e352ded.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_a2385f6f0d0da20e6705f404.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_3cf82cfd44dd35097c3b9c10.woff')format("woff");}.ff4{font-family:ff4;line-height:0.979004;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_6d4d847aff6037d33076a135.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_45085224995ed75defd4d6a3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_18d090a2de2e7b30e03b09dc.woff')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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1a{letter-spacing:-0.243600px;}
.lsc{letter-spacing:-0.186600px;}
.ls13{letter-spacing:-0.178800px;}
.ls10{letter-spacing:-0.160800px;}
.ls19{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls1b{letter-spacing:-0.093000px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls1d{letter-spacing:-0.078000px;}
.ls16{letter-spacing:-0.014760px;}
.ls1c{letter-spacing:-0.013320px;}
.ls6{letter-spacing:0.000000px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls12{letter-spacing:0.115800px;}
.ls14{letter-spacing:0.116400px;}
.ls18{letter-spacing:0.143400px;}
.ls7{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls5{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.181200px;}
.ls11{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls17{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.wsb{word-spacing:-13.425600px;}
.wsf{word-spacing:-13.407600px;}
.ws3{word-spacing:-13.399800px;}
.ws14{word-spacing:-13.369800px;}
.wse{word-spacing:-13.342800px;}
.wsd{word-spacing:-13.342200px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws15{word-spacing:-13.213080px;}
.ws10{word-spacing:-13.211640px;}
.ws16{word-spacing:-13.148400px;}
.ws13{word-spacing:-13.133400px;}
.ws11{word-spacing:-13.072800px;}
.wsa{word-spacing:-13.065600px;}
.wsc{word-spacing:-13.047600px;}
.ws4{word-spacing:-13.039800px;}
.ws12{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._28{margin-left:-4.298206px;}
._15{margin-left:-3.261697px;}
._2{margin-left:-2.076000px;}
._0{margin-left:-1.050000px;}
._1{width:1.341336px;}
._7{width:3.006000px;}
._6{width:4.328400px;}
._9{width:5.360588px;}
._4{width:6.493200px;}
._5{width:7.726799px;}
._d{width:9.207360px;}
._13{width:10.226640px;}
._3{width:11.723400px;}
._e{width:14.669400px;}
._12{width:15.691200px;}
._11{width:16.745400px;}
._14{width:17.884800px;}
._f{width:18.937800px;}
._b{width:19.959600px;}
._c{width:21.463802px;}
._10{width:22.905600px;}
._a{width:24.768840px;}
._1f{width:25.795678px;}
._8{width:27.535200px;}
._1e{width:28.557000px;}
._18{width:29.699280px;}
._1c{width:31.382640px;}
._1d{width:32.645160px;}
._16{width:35.951760px;}
._17{width:37.514880px;}
._1a{width:40.039920px;}
._1b{width:41.078880px;}
._32{width:42.955560px;}
._2f{width:44.488800px;}
._25{width:45.871560px;}
._23{width:48.997800px;}
._35{width:54.618840px;}
._36{width:56.064120px;}
._33{width:62.314200px;}
._34{width:63.458280px;}
._29{width:67.093920px;}
._19{width:73.527120px;}
._24{width:91.021680px;}
._22{width:97.394400px;}
._2d{width:101.181960px;}
._30{width:124.388280px;}
._27{width:131.181840px;}
._26{width:150.023760px;}
._20{width:156.277080px;}
._2c{width:195.510240px;}
._2b{width:203.205600px;}
._2a{width:259.501680px;}
._2e{width:281.121120px;}
._21{width:298.315440px;}
._31{width:329.938560px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y60{bottom:7.830000px;}
.y5e{bottom:7.920000px;}
.y5b{bottom:7.950000px;}
.y5d{bottom:25.470000px;}
.y5a{bottom:25.500000px;}
.yd2{bottom:43.020000px;}
.yd4{bottom:43.110000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yd0{bottom:115.320000px;}
.y58{bottom:124.860000px;}
.ybf{bottom:129.810000px;}
.y28{bottom:130.710000px;}
.y80{bottom:132.600000px;}
.ya0{bottom:137.910000px;}
.yec{bottom:142.410000px;}
.y57{bottom:142.500000px;}
.y27{bottom:148.350000px;}
.y7f{bottom:150.150000px;}
.ycf{bottom:150.870000px;}
.yeb{bottom:159.960000px;}
.y56{bottom:160.050000px;}
.ybe{bottom:165.450000px;}
.y26{bottom:165.900000px;}
.y7e{bottom:167.700000px;}
.y9f{bottom:173.460000px;}
.yea{bottom:177.600000px;}
.yce{bottom:183.090000px;}
.y7d{bottom:185.340000px;}
.y55{bottom:186.600000px;}
.y9e{bottom:191.100000px;}
.ye9{bottom:195.150000px;}
.ybd{bottom:197.670000px;}
.y25{bottom:201.540000px;}
.y9d{bottom:208.650000px;}
.y7c{bottom:211.890000px;}
.ye8{bottom:212.700000px;}
.y24{bottom:219.090000px;}
.y54{bottom:222.510000px;}
.y9c{bottom:226.200000px;}
.y23{bottom:236.640000px;}
.ye7{bottom:239.340000px;}
.y9b{bottom:243.840000px;}
.y7b{bottom:247.440000px;}
.y22{bottom:254.280000px;}
.y9a{bottom:261.390000px;}
.y7a{bottom:265.080000px;}
.y53{bottom:270.840000px;}
.y21{bottom:271.830000px;}
.ye6{bottom:274.890000px;}
.y79{bottom:282.630000px;}
.y99{bottom:287.940000px;}
.y52{bottom:288.390000px;}
.ye5{bottom:292.440000px;}
.y78{bottom:300.270000px;}
.y51{bottom:305.940000px;}
.y20{bottom:307.380000px;}
.ye4{bottom:310.080000px;}
.y77{bottom:317.820000px;}
.y50{bottom:323.580000px;}
.y1f{bottom:325.020000px;}
.ye3{bottom:327.630000px;}
.y4f{bottom:341.130000px;}
.y1e{bottom:342.570000px;}
.y76{bottom:344.370000px;}
.ye2{bottom:345.270000px;}
.y10f{bottom:347.610000px;}
.y4e{bottom:358.770000px;}
.y1d{bottom:360.210000px;}
.ye1{bottom:362.820000px;}
.y10e{bottom:365.250000px;}
.y4d{bottom:376.320000px;}
.y1c{bottom:377.760000px;}
.y75{bottom:380.280000px;}
.ye0{bottom:380.370000px;}
.y10d{bottom:382.800000px;}
.y98{bottom:393.870000px;}
.y1b{bottom:395.310000px;}
.y4c{bottom:402.870000px;}
.ydf{bottom:407.010000px;}
.y10c{bottom:409.440000px;}
.y97{bottom:411.510000px;}
.y1a{bottom:422.220000px;}
.y10b{bottom:426.990000px;}
.y74{bottom:428.610000px;}
.y96{bottom:438.060000px;}
.y4b{bottom:438.510000px;}
.yde{bottom:442.560000px;}
.y73{bottom:446.160000px;}
.y10a{bottom:453.540000px;}
.y4a{bottom:456.060000px;}
.ycd{bottom:456.510000px;}
.ydd{bottom:460.200000px;}
.y72{bottom:463.800000px;}
.y19{bottom:470.580000px;}
.y109{bottom:471.210000px;}
.y49{bottom:473.730000px;}
.ycc{bottom:474.090000px;}
.ydc{bottom:477.780000px;}
.y71{bottom:481.380000px;}
.y18{bottom:488.490000px;}
.y48{bottom:491.280000px;}
.ycb{bottom:491.730000px;}
.ydb{bottom:495.330000px;}
.y108{bottom:497.760000px;}
.y70{bottom:498.930000px;}
.y47{bottom:508.830000px;}
.ybc{bottom:509.280000px;}
.yda{bottom:512.970000px;}
.y107{bottom:515.400000px;}
.y17{bottom:525.480000px;}
.y6f{bottom:525.570000px;}
.y46{bottom:526.470000px;}
.ybb{bottom:526.830000px;}
.yd9{bottom:530.520000px;}
.y106{bottom:541.950000px;}
.y16{bottom:543.120000px;}
.y95{bottom:544.020000px;}
.yba{bottom:544.470000px;}
.yd8{bottom:548.160000px;}
.y45{bottom:553.020000px;}
.y105{bottom:559.500000px;}
.y15{bottom:560.670000px;}
.y6e{bottom:561.120000px;}
.y94{bottom:561.660000px;}
.yb9{bottom:562.020000px;}
.yca{bottom:571.020000px;}
.yd7{bottom:574.710000px;}
.y14{bottom:578.220000px;}
.y6d{bottom:578.760000px;}
.yb8{bottom:579.660000px;}
.y104{bottom:586.140000px;}
.y93{bottom:588.210000px;}
.y44{bottom:588.660000px;}
.y13{bottom:595.860000px;}
.y6c{bottom:596.310000px;}
.yb7{bottom:597.210000px;}
.y103{bottom:603.690000px;}
.y43{bottom:606.210000px;}
.yc9{bottom:606.660000px;}
.yd6{bottom:607.650000px;}
.y12{bottom:613.410000px;}
.y6b{bottom:613.860000px;}
.yb6{bottom:614.760000px;}
.y42{bottom:623.760000px;}
.yc8{bottom:624.210000px;}
.y102{bottom:630.330000px;}
.y11{bottom:630.960000px;}
.y6a{bottom:631.500000px;}
.y41{bottom:641.400000px;}
.yc7{bottom:641.760000px;}
.y10{bottom:648.600000px;}
.y101{bottom:656.880000px;}
.y69{bottom:658.050000px;}
.y40{bottom:658.950000px;}
.yc6{bottom:659.400000px;}
.yf{bottom:666.150000px;}
.yd5{bottom:670.200000px;}
.y100{bottom:674.430000px;}
.y3f{bottom:676.590000px;}
.yb5{bottom:676.950000px;}
.ye{bottom:683.790000px;}
.yff{bottom:692.070000px;}
.y68{bottom:693.690000px;}
.y92{bottom:694.140000px;}
.yb4{bottom:694.590000px;}
.yd{bottom:701.340000px;}
.y3e{bottom:703.140000px;}
.y67{bottom:711.240000px;}
.y91{bottom:711.690000px;}
.yb3{bottom:712.140000px;}
.yfe{bottom:718.620000px;}
.yc{bottom:718.890000px;}
.y66{bottom:728.790000px;}
.yb2{bottom:729.690000px;}
.yd3{bottom:732.660000px;}
.yfd{bottom:736.170000px;}
.yb{bottom:736.530000px;}
.y90{bottom:738.330000px;}
.y3d{bottom:738.690000px;}
.y65{bottom:746.430000px;}
.yb1{bottom:747.330000px;}
.yfc{bottom:753.810000px;}
.ya{bottom:754.080000px;}
.y3c{bottom:756.330000px;}
.y64{bottom:763.980000px;}
.yb0{bottom:764.880000px;}
.y3b{bottom:773.880000px;}
.y8f{bottom:774.240000px;}
.yc5{bottom:774.330000px;}
.yfb{bottom:780.720000px;}
.y9{bottom:781.080000px;}
.y63{bottom:790.530000px;}
.y3a{bottom:791.520000px;}
.yc4{bottom:791.880000px;}
.yd1{bottom:795.210000px;}
.y39{bottom:809.070000px;}
.yc3{bottom:809.520000px;}
.y8e{bottom:822.480000px;}
.y62{bottom:823.560000px;}
.y38{bottom:826.620000px;}
.yaf{bottom:827.070000px;}
.y8{bottom:827.790000px;}
.yfa{bottom:828.960000px;}
.y8d{bottom:840.030000px;}
.yae{bottom:844.620000px;}
.yf9{bottom:846.600000px;}
.y37{bottom:853.260000px;}
.y8c{bottom:857.670000px;}
.yad{bottom:862.260000px;}
.y7{bottom:863.610000px;}
.yf8{bottom:864.150000px;}
.y61{bottom:868.470000px;}
.y8b{bottom:875.220000px;}
.yac{bottom:879.810000px;}
.yf7{bottom:881.700000px;}
.y36{bottom:888.810000px;}
.y8a{bottom:892.860000px;}
.yab{bottom:897.450000px;}
.yf6{bottom:899.340000px;}
.y6{bottom:899.610000px;}
.y35{bottom:906.450000px;}
.y89{bottom:910.410000px;}
.y5f{bottom:913.380000px;}
.yaa{bottom:915.000000px;}
.yf5{bottom:916.890000px;}
.y34{bottom:924.000000px;}
.ya9{bottom:932.550000px;}
.yf4{bottom:934.530000px;}
.y5{bottom:935.610000px;}
.y88{bottom:936.960000px;}
.yc2{bottom:942.000000px;}
.y33{bottom:950.910000px;}
.yf3{bottom:952.080000px;}
.y5c{bottom:958.290000px;}
.ya8{bottom:959.190000px;}
.yc1{bottom:959.550000px;}
.yf2{bottom:969.630000px;}
.y4{bottom:971.700000px;}
.y87{bottom:972.600000px;}
.yc0{bottom:977.190000px;}
.yf1{bottom:987.270000px;}
.y86{bottom:990.150000px;}
.ya7{bottom:994.740000px;}
.y32{bottom:999.150000px;}
.y59{bottom:1003.200000px;}
.yf0{bottom:1004.820000px;}
.y85{bottom:1007.790000px;}
.y3{bottom:1009.980000px;}
.ya6{bottom:1012.320000px;}
.y31{bottom:1016.820000px;}
.yef{bottom:1022.490000px;}
.y84{bottom:1025.370000px;}
.ya5{bottom:1029.960000px;}
.y30{bottom:1034.370000px;}
.yee{bottom:1040.040000px;}
.y83{bottom:1042.920000px;}
.ya4{bottom:1047.510000px;}
.y2f{bottom:1051.920000px;}
.y82{bottom:1060.560000px;}
.ya3{bottom:1065.150000px;}
.yed{bottom:1066.950000px;}
.y2e{bottom:1069.560000px;}
.y81{bottom:1087.110000px;}
.ya2{bottom:1091.700000px;}
.y2d{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.ya1{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hb{height:44.190000px;}
.ha{height:44.220000px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hc{height:61.740000px;}
.he{height:61.793886px;}
.hd{height:61.830000px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:108.390000px;}
.w6{width:119.190000px;}
.w8{width:207.030000px;}
.w7{width:207.270000px;}
.w9{width:219.870000px;}
.w4{width:316.440000px;}
.w5{width:329.250000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:3.960000px;}
.xb{left:7.740000px;}
.x1{left:68.040000px;}
.xf{left:111.239987px;}
.x5{left:177.960000px;}
.xc{left:188.670000px;}
.x2{left:209.819987px;}
.xa{left:215.129987px;}
.x8{left:239.429987px;}
.xd{left:396.750000px;}
.x6{left:495.210000px;}
.xe{left:604.590000px;}
.x9{left:676.139987px;}
.x7{left:739.139987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1a{letter-spacing:-0.216533pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls13{letter-spacing:-0.158933pt;}
.ls10{letter-spacing:-0.142933pt;}
.ls19{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls1b{letter-spacing:-0.082667pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls1d{letter-spacing:-0.069333pt;}
.ls16{letter-spacing:-0.013120pt;}
.ls1c{letter-spacing:-0.011840pt;}
.ls6{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls12{letter-spacing:0.102933pt;}
.ls14{letter-spacing:0.103467pt;}
.ls18{letter-spacing:0.127467pt;}
.ls7{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls5{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.161067pt;}
.ls11{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls17{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.wsb{word-spacing:-11.933867pt;}
.wsf{word-spacing:-11.917867pt;}
.ws3{word-spacing:-11.910933pt;}
.ws14{word-spacing:-11.884267pt;}
.wse{word-spacing:-11.860267pt;}
.wsd{word-spacing:-11.859733pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws15{word-spacing:-11.744960pt;}
.ws10{word-spacing:-11.743680pt;}
.ws16{word-spacing:-11.687467pt;}
.ws13{word-spacing:-11.674133pt;}
.ws11{word-spacing:-11.620267pt;}
.wsa{word-spacing:-11.613867pt;}
.wsc{word-spacing:-11.597867pt;}
.ws4{word-spacing:-11.590933pt;}
.ws12{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._28{margin-left:-3.820628pt;}
._15{margin-left:-2.899286pt;}
._2{margin-left:-1.845333pt;}
._0{margin-left:-0.933333pt;}
._1{width:1.192298pt;}
._7{width:2.672000pt;}
._6{width:3.847466pt;}
._9{width:4.764967pt;}
._4{width:5.771734pt;}
._5{width:6.868265pt;}
._d{width:8.184320pt;}
._13{width:9.090347pt;}
._3{width:10.420800pt;}
._e{width:13.039467pt;}
._12{width:13.947733pt;}
._11{width:14.884800pt;}
._14{width:15.897600pt;}
._f{width:16.833600pt;}
._b{width:17.741866pt;}
._c{width:19.078935pt;}
._10{width:20.360533pt;}
._a{width:22.016747pt;}
._1f{width:22.929492pt;}
._8{width:24.475734pt;}
._1e{width:25.384000pt;}
._18{width:26.399360pt;}
._1c{width:27.895680pt;}
._1d{width:29.017920pt;}
._16{width:31.957120pt;}
._17{width:33.346560pt;}
._1a{width:35.591040pt;}
._1b{width:36.514560pt;}
._32{width:38.182720pt;}
._2f{width:39.545600pt;}
._25{width:40.774720pt;}
._23{width:43.553600pt;}
._35{width:48.550080pt;}
._36{width:49.834773pt;}
._33{width:55.390400pt;}
._34{width:56.407360pt;}
._29{width:59.639040pt;}
._19{width:65.357440pt;}
._24{width:80.908160pt;}
._22{width:86.572800pt;}
._2d{width:89.939520pt;}
._30{width:110.567360pt;}
._27{width:116.606080pt;}
._26{width:133.354453pt;}
._20{width:138.912960pt;}
._2c{width:173.786880pt;}
._2b{width:180.627200pt;}
._2a{width:230.668160pt;}
._2e{width:249.885440pt;}
._21{width:265.169280pt;}
._31{width:293.278720pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:6.960000pt;}
.y5e{bottom:7.040000pt;}
.y5b{bottom:7.066667pt;}
.y5d{bottom:22.640000pt;}
.y5a{bottom:22.666667pt;}
.yd2{bottom:38.240000pt;}
.yd4{bottom:38.320000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yd0{bottom:102.506667pt;}
.y58{bottom:110.986667pt;}
.ybf{bottom:115.386667pt;}
.y28{bottom:116.186667pt;}
.y80{bottom:117.866667pt;}
.ya0{bottom:122.586667pt;}
.yec{bottom:126.586667pt;}
.y57{bottom:126.666667pt;}
.y27{bottom:131.866667pt;}
.y7f{bottom:133.466667pt;}
.ycf{bottom:134.106667pt;}
.yeb{bottom:142.186667pt;}
.y56{bottom:142.266667pt;}
.ybe{bottom:147.066667pt;}
.y26{bottom:147.466667pt;}
.y7e{bottom:149.066667pt;}
.y9f{bottom:154.186667pt;}
.yea{bottom:157.866667pt;}
.yce{bottom:162.746667pt;}
.y7d{bottom:164.746667pt;}
.y55{bottom:165.866667pt;}
.y9e{bottom:169.866667pt;}
.ye9{bottom:173.466667pt;}
.ybd{bottom:175.706667pt;}
.y25{bottom:179.146667pt;}
.y9d{bottom:185.466667pt;}
.y7c{bottom:188.346667pt;}
.ye8{bottom:189.066667pt;}
.y24{bottom:194.746667pt;}
.y54{bottom:197.786667pt;}
.y9c{bottom:201.066667pt;}
.y23{bottom:210.346667pt;}
.ye7{bottom:212.746667pt;}
.y9b{bottom:216.746667pt;}
.y7b{bottom:219.946667pt;}
.y22{bottom:226.026667pt;}
.y9a{bottom:232.346667pt;}
.y7a{bottom:235.626667pt;}
.y53{bottom:240.746667pt;}
.y21{bottom:241.626667pt;}
.ye6{bottom:244.346667pt;}
.y79{bottom:251.226667pt;}
.y99{bottom:255.946667pt;}
.y52{bottom:256.346667pt;}
.ye5{bottom:259.946667pt;}
.y78{bottom:266.906667pt;}
.y51{bottom:271.946667pt;}
.y20{bottom:273.226667pt;}
.ye4{bottom:275.626667pt;}
.y77{bottom:282.506667pt;}
.y50{bottom:287.626667pt;}
.y1f{bottom:288.906667pt;}
.ye3{bottom:291.226667pt;}
.y4f{bottom:303.226667pt;}
.y1e{bottom:304.506667pt;}
.y76{bottom:306.106667pt;}
.ye2{bottom:306.906667pt;}
.y10f{bottom:308.986667pt;}
.y4e{bottom:318.906667pt;}
.y1d{bottom:320.186667pt;}
.ye1{bottom:322.506667pt;}
.y10e{bottom:324.666667pt;}
.y4d{bottom:334.506667pt;}
.y1c{bottom:335.786667pt;}
.y75{bottom:338.026667pt;}
.ye0{bottom:338.106667pt;}
.y10d{bottom:340.266667pt;}
.y98{bottom:350.106667pt;}
.y1b{bottom:351.386667pt;}
.y4c{bottom:358.106667pt;}
.ydf{bottom:361.786667pt;}
.y10c{bottom:363.946667pt;}
.y97{bottom:365.786667pt;}
.y1a{bottom:375.306667pt;}
.y10b{bottom:379.546667pt;}
.y74{bottom:380.986667pt;}
.y96{bottom:389.386667pt;}
.y4b{bottom:389.786667pt;}
.yde{bottom:393.386667pt;}
.y73{bottom:396.586667pt;}
.y10a{bottom:403.146667pt;}
.y4a{bottom:405.386667pt;}
.ycd{bottom:405.786667pt;}
.ydd{bottom:409.066667pt;}
.y72{bottom:412.266667pt;}
.y19{bottom:418.293333pt;}
.y109{bottom:418.853333pt;}
.y49{bottom:421.093333pt;}
.ycc{bottom:421.413333pt;}
.ydc{bottom:424.693333pt;}
.y71{bottom:427.893333pt;}
.y18{bottom:434.213333pt;}
.y48{bottom:436.693333pt;}
.ycb{bottom:437.093333pt;}
.ydb{bottom:440.293333pt;}
.y108{bottom:442.453333pt;}
.y70{bottom:443.493333pt;}
.y47{bottom:452.293333pt;}
.ybc{bottom:452.693333pt;}
.yda{bottom:455.973333pt;}
.y107{bottom:458.133333pt;}
.y17{bottom:467.093333pt;}
.y6f{bottom:467.173333pt;}
.y46{bottom:467.973333pt;}
.ybb{bottom:468.293333pt;}
.yd9{bottom:471.573333pt;}
.y106{bottom:481.733333pt;}
.y16{bottom:482.773333pt;}
.y95{bottom:483.573333pt;}
.yba{bottom:483.973333pt;}
.yd8{bottom:487.253333pt;}
.y45{bottom:491.573333pt;}
.y105{bottom:497.333333pt;}
.y15{bottom:498.373333pt;}
.y6e{bottom:498.773333pt;}
.y94{bottom:499.253333pt;}
.yb9{bottom:499.573333pt;}
.yca{bottom:507.573333pt;}
.yd7{bottom:510.853333pt;}
.y14{bottom:513.973333pt;}
.y6d{bottom:514.453333pt;}
.yb8{bottom:515.253333pt;}
.y104{bottom:521.013333pt;}
.y93{bottom:522.853333pt;}
.y44{bottom:523.253333pt;}
.y13{bottom:529.653333pt;}
.y6c{bottom:530.053333pt;}
.yb7{bottom:530.853333pt;}
.y103{bottom:536.613333pt;}
.y43{bottom:538.853333pt;}
.yc9{bottom:539.253333pt;}
.yd6{bottom:540.133333pt;}
.y12{bottom:545.253333pt;}
.y6b{bottom:545.653333pt;}
.yb6{bottom:546.453333pt;}
.y42{bottom:554.453333pt;}
.yc8{bottom:554.853333pt;}
.y102{bottom:560.293333pt;}
.y11{bottom:560.853333pt;}
.y6a{bottom:561.333333pt;}
.y41{bottom:570.133333pt;}
.yc7{bottom:570.453333pt;}
.y10{bottom:576.533333pt;}
.y101{bottom:583.893333pt;}
.y69{bottom:584.933333pt;}
.y40{bottom:585.733333pt;}
.yc6{bottom:586.133333pt;}
.yf{bottom:592.133333pt;}
.yd5{bottom:595.733333pt;}
.y100{bottom:599.493333pt;}
.y3f{bottom:601.413333pt;}
.yb5{bottom:601.733333pt;}
.ye{bottom:607.813333pt;}
.yff{bottom:615.173333pt;}
.y68{bottom:616.613333pt;}
.y92{bottom:617.013333pt;}
.yb4{bottom:617.413333pt;}
.yd{bottom:623.413333pt;}
.y3e{bottom:625.013333pt;}
.y67{bottom:632.213333pt;}
.y91{bottom:632.613333pt;}
.yb3{bottom:633.013333pt;}
.yfe{bottom:638.773333pt;}
.yc{bottom:639.013333pt;}
.y66{bottom:647.813333pt;}
.yb2{bottom:648.613333pt;}
.yd3{bottom:651.253333pt;}
.yfd{bottom:654.373333pt;}
.yb{bottom:654.693333pt;}
.y90{bottom:656.293333pt;}
.y3d{bottom:656.613333pt;}
.y65{bottom:663.493333pt;}
.yb1{bottom:664.293333pt;}
.yfc{bottom:670.053333pt;}
.ya{bottom:670.293333pt;}
.y3c{bottom:672.293333pt;}
.y64{bottom:679.093333pt;}
.yb0{bottom:679.893333pt;}
.y3b{bottom:687.893333pt;}
.y8f{bottom:688.213333pt;}
.yc5{bottom:688.293333pt;}
.yfb{bottom:693.973333pt;}
.y9{bottom:694.293333pt;}
.y63{bottom:702.693333pt;}
.y3a{bottom:703.573333pt;}
.yc4{bottom:703.893333pt;}
.yd1{bottom:706.853333pt;}
.y39{bottom:719.173333pt;}
.yc3{bottom:719.573333pt;}
.y8e{bottom:731.093333pt;}
.y62{bottom:732.053333pt;}
.y38{bottom:734.773333pt;}
.yaf{bottom:735.173333pt;}
.y8{bottom:735.813333pt;}
.yfa{bottom:736.853333pt;}
.y8d{bottom:746.693333pt;}
.yae{bottom:750.773333pt;}
.yf9{bottom:752.533333pt;}
.y37{bottom:758.453333pt;}
.y8c{bottom:762.373333pt;}
.yad{bottom:766.453333pt;}
.y7{bottom:767.653333pt;}
.yf8{bottom:768.133333pt;}
.y61{bottom:771.973333pt;}
.y8b{bottom:777.973333pt;}
.yac{bottom:782.053333pt;}
.yf7{bottom:783.733333pt;}
.y36{bottom:790.053333pt;}
.y8a{bottom:793.653333pt;}
.yab{bottom:797.733333pt;}
.yf6{bottom:799.413333pt;}
.y6{bottom:799.653333pt;}
.y35{bottom:805.733333pt;}
.y89{bottom:809.253333pt;}
.y5f{bottom:811.893333pt;}
.yaa{bottom:813.333333pt;}
.yf5{bottom:815.013333pt;}
.y34{bottom:821.333333pt;}
.ya9{bottom:828.933333pt;}
.yf4{bottom:830.693333pt;}
.y5{bottom:831.653333pt;}
.y88{bottom:832.853333pt;}
.yc2{bottom:837.333333pt;}
.y33{bottom:845.253333pt;}
.yf3{bottom:846.293333pt;}
.y5c{bottom:851.813333pt;}
.ya8{bottom:852.613333pt;}
.yc1{bottom:852.933333pt;}
.yf2{bottom:861.893333pt;}
.y4{bottom:863.733333pt;}
.y87{bottom:864.533333pt;}
.yc0{bottom:868.613333pt;}
.yf1{bottom:877.573333pt;}
.y86{bottom:880.133333pt;}
.ya7{bottom:884.213333pt;}
.y32{bottom:888.133333pt;}
.y59{bottom:891.733333pt;}
.yf0{bottom:893.173333pt;}
.y85{bottom:895.813333pt;}
.y3{bottom:897.760000pt;}
.ya6{bottom:899.840000pt;}
.y31{bottom:903.840000pt;}
.yef{bottom:908.880000pt;}
.y84{bottom:911.440000pt;}
.ya5{bottom:915.520000pt;}
.y30{bottom:919.440000pt;}
.yee{bottom:924.480000pt;}
.y83{bottom:927.040000pt;}
.ya4{bottom:931.120000pt;}
.y2f{bottom:935.040000pt;}
.y82{bottom:942.720000pt;}
.ya3{bottom:946.800000pt;}
.yed{bottom:948.400000pt;}
.y2e{bottom:950.720000pt;}
.y81{bottom:966.320000pt;}
.ya2{bottom:970.400000pt;}
.y2d{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.ya1{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hb{height:39.280000pt;}
.ha{height:39.306667pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hc{height:54.880000pt;}
.he{height:54.927899pt;}
.hd{height:54.960000pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:96.346667pt;}
.w6{width:105.946667pt;}
.w8{width:184.026667pt;}
.w7{width:184.240000pt;}
.w9{width:195.440000pt;}
.w4{width:281.280000pt;}
.w5{width:292.666667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:3.520000pt;}
.xb{left:6.880000pt;}
.x1{left:60.480000pt;}
.xf{left:98.879988pt;}
.x5{left:158.186667pt;}
.xc{left:167.706667pt;}
.x2{left:186.506655pt;}
.xa{left:191.226655pt;}
.x8{left:212.826655pt;}
.xd{left:352.666667pt;}
.x6{left:440.186667pt;}
.xe{left:537.413333pt;}
.x9{left:601.013322pt;}
.x7{left:657.013322pt;}
.x3{left:711.413322pt;}
}




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