
    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_183bf2b4734d46211527e0d6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.251953;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_737c0455184eddb1dc0ad5cf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.251953;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_38efe18dfa8623386c85fddf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172363;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_87cfc20eae5ab0fd774aeb5d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.152133;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_680e91d6584257af085be427.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.180533;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_d1c65e9e68fc0c9e9008f7e6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.180533;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_9b39f9b90c6a8b4138ad77bc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.152133;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_061edc115480302e4b478cde.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.963000;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_b313e620c62db9e1060bbbba.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.963000;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:ffa;src:url('chunks/assets/font_6e51d40d418592134a00402a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064000;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:ffb;src:url('chunks/assets/font_ca14cd37e20af56d8a1614d2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.064000;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:ffc;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_527fb50aec1c0a2407d54c65.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.909180;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:ffe;src:url('chunks/assets/font_68ab582b72be34b57e4460d3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.903809;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;}
.ls6{letter-spacing:-0.314400px;}
.lsb{letter-spacing:-0.172200px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.009360px;}
.ls1a{letter-spacing:0.012240px;}
.lsa{letter-spacing:0.030240px;}
.ls9{letter-spacing:0.056160px;}
.ls1c{letter-spacing:0.072600px;}
.ls0{letter-spacing:0.115200px;}
.lsf{letter-spacing:0.126600px;}
.ls8{letter-spacing:0.137400px;}
.ls18{letter-spacing:0.148800px;}
.ls5{letter-spacing:0.154800px;}
.ls15{letter-spacing:0.210240px;}
.ls13{letter-spacing:0.417600px;}
.ls14{letter-spacing:0.517680px;}
.ls2{letter-spacing:0.522000px;}
.lsc{letter-spacing:0.547800px;}
.ls1b{letter-spacing:0.618000px;}
.ls3{letter-spacing:1.318320px;}
.ls1{letter-spacing:2.038320px;}
.lsd{letter-spacing:6.358320px;}
.ls12{letter-spacing:7.078320px;}
.ls16{letter-spacing:9.958320px;}
.lse{letter-spacing:17.158320px;}
.ls17{letter-spacing:24.358320px;}
.ls11{letter-spacing:46.678320px;}
.ls10{letter-spacing:61.866720px;}
.ls19{letter-spacing:849.360000px;}
.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;}
}
.ws4{word-spacing:-17.884800px;}
.ws5{word-spacing:-16.135200px;}
.ws9{word-spacing:-15.069480px;}
.wsb{word-spacing:-14.670480px;}
.wsc{word-spacing:-14.594280px;}
.ws6{word-spacing:-14.577840px;}
.wsa{word-spacing:-14.533920px;}
.ws3{word-spacing:-14.521680px;}
.ws8{word-spacing:-14.349480px;}
.ws1{word-spacing:-12.465360px;}
.ws0{word-spacing:-12.310560px;}
.ws2{word-spacing:-11.996160px;}
.ws7{word-spacing:0.000000px;}
._d{margin-left:-3.824640px;}
._8{margin-left:-2.689200px;}
._4{margin-left:-1.457280px;}
._0{width:1.015920px;}
._3{width:2.250480px;}
._9{width:3.466080px;}
._6{width:5.438160px;}
._7{width:6.454080px;}
._5{width:7.556160px;}
._f{width:8.605440px;}
._c{width:10.380240px;}
._b{width:11.653200px;}
._10{width:12.728880px;}
._a{width:15.776640px;}
._12{width:17.210880px;}
._1e{width:18.406080px;}
._e{width:20.139120px;}
._1d{width:21.812400px;}
._28{width:22.888080px;}
._2a{width:23.904000px;}
._11{width:25.099200px;}
._21{width:27.250560px;}
._1c{width:28.625040px;}
._27{width:30.238560px;}
._29{width:31.613040px;}
._13{width:32.808240px;}
._2c{width:34.362000px;}
._26{width:35.557200px;}
._23{width:37.230480px;}
._1a{width:38.724480px;}
._17{width:41.592960px;}
._32{width:43.505280px;}
._16{width:45.955440px;}
._2e{width:47.921040px;}
._20{width:53.784000px;}
._19{width:60.477120px;}
._14{width:70.397280px;}
._15{width:71.831520px;}
._24{width:74.460960px;}
._25{width:75.536640px;}
._31{width:77.329440px;}
._18{width:79.421040px;}
._1f{width:86.472720px;}
._1b{width:89.221680px;}
._22{width:96.990480px;}
._2d{width:131.175600px;}
._1{width:205.041360px;}
._33{width:222.187680px;}
._2f{width:281.230560px;}
._2b{width:817.969440px;}
._2{width:820.129440px;}
._30{width:823.729440px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y86{bottom:4.140000px;}
.y5c{bottom:4.320000px;}
.y5e{bottom:4.494000px;}
.y61{bottom:4.500000px;}
.y5{bottom:10.260000px;}
.y84{bottom:14.040000px;}
.y81{bottom:14.220000px;}
.y5a{bottom:14.400000px;}
.y80{bottom:23.940000px;}
.y5b{bottom:24.300000px;}
.y83{bottom:33.660000px;}
.y96{bottom:33.840000px;}
.y9c{bottom:33.876000px;}
.y85{bottom:43.560000px;}
.y9b{bottom:43.596000px;}
.y98{bottom:43.740000px;}
.y88{bottom:63.360000px;}
.y62{bottom:89.460000px;}
.y9d{bottom:89.820000px;}
.y6d{bottom:102.240000px;}
.y60{bottom:105.660000px;}
.y9a{bottom:106.020000px;}
.y36{bottom:108.540000px;}
.yba{bottom:108.900000px;}
.y6c{bottom:122.040000px;}
.y5f{bottom:126.360000px;}
.y35{bottom:128.520000px;}
.yb9{bottom:128.880000px;}
.y6b{bottom:141.696000px;}
.y5d{bottom:146.916000px;}
.y34{bottom:148.356000px;}
.yb8{bottom:148.716000px;}
.y6a{bottom:161.490000px;}
.y99{bottom:165.990000px;}
.y59{bottom:167.610000px;}
.y33{bottom:168.330000px;}
.yb7{bottom:168.690000px;}
.y69{bottom:181.110000px;}
.y32{bottom:188.130000px;}
.yb6{bottom:188.490000px;}
.y68{bottom:200.910000px;}
.y31{bottom:207.930000px;}
.yb5{bottom:208.470000px;}
.y58{bottom:212.430000px;}
.y67{bottom:220.530000px;}
.y97{bottom:225.750000px;}
.y30{bottom:227.910000px;}
.yb4{bottom:228.270000px;}
.y57{bottom:232.410000px;}
.y66{bottom:240.330000px;}
.y2f{bottom:247.710000px;}
.yb3{bottom:248.070000px;}
.y56{bottom:252.210000px;}
.y65{bottom:260.130000px;}
.y2e{bottom:267.690000px;}
.yb2{bottom:268.050000px;}
.y55{bottom:272.190000px;}
.y64{bottom:279.930000px;}
.y95{bottom:285.690000px;}
.y2d{bottom:287.490000px;}
.yb1{bottom:287.850000px;}
.y54{bottom:291.990000px;}
.y63{bottom:295.410000px;}
.y2c{bottom:307.290000px;}
.yb0{bottom:307.830000px;}
.y53{bottom:311.970000px;}
.y2b{bottom:327.270000px;}
.yaf{bottom:327.630000px;}
.y52{bottom:331.770000px;}
.yd5{bottom:337.530000px;}
.y94{bottom:345.630000px;}
.y2a{bottom:347.070000px;}
.yae{bottom:347.430000px;}
.y51{bottom:351.570000px;}
.yd4{bottom:357.510000px;}
.y29{bottom:367.050000px;}
.yad{bottom:367.410000px;}
.y50{bottom:371.550000px;}
.yd3{bottom:377.310000px;}
.y28{bottom:386.850000px;}
.yac{bottom:387.210000px;}
.y93{bottom:389.955000px;}
.y4f{bottom:391.395000px;}
.yd2{bottom:397.155000px;}
.y27{bottom:406.875000px;}
.yab{bottom:407.235000px;}
.y92{bottom:409.755000px;}
.y4e{bottom:411.375000px;}
.yd1{bottom:417.135000px;}
.y26{bottom:426.675000px;}
.y4d{bottom:426.855000px;}
.yaa{bottom:427.035000px;}
.y91{bottom:429.375000px;}
.yd0{bottom:436.935000px;}
.y25{bottom:446.475000px;}
.ya9{bottom:447.015000px;}
.y90{bottom:449.175000px;}
.ycf{bottom:456.915000px;}
.y24{bottom:466.455000px;}
.ya8{bottom:466.815000px;}
.y8f{bottom:468.795000px;}
.yce{bottom:476.715000px;}
.y23{bottom:486.255000px;}
.ya7{bottom:486.615000px;}
.y8e{bottom:488.595000px;}
.ycd{bottom:496.695000px;}
.y22{bottom:506.235000px;}
.ya6{bottom:506.595000px;}
.y8d{bottom:508.215000px;}
.ycc{bottom:516.495000px;}
.y21{bottom:526.035000px;}
.ya5{bottom:526.395000px;}
.y8c{bottom:528.015000px;}
.ycb{bottom:536.295000px;}
.y20{bottom:545.835000px;}
.ya4{bottom:546.375000px;}
.y8b{bottom:547.635000px;}
.yca{bottom:556.275000px;}
.y1f{bottom:565.815000px;}
.ya3{bottom:566.175000px;}
.y8a{bottom:567.435000px;}
.yc9{bottom:576.075000px;}
.y89{bottom:583.635000px;}
.y1e{bottom:585.615000px;}
.ya2{bottom:585.975000px;}
.yc8{bottom:596.055000px;}
.y1d{bottom:605.595000px;}
.ya1{bottom:605.955000px;}
.yc7{bottom:615.855000px;}
.y1c{bottom:625.395000px;}
.ya0{bottom:625.755000px;}
.yc6{bottom:635.655000px;}
.y87{bottom:643.605000px;}
.y1b{bottom:645.405000px;}
.y9f{bottom:645.765000px;}
.yc5{bottom:655.665000px;}
.y1a{bottom:665.205000px;}
.y9e{bottom:665.565000px;}
.yc4{bottom:675.465000px;}
.y19{bottom:685.005000px;}
.y4c{bottom:685.545000px;}
.yc3{bottom:696.525000px;}
.y18{bottom:704.985000px;}
.y4b{bottom:705.345000px;}
.yc2{bottom:722.445000px;}
.y82{bottom:723.165000px;}
.y17{bottom:724.785000px;}
.y4a{bottom:725.145000px;}
.y16{bottom:744.765000px;}
.y49{bottom:745.125000px;}
.yc1{bottom:748.185000px;}
.y15{bottom:764.565000px;}
.y48{bottom:764.925000px;}
.yc0{bottom:773.205000px;}
.y7f{bottom:782.925000px;}
.y14{bottom:784.365000px;}
.y47{bottom:784.905000px;}
.ybf{bottom:795.165000px;}
.y13{bottom:804.345000px;}
.y46{bottom:804.705000px;}
.ybe{bottom:816.945000px;}
.y12{bottom:824.145000px;}
.y45{bottom:824.505000px;}
.y7e{bottom:827.385000px;}
.ybd{bottom:838.905000px;}
.y11{bottom:844.125000px;}
.y44{bottom:844.485000px;}
.y7d{bottom:847.185000px;}
.ybc{bottom:860.685000px;}
.y10{bottom:863.925000px;}
.y43{bottom:864.285000px;}
.y7c{bottom:866.805000px;}
.ybb{bottom:882.645000px;}
.yf{bottom:883.905000px;}
.y42{bottom:884.265000px;}
.y7b{bottom:886.605000px;}
.ye{bottom:903.750000px;}
.y41{bottom:904.110000px;}
.y7a{bottom:906.270000px;}
.yd{bottom:923.550000px;}
.y40{bottom:924.090000px;}
.y79{bottom:926.070000px;}
.y3f{bottom:943.890000px;}
.yc{bottom:944.610000px;}
.y78{bottom:945.690000px;}
.y3e{bottom:963.690000px;}
.y77{bottom:965.490000px;}
.yb{bottom:970.530000px;}
.y3d{bottom:983.670000px;}
.y76{bottom:985.110000px;}
.ya{bottom:996.270000px;}
.y3c{bottom:1003.470000px;}
.y75{bottom:1004.910000px;}
.y9{bottom:1021.470000px;}
.y3b{bottom:1023.450000px;}
.y74{bottom:1024.530000px;}
.y8{bottom:1043.250000px;}
.y73{bottom:1044.330000px;}
.y3a{bottom:1063.050000px;}
.y72{bottom:1063.950000px;}
.y7{bottom:1065.030000px;}
.y39{bottom:1083.030000px;}
.y71{bottom:1083.750000px;}
.y6{bottom:1086.630000px;}
.y38{bottom:1102.830000px;}
.y70{bottom:1103.370000px;}
.y4{bottom:1106.610000px;}
.y37{bottom:1122.810000px;}
.y6f{bottom:1123.170000px;}
.y3{bottom:1142.610000px;}
.y6e{bottom:1142.790000px;}
.y2{bottom:1162.620000px;}
.y1{bottom:1194.120000px;}
.hd{height:19.836000px;}
.hc{height:19.980000px;}
.h4{height:31.680000px;}
.he{height:39.420000px;}
.hb{height:39.780000px;}
.ha{height:45.059040px;}
.h9{height:49.839840px;}
.h3{height:52.656528px;}
.h8{height:53.517072px;}
.h5{height:58.366272px;}
.hf{height:59.040000px;}
.h11{height:59.076000px;}
.h12{height:59.220000px;}
.h6{height:59.320128px;}
.h2{height:59.439023px;}
.h7{height:69.636672px;}
.h13{height:74.116406px;}
.h10{height:78.840000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:50.400000px;}
.w4{width:190.290000px;}
.w8{width:190.650000px;}
.wa{width:200.955000px;}
.w7{width:232.815000px;}
.wb{width:243.750000px;}
.w5{width:243.795000px;}
.wc{width:275.070000px;}
.w6{width:285.870000px;}
.w9{width:296.490000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x2e{left:9.180000px;}
.x27{left:10.476000px;}
.x31{left:11.700000px;}
.x23{left:12.816000px;}
.x29{left:14.040000px;}
.x14{left:15.525000px;}
.x16{left:17.280000px;}
.x3a{left:18.540000px;}
.x2f{left:19.620000px;}
.x3f{left:20.916000px;}
.x2b{left:22.500000px;}
.x1c{left:23.805000px;}
.x3d{left:29.520000px;}
.x2c{left:34.776000px;}
.x36{left:36.540000px;}
.x38{left:39.960000px;}
.x4{left:42.300000px;}
.x17{left:44.640000px;}
.x3c{left:45.756000px;}
.x1e{left:48.420000px;}
.x1a{left:49.680000px;}
.x28{left:51.660000px;}
.x39{left:53.856000px;}
.x2d{left:63.216000px;}
.x1d{left:64.665000px;}
.x19{left:67.545000px;}
.x3b{left:69.660000px;}
.x2a{left:71.130000px;}
.x1b{left:74.550000px;}
.x40{left:75.960000px;}
.x30{left:77.400000px;}
.x32{left:79.380000px;}
.x18{left:83.190000px;}
.x1{left:84.959987px;}
.x3e{left:92.160000px;}
.xc{left:106.235987px;}
.x26{left:110.880000px;}
.x8{left:116.495987px;}
.x21{left:130.355987px;}
.x44{left:137.015987px;}
.x22{left:139.895987px;}
.x20{left:146.735987px;}
.xb{left:157.709987px;}
.x9{left:185.429987px;}
.x46{left:192.449987px;}
.x45{left:223.229987px;}
.x34{left:225.929987px;}
.x10{left:236.009987px;}
.x33{left:239.069987px;}
.x12{left:245.909987px;}
.xa{left:268.589987px;}
.x13{left:276.870000px;}
.x35{left:287.535000px;}
.x24{left:319.395000px;}
.x7{left:322.274987px;}
.x3{left:326.235000px;}
.x43{left:360.794987px;}
.x5{left:376.635000px;}
.x2{left:446.474987px;}
.x47{left:457.094987px;}
.xd{left:473.504987px;}
.xe{left:494.744987px;}
.x25{left:510.945000px;}
.x15{left:521.565000px;}
.x37{left:532.185000px;}
.x42{left:596.804987px;}
.x41{left:640.724987px;}
.x1f{left:669.209987px;}
.x11{left:737.249987px;}
.xf{left:755.789987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.279467pt;}
.lsb{letter-spacing:-0.153067pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.008320pt;}
.ls1a{letter-spacing:0.010880pt;}
.lsa{letter-spacing:0.026880pt;}
.ls9{letter-spacing:0.049920pt;}
.ls1c{letter-spacing:0.064533pt;}
.ls0{letter-spacing:0.102400pt;}
.lsf{letter-spacing:0.112533pt;}
.ls8{letter-spacing:0.122133pt;}
.ls18{letter-spacing:0.132267pt;}
.ls5{letter-spacing:0.137600pt;}
.ls15{letter-spacing:0.186880pt;}
.ls13{letter-spacing:0.371200pt;}
.ls14{letter-spacing:0.460160pt;}
.ls2{letter-spacing:0.464000pt;}
.lsc{letter-spacing:0.486933pt;}
.ls1b{letter-spacing:0.549333pt;}
.ls3{letter-spacing:1.171840pt;}
.ls1{letter-spacing:1.811840pt;}
.lsd{letter-spacing:5.651840pt;}
.ls12{letter-spacing:6.291840pt;}
.ls16{letter-spacing:8.851840pt;}
.lse{letter-spacing:15.251840pt;}
.ls17{letter-spacing:21.651840pt;}
.ls11{letter-spacing:41.491840pt;}
.ls10{letter-spacing:54.992640pt;}
.ls19{letter-spacing:754.986667pt;}
.ws4{word-spacing:-15.897600pt;}
.ws5{word-spacing:-14.342400pt;}
.ws9{word-spacing:-13.395093pt;}
.wsb{word-spacing:-13.040427pt;}
.wsc{word-spacing:-12.972693pt;}
.ws6{word-spacing:-12.958080pt;}
.wsa{word-spacing:-12.919040pt;}
.ws3{word-spacing:-12.908160pt;}
.ws8{word-spacing:-12.755093pt;}
.ws1{word-spacing:-11.080320pt;}
.ws0{word-spacing:-10.942720pt;}
.ws2{word-spacing:-10.663253pt;}
.ws7{word-spacing:0.000000pt;}
._d{margin-left:-3.399680pt;}
._8{margin-left:-2.390400pt;}
._4{margin-left:-1.295360pt;}
._0{width:0.903040pt;}
._3{width:2.000427pt;}
._9{width:3.080960pt;}
._6{width:4.833920pt;}
._7{width:5.736960pt;}
._5{width:6.716587pt;}
._f{width:7.649280pt;}
._c{width:9.226880pt;}
._b{width:10.358400pt;}
._10{width:11.314560pt;}
._a{width:14.023680pt;}
._12{width:15.298560pt;}
._1e{width:16.360960pt;}
._e{width:17.901440pt;}
._1d{width:19.388800pt;}
._28{width:20.344960pt;}
._2a{width:21.248000pt;}
._11{width:22.310400pt;}
._21{width:24.222720pt;}
._1c{width:25.444480pt;}
._27{width:26.878720pt;}
._29{width:28.100480pt;}
._13{width:29.162880pt;}
._2c{width:30.544000pt;}
._26{width:31.606400pt;}
._23{width:33.093760pt;}
._1a{width:34.421760pt;}
._17{width:36.971520pt;}
._32{width:38.671360pt;}
._16{width:40.849280pt;}
._2e{width:42.596480pt;}
._20{width:47.808000pt;}
._19{width:53.757440pt;}
._14{width:62.575360pt;}
._15{width:63.850240pt;}
._24{width:66.187520pt;}
._25{width:67.143680pt;}
._31{width:68.737280pt;}
._18{width:70.596480pt;}
._1f{width:76.864640pt;}
._1b{width:79.308160pt;}
._22{width:86.213760pt;}
._2d{width:116.600533pt;}
._1{width:182.258987pt;}
._33{width:197.500160pt;}
._2f{width:249.982720pt;}
._2b{width:727.083947pt;}
._2{width:729.003947pt;}
._30{width:732.203947pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:3.680000pt;}
.y5c{bottom:3.840000pt;}
.y5e{bottom:3.994667pt;}
.y61{bottom:4.000000pt;}
.y5{bottom:9.120000pt;}
.y84{bottom:12.480000pt;}
.y81{bottom:12.640000pt;}
.y5a{bottom:12.800000pt;}
.y80{bottom:21.280000pt;}
.y5b{bottom:21.600000pt;}
.y83{bottom:29.920000pt;}
.y96{bottom:30.080000pt;}
.y9c{bottom:30.112000pt;}
.y85{bottom:38.720000pt;}
.y9b{bottom:38.752000pt;}
.y98{bottom:38.880000pt;}
.y88{bottom:56.320000pt;}
.y62{bottom:79.520000pt;}
.y9d{bottom:79.840000pt;}
.y6d{bottom:90.880000pt;}
.y60{bottom:93.920000pt;}
.y9a{bottom:94.240000pt;}
.y36{bottom:96.480000pt;}
.yba{bottom:96.800000pt;}
.y6c{bottom:108.480000pt;}
.y5f{bottom:112.320000pt;}
.y35{bottom:114.240000pt;}
.yb9{bottom:114.560000pt;}
.y6b{bottom:125.952000pt;}
.y5d{bottom:130.592000pt;}
.y34{bottom:131.872000pt;}
.yb8{bottom:132.192000pt;}
.y6a{bottom:143.546667pt;}
.y99{bottom:147.546667pt;}
.y59{bottom:148.986667pt;}
.y33{bottom:149.626667pt;}
.yb7{bottom:149.946667pt;}
.y69{bottom:160.986667pt;}
.y32{bottom:167.226667pt;}
.yb6{bottom:167.546667pt;}
.y68{bottom:178.586667pt;}
.y31{bottom:184.826667pt;}
.yb5{bottom:185.306667pt;}
.y58{bottom:188.826667pt;}
.y67{bottom:196.026667pt;}
.y97{bottom:200.666667pt;}
.y30{bottom:202.586667pt;}
.yb4{bottom:202.906667pt;}
.y57{bottom:206.586667pt;}
.y66{bottom:213.626667pt;}
.y2f{bottom:220.186667pt;}
.yb3{bottom:220.506667pt;}
.y56{bottom:224.186667pt;}
.y65{bottom:231.226667pt;}
.y2e{bottom:237.946667pt;}
.yb2{bottom:238.266667pt;}
.y55{bottom:241.946667pt;}
.y64{bottom:248.826667pt;}
.y95{bottom:253.946667pt;}
.y2d{bottom:255.546667pt;}
.yb1{bottom:255.866667pt;}
.y54{bottom:259.546667pt;}
.y63{bottom:262.586667pt;}
.y2c{bottom:273.146667pt;}
.yb0{bottom:273.626667pt;}
.y53{bottom:277.306667pt;}
.y2b{bottom:290.906667pt;}
.yaf{bottom:291.226667pt;}
.y52{bottom:294.906667pt;}
.yd5{bottom:300.026667pt;}
.y94{bottom:307.226667pt;}
.y2a{bottom:308.506667pt;}
.yae{bottom:308.826667pt;}
.y51{bottom:312.506667pt;}
.yd4{bottom:317.786667pt;}
.y29{bottom:326.266667pt;}
.yad{bottom:326.586667pt;}
.y50{bottom:330.266667pt;}
.yd3{bottom:335.386667pt;}
.y28{bottom:343.866667pt;}
.yac{bottom:344.186667pt;}
.y93{bottom:346.626667pt;}
.y4f{bottom:347.906667pt;}
.yd2{bottom:353.026667pt;}
.y27{bottom:361.666667pt;}
.yab{bottom:361.986667pt;}
.y92{bottom:364.226667pt;}
.y4e{bottom:365.666667pt;}
.yd1{bottom:370.786667pt;}
.y26{bottom:379.266667pt;}
.y4d{bottom:379.426667pt;}
.yaa{bottom:379.586667pt;}
.y91{bottom:381.666667pt;}
.yd0{bottom:388.386667pt;}
.y25{bottom:396.866667pt;}
.ya9{bottom:397.346667pt;}
.y90{bottom:399.266667pt;}
.ycf{bottom:406.146667pt;}
.y24{bottom:414.626667pt;}
.ya8{bottom:414.946667pt;}
.y8f{bottom:416.706667pt;}
.yce{bottom:423.746667pt;}
.y23{bottom:432.226667pt;}
.ya7{bottom:432.546667pt;}
.y8e{bottom:434.306667pt;}
.ycd{bottom:441.506667pt;}
.y22{bottom:449.986667pt;}
.ya6{bottom:450.306667pt;}
.y8d{bottom:451.746667pt;}
.ycc{bottom:459.106667pt;}
.y21{bottom:467.586667pt;}
.ya5{bottom:467.906667pt;}
.y8c{bottom:469.346667pt;}
.ycb{bottom:476.706667pt;}
.y20{bottom:485.186667pt;}
.ya4{bottom:485.666667pt;}
.y8b{bottom:486.786667pt;}
.yca{bottom:494.466667pt;}
.y1f{bottom:502.946667pt;}
.ya3{bottom:503.266667pt;}
.y8a{bottom:504.386667pt;}
.yc9{bottom:512.066667pt;}
.y89{bottom:518.786667pt;}
.y1e{bottom:520.546667pt;}
.ya2{bottom:520.866667pt;}
.yc8{bottom:529.826667pt;}
.y1d{bottom:538.306667pt;}
.ya1{bottom:538.626667pt;}
.yc7{bottom:547.426667pt;}
.y1c{bottom:555.906667pt;}
.ya0{bottom:556.226667pt;}
.yc6{bottom:565.026667pt;}
.y87{bottom:572.093333pt;}
.y1b{bottom:573.693333pt;}
.y9f{bottom:574.013333pt;}
.yc5{bottom:582.813333pt;}
.y1a{bottom:591.293333pt;}
.y9e{bottom:591.613333pt;}
.yc4{bottom:600.413333pt;}
.y19{bottom:608.893333pt;}
.y4c{bottom:609.373333pt;}
.yc3{bottom:619.133333pt;}
.y18{bottom:626.653333pt;}
.y4b{bottom:626.973333pt;}
.yc2{bottom:642.173333pt;}
.y82{bottom:642.813333pt;}
.y17{bottom:644.253333pt;}
.y4a{bottom:644.573333pt;}
.y16{bottom:662.013333pt;}
.y49{bottom:662.333333pt;}
.yc1{bottom:665.053333pt;}
.y15{bottom:679.613333pt;}
.y48{bottom:679.933333pt;}
.yc0{bottom:687.293333pt;}
.y7f{bottom:695.933333pt;}
.y14{bottom:697.213333pt;}
.y47{bottom:697.693333pt;}
.ybf{bottom:706.813333pt;}
.y13{bottom:714.973333pt;}
.y46{bottom:715.293333pt;}
.ybe{bottom:726.173333pt;}
.y12{bottom:732.573333pt;}
.y45{bottom:732.893333pt;}
.y7e{bottom:735.453333pt;}
.ybd{bottom:745.693333pt;}
.y11{bottom:750.333333pt;}
.y44{bottom:750.653333pt;}
.y7d{bottom:753.053333pt;}
.ybc{bottom:765.053333pt;}
.y10{bottom:767.933333pt;}
.y43{bottom:768.253333pt;}
.y7c{bottom:770.493333pt;}
.ybb{bottom:784.573333pt;}
.yf{bottom:785.693333pt;}
.y42{bottom:786.013333pt;}
.y7b{bottom:788.093333pt;}
.ye{bottom:803.333333pt;}
.y41{bottom:803.653333pt;}
.y7a{bottom:805.573333pt;}
.yd{bottom:820.933333pt;}
.y40{bottom:821.413333pt;}
.y79{bottom:823.173333pt;}
.y3f{bottom:839.013333pt;}
.yc{bottom:839.653333pt;}
.y78{bottom:840.613333pt;}
.y3e{bottom:856.613333pt;}
.y77{bottom:858.213333pt;}
.yb{bottom:862.693333pt;}
.y3d{bottom:874.373333pt;}
.y76{bottom:875.653333pt;}
.ya{bottom:885.573333pt;}
.y3c{bottom:891.973333pt;}
.y75{bottom:893.253333pt;}
.y9{bottom:907.973333pt;}
.y3b{bottom:909.733333pt;}
.y74{bottom:910.693333pt;}
.y8{bottom:927.333333pt;}
.y73{bottom:928.293333pt;}
.y3a{bottom:944.933333pt;}
.y72{bottom:945.733333pt;}
.y7{bottom:946.693333pt;}
.y39{bottom:962.693333pt;}
.y71{bottom:963.333333pt;}
.y6{bottom:965.893333pt;}
.y38{bottom:980.293333pt;}
.y70{bottom:980.773333pt;}
.y4{bottom:983.653333pt;}
.y37{bottom:998.053333pt;}
.y6f{bottom:998.373333pt;}
.y3{bottom:1015.653333pt;}
.y6e{bottom:1015.813333pt;}
.y2{bottom:1033.440000pt;}
.y1{bottom:1061.440000pt;}
.hd{height:17.632000pt;}
.hc{height:17.760000pt;}
.h4{height:28.160000pt;}
.he{height:35.040000pt;}
.hb{height:35.360000pt;}
.ha{height:40.052480pt;}
.h9{height:44.302080pt;}
.h3{height:46.805803pt;}
.h8{height:47.570731pt;}
.h5{height:51.881131pt;}
.hf{height:52.480000pt;}
.h11{height:52.512000pt;}
.h12{height:52.640000pt;}
.h6{height:52.729003pt;}
.h2{height:52.834688pt;}
.h7{height:61.899264pt;}
.h13{height:65.881250pt;}
.h10{height:70.080000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:44.800000pt;}
.w4{width:169.146667pt;}
.w8{width:169.466667pt;}
.wa{width:178.626667pt;}
.w7{width:206.946667pt;}
.wb{width:216.666667pt;}
.w5{width:216.706667pt;}
.wc{width:244.506667pt;}
.w6{width:254.106667pt;}
.w9{width:263.546667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x2e{left:8.160000pt;}
.x27{left:9.312000pt;}
.x31{left:10.400000pt;}
.x23{left:11.392000pt;}
.x29{left:12.480000pt;}
.x14{left:13.800000pt;}
.x16{left:15.360000pt;}
.x3a{left:16.480000pt;}
.x2f{left:17.440000pt;}
.x3f{left:18.592000pt;}
.x2b{left:20.000000pt;}
.x1c{left:21.160000pt;}
.x3d{left:26.240000pt;}
.x2c{left:30.912000pt;}
.x36{left:32.480000pt;}
.x38{left:35.520000pt;}
.x4{left:37.600000pt;}
.x17{left:39.680000pt;}
.x3c{left:40.672000pt;}
.x1e{left:43.040000pt;}
.x1a{left:44.160000pt;}
.x28{left:45.920000pt;}
.x39{left:47.872000pt;}
.x2d{left:56.192000pt;}
.x1d{left:57.480000pt;}
.x19{left:60.040000pt;}
.x3b{left:61.920000pt;}
.x2a{left:63.226667pt;}
.x1b{left:66.266667pt;}
.x40{left:67.520000pt;}
.x30{left:68.800000pt;}
.x32{left:70.560000pt;}
.x18{left:73.946667pt;}
.x1{left:75.519988pt;}
.x3e{left:81.920000pt;}
.xc{left:94.431988pt;}
.x26{left:98.560000pt;}
.x8{left:103.551988pt;}
.x21{left:115.871988pt;}
.x44{left:121.791988pt;}
.x22{left:124.351988pt;}
.x20{left:130.431988pt;}
.xb{left:140.186655pt;}
.x9{left:164.826655pt;}
.x46{left:171.066655pt;}
.x45{left:198.426655pt;}
.x34{left:200.826655pt;}
.x10{left:209.786655pt;}
.x33{left:212.506655pt;}
.x12{left:218.586655pt;}
.xa{left:238.746655pt;}
.x13{left:246.106667pt;}
.x35{left:255.586667pt;}
.x24{left:283.906667pt;}
.x7{left:286.466655pt;}
.x3{left:289.986667pt;}
.x43{left:320.706655pt;}
.x5{left:334.786667pt;}
.x2{left:396.866655pt;}
.x47{left:406.306655pt;}
.xd{left:420.893322pt;}
.xe{left:439.773322pt;}
.x25{left:454.173333pt;}
.x15{left:463.613333pt;}
.x37{left:473.053333pt;}
.x42{left:530.493322pt;}
.x41{left:569.533322pt;}
.x1f{left:594.853322pt;}
.x11{left:655.333322pt;}
.xf{left:671.813322pt;}
}




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