
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_8fea1930de08c1b81226598b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_0f79ba57e318c8cc0745c32d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_093e456b733822d18bf58c75.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_b0e5466e2bd99c932714c0b7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9a74332a985bbe95f40ecc7c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.855469;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:40.320000px;}
.v3{vertical-align:46.080000px;}
.lsf{letter-spacing:-0.960000px;}
.ls26{letter-spacing:-0.786000px;}
.ls5{letter-spacing:-0.463800px;}
.ls10{letter-spacing:-0.414000px;}
.lsc{letter-spacing:-0.240600px;}
.ls16{letter-spacing:-0.214800px;}
.ls25{letter-spacing:-0.172200px;}
.ls7{letter-spacing:-0.115800px;}
.ls24{letter-spacing:-0.109200px;}
.ls22{letter-spacing:-0.078600px;}
.ls9{letter-spacing:-0.058320px;}
.ls23{letter-spacing:-0.041040px;}
.ls4{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.060480px;}
.ls8{letter-spacing:0.060600px;}
.ls1c{letter-spacing:0.067200px;}
.lsa{letter-spacing:0.174000px;}
.ls1a{letter-spacing:0.174240px;}
.ls21{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.218400px;}
.ls6{letter-spacing:0.256200px;}
.ls1b{letter-spacing:0.306000px;}
.ls18{letter-spacing:0.314400px;}
.ls12{letter-spacing:0.433440px;}
.lsd{letter-spacing:0.493200px;}
.lse{letter-spacing:0.780000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls1f{letter-spacing:3.774240px;}
.ls13{letter-spacing:5.706720px;}
.ls20{letter-spacing:12.186720px;}
.ls14{letter-spacing:17.226720px;}
.ls15{letter-spacing:20.106720px;}
.lsb{letter-spacing:21.546720px;}
.ls19{letter-spacing:22.266720px;}
.ls1d{letter-spacing:22.986720px;}
.ls3{letter-spacing:38.106720px;}
.ls1e{letter-spacing:42.426720px;}
.ls11{letter-spacing:202.494240px;}
.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;}
}
.ws0{word-spacing:-41.040000px;}
.ws3{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wsd{word-spacing:-13.820160px;}
.wsc{word-spacing:-13.724160px;}
.wse{word-spacing:-13.572960px;}
.ws6{word-spacing:-13.505760px;}
.ws10{word-spacing:-13.464720px;}
.ws8{word-spacing:-13.447440px;}
.wsf{word-spacing:-13.427160px;}
.ws11{word-spacing:-13.396560px;}
.ws7{word-spacing:-13.389960px;}
.ws12{word-spacing:-13.333560px;}
.wsb{word-spacing:-13.290960px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws13{word-spacing:-8.000880px;}
.ws9{word-spacing:0.000000px;}
.wsa{word-spacing:3.412080px;}
._4{margin-left:-1451.376240px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1003.789440px;}
._5{margin-left:-582.156960px;}
._7{margin-left:-4.329600px;}
._6{margin-left:-3.312000px;}
._f{margin-left:-2.280480px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._b{width:2.470080px;}
._8{width:3.829440px;}
._a{width:5.246640px;}
._9{width:6.266160px;}
._16{width:7.284240px;}
._11{width:8.286720px;}
._10{width:9.651360px;}
._c{width:11.384160px;}
._d{width:12.444480px;}
._e{width:15.001920px;}
._1a{width:16.025040px;}
._12{width:17.091360px;}
._13{width:18.167040px;}
._17{width:19.231200px;}
._18{width:42.841680px;}
._19{width:89.691120px;}
._14{width:116.238240px;}
._15{width:202.470240px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs7{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:6.480000px;}
.y6c{bottom:6.660000px;}
.yb7{bottom:6.690000px;}
.yed{bottom:7.020000px;}
.y66{bottom:7.950000px;}
.y69{bottom:8.130000px;}
.yc5{bottom:27.720000px;}
.yec{bottom:28.110000px;}
.ye9{bottom:35.490000px;}
.yeb{bottom:49.530000px;}
.y6{bottom:58.320000px;}
.yea{bottom:70.590000px;}
.ye7{bottom:91.260000px;}
.y64{bottom:91.440000px;}
.y31{bottom:103.320000px;}
.y97{bottom:108.540000px;}
.ye6{bottom:112.320000px;}
.yb9{bottom:113.940000px;}
.ye4{bottom:119.880000px;}
.y30{bottom:124.380000px;}
.y96{bottom:125.640000px;}
.yb8{bottom:129.060000px;}
.ye5{bottom:133.380000px;}
.y95{bottom:135.720000px;}
.ye3{bottom:140.940000px;}
.ye8{bottom:141.840000px;}
.y2f{bottom:145.440000px;}
.yb6{bottom:150.840000px;}
.y63{bottom:154.470000px;}
.ye2{bottom:162.030000px;}
.y2e{bottom:166.530000px;}
.yb5{bottom:171.930000px;}
.y62{bottom:175.530000px;}
.ye1{bottom:183.090000px;}
.y2d{bottom:187.590000px;}
.yb4{bottom:193.710000px;}
.y61{bottom:196.590000px;}
.ye0{bottom:198.210000px;}
.y2c{bottom:208.650000px;}
.y60{bottom:217.650000px;}
.ydf{bottom:219.270000px;}
.yb3{bottom:222.150000px;}
.y2b{bottom:229.710000px;}
.y5f{bottom:238.710000px;}
.yde{bottom:241.050000px;}
.yb2{bottom:243.210000px;}
.y94{bottom:244.830000px;}
.y2a{bottom:250.770000px;}
.y5e{bottom:259.770000px;}
.yb1{bottom:264.270000px;}
.y93{bottom:265.890000px;}
.y29{bottom:271.830000px;}
.y5d{bottom:280.830000px;}
.yb0{bottom:285.330000px;}
.y92{bottom:286.950000px;}
.ydd{bottom:290.550000px;}
.y28{bottom:292.890000px;}
.y5c{bottom:301.890000px;}
.yaf{bottom:306.390000px;}
.y91{bottom:308.010000px;}
.ydc{bottom:311.610000px;}
.y27{bottom:313.950000px;}
.y5b{bottom:322.950000px;}
.yae{bottom:327.450000px;}
.y90{bottom:329.070000px;}
.ydb{bottom:332.670000px;}
.y26{bottom:335.010000px;}
.y6a{bottom:335.340000px;}
.y68{bottom:336.780000px;}
.y67{bottom:337.860000px;}
.y65{bottom:339.300000px;}
.y5a{bottom:344.010000px;}
.y8f{bottom:350.850000px;}
.yda{bottom:353.730000px;}
.y25{bottom:356.070000px;}
.yad{bottom:357.510000px;}
.y59{bottom:365.070000px;}
.yd9{bottom:374.790000px;}
.y24{bottom:377.130000px;}
.yac{bottom:378.570000px;}
.y8e{bottom:379.290000px;}
.y58{bottom:386.130000px;}
.yd8{bottom:395.850000px;}
.y23{bottom:398.010000px;}
.yab{bottom:399.630000px;}
.y8d{bottom:400.350000px;}
.y57{bottom:407.235000px;}
.yd7{bottom:416.955000px;}
.y22{bottom:419.115000px;}
.yaa{bottom:420.735000px;}
.y8c{bottom:421.455000px;}
.y56{bottom:428.295000px;}
.yd6{bottom:438.015000px;}
.y21{bottom:440.175000px;}
.ya9{bottom:441.795000px;}
.y8b{bottom:442.515000px;}
.y55{bottom:449.355000px;}
.yd5{bottom:459.075000px;}
.y20{bottom:461.235000px;}
.ya8{bottom:462.855000px;}
.y8a{bottom:463.575000px;}
.y54{bottom:470.415000px;}
.yd4{bottom:480.135000px;}
.y1f{bottom:482.295000px;}
.ya7{bottom:483.915000px;}
.y89{bottom:484.635000px;}
.y53{bottom:491.475000px;}
.y88{bottom:499.755000px;}
.yd3{bottom:501.195000px;}
.y1e{bottom:503.355000px;}
.ya6{bottom:504.975000px;}
.y52{bottom:512.535000px;}
.y87{bottom:520.815000px;}
.yd2{bottom:522.255000px;}
.y1d{bottom:524.415000px;}
.ya5{bottom:526.035000px;}
.y51{bottom:533.595000px;}
.ya4{bottom:541.155000px;}
.y86{bottom:541.875000px;}
.yd1{bottom:543.315000px;}
.y1c{bottom:545.475000px;}
.y50{bottom:554.655000px;}
.ya3{bottom:562.935000px;}
.y85{bottom:563.655000px;}
.yd0{bottom:564.375000px;}
.y1b{bottom:566.535000px;}
.y4f{bottom:575.715000px;}
.ya2{bottom:583.995000px;}
.ycf{bottom:585.435000px;}
.y1a{bottom:587.595000px;}
.y84{bottom:592.275000px;}
.y4e{bottom:596.775000px;}
.ya1{bottom:605.775000px;}
.yce{bottom:606.495000px;}
.y19{bottom:611.175000px;}
.y83{bottom:613.335000px;}
.y4d{bottom:617.835000px;}
.ycd{bottom:627.555000px;}
.y82{bottom:634.395000px;}
.y4c{bottom:638.895000px;}
.y18{bottom:641.055000px;}
.ycc{bottom:648.615000px;}
.y81{bottom:655.305000px;}
.y4b{bottom:659.805000px;}
.y17{bottom:662.145000px;}
.ycb{bottom:669.705000px;}
.y80{bottom:676.365000px;}
.y4a{bottom:680.865000px;}
.y16{bottom:683.205000px;}
.yca{bottom:690.765000px;}
.y7f{bottom:697.425000px;}
.y49{bottom:701.925000px;}
.y15{bottom:704.265000px;}
.yc9{bottom:711.825000px;}
.y7e{bottom:718.485000px;}
.y48{bottom:722.985000px;}
.y14{bottom:725.325000px;}
.yc8{bottom:732.885000px;}
.y7d{bottom:733.785000px;}
.ya0{bottom:739.545000px;}
.y47{bottom:744.045000px;}
.y13{bottom:746.385000px;}
.yc7{bottom:748.005000px;}
.y7c{bottom:754.845000px;}
.y9f{bottom:760.605000px;}
.y46{bottom:765.105000px;}
.y12{bottom:767.445000px;}
.yc6{bottom:769.065000px;}
.y7b{bottom:775.905000px;}
.y9e{bottom:781.665000px;}
.y45{bottom:786.165000px;}
.y11{bottom:788.505000px;}
.yc4{bottom:790.845000px;}
.y7a{bottom:796.965000px;}
.y44{bottom:807.225000px;}
.y10{bottom:809.565000px;}
.y79{bottom:818.025000px;}
.y43{bottom:828.285000px;}
.yf{bottom:830.625000px;}
.y9d{bottom:839.085000px;}
.y78{bottom:839.805000px;}
.yc3{bottom:840.345000px;}
.y42{bottom:849.345000px;}
.ye{bottom:851.685000px;}
.y9b{bottom:860.145000px;}
.yc2{bottom:861.405000px;}
.y77{bottom:868.245000px;}
.y41{bottom:870.405000px;}
.yd{bottom:872.745000px;}
.y9a{bottom:881.925000px;}
.yc1{bottom:882.465000px;}
.y76{bottom:889.305000px;}
.y40{bottom:891.465000px;}
.yc{bottom:895.965000px;}
.yc0{bottom:903.570000px;}
.y75{bottom:910.410000px;}
.y3f{bottom:912.570000px;}
.yb{bottom:922.290000px;}
.ybf{bottom:924.630000px;}
.y74{bottom:931.470000px;}
.y3e{bottom:933.630000px;}
.ya{bottom:939.030000px;}
.ybe{bottom:945.690000px;}
.y73{bottom:952.530000px;}
.y3d{bottom:954.690000px;}
.y9{bottom:961.350000px;}
.ybd{bottom:966.750000px;}
.y72{bottom:973.590000px;}
.y3c{bottom:975.750000px;}
.y8{bottom:986.550000px;}
.ybc{bottom:987.810000px;}
.y71{bottom:988.710000px;}
.y99{bottom:994.650000px;}
.y3b{bottom:996.810000px;}
.ybb{bottom:1008.870000px;}
.y70{bottom:1009.770000px;}
.y3a{bottom:1017.870000px;}
.y7{bottom:1020.210000px;}
.yba{bottom:1029.930000px;}
.y6f{bottom:1030.830000px;}
.y39{bottom:1038.930000px;}
.y6e{bottom:1051.890000px;}
.y38{bottom:1059.990000px;}
.y5{bottom:1060.350000px;}
.y6d{bottom:1072.950000px;}
.y98{bottom:1073.670000px;}
.y37{bottom:1081.050000px;}
.y4{bottom:1092.570000px;}
.y6b{bottom:1094.730000px;}
.y36{bottom:1102.110000px;}
.y35{bottom:1123.170000px;}
.y3{bottom:1124.610000px;}
.y34{bottom:1144.230000px;}
.y2{bottom:1156.860000px;}
.y33{bottom:1165.320000px;}
.y1{bottom:1191.420000px;}
.y32{bottom:1193.220000px;}
.h14{height:2.864531px;}
.h10{height:20.880000px;}
.hc{height:21.060000px;}
.hf{height:21.096000px;}
.ha{height:22.320000px;}
.hb{height:22.500000px;}
.h7{height:38.671172px;}
.h11{height:42.120000px;}
.h8{height:45.637031px;}
.h2{height:56.146289px;}
.h9{height:59.439023px;}
.h12{height:59.551172px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h13{height:84.996000px;}
.hd{height:96.444141px;}
.h4{height:98.051133px;}
.he{height:99.759023px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:34.200000px;}
.w1a{width:53.100000px;}
.w19{width:62.460000px;}
.w14{width:73.080000px;}
.w15{width:74.340000px;}
.w13{width:86.436000px;}
.w3{width:89.640000px;}
.w4{width:89.820000px;}
.wc{width:95.580000px;}
.w1b{width:95.616000px;}
.w17{width:95.760000px;}
.w16{width:95.796000px;}
.w10{width:106.380000px;}
.wb{width:106.416000px;}
.w5{width:116.280000px;}
.w1c{width:117.000000px;}
.w11{width:117.036000px;}
.we{width:125.316000px;}
.wf{width:127.656000px;}
.wa{width:138.276000px;}
.w18{width:148.896000px;}
.w9{width:157.170000px;}
.w12{width:159.510000px;}
.wd{width:191.370000px;}
.w1d{width:210.810000px;}
.w6{width:222.375000px;}
.w7{width:256.170000px;}
.w1e{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:8.100000px;}
.xb{left:16.665000px;}
.x9{left:21.675000px;}
.x7{left:22.710000px;}
.x1{left:53.999987px;}
.x12{left:70.199987px;}
.x2{left:75.599987px;}
.x23{left:102.275987px;}
.x6{left:134.820000px;}
.x1b{left:179.130000px;}
.x21{left:189.750000px;}
.x24{left:191.370000px;}
.x13{left:200.370000px;}
.xd{left:232.230000px;}
.x14{left:234.570000px;}
.x1c{left:265.575000px;}
.x22{left:276.195000px;}
.x8{left:307.440000px;}
.x3{left:316.154987px;}
.x10{left:334.334987px;}
.x1d{left:338.655000px;}
.x18{left:359.895000px;}
.x11{left:373.754987px;}
.x15{left:391.755000px;}
.x1e{left:412.995000px;}
.xf{left:454.605000px;}
.x4{left:457.304987px;}
.xa{left:477.360000px;}
.x19{left:487.365000px;}
.x5{left:504.644987px;}
.x1f{left:508.785000px;}
.x16{left:530.025000px;}
.x1a{left:593.745000px;}
.x20{left:604.365000px;}
.x17{left:636.450000px;}
.xc{left:643.500000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:35.840000pt;}
.v3{vertical-align:40.960000pt;}
.lsf{letter-spacing:-0.853333pt;}
.ls26{letter-spacing:-0.698667pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls10{letter-spacing:-0.368000pt;}
.lsc{letter-spacing:-0.213867pt;}
.ls16{letter-spacing:-0.190933pt;}
.ls25{letter-spacing:-0.153067pt;}
.ls7{letter-spacing:-0.102933pt;}
.ls24{letter-spacing:-0.097067pt;}
.ls22{letter-spacing:-0.069867pt;}
.ls9{letter-spacing:-0.051840pt;}
.ls23{letter-spacing:-0.036480pt;}
.ls4{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.053760pt;}
.ls8{letter-spacing:0.053867pt;}
.ls1c{letter-spacing:0.059733pt;}
.lsa{letter-spacing:0.154667pt;}
.ls1a{letter-spacing:0.154880pt;}
.ls21{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.194133pt;}
.ls6{letter-spacing:0.227733pt;}
.ls1b{letter-spacing:0.272000pt;}
.ls18{letter-spacing:0.279467pt;}
.ls12{letter-spacing:0.385280pt;}
.lsd{letter-spacing:0.438400pt;}
.lse{letter-spacing:0.693333pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls1f{letter-spacing:3.354880pt;}
.ls13{letter-spacing:5.072640pt;}
.ls20{letter-spacing:10.832640pt;}
.ls14{letter-spacing:15.312640pt;}
.ls15{letter-spacing:17.872640pt;}
.lsb{letter-spacing:19.152640pt;}
.ls19{letter-spacing:19.792640pt;}
.ls1d{letter-spacing:20.432640pt;}
.ls3{letter-spacing:33.872640pt;}
.ls1e{letter-spacing:37.712640pt;}
.ls11{letter-spacing:179.994880pt;}
.ws0{word-spacing:-36.480000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wsd{word-spacing:-12.284587pt;}
.wsc{word-spacing:-12.199253pt;}
.wse{word-spacing:-12.064853pt;}
.ws6{word-spacing:-12.005120pt;}
.ws10{word-spacing:-11.968640pt;}
.ws8{word-spacing:-11.953280pt;}
.wsf{word-spacing:-11.935253pt;}
.ws11{word-spacing:-11.908053pt;}
.ws7{word-spacing:-11.902187pt;}
.ws12{word-spacing:-11.852053pt;}
.wsb{word-spacing:-11.814187pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws13{word-spacing:-7.111893pt;}
.ws9{word-spacing:0.000000pt;}
.wsa{word-spacing:3.032960pt;}
._4{margin-left:-1290.112213pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-892.257280pt;}
._5{margin-left:-517.472853pt;}
._7{margin-left:-3.848533pt;}
._6{margin-left:-2.944000pt;}
._f{margin-left:-2.027093pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._b{width:2.195627pt;}
._8{width:3.403947pt;}
._a{width:4.663680pt;}
._9{width:5.569920pt;}
._16{width:6.474880pt;}
._11{width:7.365973pt;}
._10{width:8.578987pt;}
._c{width:10.119253pt;}
._d{width:11.061760pt;}
._e{width:13.335040pt;}
._1a{width:14.244480pt;}
._12{width:15.192320pt;}
._13{width:16.148480pt;}
._17{width:17.094400pt;}
._18{width:38.081493pt;}
._19{width:79.725440pt;}
._14{width:103.322880pt;}
._15{width:179.973547pt;}
.fs7{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:5.760000pt;}
.y6c{bottom:5.920000pt;}
.yb7{bottom:5.946667pt;}
.yed{bottom:6.240000pt;}
.y66{bottom:7.066667pt;}
.y69{bottom:7.226667pt;}
.yc5{bottom:24.640000pt;}
.yec{bottom:24.986667pt;}
.ye9{bottom:31.546667pt;}
.yeb{bottom:44.026667pt;}
.y6{bottom:51.840000pt;}
.yea{bottom:62.746667pt;}
.ye7{bottom:81.120000pt;}
.y64{bottom:81.280000pt;}
.y31{bottom:91.840000pt;}
.y97{bottom:96.480000pt;}
.ye6{bottom:99.840000pt;}
.yb9{bottom:101.280000pt;}
.ye4{bottom:106.560000pt;}
.y30{bottom:110.560000pt;}
.y96{bottom:111.680000pt;}
.yb8{bottom:114.720000pt;}
.ye5{bottom:118.560000pt;}
.y95{bottom:120.640000pt;}
.ye3{bottom:125.280000pt;}
.ye8{bottom:126.080000pt;}
.y2f{bottom:129.280000pt;}
.yb6{bottom:134.080000pt;}
.y63{bottom:137.306667pt;}
.ye2{bottom:144.026667pt;}
.y2e{bottom:148.026667pt;}
.yb5{bottom:152.826667pt;}
.y62{bottom:156.026667pt;}
.ye1{bottom:162.746667pt;}
.y2d{bottom:166.746667pt;}
.yb4{bottom:172.186667pt;}
.y61{bottom:174.746667pt;}
.ye0{bottom:176.186667pt;}
.y2c{bottom:185.466667pt;}
.y60{bottom:193.466667pt;}
.ydf{bottom:194.906667pt;}
.yb3{bottom:197.466667pt;}
.y2b{bottom:204.186667pt;}
.y5f{bottom:212.186667pt;}
.yde{bottom:214.266667pt;}
.yb2{bottom:216.186667pt;}
.y94{bottom:217.626667pt;}
.y2a{bottom:222.906667pt;}
.y5e{bottom:230.906667pt;}
.yb1{bottom:234.906667pt;}
.y93{bottom:236.346667pt;}
.y29{bottom:241.626667pt;}
.y5d{bottom:249.626667pt;}
.yb0{bottom:253.626667pt;}
.y92{bottom:255.066667pt;}
.ydd{bottom:258.266667pt;}
.y28{bottom:260.346667pt;}
.y5c{bottom:268.346667pt;}
.yaf{bottom:272.346667pt;}
.y91{bottom:273.786667pt;}
.ydc{bottom:276.986667pt;}
.y27{bottom:279.066667pt;}
.y5b{bottom:287.066667pt;}
.yae{bottom:291.066667pt;}
.y90{bottom:292.506667pt;}
.ydb{bottom:295.706667pt;}
.y26{bottom:297.786667pt;}
.y6a{bottom:298.080000pt;}
.y68{bottom:299.360000pt;}
.y67{bottom:300.320000pt;}
.y65{bottom:301.600000pt;}
.y5a{bottom:305.786667pt;}
.y8f{bottom:311.866667pt;}
.yda{bottom:314.426667pt;}
.y25{bottom:316.506667pt;}
.yad{bottom:317.786667pt;}
.y59{bottom:324.506667pt;}
.yd9{bottom:333.146667pt;}
.y24{bottom:335.226667pt;}
.yac{bottom:336.506667pt;}
.y8e{bottom:337.146667pt;}
.y58{bottom:343.226667pt;}
.yd8{bottom:351.866667pt;}
.y23{bottom:353.786667pt;}
.yab{bottom:355.226667pt;}
.y8d{bottom:355.866667pt;}
.y57{bottom:361.986667pt;}
.yd7{bottom:370.626667pt;}
.y22{bottom:372.546667pt;}
.yaa{bottom:373.986667pt;}
.y8c{bottom:374.626667pt;}
.y56{bottom:380.706667pt;}
.yd6{bottom:389.346667pt;}
.y21{bottom:391.266667pt;}
.ya9{bottom:392.706667pt;}
.y8b{bottom:393.346667pt;}
.y55{bottom:399.426667pt;}
.yd5{bottom:408.066667pt;}
.y20{bottom:409.986667pt;}
.ya8{bottom:411.426667pt;}
.y8a{bottom:412.066667pt;}
.y54{bottom:418.146667pt;}
.yd4{bottom:426.786667pt;}
.y1f{bottom:428.706667pt;}
.ya7{bottom:430.146667pt;}
.y89{bottom:430.786667pt;}
.y53{bottom:436.866667pt;}
.y88{bottom:444.226667pt;}
.yd3{bottom:445.506667pt;}
.y1e{bottom:447.426667pt;}
.ya6{bottom:448.866667pt;}
.y52{bottom:455.586667pt;}
.y87{bottom:462.946667pt;}
.yd2{bottom:464.226667pt;}
.y1d{bottom:466.146667pt;}
.ya5{bottom:467.586667pt;}
.y51{bottom:474.306667pt;}
.ya4{bottom:481.026667pt;}
.y86{bottom:481.666667pt;}
.yd1{bottom:482.946667pt;}
.y1c{bottom:484.866667pt;}
.y50{bottom:493.026667pt;}
.ya3{bottom:500.386667pt;}
.y85{bottom:501.026667pt;}
.yd0{bottom:501.666667pt;}
.y1b{bottom:503.586667pt;}
.y4f{bottom:511.746667pt;}
.ya2{bottom:519.106667pt;}
.ycf{bottom:520.386667pt;}
.y1a{bottom:522.306667pt;}
.y84{bottom:526.466667pt;}
.y4e{bottom:530.466667pt;}
.ya1{bottom:538.466667pt;}
.yce{bottom:539.106667pt;}
.y19{bottom:543.266667pt;}
.y83{bottom:545.186667pt;}
.y4d{bottom:549.186667pt;}
.ycd{bottom:557.826667pt;}
.y82{bottom:563.906667pt;}
.y4c{bottom:567.906667pt;}
.y18{bottom:569.826667pt;}
.ycc{bottom:576.546667pt;}
.y81{bottom:582.493333pt;}
.y4b{bottom:586.493333pt;}
.y17{bottom:588.573333pt;}
.ycb{bottom:595.293333pt;}
.y80{bottom:601.213333pt;}
.y4a{bottom:605.213333pt;}
.y16{bottom:607.293333pt;}
.yca{bottom:614.013333pt;}
.y7f{bottom:619.933333pt;}
.y49{bottom:623.933333pt;}
.y15{bottom:626.013333pt;}
.yc9{bottom:632.733333pt;}
.y7e{bottom:638.653333pt;}
.y48{bottom:642.653333pt;}
.y14{bottom:644.733333pt;}
.yc8{bottom:651.453333pt;}
.y7d{bottom:652.253333pt;}
.ya0{bottom:657.373333pt;}
.y47{bottom:661.373333pt;}
.y13{bottom:663.453333pt;}
.yc7{bottom:664.893333pt;}
.y7c{bottom:670.973333pt;}
.y9f{bottom:676.093333pt;}
.y46{bottom:680.093333pt;}
.y12{bottom:682.173333pt;}
.yc6{bottom:683.613333pt;}
.y7b{bottom:689.693333pt;}
.y9e{bottom:694.813333pt;}
.y45{bottom:698.813333pt;}
.y11{bottom:700.893333pt;}
.yc4{bottom:702.973333pt;}
.y7a{bottom:708.413333pt;}
.y44{bottom:717.533333pt;}
.y10{bottom:719.613333pt;}
.y79{bottom:727.133333pt;}
.y43{bottom:736.253333pt;}
.yf{bottom:738.333333pt;}
.y9d{bottom:745.853333pt;}
.y78{bottom:746.493333pt;}
.yc3{bottom:746.973333pt;}
.y42{bottom:754.973333pt;}
.ye{bottom:757.053333pt;}
.y9b{bottom:764.573333pt;}
.yc2{bottom:765.693333pt;}
.y77{bottom:771.773333pt;}
.y41{bottom:773.693333pt;}
.yd{bottom:775.773333pt;}
.y9a{bottom:783.933333pt;}
.yc1{bottom:784.413333pt;}
.y76{bottom:790.493333pt;}
.y40{bottom:792.413333pt;}
.yc{bottom:796.413333pt;}
.yc0{bottom:803.173333pt;}
.y75{bottom:809.253333pt;}
.y3f{bottom:811.173333pt;}
.yb{bottom:819.813333pt;}
.ybf{bottom:821.893333pt;}
.y74{bottom:827.973333pt;}
.y3e{bottom:829.893333pt;}
.ya{bottom:834.693333pt;}
.ybe{bottom:840.613333pt;}
.y73{bottom:846.693333pt;}
.y3d{bottom:848.613333pt;}
.y9{bottom:854.533333pt;}
.ybd{bottom:859.333333pt;}
.y72{bottom:865.413333pt;}
.y3c{bottom:867.333333pt;}
.y8{bottom:876.933333pt;}
.ybc{bottom:878.053333pt;}
.y71{bottom:878.853333pt;}
.y99{bottom:884.133333pt;}
.y3b{bottom:886.053333pt;}
.ybb{bottom:896.773333pt;}
.y70{bottom:897.573333pt;}
.y3a{bottom:904.773333pt;}
.y7{bottom:906.853333pt;}
.yba{bottom:915.493333pt;}
.y6f{bottom:916.293333pt;}
.y39{bottom:923.493333pt;}
.y6e{bottom:935.013333pt;}
.y38{bottom:942.213333pt;}
.y5{bottom:942.533333pt;}
.y6d{bottom:953.733333pt;}
.y98{bottom:954.373333pt;}
.y37{bottom:960.933333pt;}
.y4{bottom:971.173333pt;}
.y6b{bottom:973.093333pt;}
.y36{bottom:979.653333pt;}
.y35{bottom:998.373333pt;}
.y3{bottom:999.653333pt;}
.y34{bottom:1017.093333pt;}
.y2{bottom:1028.320000pt;}
.y33{bottom:1035.840000pt;}
.y1{bottom:1059.040000pt;}
.y32{bottom:1060.640000pt;}
.h14{height:2.546250pt;}
.h10{height:18.560000pt;}
.hc{height:18.720000pt;}
.hf{height:18.752000pt;}
.ha{height:19.840000pt;}
.hb{height:20.000000pt;}
.h7{height:34.374375pt;}
.h11{height:37.440000pt;}
.h8{height:40.566250pt;}
.h2{height:49.907812pt;}
.h9{height:52.834688pt;}
.h12{height:52.934375pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h13{height:75.552000pt;}
.hd{height:85.728125pt;}
.h4{height:87.156562pt;}
.he{height:88.674687pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:30.400000pt;}
.w1a{width:47.200000pt;}
.w19{width:55.520000pt;}
.w14{width:64.960000pt;}
.w15{width:66.080000pt;}
.w13{width:76.832000pt;}
.w3{width:79.680000pt;}
.w4{width:79.840000pt;}
.wc{width:84.960000pt;}
.w1b{width:84.992000pt;}
.w17{width:85.120000pt;}
.w16{width:85.152000pt;}
.w10{width:94.560000pt;}
.wb{width:94.592000pt;}
.w5{width:103.360000pt;}
.w1c{width:104.000000pt;}
.w11{width:104.032000pt;}
.we{width:111.392000pt;}
.wf{width:113.472000pt;}
.wa{width:122.912000pt;}
.w18{width:132.352000pt;}
.w9{width:139.706667pt;}
.w12{width:141.786667pt;}
.wd{width:170.106667pt;}
.w1d{width:187.386667pt;}
.w6{width:197.666667pt;}
.w7{width:227.706667pt;}
.w1e{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.200000pt;}
.xb{left:14.813333pt;}
.x9{left:19.266667pt;}
.x7{left:20.186667pt;}
.x1{left:47.999988pt;}
.x12{left:62.399988pt;}
.x2{left:67.199988pt;}
.x23{left:90.911988pt;}
.x6{left:119.840000pt;}
.x1b{left:159.226667pt;}
.x21{left:168.666667pt;}
.x24{left:170.106667pt;}
.x13{left:178.106667pt;}
.xd{left:206.426667pt;}
.x14{left:208.506667pt;}
.x1c{left:236.066667pt;}
.x22{left:245.506667pt;}
.x8{left:273.280000pt;}
.x3{left:281.026655pt;}
.x10{left:297.186655pt;}
.x1d{left:301.026667pt;}
.x18{left:319.906667pt;}
.x11{left:332.226655pt;}
.x15{left:348.226667pt;}
.x1e{left:367.106667pt;}
.xf{left:404.093333pt;}
.x4{left:406.493322pt;}
.xa{left:424.320000pt;}
.x19{left:433.213333pt;}
.x5{left:448.573322pt;}
.x1f{left:452.253333pt;}
.x16{left:471.133333pt;}
.x1a{left:527.773333pt;}
.x20{left:537.213333pt;}
.x17{left:565.733333pt;}
.xc{left:572.000000pt;}
}




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