
    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_2b8acb9d77644bfef43f56b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_920d2fe90ed938778e5b4403.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.776855;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_a544dfb1f962c13c5453c663.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.077637;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d75890e65a2452751bcc18e6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_089413f0b5457de074e552fa.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_447bf39ef9e823340167ebf0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_3190b118f984556add5dda15.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_675ccbb8e2c47a3337947ab4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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(0.255915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255915,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.078000px;}
.ls7{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.720000px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc3{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(196,89,17),0 0.015em rgb(196,89,17),0.015em 0 rgb(196,89,17),0 -0.015em  rgb(196,89,17);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc4{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(196,89,17);text-shadow:none;}
}
.ws0{word-spacing:-19.728000px;}
.wsc{word-spacing:-18.720000px;}
.wsb{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.712000px;}
.ws5{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.272000px;}
.ws6{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.993280px;}
.ws1{word-spacing:-0.049615px;}
.ws8{word-spacing:0.000000px;}
._1e{margin-left:-4.824000px;}
._a{margin-left:-3.384000px;}
._0{margin-left:-1.728000px;}
._2{width:1.440000px;}
._f{width:3.096000px;}
._c{width:4.392000px;}
._b{width:6.264000px;}
._13{width:7.750080px;}
._d{width:9.360000px;}
._e{width:10.656000px;}
._17{width:11.676000px;}
._16{width:12.960000px;}
._7{width:14.400000px;}
._9{width:15.984000px;}
._1b{width:19.344000px;}
._4{width:21.168000px;}
._3{width:22.248000px;}
._6{width:23.376000px;}
._5{width:24.408000px;}
._1f{width:26.256000px;}
._27{width:27.792000px;}
._28{width:28.800000px;}
._22{width:30.216000px;}
._21{width:31.464000px;}
._19{width:32.472000px;}
._18{width:33.624000px;}
._2b{width:36.144000px;}
._1a{width:37.224000px;}
._8{width:40.248000px;}
._23{width:41.472000px;}
._1c{width:46.368000px;}
._1d{width:47.568000px;}
._24{width:49.560000px;}
._2a{width:62.280000px;}
._29{width:63.288000px;}
._2e{width:64.656000px;}
._2c{width:66.240000px;}
._11{width:67.498560px;}
._12{width:68.918400px;}
._2f{width:81.720000px;}
._2d{width:90.000000px;}
._10{width:93.139200px;}
._25{width:196.416000px;}
._26{width:198.396000px;}
._20{width:200.376000px;}
._15{width:275.895360px;}
._14{width:363.723840px;}
._1{width:432.178320px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,0,255);}
.fc5{color:transparent;}
.fc0{color:rgb(196,89,17);}
.fs2{font-size:41.760000px;}
.fs6{font-size:45.360000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:49.615044px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.240000px;}
.y9{bottom:3.393136px;}
.y4c{bottom:3.765000px;}
.ybb{bottom:4.140000px;}
.yc9{bottom:4.485000px;}
.ybc{bottom:4.500000px;}
.y59{bottom:4.680000px;}
.y41{bottom:4.860000px;}
.y50{bottom:7.725000px;}
.yb{bottom:9.000000px;}
.y58{bottom:12.240000px;}
.y11{bottom:16.020000px;}
.yd{bottom:19.980000px;}
.y4b{bottom:21.225000px;}
.ydc{bottom:24.840000px;}
.ye8{bottom:25.185000px;}
.ye0{bottom:25.230000px;}
.ye{bottom:26.820000px;}
.yc{bottom:27.000000px;}
.y10{bottom:27.360000px;}
.y4f{bottom:29.505000px;}
.y57{bottom:29.520000px;}
.y7{bottom:35.100000px;}
.y4a{bottom:40.305000px;}
.y56{bottom:46.800000px;}
.y4e{bottom:51.105000px;}
.y49{bottom:59.205000px;}
.y55{bottom:64.800000px;}
.y51{bottom:66.780000px;}
.yba{bottom:77.580000px;}
.y48{bottom:78.285000px;}
.yee{bottom:80.280000px;}
.y8d{bottom:82.260000px;}
.yf2{bottom:82.800000px;}
.y3f{bottom:83.700000px;}
.y54{bottom:85.500000px;}
.y47{bottom:97.185000px;}
.yed{bottom:100.980000px;}
.y8c{bottom:102.960000px;}
.yb4{bottom:103.500000px;}
.y3e{bottom:104.400000px;}
.y53{bottom:105.870000px;}
.y46{bottom:116.085000px;}
.yec{bottom:121.680000px;}
.y8b{bottom:123.660000px;}
.yab{bottom:123.840000px;}
.yb3{bottom:124.200000px;}
.y3d{bottom:125.100000px;}
.y52{bottom:130.170000px;}
.y45{bottom:135.165000px;}
.yeb{bottom:142.380000px;}
.y8a{bottom:144.360000px;}
.yaa{bottom:144.540000px;}
.yb2{bottom:144.900000px;}
.y3c{bottom:145.800000px;}
.y44{bottom:154.110000px;}
.yea{bottom:159.300000px;}
.y89{bottom:165.060000px;}
.ya9{bottom:165.600000px;}
.y3b{bottom:166.500000px;}
.ye9{bottom:180.945000px;}
.y88{bottom:185.790000px;}
.ya8{bottom:186.330000px;}
.y3a{bottom:187.230000px;}
.y87{bottom:206.490000px;}
.ya7{bottom:207.030000px;}
.y39{bottom:207.930000px;}
.y4d{bottom:211.725000px;}
.ye7{bottom:223.065000px;}
.y86{bottom:227.190000px;}
.ya6{bottom:227.730000px;}
.y38{bottom:228.630000px;}
.y85{bottom:247.890000px;}
.ya5{bottom:248.430000px;}
.y37{bottom:249.330000px;}
.ye6{bottom:265.185000px;}
.y84{bottom:268.590000px;}
.ya4{bottom:269.130000px;}
.y36{bottom:270.030000px;}
.y43{bottom:277.425000px;}
.ye5{bottom:286.605000px;}
.y83{bottom:289.290000px;}
.ya3{bottom:289.830000px;}
.y35{bottom:290.730000px;}
.ye4{bottom:308.025000px;}
.y82{bottom:309.990000px;}
.ya2{bottom:310.530000px;}
.y34{bottom:311.430000px;}
.ye3{bottom:329.445000px;}
.y81{bottom:330.690000px;}
.yb1{bottom:330.870000px;}
.ya1{bottom:331.230000px;}
.y33{bottom:332.130000px;}
.ye2{bottom:351.045000px;}
.y80{bottom:351.390000px;}
.yb0{bottom:351.570000px;}
.ya0{bottom:351.930000px;}
.y32{bottom:352.830000px;}
.y7f{bottom:372.090000px;}
.yb9{bottom:372.270000px;}
.ye1{bottom:372.465000px;}
.y9f{bottom:372.630000px;}
.y31{bottom:373.530000px;}
.y7e{bottom:392.790000px;}
.yf6{bottom:392.970000px;}
.y9e{bottom:393.330000px;}
.ydf{bottom:393.885000px;}
.y30{bottom:394.230000px;}
.y7d{bottom:413.535000px;}
.y9d{bottom:414.075000px;}
.y2f{bottom:414.975000px;}
.y7c{bottom:434.235000px;}
.y9c{bottom:434.775000px;}
.y2e{bottom:435.315000px;}
.yde{bottom:436.035000px;}
.y42{bottom:447.195000px;}
.y40{bottom:453.315000px;}
.y7b{bottom:454.935000px;}
.y9b{bottom:455.475000px;}
.ydd{bottom:457.455000px;}
.y7a{bottom:475.635000px;}
.y9a{bottom:476.175000px;}
.ydb{bottom:478.875000px;}
.y2d{bottom:480.855000px;}
.y79{bottom:496.335000px;}
.y99{bottom:496.875000px;}
.y2c{bottom:501.555000px;}
.y78{bottom:517.035000px;}
.yb8{bottom:517.215000px;}
.y98{bottom:517.575000px;}
.y2b{bottom:522.255000px;}
.yda{bottom:525.495000px;}
.y77{bottom:537.735000px;}
.y97{bottom:537.915000px;}
.yf1{bottom:538.275000px;}
.y2a{bottom:542.955000px;}
.yd9{bottom:545.835000px;}
.y76{bottom:558.435000px;}
.y96{bottom:558.615000px;}
.yb7{bottom:558.975000px;}
.y29{bottom:563.295000px;}
.yd8{bottom:566.535000px;}
.y75{bottom:579.135000px;}
.y95{bottom:579.675000px;}
.y28{bottom:584.355000px;}
.yd7{bottom:587.235000px;}
.y74{bottom:599.835000px;}
.y94{bottom:600.375000px;}
.y27{bottom:605.055000px;}
.yd6{bottom:608.295000px;}
.y73{bottom:620.535000px;}
.yaf{bottom:620.715000px;}
.y93{bottom:621.075000px;}
.y26{bottom:625.395000px;}
.yd5{bottom:628.995000px;}
.y72{bottom:640.875000px;}
.yf5{bottom:641.415000px;}
.y92{bottom:641.775000px;}
.y25{bottom:646.095000px;}
.yd4{bottom:649.695000px;}
.y71{bottom:661.785000px;}
.yf4{bottom:662.145000px;}
.y91{bottom:662.505000px;}
.y24{bottom:667.185000px;}
.yd3{bottom:670.425000px;}
.y90{bottom:682.845000px;}
.y70{bottom:683.205000px;}
.y23{bottom:687.885000px;}
.yd2{bottom:691.125000px;}
.y8f{bottom:703.545000px;}
.y6f{bottom:703.905000px;}
.y22{bottom:708.225000px;}
.yd1{bottom:711.825000px;}
.y8e{bottom:724.245000px;}
.y6e{bottom:724.605000px;}
.y21{bottom:728.925000px;}
.yd0{bottom:732.525000px;}
.yae{bottom:744.945000px;}
.y6d{bottom:745.305000px;}
.y20{bottom:749.985000px;}
.ycf{bottom:753.225000px;}
.y6c{bottom:766.005000px;}
.y1f{bottom:770.685000px;}
.yce{bottom:773.925000px;}
.y6b{bottom:786.705000px;}
.y1e{bottom:791.025000px;}
.ycd{bottom:794.625000px;}
.yad{bottom:807.045000px;}
.y6a{bottom:807.405000px;}
.ycc{bottom:811.545000px;}
.y1d{bottom:811.725000px;}
.yac{bottom:827.745000px;}
.y69{bottom:828.105000px;}
.y1c{bottom:832.785000px;}
.ycb{bottom:833.145000px;}
.y68{bottom:848.805000px;}
.y1b{bottom:853.485000px;}
.yca{bottom:854.565000px;}
.yb6{bottom:869.145000px;}
.y67{bottom:869.505000px;}
.y1a{bottom:873.825000px;}
.yc8{bottom:876.000000px;}
.yb5{bottom:889.845000px;}
.y66{bottom:890.205000px;}
.y19{bottom:894.525000px;}
.yc7{bottom:897.405000px;}
.y65{bottom:910.950000px;}
.y18{bottom:915.630000px;}
.yc6{bottom:918.870000px;}
.yf3{bottom:931.290000px;}
.y64{bottom:931.650000px;}
.y17{bottom:936.330000px;}
.yc5{bottom:940.290000px;}
.yf0{bottom:951.990000px;}
.y63{bottom:952.350000px;}
.y16{bottom:956.670000px;}
.yc4{bottom:961.890000px;}
.yef{bottom:972.690000px;}
.y62{bottom:973.050000px;}
.y15{bottom:977.370000px;}
.yc3{bottom:983.310000px;}
.y61{bottom:993.750000px;}
.y14{bottom:998.070000px;}
.yc2{bottom:1004.730000px;}
.y60{bottom:1014.450000px;}
.y13{bottom:1019.310000px;}
.yc1{bottom:1026.150000px;}
.y5f{bottom:1035.150000px;}
.y12{bottom:1043.430000px;}
.yc0{bottom:1047.570000px;}
.y5e{bottom:1055.850000px;}
.y6{bottom:1066.650000px;}
.ybf{bottom:1068.990000px;}
.y5d{bottom:1076.550000px;}
.y5{bottom:1084.110000px;}
.ybe{bottom:1090.590000px;}
.y5c{bottom:1097.250000px;}
.y4{bottom:1103.370000px;}
.y8{bottom:1110.041583px;}
.ybd{bottom:1112.010000px;}
.y5b{bottom:1117.950000px;}
.y3{bottom:1133.430000px;}
.y5a{bottom:1138.650000px;}
.y2{bottom:1150.920000px;}
.y1{bottom:1179.720000px;}
.ya{bottom:1218.960000px;}
.h7{height:15.846752px;}
.h1d{height:20.160000px;}
.h21{height:20.685000px;}
.h1f{height:20.700000px;}
.h22{height:20.722500px;}
.h20{height:20.730000px;}
.h25{height:20.736000px;}
.h13{height:21.945000px;}
.h5{height:31.952109px;}
.h9{height:32.580000px;}
.hd{height:33.120000px;}
.hb{height:40.140000px;}
.h23{height:41.385000px;}
.h24{height:41.421000px;}
.h4{height:41.738906px;}
.hc{height:45.116367px;}
.h12{height:50.273438px;}
.h8{height:51.746940px;}
.h6{height:53.709961px;}
.h3{height:54.070312px;}
.h17{height:58.651172px;}
.h19{height:60.226875px;}
.h18{height:64.971000px;}
.h1a{height:64.980000px;}
.h16{height:65.010937px;}
.h15{height:66.757500px;}
.h1e{height:67.824844px;}
.h11{height:70.664062px;}
.ha{height:71.613281px;}
.h10{height:72.562500px;}
.he{height:73.722656px;}
.h2{height:81.105469px;}
.hf{height:84.898125px;}
.h1b{height:144.036000px;}
.h1c{height:144.045000px;}
.h14{height:169.050000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:69.321000px;}
.w9{width:70.402500px;}
.w6{width:76.522500px;}
.wf{width:92.001000px;}
.w2{width:103.903623px;}
.wb{width:105.300000px;}
.wc{width:105.336000px;}
.we{width:142.011000px;}
.w11{width:155.685000px;}
.w10{width:159.510000px;}
.wd{width:167.955000px;}
.w3{width:193.500000px;}
.wa{width:219.441000px;}
.w8{width:263.415000px;}
.w7{width:418.755000px;}
.w4{width:442.980000px;}
.w5{width:443.055000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:8.100000px;}
.x9{left:9.540000px;}
.x7{left:11.294611px;}
.xa{left:15.120000px;}
.xb{left:22.860000px;}
.x12{left:57.240000px;}
.x13{left:77.616000px;}
.x2{left:135.036000px;}
.xd{left:137.016000px;}
.x1{left:148.536000px;}
.x3{left:172.110000px;}
.x11{left:177.690000px;}
.x1c{left:189.030000px;}
.x19{left:278.505000px;}
.xe{left:315.615000px;}
.xf{left:335.415000px;}
.x10{left:348.915000px;}
.x16{left:356.115000px;}
.x1a{left:371.415000px;}
.x5{left:446.475000px;}
.x17{left:462.315000px;}
.x6{left:524.071498px;}
.x1b{left:531.660000px;}
.x18{left:568.380000px;}
.x4{left:629.925000px;}
.x8{left:652.231498px;}
.xc{left:682.860000px;}
.x15{left:687.360000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.069333pt;}
.ls7{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.640000pt;}
.ws0{word-spacing:-17.536000pt;}
.wsc{word-spacing:-16.640000pt;}
.wsb{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.464000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.327360pt;}
.ws1{word-spacing:-0.044102pt;}
.ws8{word-spacing:0.000000pt;}
._1e{margin-left:-4.288000pt;}
._a{margin-left:-3.008000pt;}
._0{margin-left:-1.536000pt;}
._2{width:1.280000pt;}
._f{width:2.752000pt;}
._c{width:3.904000pt;}
._b{width:5.568000pt;}
._13{width:6.888960pt;}
._d{width:8.320000pt;}
._e{width:9.472000pt;}
._17{width:10.378667pt;}
._16{width:11.520000pt;}
._7{width:12.800000pt;}
._9{width:14.208000pt;}
._1b{width:17.194667pt;}
._4{width:18.816000pt;}
._3{width:19.776000pt;}
._6{width:20.778667pt;}
._5{width:21.696000pt;}
._1f{width:23.338667pt;}
._27{width:24.704000pt;}
._28{width:25.600000pt;}
._22{width:26.858667pt;}
._21{width:27.968000pt;}
._19{width:28.864000pt;}
._18{width:29.888000pt;}
._2b{width:32.128000pt;}
._1a{width:33.088000pt;}
._8{width:35.776000pt;}
._23{width:36.864000pt;}
._1c{width:41.216000pt;}
._1d{width:42.282667pt;}
._24{width:44.053333pt;}
._2a{width:55.360000pt;}
._29{width:56.256000pt;}
._2e{width:57.472000pt;}
._2c{width:58.880000pt;}
._11{width:59.998720pt;}
._12{width:61.260800pt;}
._2f{width:72.640000pt;}
._2d{width:80.000000pt;}
._10{width:82.790400pt;}
._25{width:174.592000pt;}
._26{width:176.352000pt;}
._20{width:178.112000pt;}
._15{width:245.240320pt;}
._14{width:323.310080pt;}
._1{width:384.158507pt;}
.fs2{font-size:37.120000pt;}
.fs6{font-size:40.320000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:44.102261pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:2.880000pt;}
.y9{bottom:3.016121pt;}
.y4c{bottom:3.346667pt;}
.ybb{bottom:3.680000pt;}
.yc9{bottom:3.986667pt;}
.ybc{bottom:4.000000pt;}
.y59{bottom:4.160000pt;}
.y41{bottom:4.320000pt;}
.y50{bottom:6.866667pt;}
.yb{bottom:8.000000pt;}
.y58{bottom:10.880000pt;}
.y11{bottom:14.240000pt;}
.yd{bottom:17.760000pt;}
.y4b{bottom:18.866667pt;}
.ydc{bottom:22.080000pt;}
.ye8{bottom:22.386667pt;}
.ye0{bottom:22.426667pt;}
.ye{bottom:23.840000pt;}
.yc{bottom:24.000000pt;}
.y10{bottom:24.320000pt;}
.y4f{bottom:26.226667pt;}
.y57{bottom:26.240000pt;}
.y7{bottom:31.200000pt;}
.y4a{bottom:35.826667pt;}
.y56{bottom:41.600000pt;}
.y4e{bottom:45.426667pt;}
.y49{bottom:52.626667pt;}
.y55{bottom:57.600000pt;}
.y51{bottom:59.360000pt;}
.yba{bottom:68.960000pt;}
.y48{bottom:69.586667pt;}
.yee{bottom:71.360000pt;}
.y8d{bottom:73.120000pt;}
.yf2{bottom:73.600000pt;}
.y3f{bottom:74.400000pt;}
.y54{bottom:76.000000pt;}
.y47{bottom:86.386667pt;}
.yed{bottom:89.760000pt;}
.y8c{bottom:91.520000pt;}
.yb4{bottom:92.000000pt;}
.y3e{bottom:92.800000pt;}
.y53{bottom:94.106667pt;}
.y46{bottom:103.186667pt;}
.yec{bottom:108.160000pt;}
.y8b{bottom:109.920000pt;}
.yab{bottom:110.080000pt;}
.yb3{bottom:110.400000pt;}
.y3d{bottom:111.200000pt;}
.y52{bottom:115.706667pt;}
.y45{bottom:120.146667pt;}
.yeb{bottom:126.560000pt;}
.y8a{bottom:128.320000pt;}
.yaa{bottom:128.480000pt;}
.yb2{bottom:128.800000pt;}
.y3c{bottom:129.600000pt;}
.y44{bottom:136.986667pt;}
.yea{bottom:141.600000pt;}
.y89{bottom:146.720000pt;}
.ya9{bottom:147.200000pt;}
.y3b{bottom:148.000000pt;}
.ye9{bottom:160.840000pt;}
.y88{bottom:165.146667pt;}
.ya8{bottom:165.626667pt;}
.y3a{bottom:166.426667pt;}
.y87{bottom:183.546667pt;}
.ya7{bottom:184.026667pt;}
.y39{bottom:184.826667pt;}
.y4d{bottom:188.200000pt;}
.ye7{bottom:198.280000pt;}
.y86{bottom:201.946667pt;}
.ya6{bottom:202.426667pt;}
.y38{bottom:203.226667pt;}
.y85{bottom:220.346667pt;}
.ya5{bottom:220.826667pt;}
.y37{bottom:221.626667pt;}
.ye6{bottom:235.720000pt;}
.y84{bottom:238.746667pt;}
.ya4{bottom:239.226667pt;}
.y36{bottom:240.026667pt;}
.y43{bottom:246.600000pt;}
.ye5{bottom:254.760000pt;}
.y83{bottom:257.146667pt;}
.ya3{bottom:257.626667pt;}
.y35{bottom:258.426667pt;}
.ye4{bottom:273.800000pt;}
.y82{bottom:275.546667pt;}
.ya2{bottom:276.026667pt;}
.y34{bottom:276.826667pt;}
.ye3{bottom:292.840000pt;}
.y81{bottom:293.946667pt;}
.yb1{bottom:294.106667pt;}
.ya1{bottom:294.426667pt;}
.y33{bottom:295.226667pt;}
.ye2{bottom:312.040000pt;}
.y80{bottom:312.346667pt;}
.yb0{bottom:312.506667pt;}
.ya0{bottom:312.826667pt;}
.y32{bottom:313.626667pt;}
.y7f{bottom:330.746667pt;}
.yb9{bottom:330.906667pt;}
.ye1{bottom:331.080000pt;}
.y9f{bottom:331.226667pt;}
.y31{bottom:332.026667pt;}
.y7e{bottom:349.146667pt;}
.yf6{bottom:349.306667pt;}
.y9e{bottom:349.626667pt;}
.ydf{bottom:350.120000pt;}
.y30{bottom:350.426667pt;}
.y7d{bottom:367.586667pt;}
.y9d{bottom:368.066667pt;}
.y2f{bottom:368.866667pt;}
.y7c{bottom:385.986667pt;}
.y9c{bottom:386.466667pt;}
.y2e{bottom:386.946667pt;}
.yde{bottom:387.586667pt;}
.y42{bottom:397.506667pt;}
.y40{bottom:402.946667pt;}
.y7b{bottom:404.386667pt;}
.y9b{bottom:404.866667pt;}
.ydd{bottom:406.626667pt;}
.y7a{bottom:422.786667pt;}
.y9a{bottom:423.266667pt;}
.ydb{bottom:425.666667pt;}
.y2d{bottom:427.426667pt;}
.y79{bottom:441.186667pt;}
.y99{bottom:441.666667pt;}
.y2c{bottom:445.826667pt;}
.y78{bottom:459.586667pt;}
.yb8{bottom:459.746667pt;}
.y98{bottom:460.066667pt;}
.y2b{bottom:464.226667pt;}
.yda{bottom:467.106667pt;}
.y77{bottom:477.986667pt;}
.y97{bottom:478.146667pt;}
.yf1{bottom:478.466667pt;}
.y2a{bottom:482.626667pt;}
.yd9{bottom:485.186667pt;}
.y76{bottom:496.386667pt;}
.y96{bottom:496.546667pt;}
.yb7{bottom:496.866667pt;}
.y29{bottom:500.706667pt;}
.yd8{bottom:503.586667pt;}
.y75{bottom:514.786667pt;}
.y95{bottom:515.266667pt;}
.y28{bottom:519.426667pt;}
.yd7{bottom:521.986667pt;}
.y74{bottom:533.186667pt;}
.y94{bottom:533.666667pt;}
.y27{bottom:537.826667pt;}
.yd6{bottom:540.706667pt;}
.y73{bottom:551.586667pt;}
.yaf{bottom:551.746667pt;}
.y93{bottom:552.066667pt;}
.y26{bottom:555.906667pt;}
.yd5{bottom:559.106667pt;}
.y72{bottom:569.666667pt;}
.yf5{bottom:570.146667pt;}
.y92{bottom:570.466667pt;}
.y25{bottom:574.306667pt;}
.yd4{bottom:577.506667pt;}
.y71{bottom:588.253333pt;}
.yf4{bottom:588.573333pt;}
.y91{bottom:588.893333pt;}
.y24{bottom:593.053333pt;}
.yd3{bottom:595.933333pt;}
.y90{bottom:606.973333pt;}
.y70{bottom:607.293333pt;}
.y23{bottom:611.453333pt;}
.yd2{bottom:614.333333pt;}
.y8f{bottom:625.373333pt;}
.y6f{bottom:625.693333pt;}
.y22{bottom:629.533333pt;}
.yd1{bottom:632.733333pt;}
.y8e{bottom:643.773333pt;}
.y6e{bottom:644.093333pt;}
.y21{bottom:647.933333pt;}
.yd0{bottom:651.133333pt;}
.yae{bottom:662.173333pt;}
.y6d{bottom:662.493333pt;}
.y20{bottom:666.653333pt;}
.ycf{bottom:669.533333pt;}
.y6c{bottom:680.893333pt;}
.y1f{bottom:685.053333pt;}
.yce{bottom:687.933333pt;}
.y6b{bottom:699.293333pt;}
.y1e{bottom:703.133333pt;}
.ycd{bottom:706.333333pt;}
.yad{bottom:717.373333pt;}
.y6a{bottom:717.693333pt;}
.ycc{bottom:721.373333pt;}
.y1d{bottom:721.533333pt;}
.yac{bottom:735.773333pt;}
.y69{bottom:736.093333pt;}
.y1c{bottom:740.253333pt;}
.ycb{bottom:740.573333pt;}
.y68{bottom:754.493333pt;}
.y1b{bottom:758.653333pt;}
.yca{bottom:759.613333pt;}
.yb6{bottom:772.573333pt;}
.y67{bottom:772.893333pt;}
.y1a{bottom:776.733333pt;}
.yc8{bottom:778.666667pt;}
.yb5{bottom:790.973333pt;}
.y66{bottom:791.293333pt;}
.y19{bottom:795.133333pt;}
.yc7{bottom:797.693333pt;}
.y65{bottom:809.733333pt;}
.y18{bottom:813.893333pt;}
.yc6{bottom:816.773333pt;}
.yf3{bottom:827.813333pt;}
.y64{bottom:828.133333pt;}
.y17{bottom:832.293333pt;}
.yc5{bottom:835.813333pt;}
.yf0{bottom:846.213333pt;}
.y63{bottom:846.533333pt;}
.y16{bottom:850.373333pt;}
.yc4{bottom:855.013333pt;}
.yef{bottom:864.613333pt;}
.y62{bottom:864.933333pt;}
.y15{bottom:868.773333pt;}
.yc3{bottom:874.053333pt;}
.y61{bottom:883.333333pt;}
.y14{bottom:887.173333pt;}
.yc2{bottom:893.093333pt;}
.y60{bottom:901.733333pt;}
.y13{bottom:906.053333pt;}
.yc1{bottom:912.133333pt;}
.y5f{bottom:920.133333pt;}
.y12{bottom:927.493333pt;}
.yc0{bottom:931.173333pt;}
.y5e{bottom:938.533333pt;}
.y6{bottom:948.133333pt;}
.ybf{bottom:950.213333pt;}
.y5d{bottom:956.933333pt;}
.y5{bottom:963.653333pt;}
.ybe{bottom:969.413333pt;}
.y5c{bottom:975.333333pt;}
.y4{bottom:980.773333pt;}
.y8{bottom:986.703630pt;}
.ybd{bottom:988.453333pt;}
.y5b{bottom:993.733333pt;}
.y3{bottom:1007.493333pt;}
.y5a{bottom:1012.133333pt;}
.y2{bottom:1023.040000pt;}
.y1{bottom:1048.640000pt;}
.ya{bottom:1083.520000pt;}
.h7{height:14.086002pt;}
.h1d{height:17.920000pt;}
.h21{height:18.386667pt;}
.h1f{height:18.400000pt;}
.h22{height:18.420000pt;}
.h20{height:18.426667pt;}
.h25{height:18.432000pt;}
.h13{height:19.506667pt;}
.h5{height:28.401875pt;}
.h9{height:28.960000pt;}
.hd{height:29.440000pt;}
.hb{height:35.680000pt;}
.h23{height:36.786667pt;}
.h24{height:36.818667pt;}
.h4{height:37.101250pt;}
.hc{height:40.103437pt;}
.h12{height:44.687500pt;}
.h8{height:45.997280pt;}
.h6{height:47.742188pt;}
.h3{height:48.062500pt;}
.h17{height:52.134375pt;}
.h19{height:53.535000pt;}
.h18{height:57.752000pt;}
.h1a{height:57.760000pt;}
.h16{height:57.787500pt;}
.h15{height:59.340000pt;}
.h1e{height:60.288750pt;}
.h11{height:62.812500pt;}
.ha{height:63.656250pt;}
.h10{height:64.500000pt;}
.he{height:65.531250pt;}
.h2{height:72.093750pt;}
.hf{height:75.465000pt;}
.h1b{height:128.032000pt;}
.h1c{height:128.040000pt;}
.h14{height:150.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:61.618667pt;}
.w9{width:62.580000pt;}
.w6{width:68.020000pt;}
.wf{width:81.778667pt;}
.w2{width:92.358776pt;}
.wb{width:93.600000pt;}
.wc{width:93.632000pt;}
.we{width:126.232000pt;}
.w11{width:138.386667pt;}
.w10{width:141.786667pt;}
.wd{width:149.293333pt;}
.w3{width:172.000000pt;}
.wa{width:195.058667pt;}
.w8{width:234.146667pt;}
.w7{width:372.226667pt;}
.w4{width:393.760000pt;}
.w5{width:393.826667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:7.200000pt;}
.x9{left:8.480000pt;}
.x7{left:10.039654pt;}
.xa{left:13.440000pt;}
.xb{left:20.320000pt;}
.x12{left:50.880000pt;}
.x13{left:68.992000pt;}
.x2{left:120.032000pt;}
.xd{left:121.792000pt;}
.x1{left:132.032000pt;}
.x3{left:152.986667pt;}
.x11{left:157.946667pt;}
.x1c{left:168.026667pt;}
.x19{left:247.560000pt;}
.xe{left:280.546667pt;}
.xf{left:298.146667pt;}
.x10{left:310.146667pt;}
.x16{left:316.546667pt;}
.x1a{left:330.146667pt;}
.x5{left:396.866667pt;}
.x17{left:410.946667pt;}
.x6{left:465.841331pt;}
.x1b{left:472.586667pt;}
.x18{left:505.226667pt;}
.x4{left:559.933333pt;}
.x8{left:579.761331pt;}
.xc{left:606.986667pt;}
.x15{left:610.986667pt;}
}




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