
    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_44ab2ef4ff2bc355e74aa6bc.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_555dfc6bd1436c79948012bb.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_69ee42dc55a6dee06e33507c.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_8f629b6cee06f52dafb286ba.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ff04f6e4fc8a73665c274aaf.woff')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_44cbdae8e6f6e7390155ef25.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_5ab5dd7e58ee7df4103f28a0.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0ad4e16485ac83c1d1f8163e.woff')format("woff");}.ff8{font-family:ff8;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;}
.lsa{letter-spacing:-0.186600px;}
.ls17{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.ls10{letter-spacing:-0.125400px;}
.lsb{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsd{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.064800px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls15{letter-spacing:0.116400px;}
.lsf{letter-spacing:0.127200px;}
.ls6{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls16{letter-spacing:0.181200px;}
.ls11{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:6.480000px;}
.ls18{letter-spacing:47.726640px;}
.ls13{letter-spacing:63.566640px;}
.ls14{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;}
}
.ws5{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.wsb{word-spacing:-13.425600px;}
.wsd{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.ws9{word-spacing:-13.353600px;}
.wsc{word-spacing:-13.342800px;}
.ws3{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.101000px;}
.wse{word-spacing:-13.072800px;}
.ws2{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._e{margin-left:-4.326957px;}
._c{margin-left:-3.186600px;}
._9{margin-left:-2.104200px;}
._0{margin-left:-1.050000px;}
._2{width:1.324032px;}
._3{width:2.403167px;}
._4{width:3.967992px;}
._6{width:5.168035px;}
._a{width:6.327360px;}
._7{width:7.875600px;}
._8{width:9.619200px;}
._1{width:11.407764px;}
._b{width:14.548800px;}
._13{width:15.597245px;}
._5{width:16.653000px;}
._d{width:18.156601px;}
._11{width:19.298520px;}
._12{width:20.424024px;}
._10{width:21.757848px;}
._f{width:22.785480px;}
._18{width:24.288480px;}
._19{width:25.494240px;}
._1b{width:27.255240px;}
._1a{width:28.557000px;}
._14{width:30.060000px;}
._22{width:31.382640px;}
._23{width:32.705280px;}
._17{width:34.027920px;}
._15{width:35.170200px;}
._16{width:36.580920px;}
._24{width:40.340520px;}
._2d{width:41.422680px;}
._2c{width:42.444720px;}
._2a{width:45.390600px;}
._1f{width:51.943680px;}
._2f{width:59.699160px;}
._1e{width:62.705160px;}
._29{width:80.801280px;}
._1c{width:95.717880px;}
._21{width:110.921400px;}
._26{width:162.801000px;}
._25{width:170.079480px;}
._1d{width:171.369960px;}
._27{width:182.764800px;}
._28{width:183.854160px;}
._2b{width:237.654360px;}
._20{width:304.979040px;}
._2e{width:1103.442480px;}
.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;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ydc{bottom:3.330000px;}
.yfb{bottom:3.420000px;}
.yd9{bottom:4.140000px;}
.yd3{bottom:7.830000px;}
.yeb{bottom:20.070000px;}
.yf6{bottom:20.160000px;}
.ye5{bottom:20.880000px;}
.yfa{bottom:20.970000px;}
.ye3{bottom:21.690000px;}
.ydb{bottom:21.780000px;}
.yd8{bottom:22.590000px;}
.yd5{bottom:37.350000px;}
.yea{bottom:38.520000px;}
.yf5{bottom:38.610000px;}
.ye4{bottom:39.330000px;}
.yf9{bottom:39.420000px;}
.yda{bottom:40.140000px;}
.yd7{bottom:41.040000px;}
.yee{bottom:54.900000px;}
.yd4{bottom:54.990000px;}
.yf4{bottom:56.160000px;}
.ye9{bottom:56.880000px;}
.yf8{bottom:56.970000px;}
.ye2{bottom:57.690000px;}
.yec{bottom:57.780000px;}
.yd6{bottom:58.590000px;}
.ye7{bottom:71.640000px;}
.yf1{bottom:71.730000px;}
.ydf{bottom:72.450000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.yf3{bottom:74.520000px;}
.ye8{bottom:75.330000px;}
.yf7{bottom:75.420000px;}
.ye1{bottom:76.140000px;}
.yf0{bottom:89.280000px;}
.yde{bottom:90.090000px;}
.yf2{bottom:92.970000px;}
.ye0{bottom:93.690000px;}
.y1{bottom:101.640000px;}
.y75{bottom:111.450000px;}
.y8d{bottom:111.630000px;}
.y112{bottom:115.770000px;}
.ya0{bottom:116.040000px;}
.y74{bottom:129.000000px;}
.y8c{bottom:129.180000px;}
.y111{bottom:133.410000px;}
.y27{bottom:139.800000px;}
.y73{bottom:146.550000px;}
.y8b{bottom:146.730000px;}
.y110{bottom:150.960000px;}
.y9f{bottom:151.590000px;}
.y26{bottom:157.350000px;}
.y8a{bottom:164.370000px;}
.yd1{bottom:166.170000px;}
.y25{bottom:174.990000px;}
.y10f{bottom:177.600000px;}
.y89{bottom:181.920000px;}
.y72{bottom:182.190000px;}
.y9e{bottom:183.810000px;}
.y24{bottom:192.540000px;}
.y10e{bottom:195.150000px;}
.y71{bottom:199.740000px;}
.yd0{bottom:201.720000px;}
.y10d{bottom:212.700000px;}
.y70{bottom:217.380000px;}
.y88{bottom:217.560000px;}
.y23{bottom:228.090000px;}
.y6f{bottom:234.930000px;}
.y87{bottom:235.110000px;}
.ycf{bottom:237.270000px;}
.y10c{bottom:239.340000px;}
.y22{bottom:245.730000px;}
.y6e{bottom:252.480000px;}
.y86{bottom:252.660000px;}
.y55{bottom:254.100000px;}
.y10b{bottom:256.890000px;}
.y21{bottom:263.280000px;}
.y6d{bottom:270.120000px;}
.y85{bottom:270.300000px;}
.yce{bottom:272.910000px;}
.y10a{bottom:274.530000px;}
.y20{bottom:280.920000px;}
.y6c{bottom:287.670000px;}
.y84{bottom:287.850000px;}
.y54{bottom:289.650000px;}
.ycd{bottom:290.460000px;}
.y109{bottom:292.080000px;}
.y1f{bottom:298.470000px;}
.y6b{bottom:305.310000px;}
.y83{bottom:305.490000px;}
.y53{bottom:307.200000px;}
.ycc{bottom:308.100000px;}
.y1e{bottom:316.020000px;}
.y108{bottom:318.990000px;}
.y6a{bottom:322.860000px;}
.y82{bottom:323.040000px;}
.y52{bottom:324.840000px;}
.ycb{bottom:325.650000px;}
.y81{bottom:340.590000px;}
.y51{bottom:342.390000px;}
.yca{bottom:343.200000px;}
.y1d{bottom:351.660000px;}
.y80{bottom:358.230000px;}
.y69{bottom:358.410000px;}
.y50{bottom:359.940000px;}
.yc9{bottom:360.840000px;}
.y107{bottom:367.230000px;}
.y1c{bottom:369.210000px;}
.y7f{bottom:375.780000px;}
.y68{bottom:376.050000px;}
.y4f{bottom:377.580000px;}
.yc8{bottom:378.390000px;}
.y106{bottom:384.870000px;}
.y1b{bottom:386.850000px;}
.y7e{bottom:393.420000px;}
.y67{bottom:393.600000px;}
.y4e{bottom:395.130000px;}
.yc7{bottom:395.940000px;}
.y105{bottom:402.420000px;}
.y1a{bottom:404.400000px;}
.y66{bottom:411.240000px;}
.y4d{bottom:412.770000px;}
.yc6{bottom:413.580000px;}
.y104{bottom:419.970000px;}
.y7d{bottom:420.240000px;}
.y19{bottom:421.950000px;}
.y65{bottom:428.790000px;}
.y4c{bottom:430.320000px;}
.yc5{bottom:431.130000px;}
.y103{bottom:437.610000px;}
.y18{bottom:439.590000px;}
.y64{bottom:446.340000px;}
.yc4{bottom:448.770000px;}
.y102{bottom:455.160000px;}
.y63{bottom:463.980000px;}
.y4b{bottom:465.870000px;}
.yc3{bottom:466.320000px;}
.y17{bottom:466.500000px;}
.y7c{bottom:468.570000px;}
.y101{bottom:472.830000px;}
.y62{bottom:481.560000px;}
.y4a{bottom:483.540000px;}
.y100{bottom:490.380000px;}
.y61{bottom:499.200000px;}
.y7b{bottom:500.820000px;}
.y49{bottom:501.090000px;}
.yc2{bottom:501.900000px;}
.yff{bottom:507.930000px;}
.y16{bottom:514.770000px;}
.y48{bottom:518.730000px;}
.yc1{bottom:519.540000px;}
.yfe{bottom:525.570000px;}
.y15{bottom:532.680000px;}
.y60{bottom:534.750000px;}
.y47{bottom:536.280000px;}
.yc0{bottom:537.090000px;}
.yfd{bottom:543.120000px;}
.y5f{bottom:552.300000px;}
.y46{bottom:553.830000px;}
.ybf{bottom:554.730000px;}
.y14{bottom:569.670000px;}
.y5e{bottom:569.940000px;}
.yfc{bottom:570.030000px;}
.y45{bottom:571.470000px;}
.ybe{bottom:572.280000px;}
.y13{bottom:587.310000px;}
.y5d{bottom:587.490000px;}
.y44{bottom:589.020000px;}
.ybd{bottom:589.830000px;}
.y12{bottom:604.860000px;}
.y5c{bottom:605.040000px;}
.ybc{bottom:607.470000px;}
.yef{bottom:615.660000px;}
.y11{bottom:622.500000px;}
.y5b{bottom:622.680000px;}
.y43{bottom:624.660000px;}
.ybb{bottom:625.020000px;}
.y10{bottom:640.050000px;}
.y5a{bottom:640.230000px;}
.y42{bottom:642.210000px;}
.yba{bottom:642.660000px;}
.yf{bottom:657.600000px;}
.y59{bottom:657.870000px;}
.y41{bottom:659.760000px;}
.yb9{bottom:660.210000px;}
.ye{bottom:675.240000px;}
.y40{bottom:677.400000px;}
.y9d{bottom:682.260000px;}
.y58{bottom:684.780000px;}
.yd{bottom:692.790000px;}
.y3f{bottom:694.950000px;}
.yb8{bottom:695.760000px;}
.y9c{bottom:699.810000px;}
.yc{bottom:710.430000px;}
.y3e{bottom:712.590000px;}
.yb7{bottom:713.400000px;}
.y9b{bottom:717.360000px;}
.yed{bottom:724.470000px;}
.yb{bottom:727.980000px;}
.y3d{bottom:730.140000px;}
.yb6{bottom:730.950000px;}
.y57{bottom:733.020000px;}
.y9a{bottom:735.000000px;}
.y3c{bottom:747.690000px;}
.yb5{bottom:748.590000px;}
.y121{bottom:752.190000px;}
.y99{bottom:752.550000px;}
.ya{bottom:754.890000px;}
.y56{bottom:765.240000px;}
.yb4{bottom:766.140000px;}
.y120{bottom:769.740000px;}
.y98{bottom:770.190000px;}
.y3b{bottom:783.330000px;}
.yb3{bottom:783.690000px;}
.y11f{bottom:787.290000px;}
.y97{bottom:787.740000px;}
.y3a{bottom:800.880000px;}
.yb2{bottom:801.330000px;}
.y9{bottom:803.130000px;}
.y96{bottom:805.290000px;}
.y11e{bottom:813.930000px;}
.ye6{bottom:816.450000px;}
.y39{bottom:818.520000px;}
.yb1{bottom:818.880000px;}
.y95{bottom:822.930000px;}
.y11d{bottom:831.480000px;}
.y38{bottom:836.070000px;}
.yb0{bottom:836.520000px;}
.y8{bottom:838.950000px;}
.y94{bottom:840.480000px;}
.y11c{bottom:849.030000px;}
.y37{bottom:853.620000px;}
.yaf{bottom:854.070000px;}
.y93{bottom:858.030000px;}
.y11b{bottom:866.670000px;}
.y36{bottom:871.260000px;}
.yae{bottom:871.620000px;}
.y7{bottom:874.950000px;}
.y35{bottom:888.810000px;}
.y11a{bottom:893.220000px;}
.y92{bottom:893.670000px;}
.y34{bottom:906.450000px;}
.yad{bottom:907.260000px;}
.ydd{bottom:907.620000px;}
.y119{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.y91{bottom:911.220000px;}
.yac{bottom:924.810000px;}
.y118{bottom:928.410000px;}
.y90{bottom:928.860000px;}
.y33{bottom:933.270000px;}
.yab{bottom:942.450000px;}
.y117{bottom:945.960000px;}
.y8f{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.yaa{bottom:960.000000px;}
.y8e{bottom:963.960000px;}
.y116{bottom:972.600000px;}
.ya9{bottom:977.550000px;}
.y32{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.y115{bottom:990.150000px;}
.ya8{bottom:995.190000px;}
.y31{bottom:999.150000px;}
.y3{bottom:1010.070000px;}
.ya7{bottom:1012.770000px;}
.y30{bottom:1016.820000px;}
.y7a{bottom:1017.180000px;}
.ya6{bottom:1030.320000px;}
.y2f{bottom:1034.370000px;}
.y79{bottom:1034.820000px;}
.ya5{bottom:1047.960000px;}
.y2e{bottom:1051.920000px;}
.y78{bottom:1052.370000px;}
.y114{bottom:1060.920000px;}
.ya4{bottom:1065.510000px;}
.y2d{bottom:1069.560000px;}
.y77{bottom:1069.920000px;}
.y113{bottom:1078.560000px;}
.ya3{bottom:1083.150000px;}
.y76{bottom:1087.560000px;}
.yd2{bottom:1091.610000px;}
.ya2{bottom:1100.700000px;}
.y2c{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.ya1{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.ha{height:26.550000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h8{height:60.960938px;}
.hc{height:61.793886px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.hb{height:73.710000px;}
.h7{height:74.004654px;}
.he{height:90.360000px;}
.hf{height:91.170000px;}
.h10{height:108.000000px;}
.hd{height:108.840000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:188.490000px;}
.w5{width:280.440000px;}
.w4{width:285.330000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:3.960000px;}
.xd{left:30.960000px;}
.xe{left:57.960000px;}
.x1{left:68.040000px;}
.xf{left:111.239987px;}
.x2{left:202.799987px;}
.x9{left:223.319987px;}
.x7{left:236.729987px;}
.x5{left:255.089987px;}
.xb{left:257.970000px;}
.xc{left:544.020000px;}
.x6{left:742.559987px;}
.x4{left:753.809987px;}
.x8{left:769.559987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls17{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls10{letter-spacing:-0.111467pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsd{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.057600pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls15{letter-spacing:0.103467pt;}
.lsf{letter-spacing:0.113067pt;}
.ls6{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls16{letter-spacing:0.161067pt;}
.ls11{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:5.760000pt;}
.ls18{letter-spacing:42.423680pt;}
.ls13{letter-spacing:56.503680pt;}
.ls14{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.wsb{word-spacing:-11.933867pt;}
.wsd{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws9{word-spacing:-11.869867pt;}
.wsc{word-spacing:-11.860267pt;}
.ws3{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.645333pt;}
.wse{word-spacing:-11.620267pt;}
.ws2{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._e{margin-left:-3.846184pt;}
._c{margin-left:-2.832534pt;}
._9{margin-left:-1.870400pt;}
._0{margin-left:-0.933333pt;}
._2{width:1.176918pt;}
._3{width:2.136149pt;}
._4{width:3.527104pt;}
._6{width:4.593809pt;}
._a{width:5.624320pt;}
._7{width:7.000533pt;}
._8{width:8.550400pt;}
._1{width:10.140235pt;}
._b{width:12.932266pt;}
._13{width:13.864218pt;}
._5{width:14.802666pt;}
._d{width:16.139201pt;}
._11{width:17.154240pt;}
._12{width:18.154688pt;}
._10{width:19.340309pt;}
._f{width:20.253760pt;}
._18{width:21.589760pt;}
._19{width:22.661547pt;}
._1b{width:24.226880pt;}
._1a{width:25.384000pt;}
._14{width:26.720000pt;}
._22{width:27.895680pt;}
._23{width:29.071360pt;}
._17{width:30.247040pt;}
._15{width:31.262400pt;}
._16{width:32.516373pt;}
._24{width:35.858240pt;}
._2d{width:36.820160pt;}
._2c{width:37.728640pt;}
._2a{width:40.347200pt;}
._1f{width:46.172160pt;}
._2f{width:53.065920pt;}
._1e{width:55.737920pt;}
._29{width:71.823360pt;}
._1c{width:85.082560pt;}
._21{width:98.596800pt;}
._26{width:144.712000pt;}
._25{width:151.181760pt;}
._1d{width:152.328853pt;}
._27{width:162.457600pt;}
._28{width:163.425920pt;}
._2b{width:211.248320pt;}
._20{width:271.092480pt;}
._2e{width:980.837760pt;}
.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;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ydc{bottom:2.960000pt;}
.yfb{bottom:3.040000pt;}
.yd9{bottom:3.680000pt;}
.yd3{bottom:6.960000pt;}
.yeb{bottom:17.840000pt;}
.yf6{bottom:17.920000pt;}
.ye5{bottom:18.560000pt;}
.yfa{bottom:18.640000pt;}
.ye3{bottom:19.280000pt;}
.ydb{bottom:19.360000pt;}
.yd8{bottom:20.080000pt;}
.yd5{bottom:33.200000pt;}
.yea{bottom:34.240000pt;}
.yf5{bottom:34.320000pt;}
.ye4{bottom:34.960000pt;}
.yf9{bottom:35.040000pt;}
.yda{bottom:35.680000pt;}
.yd7{bottom:36.480000pt;}
.yee{bottom:48.800000pt;}
.yd4{bottom:48.880000pt;}
.yf4{bottom:49.920000pt;}
.ye9{bottom:50.560000pt;}
.yf8{bottom:50.640000pt;}
.ye2{bottom:51.280000pt;}
.yec{bottom:51.360000pt;}
.yd6{bottom:52.080000pt;}
.ye7{bottom:63.680000pt;}
.yf1{bottom:63.760000pt;}
.ydf{bottom:64.400000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.yf3{bottom:66.240000pt;}
.ye8{bottom:66.960000pt;}
.yf7{bottom:67.040000pt;}
.ye1{bottom:67.680000pt;}
.yf0{bottom:79.360000pt;}
.yde{bottom:80.080000pt;}
.yf2{bottom:82.640000pt;}
.ye0{bottom:83.280000pt;}
.y1{bottom:90.346667pt;}
.y75{bottom:99.066667pt;}
.y8d{bottom:99.226667pt;}
.y112{bottom:102.906667pt;}
.ya0{bottom:103.146667pt;}
.y74{bottom:114.666667pt;}
.y8c{bottom:114.826667pt;}
.y111{bottom:118.586667pt;}
.y27{bottom:124.266667pt;}
.y73{bottom:130.266667pt;}
.y8b{bottom:130.426667pt;}
.y110{bottom:134.186667pt;}
.y9f{bottom:134.746667pt;}
.y26{bottom:139.866667pt;}
.y8a{bottom:146.106667pt;}
.yd1{bottom:147.706667pt;}
.y25{bottom:155.546667pt;}
.y10f{bottom:157.866667pt;}
.y89{bottom:161.706667pt;}
.y72{bottom:161.946667pt;}
.y9e{bottom:163.386667pt;}
.y24{bottom:171.146667pt;}
.y10e{bottom:173.466667pt;}
.y71{bottom:177.546667pt;}
.yd0{bottom:179.306667pt;}
.y10d{bottom:189.066667pt;}
.y70{bottom:193.226667pt;}
.y88{bottom:193.386667pt;}
.y23{bottom:202.746667pt;}
.y6f{bottom:208.826667pt;}
.y87{bottom:208.986667pt;}
.ycf{bottom:210.906667pt;}
.y10c{bottom:212.746667pt;}
.y22{bottom:218.426667pt;}
.y6e{bottom:224.426667pt;}
.y86{bottom:224.586667pt;}
.y55{bottom:225.866667pt;}
.y10b{bottom:228.346667pt;}
.y21{bottom:234.026667pt;}
.y6d{bottom:240.106667pt;}
.y85{bottom:240.266667pt;}
.yce{bottom:242.586667pt;}
.y10a{bottom:244.026667pt;}
.y20{bottom:249.706667pt;}
.y6c{bottom:255.706667pt;}
.y84{bottom:255.866667pt;}
.y54{bottom:257.466667pt;}
.ycd{bottom:258.186667pt;}
.y109{bottom:259.626667pt;}
.y1f{bottom:265.306667pt;}
.y6b{bottom:271.386667pt;}
.y83{bottom:271.546667pt;}
.y53{bottom:273.066667pt;}
.ycc{bottom:273.866667pt;}
.y1e{bottom:280.906667pt;}
.y108{bottom:283.546667pt;}
.y6a{bottom:286.986667pt;}
.y82{bottom:287.146667pt;}
.y52{bottom:288.746667pt;}
.ycb{bottom:289.466667pt;}
.y81{bottom:302.746667pt;}
.y51{bottom:304.346667pt;}
.yca{bottom:305.066667pt;}
.y1d{bottom:312.586667pt;}
.y80{bottom:318.426667pt;}
.y69{bottom:318.586667pt;}
.y50{bottom:319.946667pt;}
.yc9{bottom:320.746667pt;}
.y107{bottom:326.426667pt;}
.y1c{bottom:328.186667pt;}
.y7f{bottom:334.026667pt;}
.y68{bottom:334.266667pt;}
.y4f{bottom:335.626667pt;}
.yc8{bottom:336.346667pt;}
.y106{bottom:342.106667pt;}
.y1b{bottom:343.866667pt;}
.y7e{bottom:349.706667pt;}
.y67{bottom:349.866667pt;}
.y4e{bottom:351.226667pt;}
.yc7{bottom:351.946667pt;}
.y105{bottom:357.706667pt;}
.y1a{bottom:359.466667pt;}
.y66{bottom:365.546667pt;}
.y4d{bottom:366.906667pt;}
.yc6{bottom:367.626667pt;}
.y104{bottom:373.306667pt;}
.y7d{bottom:373.546667pt;}
.y19{bottom:375.066667pt;}
.y65{bottom:381.146667pt;}
.y4c{bottom:382.506667pt;}
.yc5{bottom:383.226667pt;}
.y103{bottom:388.986667pt;}
.y18{bottom:390.746667pt;}
.y64{bottom:396.746667pt;}
.yc4{bottom:398.906667pt;}
.y102{bottom:404.586667pt;}
.y63{bottom:412.426667pt;}
.y4b{bottom:414.106667pt;}
.yc3{bottom:414.506667pt;}
.y17{bottom:414.666667pt;}
.y7c{bottom:416.506667pt;}
.y101{bottom:420.293333pt;}
.y62{bottom:428.053333pt;}
.y4a{bottom:429.813333pt;}
.y100{bottom:435.893333pt;}
.y61{bottom:443.733333pt;}
.y7b{bottom:445.173333pt;}
.y49{bottom:445.413333pt;}
.yc2{bottom:446.133333pt;}
.yff{bottom:451.493333pt;}
.y16{bottom:457.573333pt;}
.y48{bottom:461.093333pt;}
.yc1{bottom:461.813333pt;}
.yfe{bottom:467.173333pt;}
.y15{bottom:473.493333pt;}
.y60{bottom:475.333333pt;}
.y47{bottom:476.693333pt;}
.yc0{bottom:477.413333pt;}
.yfd{bottom:482.773333pt;}
.y5f{bottom:490.933333pt;}
.y46{bottom:492.293333pt;}
.ybf{bottom:493.093333pt;}
.y14{bottom:506.373333pt;}
.y5e{bottom:506.613333pt;}
.yfc{bottom:506.693333pt;}
.y45{bottom:507.973333pt;}
.ybe{bottom:508.693333pt;}
.y13{bottom:522.053333pt;}
.y5d{bottom:522.213333pt;}
.y44{bottom:523.573333pt;}
.ybd{bottom:524.293333pt;}
.y12{bottom:537.653333pt;}
.y5c{bottom:537.813333pt;}
.ybc{bottom:539.973333pt;}
.yef{bottom:547.253333pt;}
.y11{bottom:553.333333pt;}
.y5b{bottom:553.493333pt;}
.y43{bottom:555.253333pt;}
.ybb{bottom:555.573333pt;}
.y10{bottom:568.933333pt;}
.y5a{bottom:569.093333pt;}
.y42{bottom:570.853333pt;}
.yba{bottom:571.253333pt;}
.yf{bottom:584.533333pt;}
.y59{bottom:584.773333pt;}
.y41{bottom:586.453333pt;}
.yb9{bottom:586.853333pt;}
.ye{bottom:600.213333pt;}
.y40{bottom:602.133333pt;}
.y9d{bottom:606.453333pt;}
.y58{bottom:608.693333pt;}
.yd{bottom:615.813333pt;}
.y3f{bottom:617.733333pt;}
.yb8{bottom:618.453333pt;}
.y9c{bottom:622.053333pt;}
.yc{bottom:631.493333pt;}
.y3e{bottom:633.413333pt;}
.yb7{bottom:634.133333pt;}
.y9b{bottom:637.653333pt;}
.yed{bottom:643.973333pt;}
.yb{bottom:647.093333pt;}
.y3d{bottom:649.013333pt;}
.yb6{bottom:649.733333pt;}
.y57{bottom:651.573333pt;}
.y9a{bottom:653.333333pt;}
.y3c{bottom:664.613333pt;}
.yb5{bottom:665.413333pt;}
.y121{bottom:668.613333pt;}
.y99{bottom:668.933333pt;}
.ya{bottom:671.013333pt;}
.y56{bottom:680.213333pt;}
.yb4{bottom:681.013333pt;}
.y120{bottom:684.213333pt;}
.y98{bottom:684.613333pt;}
.y3b{bottom:696.293333pt;}
.yb3{bottom:696.613333pt;}
.y11f{bottom:699.813333pt;}
.y97{bottom:700.213333pt;}
.y3a{bottom:711.893333pt;}
.yb2{bottom:712.293333pt;}
.y9{bottom:713.893333pt;}
.y96{bottom:715.813333pt;}
.y11e{bottom:723.493333pt;}
.ye6{bottom:725.733333pt;}
.y39{bottom:727.573333pt;}
.yb1{bottom:727.893333pt;}
.y95{bottom:731.493333pt;}
.y11d{bottom:739.093333pt;}
.y38{bottom:743.173333pt;}
.yb0{bottom:743.573333pt;}
.y8{bottom:745.733333pt;}
.y94{bottom:747.093333pt;}
.y11c{bottom:754.693333pt;}
.y37{bottom:758.773333pt;}
.yaf{bottom:759.173333pt;}
.y93{bottom:762.693333pt;}
.y11b{bottom:770.373333pt;}
.y36{bottom:774.453333pt;}
.yae{bottom:774.773333pt;}
.y7{bottom:777.733333pt;}
.y35{bottom:790.053333pt;}
.y11a{bottom:793.973333pt;}
.y92{bottom:794.373333pt;}
.y34{bottom:805.733333pt;}
.yad{bottom:806.453333pt;}
.ydd{bottom:806.773333pt;}
.y119{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.y91{bottom:809.973333pt;}
.yac{bottom:822.053333pt;}
.y118{bottom:825.253333pt;}
.y90{bottom:825.653333pt;}
.y33{bottom:829.573333pt;}
.yab{bottom:837.733333pt;}
.y117{bottom:840.853333pt;}
.y8f{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.yaa{bottom:853.333333pt;}
.y8e{bottom:856.853333pt;}
.y116{bottom:864.533333pt;}
.ya9{bottom:868.933333pt;}
.y32{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.y115{bottom:880.133333pt;}
.ya8{bottom:884.613333pt;}
.y31{bottom:888.133333pt;}
.y3{bottom:897.840000pt;}
.ya7{bottom:900.240000pt;}
.y30{bottom:903.840000pt;}
.y7a{bottom:904.160000pt;}
.ya6{bottom:915.840000pt;}
.y2f{bottom:919.440000pt;}
.y79{bottom:919.840000pt;}
.ya5{bottom:931.520000pt;}
.y2e{bottom:935.040000pt;}
.y78{bottom:935.440000pt;}
.y114{bottom:943.040000pt;}
.ya4{bottom:947.120000pt;}
.y2d{bottom:950.720000pt;}
.y77{bottom:951.040000pt;}
.y113{bottom:958.720000pt;}
.ya3{bottom:962.800000pt;}
.y76{bottom:966.720000pt;}
.yd2{bottom:970.320000pt;}
.ya2{bottom:978.400000pt;}
.y2c{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.ya1{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h8{height:54.187500pt;}
.hc{height:54.927899pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.hb{height:65.520000pt;}
.h7{height:65.781915pt;}
.he{height:80.320000pt;}
.hf{height:81.040000pt;}
.h10{height:96.000000pt;}
.hd{height:96.746667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:167.546667pt;}
.w5{width:249.280000pt;}
.w4{width:253.626667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:3.520000pt;}
.xd{left:27.520000pt;}
.xe{left:51.520000pt;}
.x1{left:60.480000pt;}
.xf{left:98.879988pt;}
.x2{left:180.266655pt;}
.x9{left:198.506655pt;}
.x7{left:210.426655pt;}
.x5{left:226.746655pt;}
.xb{left:229.306667pt;}
.xc{left:483.573333pt;}
.x6{left:660.053322pt;}
.x4{left:670.053322pt;}
.x8{left:684.053322pt;}
.x3{left:704.053322pt;}
}




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