
    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_352d0b159364715533cde8b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.087402;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_b4d18a92ff8584d724edfb76.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.927246;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_ee68194d96cf63568a1a2144.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_bd40ae9a4175ee26c11dd7b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927734;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);}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.976000px;}
.v4{vertical-align:21.978000px;}
.v2{vertical-align:25.974000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.009186px;}
.ls0{letter-spacing:0.016200px;}
.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;}
}
.ws3{word-spacing:-14.520000px;}
.ws0{word-spacing:-13.860000px;}
.ws7{word-spacing:-11.880000px;}
.ws2{word-spacing:-10.004280px;}
.ws6{word-spacing:-8.465160px;}
.ws4{word-spacing:-6.926040px;}
.ws1{word-spacing:-0.032400px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-7.363200px;}
._f{margin-left:-5.500632px;}
._e{margin-left:-4.290300px;}
._1{margin-left:-2.753100px;}
._0{margin-left:-1.694700px;}
._2{width:1.669500px;}
._d{width:2.923572px;}
._9{width:4.281900px;}
._5{width:5.610000px;}
._6{width:6.692400px;}
._10{width:8.613000px;}
._11{width:9.654000px;}
._b{width:10.657500px;}
._c{width:11.993700px;}
._4{width:13.504500px;}
._14{width:15.714600px;}
._8{width:17.001600px;}
._7{width:18.240900px;}
._12{width:19.692900px;}
._13{width:20.803200px;}
._16{width:21.958200px;}
._a{width:24.446400px;}
._15{width:27.210300px;}
.fc1{color:rgb(19,16,15);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:31.482000px;}
.fs2{font-size:36.729000px;}
.fs8{font-size:38.478000px;}
.fs4{font-size:45.474000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:89.291400px;}
.y13d{bottom:123.327900px;}
.y52{bottom:123.419400px;}
.y10c{bottom:129.186900px;}
.y8d{bottom:131.736900px;}
.ybe{bottom:132.636900px;}
.y25{bottom:133.275900px;}
.ye5{bottom:133.653900px;}
.y51{bottom:139.619400px;}
.y13c{bottom:141.627900px;}
.yb3{bottom:144.114900px;}
.y10b{bottom:147.936900px;}
.y24{bottom:149.475900px;}
.y8c{bottom:150.186900px;}
.ybd{bottom:151.386900px;}
.y50{bottom:155.819400px;}
.ye4{bottom:156.149400px;}
.y13b{bottom:159.927900px;}
.y79{bottom:160.314900px;}
.yb2{bottom:165.786900px;}
.ye3{bottom:167.744400px;}
.y10a{bottom:168.186900px;}
.y8b{bottom:170.136900px;}
.y23{bottom:170.171400px;}
.y4f{bottom:172.019400px;}
.y13a{bottom:178.227900px;}
.ye2{bottom:183.944400px;}
.yb1{bottom:184.536900px;}
.y22{bottom:186.371400px;}
.y109{bottom:186.936900px;}
.y4e{bottom:188.219400px;}
.y78{bottom:188.886900px;}
.y14f{bottom:191.886900px;}
.y139{bottom:196.527900px;}
.ye1{bottom:200.144400px;}
.yb0{bottom:203.286900px;}
.y4d{bottom:204.419400px;}
.y108{bottom:205.686900px;}
.y77{bottom:207.636900px;}
.ybc{bottom:209.136900px;}
.y14e{bottom:210.636900px;}
.y138{bottom:214.827900px;}
.ye0{bottom:216.344400px;}
.y4c{bottom:220.619400px;}
.yaf{bottom:223.536900px;}
.y107{bottom:224.436900px;}
.y21{bottom:224.652900px;}
.y114{bottom:225.114900px;}
.y76{bottom:226.386900px;}
.ybb{bottom:227.886900px;}
.y14d{bottom:230.886900px;}
.ydf{bottom:232.544400px;}
.y137{bottom:233.127900px;}
.y4b{bottom:236.819400px;}
.yae{bottom:242.286900px;}
.y106{bottom:243.186900px;}
.y20{bottom:243.402900px;}
.y75{bottom:245.136900px;}
.yba{bottom:246.636900px;}
.yde{bottom:248.744400px;}
.y14c{bottom:249.636900px;}
.y136{bottom:251.427900px;}
.y4a{bottom:253.019400px;}
.yad{bottom:261.036900px;}
.y105{bottom:261.936900px;}
.y1f{bottom:262.152900px;}
.y74{bottom:263.886900px;}
.ydd{bottom:264.944400px;}
.yb9{bottom:265.386900px;}
.y14b{bottom:268.386900px;}
.y49{bottom:269.219400px;}
.y135{bottom:269.727900px;}
.yac{bottom:279.786900px;}
.y104{bottom:280.686900px;}
.ydc{bottom:281.144400px;}
.y73{bottom:282.636900px;}
.yb8{bottom:284.136900px;}
.y48{bottom:285.419400px;}
.y14a{bottom:287.136900px;}
.y134{bottom:288.027900px;}
.y1e{bottom:289.902900px;}
.ydb{bottom:297.344400px;}
.yab{bottom:298.536900px;}
.y103{bottom:299.436900px;}
.y72{bottom:301.386900px;}
.y47{bottom:301.619400px;}
.yb7{bottom:302.886900px;}
.y149{bottom:305.886900px;}
.y133{bottom:306.327900px;}
.y1d{bottom:308.652900px;}
.yaa{bottom:317.286900px;}
.y46{bottom:317.819400px;}
.yda{bottom:318.039900px;}
.y102{bottom:318.186900px;}
.y71{bottom:320.136900px;}
.yb6{bottom:321.636900px;}
.y132{bottom:324.627900px;}
.y148{bottom:326.136900px;}
.y1c{bottom:327.402900px;}
.y45{bottom:334.019400px;}
.ya9{bottom:336.036900px;}
.y101{bottom:336.936900px;}
.y70{bottom:338.886900px;}
.yb5{bottom:340.386900px;}
.y131{bottom:342.927900px;}
.y173{bottom:344.652900px;}
.y147{bottom:344.886900px;}
.yd9{bottom:345.486900px;}
.y169{bottom:345.636900px;}
.y1b{bottom:346.152900px;}
.y44{bottom:350.219400px;}
.ya8{bottom:354.786900px;}
.y100{bottom:355.686900px;}
.y6f{bottom:357.636900px;}
.yb4{bottom:359.136900px;}
.y130{bottom:361.227900px;}
.y172{bottom:363.402900px;}
.y168{bottom:364.386900px;}
.yd8{bottom:364.686900px;}
.y1a{bottom:364.902900px;}
.y146{bottom:365.136900px;}
.y43{bottom:366.419400px;}
.ya7{bottom:373.536900px;}
.yff{bottom:374.436900px;}
.y6e{bottom:376.386900px;}
.y8a{bottom:377.886900px;}
.y12f{bottom:379.527900px;}
.y171{bottom:382.152900px;}
.y42{bottom:382.619400px;}
.y167{bottom:383.136900px;}
.y19{bottom:383.652900px;}
.yd7{bottom:383.886900px;}
.yfe{bottom:393.186900px;}
.y6d{bottom:395.136900px;}
.y89{bottom:396.636900px;}
.y12e{bottom:397.827900px;}
.y113{bottom:398.136900px;}
.y41{bottom:398.819400px;}
.ya6{bottom:401.286900px;}
.y18{bottom:402.402900px;}
.y145{bottom:402.636900px;}
.yd6{bottom:403.086900px;}
.y166{bottom:403.386900px;}
.yfd{bottom:411.936900px;}
.y6c{bottom:413.886900px;}
.y88{bottom:415.386900px;}
.y112{bottom:416.886900px;}
.y12d{bottom:417.627900px;}
.y40{bottom:419.514900px;}
.ya5{bottom:420.036900px;}
.y17{bottom:421.152900px;}
.y165{bottom:422.136900px;}
.yd5{bottom:422.286900px;}
.y144{bottom:422.886900px;}
.yfc{bottom:430.686900px;}
.y3d{bottom:431.219400px;}
.y6b{bottom:434.136900px;}
.y111{bottom:435.636900px;}
.y12c{bottom:435.927900px;}
.y16{bottom:439.902900px;}
.y164{bottom:440.886900px;}
.yd4{bottom:441.486900px;}
.y143{bottom:441.636900px;}
.yfb{bottom:449.436900px;}
.y3c{bottom:451.914900px;}
.y6a{bottom:452.886900px;}
.y12b{bottom:454.227900px;}
.y110{bottom:454.386900px;}
.ya4{bottom:458.286900px;}
.y15{bottom:458.652900px;}
.y142{bottom:460.386900px;}
.yd3{bottom:460.686900px;}
.y163{bottom:461.136900px;}
.y3f{bottom:468.114900px;}
.yfa{bottom:468.186900px;}
.y69{bottom:471.636900px;}
.y12a{bottom:472.527900px;}
.y10f{bottom:473.136900px;}
.ya3{bottom:476.736900px;}
.y14{bottom:477.402900px;}
.yd2{bottom:479.886900px;}
.y141{bottom:480.636900px;}
.y3e{bottom:484.314900px;}
.yf9{bottom:486.936900px;}
.y68{bottom:490.386900px;}
.y129{bottom:490.827900px;}
.y10e{bottom:491.886900px;}
.ya2{bottom:495.186900px;}
.y13{bottom:496.152900px;}
.yd1{bottom:499.086900px;}
.y140{bottom:499.386900px;}
.y162{bottom:500.136900px;}
.yf8{bottom:505.686900px;}
.y3b{bottom:507.627900px;}
.y128{bottom:509.127900px;}
.y67{bottom:509.136900px;}
.y10d{bottom:510.636900px;}
.ya1{bottom:513.636900px;}
.y12{bottom:514.902900px;}
.y13f{bottom:518.136900px;}
.yd0{bottom:518.286900px;}
.y161{bottom:518.886900px;}
.yf7{bottom:525.936900px;}
.y3a{bottom:526.377900px;}
.y127{bottom:527.427900px;}
.y66{bottom:527.886900px;}
.y87{bottom:529.386900px;}
.ya0{bottom:532.086900px;}
.y11{bottom:533.652900px;}
.ycf{bottom:537.486900px;}
.y160{bottom:539.136900px;}
.yf6{bottom:544.686900px;}
.y39{bottom:545.127900px;}
.y126{bottom:545.727900px;}
.y13e{bottom:545.886900px;}
.y65{bottom:546.636900px;}
.y86{bottom:548.136900px;}
.y9f{bottom:552.036900px;}
.y10{bottom:552.402900px;}
.y15f{bottom:557.886900px;}
.yce{bottom:558.186900px;}
.yf5{bottom:563.436900px;}
.y38{bottom:563.877900px;}
.y125{bottom:564.027900px;}
.y64{bottom:565.386900px;}
.y85{bottom:566.886900px;}
.y9e{bottom:570.486900px;}
.yf{bottom:571.152900px;}
.ycd{bottom:577.386900px;}
.y15e{bottom:578.136900px;}
.yf4{bottom:582.186900px;}
.y124{bottom:582.327900px;}
.y37{bottom:582.627900px;}
.y63{bottom:584.136900px;}
.y84{bottom:585.636900px;}
.y9d{bottom:588.936900px;}
.ye{bottom:589.902900px;}
.ycc{bottom:596.586900px;}
.y15d{bottom:598.386900px;}
.y123{bottom:600.627900px;}
.yf3{bottom:600.936900px;}
.y36{bottom:601.377900px;}
.y62{bottom:602.886900px;}
.y83{bottom:604.386900px;}
.y9c{bottom:607.386900px;}
.yd{bottom:608.652900px;}
.ycb{bottom:615.786900px;}
.y15c{bottom:617.136900px;}
.y122{bottom:618.927900px;}
.yf2{bottom:619.686900px;}
.y35{bottom:620.127900px;}
.y61{bottom:621.636900px;}
.y82{bottom:623.136900px;}
.y9b{bottom:625.836900px;}
.y170{bottom:627.402900px;}
.yca{bottom:634.986900px;}
.y15b{bottom:635.886900px;}
.y121{bottom:637.227900px;}
.yf1{bottom:638.436900px;}
.y34{bottom:638.877900px;}
.y60{bottom:640.386900px;}
.y81{bottom:641.886900px;}
.y9a{bottom:644.286900px;}
.y16f{bottom:646.152900px;}
.yc9{bottom:654.186900px;}
.y120{bottom:655.527900px;}
.y15a{bottom:656.136900px;}
.yf0{bottom:657.186900px;}
.y33{bottom:657.627900px;}
.y5f{bottom:659.136900px;}
.y80{bottom:660.636900px;}
.y99{bottom:662.736900px;}
.y16e{bottom:664.902900px;}
.yc8{bottom:673.386900px;}
.y11f{bottom:673.827900px;}
.y159{bottom:674.886900px;}
.yef{bottom:675.936900px;}
.y32{bottom:677.877900px;}
.y5e{bottom:677.886900px;}
.y7f{bottom:679.386900px;}
.yc{bottom:679.902900px;}
.y98{bottom:681.186900px;}
.y16d{bottom:683.652900px;}
.yc7{bottom:692.586900px;}
.y11e{bottom:693.627900px;}
.y158{bottom:693.636900px;}
.yee{bottom:694.686900px;}
.y31{bottom:696.627900px;}
.y5d{bottom:696.636900px;}
.y7e{bottom:698.136900px;}
.y97{bottom:699.636900px;}
.yb{bottom:702.402900px;}
.yc6{bottom:711.786900px;}
.y11d{bottom:711.927900px;}
.y157{bottom:712.386900px;}
.yed{bottom:713.436900px;}
.y30{bottom:715.377900px;}
.y5c{bottom:715.386900px;}
.y7d{bottom:716.886900px;}
.y96{bottom:718.086900px;}
.ya{bottom:724.902900px;}
.y16c{bottom:730.152900px;}
.y11c{bottom:730.227900px;}
.yc5{bottom:730.986900px;}
.yec{bottom:732.186900px;}
.y156{bottom:732.636900px;}
.y2f{bottom:734.127900px;}
.y5b{bottom:734.136900px;}
.y7c{bottom:735.636900px;}
.y95{bottom:738.036900px;}
.y11b{bottom:748.527900px;}
.yc4{bottom:750.186900px;}
.yeb{bottom:750.936900px;}
.y155{bottom:751.386900px;}
.y2e{bottom:752.877900px;}
.y5a{bottom:752.886900px;}
.y7b{bottom:754.386900px;}
.y94{bottom:756.486900px;}
.y16b{bottom:762.402900px;}
.y11a{bottom:766.827900px;}
.yc3{bottom:769.386900px;}
.y154{bottom:770.136900px;}
.yea{bottom:771.186900px;}
.y2d{bottom:771.627900px;}
.y59{bottom:771.636900px;}
.y7a{bottom:773.136900px;}
.y93{bottom:774.936900px;}
.y16a{bottom:781.152900px;}
.y119{bottom:785.127900px;}
.yc2{bottom:788.586900px;}
.ye9{bottom:789.936900px;}
.y2c{bottom:790.377900px;}
.y153{bottom:790.386900px;}
.y58{bottom:791.886900px;}
.y92{bottom:793.386900px;}
.y118{bottom:803.427900px;}
.yc1{bottom:807.786900px;}
.ye8{bottom:808.686900px;}
.y2b{bottom:809.127900px;}
.y152{bottom:809.136900px;}
.y57{bottom:810.636900px;}
.y91{bottom:811.836900px;}
.y117{bottom:821.727900px;}
.y5{bottom:825.693900px;}
.yc0{bottom:826.986900px;}
.ye7{bottom:827.436900px;}
.y2a{bottom:827.877900px;}
.y151{bottom:827.886900px;}
.y56{bottom:829.386900px;}
.y9{bottom:829.902900px;}
.y90{bottom:830.286900px;}
.y116{bottom:840.027900px;}
.ybf{bottom:846.186900px;}
.y29{bottom:846.627900px;}
.y150{bottom:846.636900px;}
.y55{bottom:848.136900px;}
.y8{bottom:848.652900px;}
.y8f{bottom:848.736900px;}
.y4{bottom:855.338400px;}
.y115{bottom:858.327900px;}
.y28{bottom:865.377900px;}
.ye6{bottom:866.436900px;}
.y54{bottom:866.886900px;}
.y8e{bottom:867.186900px;}
.y7{bottom:867.402900px;}
.y3{bottom:871.538400px;}
.y27{bottom:885.627900px;}
.y53{bottom:885.636900px;}
.y6{bottom:886.152900px;}
.y2{bottom:887.738400px;}
.y26{bottom:922.796400px;}
.ha{height:28.951594px;}
.h3{height:38.285156px;}
.hc{height:41.718750px;}
.h5{height:44.666016px;}
.he{height:45.619629px;}
.h9{height:46.792969px;}
.hb{height:46.933594px;}
.h4{height:47.572244px;}
.h8{height:47.791992px;}
.h2{height:54.755859px;}
.h6{height:56.481445px;}
.hd{height:57.363281px;}
.h7{height:58.902683px;}
.h0{height:1020.473400px;}
.h1{height:1020.750000px;}
.w1{width:714.000000px;}
.w0{width:714.330600px;}
.x0{left:0.000000px;}
.x5{left:91.416600px;}
.xa{left:108.425100px;}
.xd{left:129.021600px;}
.xb{left:133.937100px;}
.x9{left:142.440600px;}
.x6{left:147.674100px;}
.x7{left:153.681600px;}
.x8{left:211.343100px;}
.xe{left:240.521100px;}
.xf{left:320.328600px;}
.x4{left:443.360100px;}
.x2{left:448.197600px;}
.x3{left:493.680600px;}
.xc{left:497.346600px;}
.x1{left:596.750100px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.645333pt;}
.v4{vertical-align:19.536000pt;}
.v2{vertical-align:23.088000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.008165pt;}
.ls0{letter-spacing:0.014400pt;}
.ws3{word-spacing:-12.906667pt;}
.ws0{word-spacing:-12.320000pt;}
.ws7{word-spacing:-10.560000pt;}
.ws2{word-spacing:-8.892693pt;}
.ws6{word-spacing:-7.524587pt;}
.ws4{word-spacing:-6.156480pt;}
.ws1{word-spacing:-0.028800pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-6.545067pt;}
._f{margin-left:-4.889451pt;}
._e{margin-left:-3.813600pt;}
._1{margin-left:-2.447200pt;}
._0{margin-left:-1.506400pt;}
._2{width:1.484000pt;}
._d{width:2.598731pt;}
._9{width:3.806133pt;}
._5{width:4.986667pt;}
._6{width:5.948800pt;}
._10{width:7.656000pt;}
._11{width:8.581333pt;}
._b{width:9.473333pt;}
._c{width:10.661067pt;}
._4{width:12.004000pt;}
._14{width:13.968533pt;}
._8{width:15.112533pt;}
._7{width:16.214133pt;}
._12{width:17.504800pt;}
._13{width:18.491733pt;}
._16{width:19.518400pt;}
._a{width:21.730133pt;}
._15{width:24.186933pt;}
.fs6{font-size:27.984000pt;}
.fs2{font-size:32.648000pt;}
.fs8{font-size:34.202667pt;}
.fs4{font-size:40.421333pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:79.370133pt;}
.y13d{bottom:109.624800pt;}
.y52{bottom:109.706133pt;}
.y10c{bottom:114.832800pt;}
.y8d{bottom:117.099467pt;}
.ybe{bottom:117.899467pt;}
.y25{bottom:118.467467pt;}
.ye5{bottom:118.803467pt;}
.y51{bottom:124.106133pt;}
.y13c{bottom:125.891467pt;}
.yb3{bottom:128.102133pt;}
.y10b{bottom:131.499467pt;}
.y24{bottom:132.867467pt;}
.y8c{bottom:133.499467pt;}
.ybd{bottom:134.566133pt;}
.y50{bottom:138.506133pt;}
.ye4{bottom:138.799467pt;}
.y13b{bottom:142.158133pt;}
.y79{bottom:142.502133pt;}
.yb2{bottom:147.366133pt;}
.ye3{bottom:149.106133pt;}
.y10a{bottom:149.499467pt;}
.y8b{bottom:151.232800pt;}
.y23{bottom:151.263467pt;}
.y4f{bottom:152.906133pt;}
.y13a{bottom:158.424800pt;}
.ye2{bottom:163.506133pt;}
.yb1{bottom:164.032800pt;}
.y22{bottom:165.663467pt;}
.y109{bottom:166.166133pt;}
.y4e{bottom:167.306133pt;}
.y78{bottom:167.899467pt;}
.y14f{bottom:170.566133pt;}
.y139{bottom:174.691467pt;}
.ye1{bottom:177.906133pt;}
.yb0{bottom:180.699467pt;}
.y4d{bottom:181.706133pt;}
.y108{bottom:182.832800pt;}
.y77{bottom:184.566133pt;}
.ybc{bottom:185.899467pt;}
.y14e{bottom:187.232800pt;}
.y138{bottom:190.958133pt;}
.ye0{bottom:192.306133pt;}
.y4c{bottom:196.106133pt;}
.yaf{bottom:198.699467pt;}
.y107{bottom:199.499467pt;}
.y21{bottom:199.691467pt;}
.y114{bottom:200.102133pt;}
.y76{bottom:201.232800pt;}
.ybb{bottom:202.566133pt;}
.y14d{bottom:205.232800pt;}
.ydf{bottom:206.706133pt;}
.y137{bottom:207.224800pt;}
.y4b{bottom:210.506133pt;}
.yae{bottom:215.366133pt;}
.y106{bottom:216.166133pt;}
.y20{bottom:216.358133pt;}
.y75{bottom:217.899467pt;}
.yba{bottom:219.232800pt;}
.yde{bottom:221.106133pt;}
.y14c{bottom:221.899467pt;}
.y136{bottom:223.491467pt;}
.y4a{bottom:224.906133pt;}
.yad{bottom:232.032800pt;}
.y105{bottom:232.832800pt;}
.y1f{bottom:233.024800pt;}
.y74{bottom:234.566133pt;}
.ydd{bottom:235.506133pt;}
.yb9{bottom:235.899467pt;}
.y14b{bottom:238.566133pt;}
.y49{bottom:239.306133pt;}
.y135{bottom:239.758133pt;}
.yac{bottom:248.699467pt;}
.y104{bottom:249.499467pt;}
.ydc{bottom:249.906133pt;}
.y73{bottom:251.232800pt;}
.yb8{bottom:252.566133pt;}
.y48{bottom:253.706133pt;}
.y14a{bottom:255.232800pt;}
.y134{bottom:256.024800pt;}
.y1e{bottom:257.691467pt;}
.ydb{bottom:264.306133pt;}
.yab{bottom:265.366133pt;}
.y103{bottom:266.166133pt;}
.y72{bottom:267.899467pt;}
.y47{bottom:268.106133pt;}
.yb7{bottom:269.232800pt;}
.y149{bottom:271.899467pt;}
.y133{bottom:272.291467pt;}
.y1d{bottom:274.358133pt;}
.yaa{bottom:282.032800pt;}
.y46{bottom:282.506133pt;}
.yda{bottom:282.702133pt;}
.y102{bottom:282.832800pt;}
.y71{bottom:284.566133pt;}
.yb6{bottom:285.899467pt;}
.y132{bottom:288.558133pt;}
.y148{bottom:289.899467pt;}
.y1c{bottom:291.024800pt;}
.y45{bottom:296.906133pt;}
.ya9{bottom:298.699467pt;}
.y101{bottom:299.499467pt;}
.y70{bottom:301.232800pt;}
.yb5{bottom:302.566133pt;}
.y131{bottom:304.824800pt;}
.y173{bottom:306.358133pt;}
.y147{bottom:306.566133pt;}
.yd9{bottom:307.099467pt;}
.y169{bottom:307.232800pt;}
.y1b{bottom:307.691467pt;}
.y44{bottom:311.306133pt;}
.ya8{bottom:315.366133pt;}
.y100{bottom:316.166133pt;}
.y6f{bottom:317.899467pt;}
.yb4{bottom:319.232800pt;}
.y130{bottom:321.091467pt;}
.y172{bottom:323.024800pt;}
.y168{bottom:323.899467pt;}
.yd8{bottom:324.166133pt;}
.y1a{bottom:324.358133pt;}
.y146{bottom:324.566133pt;}
.y43{bottom:325.706133pt;}
.ya7{bottom:332.032800pt;}
.yff{bottom:332.832800pt;}
.y6e{bottom:334.566133pt;}
.y8a{bottom:335.899467pt;}
.y12f{bottom:337.358133pt;}
.y171{bottom:339.691467pt;}
.y42{bottom:340.106133pt;}
.y167{bottom:340.566133pt;}
.y19{bottom:341.024800pt;}
.yd7{bottom:341.232800pt;}
.yfe{bottom:349.499467pt;}
.y6d{bottom:351.232800pt;}
.y89{bottom:352.566133pt;}
.y12e{bottom:353.624800pt;}
.y113{bottom:353.899467pt;}
.y41{bottom:354.506133pt;}
.ya6{bottom:356.699467pt;}
.y18{bottom:357.691467pt;}
.y145{bottom:357.899467pt;}
.yd6{bottom:358.299467pt;}
.y166{bottom:358.566133pt;}
.yfd{bottom:366.166133pt;}
.y6c{bottom:367.899467pt;}
.y88{bottom:369.232800pt;}
.y112{bottom:370.566133pt;}
.y12d{bottom:371.224800pt;}
.y40{bottom:372.902133pt;}
.ya5{bottom:373.366133pt;}
.y17{bottom:374.358133pt;}
.y165{bottom:375.232800pt;}
.yd5{bottom:375.366133pt;}
.y144{bottom:375.899467pt;}
.yfc{bottom:382.832800pt;}
.y3d{bottom:383.306133pt;}
.y6b{bottom:385.899467pt;}
.y111{bottom:387.232800pt;}
.y12c{bottom:387.491467pt;}
.y16{bottom:391.024800pt;}
.y164{bottom:391.899467pt;}
.yd4{bottom:392.432800pt;}
.y143{bottom:392.566133pt;}
.yfb{bottom:399.499467pt;}
.y3c{bottom:401.702133pt;}
.y6a{bottom:402.566133pt;}
.y12b{bottom:403.758133pt;}
.y110{bottom:403.899467pt;}
.ya4{bottom:407.366133pt;}
.y15{bottom:407.691467pt;}
.y142{bottom:409.232800pt;}
.yd3{bottom:409.499467pt;}
.y163{bottom:409.899467pt;}
.y3f{bottom:416.102133pt;}
.yfa{bottom:416.166133pt;}
.y69{bottom:419.232800pt;}
.y12a{bottom:420.024800pt;}
.y10f{bottom:420.566133pt;}
.ya3{bottom:423.766133pt;}
.y14{bottom:424.358133pt;}
.yd2{bottom:426.566133pt;}
.y141{bottom:427.232800pt;}
.y3e{bottom:430.502133pt;}
.yf9{bottom:432.832800pt;}
.y68{bottom:435.899467pt;}
.y129{bottom:436.291467pt;}
.y10e{bottom:437.232800pt;}
.ya2{bottom:440.166133pt;}
.y13{bottom:441.024800pt;}
.yd1{bottom:443.632800pt;}
.y140{bottom:443.899467pt;}
.y162{bottom:444.566133pt;}
.yf8{bottom:449.499467pt;}
.y3b{bottom:451.224800pt;}
.y128{bottom:452.558133pt;}
.y67{bottom:452.566133pt;}
.y10d{bottom:453.899467pt;}
.ya1{bottom:456.566133pt;}
.y12{bottom:457.691467pt;}
.y13f{bottom:460.566133pt;}
.yd0{bottom:460.699467pt;}
.y161{bottom:461.232800pt;}
.yf7{bottom:467.499467pt;}
.y3a{bottom:467.891467pt;}
.y127{bottom:468.824800pt;}
.y66{bottom:469.232800pt;}
.y87{bottom:470.566133pt;}
.ya0{bottom:472.966133pt;}
.y11{bottom:474.358133pt;}
.ycf{bottom:477.766133pt;}
.y160{bottom:479.232800pt;}
.yf6{bottom:484.166133pt;}
.y39{bottom:484.558133pt;}
.y126{bottom:485.091467pt;}
.y13e{bottom:485.232800pt;}
.y65{bottom:485.899467pt;}
.y86{bottom:487.232800pt;}
.y9f{bottom:490.699467pt;}
.y10{bottom:491.024800pt;}
.y15f{bottom:495.899467pt;}
.yce{bottom:496.166133pt;}
.yf5{bottom:500.832800pt;}
.y38{bottom:501.224800pt;}
.y125{bottom:501.358133pt;}
.y64{bottom:502.566133pt;}
.y85{bottom:503.899467pt;}
.y9e{bottom:507.099467pt;}
.yf{bottom:507.691467pt;}
.ycd{bottom:513.232800pt;}
.y15e{bottom:513.899467pt;}
.yf4{bottom:517.499467pt;}
.y124{bottom:517.624800pt;}
.y37{bottom:517.891467pt;}
.y63{bottom:519.232800pt;}
.y84{bottom:520.566133pt;}
.y9d{bottom:523.499467pt;}
.ye{bottom:524.358133pt;}
.ycc{bottom:530.299467pt;}
.y15d{bottom:531.899467pt;}
.y123{bottom:533.891467pt;}
.yf3{bottom:534.166133pt;}
.y36{bottom:534.558133pt;}
.y62{bottom:535.899467pt;}
.y83{bottom:537.232800pt;}
.y9c{bottom:539.899467pt;}
.yd{bottom:541.024800pt;}
.ycb{bottom:547.366133pt;}
.y15c{bottom:548.566133pt;}
.y122{bottom:550.158133pt;}
.yf2{bottom:550.832800pt;}
.y35{bottom:551.224800pt;}
.y61{bottom:552.566133pt;}
.y82{bottom:553.899467pt;}
.y9b{bottom:556.299467pt;}
.y170{bottom:557.691467pt;}
.yca{bottom:564.432800pt;}
.y15b{bottom:565.232800pt;}
.y121{bottom:566.424800pt;}
.yf1{bottom:567.499467pt;}
.y34{bottom:567.891467pt;}
.y60{bottom:569.232800pt;}
.y81{bottom:570.566133pt;}
.y9a{bottom:572.699467pt;}
.y16f{bottom:574.358133pt;}
.yc9{bottom:581.499467pt;}
.y120{bottom:582.691467pt;}
.y15a{bottom:583.232800pt;}
.yf0{bottom:584.166133pt;}
.y33{bottom:584.558133pt;}
.y5f{bottom:585.899467pt;}
.y80{bottom:587.232800pt;}
.y99{bottom:589.099467pt;}
.y16e{bottom:591.024800pt;}
.yc8{bottom:598.566133pt;}
.y11f{bottom:598.958133pt;}
.y159{bottom:599.899467pt;}
.yef{bottom:600.832800pt;}
.y32{bottom:602.558133pt;}
.y5e{bottom:602.566133pt;}
.y7f{bottom:603.899467pt;}
.yc{bottom:604.358133pt;}
.y98{bottom:605.499467pt;}
.y16d{bottom:607.691467pt;}
.yc7{bottom:615.632800pt;}
.y11e{bottom:616.558133pt;}
.y158{bottom:616.566133pt;}
.yee{bottom:617.499467pt;}
.y31{bottom:619.224800pt;}
.y5d{bottom:619.232800pt;}
.y7e{bottom:620.566133pt;}
.y97{bottom:621.899467pt;}
.yb{bottom:624.358133pt;}
.yc6{bottom:632.699467pt;}
.y11d{bottom:632.824800pt;}
.y157{bottom:633.232800pt;}
.yed{bottom:634.166133pt;}
.y30{bottom:635.891467pt;}
.y5c{bottom:635.899467pt;}
.y7d{bottom:637.232800pt;}
.y96{bottom:638.299467pt;}
.ya{bottom:644.358133pt;}
.y16c{bottom:649.024800pt;}
.y11c{bottom:649.091467pt;}
.yc5{bottom:649.766133pt;}
.yec{bottom:650.832800pt;}
.y156{bottom:651.232800pt;}
.y2f{bottom:652.558133pt;}
.y5b{bottom:652.566133pt;}
.y7c{bottom:653.899467pt;}
.y95{bottom:656.032800pt;}
.y11b{bottom:665.358133pt;}
.yc4{bottom:666.832800pt;}
.yeb{bottom:667.499467pt;}
.y155{bottom:667.899467pt;}
.y2e{bottom:669.224800pt;}
.y5a{bottom:669.232800pt;}
.y7b{bottom:670.566133pt;}
.y94{bottom:672.432800pt;}
.y16b{bottom:677.691467pt;}
.y11a{bottom:681.624800pt;}
.yc3{bottom:683.899467pt;}
.y154{bottom:684.566133pt;}
.yea{bottom:685.499467pt;}
.y2d{bottom:685.891467pt;}
.y59{bottom:685.899467pt;}
.y7a{bottom:687.232800pt;}
.y93{bottom:688.832800pt;}
.y16a{bottom:694.358133pt;}
.y119{bottom:697.891467pt;}
.yc2{bottom:700.966133pt;}
.ye9{bottom:702.166133pt;}
.y2c{bottom:702.558133pt;}
.y153{bottom:702.566133pt;}
.y58{bottom:703.899467pt;}
.y92{bottom:705.232800pt;}
.y118{bottom:714.158133pt;}
.yc1{bottom:718.032800pt;}
.ye8{bottom:718.832800pt;}
.y2b{bottom:719.224800pt;}
.y152{bottom:719.232800pt;}
.y57{bottom:720.566133pt;}
.y91{bottom:721.632800pt;}
.y117{bottom:730.424800pt;}
.y5{bottom:733.950133pt;}
.yc0{bottom:735.099467pt;}
.ye7{bottom:735.499467pt;}
.y2a{bottom:735.891467pt;}
.y151{bottom:735.899467pt;}
.y56{bottom:737.232800pt;}
.y9{bottom:737.691467pt;}
.y90{bottom:738.032800pt;}
.y116{bottom:746.691467pt;}
.ybf{bottom:752.166133pt;}
.y29{bottom:752.558133pt;}
.y150{bottom:752.566133pt;}
.y55{bottom:753.899467pt;}
.y8{bottom:754.358133pt;}
.y8f{bottom:754.432800pt;}
.y4{bottom:760.300800pt;}
.y115{bottom:762.958133pt;}
.y28{bottom:769.224800pt;}
.ye6{bottom:770.166133pt;}
.y54{bottom:770.566133pt;}
.y8e{bottom:770.832800pt;}
.y7{bottom:771.024800pt;}
.y3{bottom:774.700800pt;}
.y27{bottom:787.224800pt;}
.y53{bottom:787.232800pt;}
.y6{bottom:787.691467pt;}
.y2{bottom:789.100800pt;}
.y26{bottom:820.263467pt;}
.ha{height:25.734750pt;}
.h3{height:34.031250pt;}
.hc{height:37.083333pt;}
.h5{height:39.703125pt;}
.he{height:40.550781pt;}
.h9{height:41.593750pt;}
.hb{height:41.718750pt;}
.h4{height:42.286439pt;}
.h8{height:42.481771pt;}
.h2{height:48.671875pt;}
.h6{height:50.205729pt;}
.hd{height:50.989583pt;}
.h7{height:52.357940pt;}
.h0{height:907.087467pt;}
.h1{height:907.333333pt;}
.w1{width:634.666667pt;}
.w0{width:634.960533pt;}
.x0{left:0.000000pt;}
.x5{left:81.259200pt;}
.xa{left:96.377867pt;}
.xd{left:114.685867pt;}
.xb{left:119.055200pt;}
.x9{left:126.613867pt;}
.x6{left:131.265867pt;}
.x7{left:136.605867pt;}
.x8{left:187.860533pt;}
.xe{left:213.796533pt;}
.xf{left:284.736533pt;}
.x4{left:394.097867pt;}
.x2{left:398.397867pt;}
.x3{left:438.827200pt;}
.xc{left:442.085867pt;}
.x1{left:530.444533pt;}
}




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