
    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_0f83690d34ede0abcb4218b7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.871094;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_d0d401eafeeda5ae8531264f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.727539;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_4638b8365e168d2adab929d9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_7dc1c5160a527a4b7bb2c716.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_71c0cf7e3a8915963df4df9a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.891602;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_9174a15c7cf15dcbd4e044b9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.871094;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_918c5757ce31a395a7951bad.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.825684;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-1.008000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.648000px;}
.ls1d{letter-spacing:-0.576000px;}
.ls1f{letter-spacing:-0.501000px;}
.ls20{letter-spacing:-0.432000px;}
.ls5{letter-spacing:-0.363600px;}
.ls1b{letter-spacing:-0.361200px;}
.ls3{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.271200px;}
.lsf{letter-spacing:-0.229800px;}
.lsb{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.000006px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.007920px;}
.ls2{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.238200px;}
.ls11{letter-spacing:0.249600px;}
.lse{letter-spacing:0.393600px;}
.ls18{letter-spacing:32.650848px;}
.ls1a{letter-spacing:32.688000px;}
.ls13{letter-spacing:48.410496px;}
.ls14{letter-spacing:48.490560px;}
.ls19{letter-spacing:80.640000px;}
.ls16{letter-spacing:99.000000px;}
.ls12{letter-spacing:107.316000px;}
.ls17{letter-spacing:109.584000px;}
.ls7{letter-spacing:109.677600px;}
.ls8{letter-spacing:109.728000px;}
.lsa{letter-spacing:111.600000px;}
.ls9{letter-spacing:143.568000px;}
.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;}
}
.ws30{word-spacing:-59.750784px;}
.ws1f{word-spacing:-59.718240px;}
.ws2e{word-spacing:-35.342784px;}
.ws2f{word-spacing:-35.310240px;}
.ws1e{word-spacing:-33.845760px;}
.ws14{word-spacing:-32.576544px;}
.ws5{word-spacing:-32.544000px;}
.ws47{word-spacing:-32.400000px;}
.ws32{word-spacing:-32.256000px;}
.ws43{word-spacing:-32.112000px;}
.ws3a{word-spacing:-31.968000px;}
.ws39{word-spacing:-31.824000px;}
.ws44{word-spacing:-31.536000px;}
.ws22{word-spacing:-27.174240px;}
.ws45{word-spacing:-4.284000px;}
.ws1d{word-spacing:-0.744000px;}
.ws26{word-spacing:-0.556560px;}
.ws37{word-spacing:-0.144144px;}
.ws35{word-spacing:-0.144000px;}
.ws27{word-spacing:-0.061440px;}
.ws0{word-spacing:0.000000px;}
.ws4e{word-spacing:0.144000px;}
.ws36{word-spacing:0.217056px;}
.ws21{word-spacing:0.288000px;}
.ws25{word-spacing:0.349200px;}
.wsa{word-spacing:0.840000px;}
.ws9{word-spacing:0.864000px;}
.wsc{word-spacing:1.044000px;}
.wsb{word-spacing:3.888000px;}
.ws1{word-spacing:7.632000px;}
.ws4{word-spacing:8.208000px;}
.ws3{word-spacing:8.388000px;}
.ws2{word-spacing:11.088000px;}
.ws1b{word-spacing:12.792000px;}
.ws48{word-spacing:13.248000px;}
.ws46{word-spacing:13.536000px;}
.ws4c{word-spacing:13.968000px;}
.ws12{word-spacing:14.709456px;}
.ws4a{word-spacing:14.952000px;}
.ws10{word-spacing:15.016224px;}
.ws4b{word-spacing:15.552000px;}
.ws11{word-spacing:15.626448px;}
.ws13{word-spacing:15.764112px;}
.ws8{word-spacing:15.846048px;}
.ws31{word-spacing:19.008000px;}
.ws7{word-spacing:22.152000px;}
.ws6{word-spacing:22.752000px;}
.ws33{word-spacing:26.064000px;}
.ws34{word-spacing:26.352000px;}
.ws38{word-spacing:31.907088px;}
.ws3d{word-spacing:45.708336px;}
.ws3f{word-spacing:45.862128px;}
.ws41{word-spacing:46.215696px;}
.ws3e{word-spacing:46.729008px;}
.ws40{word-spacing:47.008008px;}
.ws4d{word-spacing:47.784000px;}
.ws3b{word-spacing:48.096000px;}
.wsf{word-spacing:50.688000px;}
.wse{word-spacing:50.976023px;}
.wsd{word-spacing:51.012000px;}
.ws3c{word-spacing:59.979168px;}
.ws42{word-spacing:60.768000px;}
.ws2a{word-spacing:65.173200px;}
.ws2c{word-spacing:75.667920px;}
.ws2d{word-spacing:86.125920px;}
.ws49{word-spacing:97.056000px;}
.ws20{word-spacing:102.384000px;}
.ws1c{word-spacing:114.947280px;}
.ws19{word-spacing:117.480000px;}
.ws17{word-spacing:117.828000px;}
.ws15{word-spacing:118.056000px;}
.ws18{word-spacing:118.512000px;}
.ws16{word-spacing:119.952000px;}
.ws1a{word-spacing:148.320000px;}
.ws50{word-spacing:167.328000px;}
.ws4f{word-spacing:168.048000px;}
.ws52{word-spacing:200.856000px;}
.ws53{word-spacing:200.880000px;}
.ws51{word-spacing:202.032000px;}
.ws24{word-spacing:268.989720px;}
.ws29{word-spacing:269.049720px;}
.ws23{word-spacing:347.106240px;}
.ws2b{word-spacing:476.928000px;}
.ws28{word-spacing:1020.833040px;}
._19{margin-left:-23.517360px;}
._2{margin-left:-21.943872px;}
._c{margin-left:-19.289520px;}
._1d{margin-left:-15.800064px;}
._1a{margin-left:-14.286000px;}
._9{margin-left:-12.862080px;}
._d{margin-left:-11.001600px;}
._8{margin-left:-8.686320px;}
._f{margin-left:-6.140160px;}
._0{margin-left:-3.963600px;}
._6{margin-left:-2.880000px;}
._1{margin-left:-1.849680px;}
._3{width:1.319760px;}
._e{width:3.338736px;}
._18{width:20.069760px;}
._1f{width:29.928000px;}
._4{width:34.500960px;}
._10{width:36.075360px;}
._5{width:42.168000px;}
._a{width:46.488000px;}
._7{width:50.764080px;}
._1e{width:64.408800px;}
._20{width:130.803600px;}
._b{width:148.551888px;}
._12{width:319.178400px;}
._14{width:340.382040px;}
._16{width:346.276224px;}
._17{width:357.293760px;}
._1c{width:499.500000px;}
._1b{width:505.800000px;}
._15{width:523.802280px;}
._11{width:604.052640px;}
._13{width:615.362040px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:59.760000px;}
.fse{font-size:72.000000px;}
.fsa{font-size:84.240000px;}
.fs10{font-size:84.384000px;}
.fs8{font-size:113.904000px;}
.fs9{font-size:120.240000px;}
.fsb{font-size:120.384000px;}
.fs4{font-size:144.000000px;}
.fs5{font-size:144.144000px;}
.fs7{font-size:149.760000px;}
.fs6{font-size:149.904000px;}
.fsc{font-size:156.240000px;}
.fsd{font-size:156.384000px;}
.fs2{font-size:162.000000px;}
.fs3{font-size:162.144000px;}
.fs13{font-size:180.000000px;}
.fs14{font-size:180.144000px;}
.fs12{font-size:192.240000px;}
.fs11{font-size:192.384000px;}
.fs0{font-size:264.240000px;}
.fs1{font-size:264.384000px;}
.y9a{bottom:-41.580000px;}
.y0{bottom:0.000000px;}
.y6a{bottom:17.565000px;}
.y32{bottom:18.360000px;}
.y7f{bottom:39.132000px;}
.y65{bottom:40.965000px;}
.y99{bottom:44.856000px;}
.y7e{bottom:76.572000px;}
.y24{bottom:86.112000px;}
.y70{bottom:86.400000px;}
.y3e{bottom:87.300000px;}
.y98{bottom:88.056000px;}
.y31{bottom:95.796000px;}
.y8e{bottom:98.568000px;}
.y6f{bottom:111.636000px;}
.y3d{bottom:112.500000px;}
.y39{bottom:115.815000px;}
.y4d{bottom:115.890000px;}
.y8{bottom:120.132000px;}
.y23{bottom:122.112000px;}
.y7d{bottom:123.408000px;}
.y3a{bottom:123.660000px;}
.y61{bottom:129.672000px;}
.y30{bottom:130.356000px;}
.y66{bottom:130.650000px;}
.y97{bottom:131.256000px;}
.y8d{bottom:134.568000px;}
.y6e{bottom:136.836000px;}
.y15{bottom:155.370000px;}
.y22{bottom:158.115000px;}
.y7c{bottom:160.845000px;}
.y6d{bottom:162.030000px;}
.y2f{bottom:164.910000px;}
.y7{bottom:168.735000px;}
.y6c{bottom:170.310000px;}
.y8c{bottom:170.565000px;}
.y60{bottom:171.795000px;}
.y96{bottom:174.495000px;}
.y14{bottom:189.975000px;}
.y64{bottom:201.060000px;}
.y21{bottom:203.145000px;}
.y38{bottom:206.460000px;}
.y8b{bottom:206.565000px;}
.y6{bottom:207.615000px;}
.y7b{bottom:207.645000px;}
.y2e{bottom:208.155000px;}
.y51{bottom:210.060000px;}
.y67{bottom:220.320000px;}
.y5f{bottom:223.275000px;}
.y13{bottom:224.535000px;}
.y50{bottom:235.260000px;}
.y20{bottom:239.145000px;}
.y3b{bottom:239.475000px;}
.y2d{bottom:242.715000px;}
.y4c{bottom:244.980000px;}
.y7a{bottom:245.130000px;}
.y8a{bottom:251.610000px;}
.y6b{bottom:252.540000px;}
.y5{bottom:256.215000px;}
.y12{bottom:259.095000px;}
.y46{bottom:260.355000px;}
.y95{bottom:260.895000px;}
.y5e{bottom:265.395000px;}
.y1f{bottom:275.145000px;}
.y2c{bottom:277.275000px;}
.y89{bottom:287.610000px;}
.y79{bottom:293.370000px;}
.y11{bottom:293.655000px;}
.y45{bottom:303.585000px;}
.y94{bottom:304.125000px;}
.y4{bottom:304.845000px;}
.y68{bottom:309.960000px;}
.y1e{bottom:311.145000px;}
.y34{bottom:311.865000px;}
.y48{bottom:311.910000px;}
.y5d{bottom:316.905000px;}
.y2b{bottom:322.275000px;}
.y88{bottom:323.610000px;}
.y10{bottom:328.245000px;}
.y78{bottom:336.570000px;}
.y44{bottom:346.785000px;}
.y1d{bottom:347.190000px;}
.y93{bottom:347.325000px;}
.y3{bottom:353.445000px;}
.y2a{bottom:355.065000px;}
.y5c{bottom:359.025000px;}
.y87{bottom:359.610000px;}
.y4e{bottom:360.870000px;}
.yf{bottom:371.445000px;}
.y1c{bottom:383.190000px;}
.y33{bottom:385.740000px;}
.y55{bottom:389.340000px;}
.y29{bottom:389.625000px;}
.y43{bottom:389.985000px;}
.y77{bottom:390.600000px;}
.y47{bottom:394.200000px;}
.y69{bottom:399.630000px;}
.y86{bottom:404.640000px;}
.ye{bottom:406.005000px;}
.y5b{bottom:410.505000px;}
.y28{bottom:424.185000px;}
.y1b{bottom:428.190000px;}
.y54{bottom:432.540000px;}
.y42{bottom:433.230000px;}
.y92{bottom:433.770000px;}
.y76{bottom:433.800000px;}
.yd{bottom:440.565000px;}
.y85{bottom:440.640000px;}
.y5a{bottom:452.670000px;}
.y37{bottom:454.935000px;}
.y1a{bottom:464.220000px;}
.y4b{bottom:464.940000px;}
.yc{bottom:475.170000px;}
.y53{bottom:475.740000px;}
.y41{bottom:476.430000px;}
.y84{bottom:476.640000px;}
.y91{bottom:476.970000px;}
.y75{bottom:477.000000px;}
.y19{bottom:500.220000px;}
.y27{bottom:501.630000px;}
.y59{bottom:504.150000px;}
.y2{bottom:507.675000px;}
.yb{bottom:509.730000px;}
.y52{bottom:518.940000px;}
.y90{bottom:520.170000px;}
.y74{bottom:520.200000px;}
.y83{bottom:521.640000px;}
.y18{bottom:536.220000px;}
.ya{bottom:544.290000px;}
.y58{bottom:546.270000px;}
.y82{bottom:557.670000px;}
.y3c{bottom:558.330000px;}
.y36{bottom:569.955000px;}
.y4f{bottom:574.455000px;}
.y4a{bottom:575.640000px;}
.y26{bottom:579.030000px;}
.y17{bottom:581.220000px;}
.y1{bottom:586.875000px;}
.y81{bottom:593.670000px;}
.y25{bottom:615.390000px;}
.y16{bottom:617.250000px;}
.y73{bottom:636.225000px;}
.y63{bottom:647.925000px;}
.y40{bottom:648.285000px;}
.y35{bottom:654.405000px;}
.y49{bottom:662.910000px;}
.y57{bottom:672.945000px;}
.y8f{bottom:686.520000px;}
.y9{bottom:687.885000px;}
.y72{bottom:693.825000px;}
.y80{bottom:704.130000px;}
.y62{bottom:725.865000px;}
.y3f{bottom:727.485000px;}
.y71{bottom:751.470000px;}
.y56{bottom:752.145000px;}
.h1c{height:41.405977px;}
.h1b{height:49.886719px;}
.h10{height:58.367461px;}
.h1d{height:58.467234px;}
.he{height:83.310820px;}
.h13{height:83.410594px;}
.h5{height:99.773438px;}
.h6{height:99.873211px;}
.h11{height:103.078125px;}
.h8{height:103.764375px;}
.ha{height:103.864148px;}
.h9{height:107.201250px;}
.h7{height:107.304328px;}
.h15{height:108.254180px;}
.h17{height:108.353953px;}
.h14{height:111.839766px;}
.h16{height:111.942844px;}
.h3{height:112.245117px;}
.h4{height:112.344891px;}
.hb{height:118.757812px;}
.hd{height:118.876570px;}
.h21{height:124.716797px;}
.h22{height:124.816570px;}
.h20{height:128.847656px;}
.h1f{height:133.197539px;}
.h1e{height:133.297313px;}
.h1{height:183.084258px;}
.h2{height:183.184031px;}
.h18{height:216.888398px;}
.h19{height:217.006594px;}
.hf{height:252.000000px;}
.h12{height:415.800000px;}
.hc{height:424.260000px;}
.h1a{height:425.160000px;}
.h0{height:810.000000px;}
.w3{width:381.600000px;}
.w4{width:510.300000px;}
.w5{width:748.440000px;}
.w2{width:1020.600000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xf{left:10.799984px;}
.x1b{left:13.895984px;}
.x26{left:20.915984px;}
.x32{left:27.755984px;}
.x13{left:29.700000px;}
.x14{left:33.948000px;}
.x27{left:34.955984px;}
.x1c{left:37.295984px;}
.x1f{left:49.031984px;}
.x11{left:51.299984px;}
.x3a{left:57.527984px;}
.xc{left:64.799984px;}
.x33{left:65.807984px;}
.x2f{left:67.245000px;}
.x10{left:71.639984px;}
.x20{left:89.531984px;}
.x2{left:97.487984px;}
.x24{left:100.655984px;}
.x2b{left:103.031984px;}
.xd{left:105.335984px;}
.x36{left:106.523984px;}
.x28{left:108.647984px;}
.x34{left:113.867984px;}
.x3c{left:117.071984px;}
.x37{left:120.059984px;}
.x12{left:132.155984px;}
.x2c{left:136.871984px;}
.x2d{left:147.167984px;}
.x38{left:153.899984px;}
.x30{left:156.270000px;}
.x2a{left:159.944984px;}
.x6{left:168.194984px;}
.x1e{left:174.704984px;}
.x2e{left:183.704984px;}
.x1{left:190.364984px;}
.x9{left:207.179984px;}
.x1d{left:238.244984px;}
.xa{left:247.679984px;}
.x7{left:250.124984px;}
.x3{left:301.244984px;}
.x4{left:303.584984px;}
.x15{left:328.829984px;}
.x5{left:337.784984px;}
.xe{left:343.409984px;}
.x3b{left:348.404984px;}
.xb{left:352.229984px;}
.x39{left:360.869984px;}
.x21{left:417.419984px;}
.x29{left:426.209984px;}
.x35{left:449.969984px;}
.x8{left:491.009984px;}
.x19{left:505.049984px;}
.x18{left:520.349984px;}
.x17{left:522.329984px;}
.x16{left:545.579984px;}
.x23{left:586.724984px;}
.x22{left:609.989984px;}
.x31{left:637.020000px;}
.x25{left:887.909984px;}
.x1a{left:895.679984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-0.896000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.576000pt;}
.ls1d{letter-spacing:-0.512000pt;}
.ls1f{letter-spacing:-0.445333pt;}
.ls20{letter-spacing:-0.384000pt;}
.ls5{letter-spacing:-0.323200pt;}
.ls1b{letter-spacing:-0.321067pt;}
.ls3{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.241067pt;}
.lsf{letter-spacing:-0.204267pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.000005pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.007040pt;}
.ls2{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.211733pt;}
.ls11{letter-spacing:0.221867pt;}
.lse{letter-spacing:0.349867pt;}
.ls18{letter-spacing:29.022976pt;}
.ls1a{letter-spacing:29.056000pt;}
.ls13{letter-spacing:43.031552pt;}
.ls14{letter-spacing:43.102720pt;}
.ls19{letter-spacing:71.680000pt;}
.ls16{letter-spacing:88.000000pt;}
.ls12{letter-spacing:95.392000pt;}
.ls17{letter-spacing:97.408000pt;}
.ls7{letter-spacing:97.491200pt;}
.ls8{letter-spacing:97.536000pt;}
.lsa{letter-spacing:99.200000pt;}
.ls9{letter-spacing:127.616000pt;}
.ws30{word-spacing:-53.111808pt;}
.ws1f{word-spacing:-53.082880pt;}
.ws2e{word-spacing:-31.415808pt;}
.ws2f{word-spacing:-31.386880pt;}
.ws1e{word-spacing:-30.085120pt;}
.ws14{word-spacing:-28.956928pt;}
.ws5{word-spacing:-28.928000pt;}
.ws47{word-spacing:-28.800000pt;}
.ws32{word-spacing:-28.672000pt;}
.ws43{word-spacing:-28.544000pt;}
.ws3a{word-spacing:-28.416000pt;}
.ws39{word-spacing:-28.288000pt;}
.ws44{word-spacing:-28.032000pt;}
.ws22{word-spacing:-24.154880pt;}
.ws45{word-spacing:-3.808000pt;}
.ws1d{word-spacing:-0.661333pt;}
.ws26{word-spacing:-0.494720pt;}
.ws37{word-spacing:-0.128128pt;}
.ws35{word-spacing:-0.128000pt;}
.ws27{word-spacing:-0.054613pt;}
.ws0{word-spacing:0.000000pt;}
.ws4e{word-spacing:0.128000pt;}
.ws36{word-spacing:0.192939pt;}
.ws21{word-spacing:0.256000pt;}
.ws25{word-spacing:0.310400pt;}
.wsa{word-spacing:0.746667pt;}
.ws9{word-spacing:0.768000pt;}
.wsc{word-spacing:0.928000pt;}
.wsb{word-spacing:3.456000pt;}
.ws1{word-spacing:6.784000pt;}
.ws4{word-spacing:7.296000pt;}
.ws3{word-spacing:7.456000pt;}
.ws2{word-spacing:9.856000pt;}
.ws1b{word-spacing:11.370667pt;}
.ws48{word-spacing:11.776000pt;}
.ws46{word-spacing:12.032000pt;}
.ws4c{word-spacing:12.416000pt;}
.ws12{word-spacing:13.075072pt;}
.ws4a{word-spacing:13.290667pt;}
.ws10{word-spacing:13.347755pt;}
.ws4b{word-spacing:13.824000pt;}
.ws11{word-spacing:13.890176pt;}
.ws13{word-spacing:14.012544pt;}
.ws8{word-spacing:14.085376pt;}
.ws31{word-spacing:16.896000pt;}
.ws7{word-spacing:19.690667pt;}
.ws6{word-spacing:20.224000pt;}
.ws33{word-spacing:23.168000pt;}
.ws34{word-spacing:23.424000pt;}
.ws38{word-spacing:28.361856pt;}
.ws3d{word-spacing:40.629632pt;}
.ws3f{word-spacing:40.766336pt;}
.ws41{word-spacing:41.080619pt;}
.ws3e{word-spacing:41.536896pt;}
.ws40{word-spacing:41.784896pt;}
.ws4d{word-spacing:42.474667pt;}
.ws3b{word-spacing:42.752000pt;}
.wsf{word-spacing:45.056000pt;}
.wse{word-spacing:45.312020pt;}
.wsd{word-spacing:45.344000pt;}
.ws3c{word-spacing:53.314816pt;}
.ws42{word-spacing:54.016000pt;}
.ws2a{word-spacing:57.931733pt;}
.ws2c{word-spacing:67.260373pt;}
.ws2d{word-spacing:76.556373pt;}
.ws49{word-spacing:86.272000pt;}
.ws20{word-spacing:91.008000pt;}
.ws1c{word-spacing:102.175360pt;}
.ws19{word-spacing:104.426667pt;}
.ws17{word-spacing:104.736000pt;}
.ws15{word-spacing:104.938667pt;}
.ws18{word-spacing:105.344000pt;}
.ws16{word-spacing:106.624000pt;}
.ws1a{word-spacing:131.840000pt;}
.ws50{word-spacing:148.736000pt;}
.ws4f{word-spacing:149.376000pt;}
.ws52{word-spacing:178.538667pt;}
.ws53{word-spacing:178.560000pt;}
.ws51{word-spacing:179.584000pt;}
.ws24{word-spacing:239.101973pt;}
.ws29{word-spacing:239.155307pt;}
.ws23{word-spacing:308.538880pt;}
.ws2b{word-spacing:423.936000pt;}
.ws28{word-spacing:907.407147pt;}
._19{margin-left:-20.904320pt;}
._2{margin-left:-19.505664pt;}
._c{margin-left:-17.146240pt;}
._1d{margin-left:-14.044501pt;}
._1a{margin-left:-12.698667pt;}
._9{margin-left:-11.432960pt;}
._d{margin-left:-9.779200pt;}
._8{margin-left:-7.721173pt;}
._f{margin-left:-5.457920pt;}
._0{margin-left:-3.523200pt;}
._6{margin-left:-2.560000pt;}
._1{margin-left:-1.644160pt;}
._3{width:1.173120pt;}
._e{width:2.967765pt;}
._18{width:17.839787pt;}
._1f{width:26.602667pt;}
._4{width:30.667520pt;}
._10{width:32.066987pt;}
._5{width:37.482667pt;}
._a{width:41.322667pt;}
._7{width:45.123627pt;}
._1e{width:57.252267pt;}
._20{width:116.269867pt;}
._b{width:132.046123pt;}
._12{width:283.714133pt;}
._14{width:302.561813pt;}
._16{width:307.801088pt;}
._17{width:317.594453pt;}
._1c{width:444.000000pt;}
._1b{width:449.600000pt;}
._15{width:465.602027pt;}
._11{width:536.935680pt;}
._13{width:546.988480pt;}
.fsf{font-size:53.120000pt;}
.fse{font-size:64.000000pt;}
.fsa{font-size:74.880000pt;}
.fs10{font-size:75.008000pt;}
.fs8{font-size:101.248000pt;}
.fs9{font-size:106.880000pt;}
.fsb{font-size:107.008000pt;}
.fs4{font-size:128.000000pt;}
.fs5{font-size:128.128000pt;}
.fs7{font-size:133.120000pt;}
.fs6{font-size:133.248000pt;}
.fsc{font-size:138.880000pt;}
.fsd{font-size:139.008000pt;}
.fs2{font-size:144.000000pt;}
.fs3{font-size:144.128000pt;}
.fs13{font-size:160.000000pt;}
.fs14{font-size:160.128000pt;}
.fs12{font-size:170.880000pt;}
.fs11{font-size:171.008000pt;}
.fs0{font-size:234.880000pt;}
.fs1{font-size:235.008000pt;}
.y9a{bottom:-36.960000pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:15.613333pt;}
.y32{bottom:16.320000pt;}
.y7f{bottom:34.784000pt;}
.y65{bottom:36.413333pt;}
.y99{bottom:39.872000pt;}
.y7e{bottom:68.064000pt;}
.y24{bottom:76.544000pt;}
.y70{bottom:76.800000pt;}
.y3e{bottom:77.600000pt;}
.y98{bottom:78.272000pt;}
.y31{bottom:85.152000pt;}
.y8e{bottom:87.616000pt;}
.y6f{bottom:99.232000pt;}
.y3d{bottom:100.000000pt;}
.y39{bottom:102.946667pt;}
.y4d{bottom:103.013333pt;}
.y8{bottom:106.784000pt;}
.y23{bottom:108.544000pt;}
.y7d{bottom:109.696000pt;}
.y3a{bottom:109.920000pt;}
.y61{bottom:115.264000pt;}
.y30{bottom:115.872000pt;}
.y66{bottom:116.133333pt;}
.y97{bottom:116.672000pt;}
.y8d{bottom:119.616000pt;}
.y6e{bottom:121.632000pt;}
.y15{bottom:138.106667pt;}
.y22{bottom:140.546667pt;}
.y7c{bottom:142.973333pt;}
.y6d{bottom:144.026667pt;}
.y2f{bottom:146.586667pt;}
.y7{bottom:149.986667pt;}
.y6c{bottom:151.386667pt;}
.y8c{bottom:151.613333pt;}
.y60{bottom:152.706667pt;}
.y96{bottom:155.106667pt;}
.y14{bottom:168.866667pt;}
.y64{bottom:178.720000pt;}
.y21{bottom:180.573333pt;}
.y38{bottom:183.520000pt;}
.y8b{bottom:183.613333pt;}
.y6{bottom:184.546667pt;}
.y7b{bottom:184.573333pt;}
.y2e{bottom:185.026667pt;}
.y51{bottom:186.720000pt;}
.y67{bottom:195.840000pt;}
.y5f{bottom:198.466667pt;}
.y13{bottom:199.586667pt;}
.y50{bottom:209.120000pt;}
.y20{bottom:212.573333pt;}
.y3b{bottom:212.866667pt;}
.y2d{bottom:215.746667pt;}
.y4c{bottom:217.760000pt;}
.y7a{bottom:217.893333pt;}
.y8a{bottom:223.653333pt;}
.y6b{bottom:224.480000pt;}
.y5{bottom:227.746667pt;}
.y12{bottom:230.306667pt;}
.y46{bottom:231.426667pt;}
.y95{bottom:231.906667pt;}
.y5e{bottom:235.906667pt;}
.y1f{bottom:244.573333pt;}
.y2c{bottom:246.466667pt;}
.y89{bottom:255.653333pt;}
.y79{bottom:260.773333pt;}
.y11{bottom:261.026667pt;}
.y45{bottom:269.853333pt;}
.y94{bottom:270.333333pt;}
.y4{bottom:270.973333pt;}
.y68{bottom:275.520000pt;}
.y1e{bottom:276.573333pt;}
.y34{bottom:277.213333pt;}
.y48{bottom:277.253333pt;}
.y5d{bottom:281.693333pt;}
.y2b{bottom:286.466667pt;}
.y88{bottom:287.653333pt;}
.y10{bottom:291.773333pt;}
.y78{bottom:299.173333pt;}
.y44{bottom:308.253333pt;}
.y1d{bottom:308.613333pt;}
.y93{bottom:308.733333pt;}
.y3{bottom:314.173333pt;}
.y2a{bottom:315.613333pt;}
.y5c{bottom:319.133333pt;}
.y87{bottom:319.653333pt;}
.y4e{bottom:320.773333pt;}
.yf{bottom:330.173333pt;}
.y1c{bottom:340.613333pt;}
.y33{bottom:342.880000pt;}
.y55{bottom:346.080000pt;}
.y29{bottom:346.333333pt;}
.y43{bottom:346.653333pt;}
.y77{bottom:347.200000pt;}
.y47{bottom:350.400000pt;}
.y69{bottom:355.226667pt;}
.y86{bottom:359.680000pt;}
.ye{bottom:360.893333pt;}
.y5b{bottom:364.893333pt;}
.y28{bottom:377.053333pt;}
.y1b{bottom:380.613333pt;}
.y54{bottom:384.480000pt;}
.y42{bottom:385.093333pt;}
.y92{bottom:385.573333pt;}
.y76{bottom:385.600000pt;}
.yd{bottom:391.613333pt;}
.y85{bottom:391.680000pt;}
.y5a{bottom:402.373333pt;}
.y37{bottom:404.386667pt;}
.y1a{bottom:412.640000pt;}
.y4b{bottom:413.280000pt;}
.yc{bottom:422.373333pt;}
.y53{bottom:422.880000pt;}
.y41{bottom:423.493333pt;}
.y84{bottom:423.680000pt;}
.y91{bottom:423.973333pt;}
.y75{bottom:424.000000pt;}
.y19{bottom:444.640000pt;}
.y27{bottom:445.893333pt;}
.y59{bottom:448.133333pt;}
.y2{bottom:451.266667pt;}
.yb{bottom:453.093333pt;}
.y52{bottom:461.280000pt;}
.y90{bottom:462.373333pt;}
.y74{bottom:462.400000pt;}
.y83{bottom:463.680000pt;}
.y18{bottom:476.640000pt;}
.ya{bottom:483.813333pt;}
.y58{bottom:485.573333pt;}
.y82{bottom:495.706667pt;}
.y3c{bottom:496.293333pt;}
.y36{bottom:506.626667pt;}
.y4f{bottom:510.626667pt;}
.y4a{bottom:511.680000pt;}
.y26{bottom:514.693333pt;}
.y17{bottom:516.640000pt;}
.y1{bottom:521.666667pt;}
.y81{bottom:527.706667pt;}
.y25{bottom:547.013333pt;}
.y16{bottom:548.666667pt;}
.y73{bottom:565.533333pt;}
.y63{bottom:575.933333pt;}
.y40{bottom:576.253333pt;}
.y35{bottom:581.693333pt;}
.y49{bottom:589.253333pt;}
.y57{bottom:598.173333pt;}
.y8f{bottom:610.240000pt;}
.y9{bottom:611.453333pt;}
.y72{bottom:616.733333pt;}
.y80{bottom:625.893333pt;}
.y62{bottom:645.213333pt;}
.y3f{bottom:646.653333pt;}
.y71{bottom:667.973333pt;}
.y56{bottom:668.573333pt;}
.h1c{height:36.805312pt;}
.h1b{height:44.343750pt;}
.h10{height:51.882187pt;}
.h1d{height:51.970875pt;}
.he{height:74.054063pt;}
.h13{height:74.142750pt;}
.h5{height:88.687500pt;}
.h6{height:88.776188pt;}
.h11{height:91.625000pt;}
.h8{height:92.235000pt;}
.ha{height:92.323687pt;}
.h9{height:95.290000pt;}
.h7{height:95.381625pt;}
.h15{height:96.225938pt;}
.h17{height:96.314625pt;}
.h14{height:99.413125pt;}
.h16{height:99.504750pt;}
.h3{height:99.773438pt;}
.h4{height:99.862125pt;}
.hb{height:105.562500pt;}
.hd{height:105.668063pt;}
.h21{height:110.859375pt;}
.h22{height:110.948062pt;}
.h20{height:114.531250pt;}
.h1f{height:118.397812pt;}
.h1e{height:118.486500pt;}
.h1{height:162.741562pt;}
.h2{height:162.830250pt;}
.h18{height:192.789687pt;}
.h19{height:192.894750pt;}
.hf{height:224.000000pt;}
.h12{height:369.600000pt;}
.hc{height:377.120000pt;}
.h1a{height:377.920000pt;}
.h0{height:720.000000pt;}
.w3{width:339.200000pt;}
.w4{width:453.600000pt;}
.w5{width:665.280000pt;}
.w2{width:907.200000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xf{left:9.599986pt;}
.x1b{left:12.351986pt;}
.x26{left:18.591986pt;}
.x32{left:24.671986pt;}
.x13{left:26.400000pt;}
.x14{left:30.176000pt;}
.x27{left:31.071986pt;}
.x1c{left:33.151986pt;}
.x1f{left:43.583986pt;}
.x11{left:45.599986pt;}
.x3a{left:51.135986pt;}
.xc{left:57.599986pt;}
.x33{left:58.495986pt;}
.x2f{left:59.773333pt;}
.x10{left:63.679986pt;}
.x20{left:79.583986pt;}
.x2{left:86.655986pt;}
.x24{left:89.471986pt;}
.x2b{left:91.583986pt;}
.xd{left:93.631986pt;}
.x36{left:94.687986pt;}
.x28{left:96.575986pt;}
.x34{left:101.215986pt;}
.x3c{left:104.063986pt;}
.x37{left:106.719986pt;}
.x12{left:117.471986pt;}
.x2c{left:121.663986pt;}
.x2d{left:130.815986pt;}
.x38{left:136.799986pt;}
.x30{left:138.906667pt;}
.x2a{left:142.173319pt;}
.x6{left:149.506652pt;}
.x1e{left:155.293319pt;}
.x2e{left:163.293319pt;}
.x1{left:169.213319pt;}
.x9{left:184.159986pt;}
.x1d{left:211.773319pt;}
.xa{left:220.159986pt;}
.x7{left:222.333319pt;}
.x3{left:267.773319pt;}
.x4{left:269.853319pt;}
.x15{left:292.293319pt;}
.x5{left:300.253319pt;}
.xe{left:305.253319pt;}
.x3b{left:309.693319pt;}
.xb{left:313.093319pt;}
.x39{left:320.773319pt;}
.x21{left:371.039986pt;}
.x29{left:378.853319pt;}
.x35{left:399.973319pt;}
.x8{left:436.453319pt;}
.x19{left:448.933319pt;}
.x18{left:462.533319pt;}
.x17{left:464.293319pt;}
.x16{left:484.959986pt;}
.x23{left:521.533319pt;}
.x22{left:542.213319pt;}
.x31{left:566.240000pt;}
.x25{left:789.253319pt;}
.x1a{left:796.159986pt;}
}




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