
    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_fb90a08104c74f67bc61becc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_122919f9cbf1deb3687c6f06.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5042dcea8fe4598fda6590db.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4f534923913a77477494c2bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_85443cc21cc9e1a2c99a4b69.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966309;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_b6f565ef55b4e2ef2dde3338.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933594;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_53622188d8881e7411a0a636.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.772949;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_e902232d2fd9a8e310d39f8e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_bfc203cb750b8258be144730.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_4c9cc6e19d513faa8f3fb693.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_6731bf6064d9da16286f6a59.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.767578;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_8ccca5983277f73808cc0b80.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.040039;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_21e255475904697ccbfea8b5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.966309;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:fff;src:url('chunks/assets/font_c2b03af42a9315cfc74ce986.woff2')format("woff");}.fff{font-family:fff;line-height:1.435059;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:ff10;src:url('chunks/assets/font_d01976c93ba1bbd56b01f85c.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.064941;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:ff11;src:url('chunks/assets/font_42aa342ad08c90ff070d7ae9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-69.120000px;}
.v2{vertical-align:-60.480000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.810000px;}
.ls11{letter-spacing:-0.612000px;}
.ls19{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.457800px;}
.lsd{letter-spacing:-0.404400px;}
.lsf{letter-spacing:-0.226200px;}
.lsa{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.012960px;}
.ls1{letter-spacing:0.043920px;}
.lsc{letter-spacing:0.096600px;}
.ls18{letter-spacing:0.106800px;}
.ls10{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.119520px;}
.ls3{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.306600px;}
.ls7{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.495360px;}
.ls13{letter-spacing:1.080000px;}
.ls6{letter-spacing:2.340000px;}
.ls15{letter-spacing:2.520000px;}
.ls5{letter-spacing:12.420000px;}
.ls12{letter-spacing:42.426720px;}
.ls9{letter-spacing:46.026720px;}
.ls17{letter-spacing:49.626720px;}
.ls16{letter-spacing:64.026720px;}
.ls2{letter-spacing:862.920000px;}
.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:-83.835600px;}
.wsf{word-spacing:-59.760000px;}
.ws3{word-spacing:-25.452840px;}
.wse{word-spacing:-17.460000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.102200px;}
.wsc{word-spacing:-16.020000px;}
.ws2{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.246600px;}
.ws11{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.940000px;}
.ws8{word-spacing:-13.608000px;}
.ws7{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.160160px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.213800px;}
.ws10{word-spacing:-9.437760px;}
.wsb{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._3{width:2.082240px;}
._2{width:3.377040px;}
._7{width:5.346000px;}
._6{width:6.858000px;}
._5{width:7.950960px;}
._4{width:9.481680px;}
._f{width:10.711920px;}
._8{width:12.204000px;}
._d{width:13.761360px;}
._e{width:16.015680px;}
._14{width:17.269680px;}
._13{width:18.276480px;}
._c{width:19.445760px;}
._b{width:20.814480px;}
._a{width:21.986880px;}
._9{width:23.253120px;}
._11{width:24.570000px;}
._12{width:25.756560px;}
._10{width:84.312000px;}
.fc3{color:rgb(33,18,54);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc9{color:rgb(119,119,119);}
.fc8{color:rgb(32,33,36);}
.fc7{color:rgb(51,51,51);}
.fc6{color:rgb(34,34,34);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:12.240000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y41{bottom:3.585000px;}
.y4c{bottom:3.600000px;}
.y5{bottom:4.140000px;}
.y58{bottom:5.010000px;}
.yb6{bottom:9.825000px;}
.y2{bottom:9.900000px;}
.y4b{bottom:14.040000px;}
.yb7{bottom:15.765000px;}
.y40{bottom:20.145000px;}
.yb5{bottom:21.525000px;}
.y4{bottom:23.040000px;}
.y3f{bottom:37.425000px;}
.y4a{bottom:38.160000px;}
.y55{bottom:38.340000px;}
.y3{bottom:48.090000px;}
.y49{bottom:51.300000px;}
.y54{bottom:53.820000px;}
.y3e{bottom:54.705000px;}
.y7{bottom:57.600000px;}
.y48{bottom:64.260000px;}
.y53{bottom:71.280000px;}
.y3d{bottom:71.985000px;}
.y47{bottom:77.220000px;}
.y52{bottom:87.120000px;}
.y3c{bottom:89.085000px;}
.y46{bottom:90.360000px;}
.yb4{bottom:93.060000px;}
.y56{bottom:96.300000px;}
.y51{bottom:102.630000px;}
.yb3{bottom:104.760000px;}
.y3b{bottom:106.005000px;}
.yaf{bottom:110.340000px;}
.y42{bottom:110.880000px;}
.y45{bottom:112.170000px;}
.y50{bottom:117.750000px;}
.y91{bottom:120.780000px;}
.y3a{bottom:123.690000px;}
.yae{bottom:127.620000px;}
.y4f{bottom:133.770000px;}
.y90{bottom:138.060000px;}
.y39{bottom:140.970000px;}
.yb2{bottom:144.465000px;}
.yad{bottom:144.900000px;}
.y4e{bottom:149.250000px;}
.y8f{bottom:154.980000px;}
.yb1{bottom:156.165000px;}
.y38{bottom:158.250000px;}
.ye4{bottom:158.400000px;}
.yac{bottom:162.000000px;}
.y4d{bottom:164.730000px;}
.y8e{bottom:172.620000px;}
.y44{bottom:174.270000px;}
.y37{bottom:175.530000px;}
.ye3{bottom:175.680000px;}
.yab{bottom:178.920000px;}
.y43{bottom:184.890000px;}
.y8d{bottom:189.720000px;}
.y36{bottom:192.630000px;}
.ye2{bottom:192.780000px;}
.yaa{bottom:196.560000px;}
.y8c{bottom:207.000000px;}
.y35{bottom:209.550000px;}
.ye1{bottom:210.090000px;}
.ya9{bottom:213.870000px;}
.y8b{bottom:224.310000px;}
.y34{bottom:227.190000px;}
.ye0{bottom:227.370000px;}
.ya8{bottom:231.150000px;}
.y8a{bottom:241.230000px;}
.ydf{bottom:244.290000px;}
.y33{bottom:244.470000px;}
.ya7{bottom:248.430000px;}
.y89{bottom:259.230000px;}
.y32{bottom:261.750000px;}
.yde{bottom:261.930000px;}
.ya6{bottom:265.530000px;}
.y88{bottom:276.330000px;}
.y31{bottom:278.850000px;}
.ydd{bottom:279.210000px;}
.ya5{bottom:282.810000px;}
.y87{bottom:293.610000px;}
.y30{bottom:296.130000px;}
.ydc{bottom:296.310000px;}
.y1d{bottom:298.830000px;}
.ya4{bottom:300.090000px;}
.y86{bottom:310.890000px;}
.y2f{bottom:313.410000px;}
.ya3{bottom:313.590000px;}
.y1c{bottom:322.950000px;}
.yf{bottom:323.685000px;}
.y85{bottom:327.810000px;}
.y2e{bottom:330.690000px;}
.ydb{bottom:330.870000px;}
.y84{bottom:345.810000px;}
.y1b{bottom:347.070000px;}
.y2d{bottom:347.970000px;}
.yda{bottom:348.150000px;}
.y83{bottom:362.910000px;}
.y2c{bottom:365.280000px;}
.yd9{bottom:365.430000px;}
.y1a{bottom:371.220000px;}
.y82{bottom:380.190000px;}
.y2b{bottom:382.020000px;}
.yd8{bottom:382.710000px;}
.y19{bottom:395.340000px;}
.y81{bottom:397.470000px;}
.yd7{bottom:399.450000px;}
.y2a{bottom:408.300000px;}
.y80{bottom:414.750000px;}
.yd6{bottom:417.090000px;}
.y18{bottom:419.640000px;}
.y29{bottom:423.780000px;}
.y7f{bottom:431.670000px;}
.yd5{bottom:434.370000px;}
.y28{bottom:439.260000px;}
.y17{bottom:443.760000px;}
.y7e{bottom:449.535000px;}
.yd4{bottom:451.695000px;}
.y27{bottom:454.740000px;}
.y7d{bottom:466.815000px;}
.y16{bottom:467.880000px;}
.yd3{bottom:468.975000px;}
.y26{bottom:470.400000px;}
.y7c{bottom:484.095000px;}
.y25{bottom:485.880000px;}
.yd2{bottom:486.255000px;}
.y15{bottom:492.000000px;}
.y24{bottom:501.360000px;}
.y7b{bottom:501.375000px;}
.yd1{bottom:503.355000px;}
.y14{bottom:516.120000px;}
.y23{bottom:516.840000px;}
.y7a{bottom:518.295000px;}
.yd0{bottom:520.635000px;}
.y22{bottom:532.500000px;}
.y79{bottom:536.115000px;}
.ycf{bottom:537.915000px;}
.y13{bottom:540.240000px;}
.y21{bottom:547.980000px;}
.y78{bottom:553.395000px;}
.yce{bottom:554.835000px;}
.ya2{bottom:556.635000px;}
.y20{bottom:563.460000px;}
.y12{bottom:564.540000px;}
.y77{bottom:570.315000px;}
.ycd{bottom:572.475000px;}
.ya1{bottom:573.915000px;}
.y1f{bottom:578.940000px;}
.y76{bottom:587.955000px;}
.y11{bottom:588.660000px;}
.ycc{bottom:589.575000px;}
.ya0{bottom:591.195000px;}
.y75{bottom:605.235000px;}
.ycb{bottom:606.855000px;}
.y9f{bottom:608.475000px;}
.y1e{bottom:609.765000px;}
.y10{bottom:612.825000px;}
.y74{bottom:622.515000px;}
.yca{bottom:624.135000px;}
.y9e{bottom:625.575000px;}
.y73{bottom:639.615000px;}
.yc9{bottom:641.415000px;}
.y9d{bottom:642.855000px;}
.y72{bottom:656.895000px;}
.yc8{bottom:658.695000px;}
.y9c{bottom:660.135000px;}
.y71{bottom:674.175000px;}
.yc7{bottom:675.975000px;}
.y9b{bottom:677.415000px;}
.y70{bottom:691.485000px;}
.yc6{bottom:692.745000px;}
.y9a{bottom:694.725000px;}
.y6f{bottom:708.765000px;}
.yc5{bottom:710.385000px;}
.y99{bottom:711.825000px;}
.y6e{bottom:725.865000px;}
.yc4{bottom:727.665000px;}
.y98{bottom:729.105000px;}
.y6d{bottom:743.145000px;}
.yc3{bottom:744.945000px;}
.y97{bottom:746.025000px;}
.y6c{bottom:760.425000px;}
.yc2{bottom:762.225000px;}
.y96{bottom:763.305000px;}
.y6b{bottom:777.705000px;}
.yc1{bottom:779.505000px;}
.y95{bottom:780.585000px;}
.y94{bottom:794.445000px;}
.yb0{bottom:794.520000px;}
.y6a{bottom:794.985000px;}
.yc0{bottom:796.605000px;}
.y69{bottom:812.265000px;}
.ybf{bottom:813.885000px;}
.y68{bottom:829.365000px;}
.ybe{bottom:831.165000px;}
.y67{bottom:846.645000px;}
.ybd{bottom:848.445000px;}
.y66{bottom:863.925000px;}
.ybc{bottom:865.725000px;}
.y65{bottom:881.205000px;}
.ybb{bottom:882.825000px;}
.y64{bottom:899.385000px;}
.yba{bottom:900.105000px;}
.y63{bottom:917.430000px;}
.y62{bottom:934.710000px;}
.ye{bottom:949.290000px;}
.yb9{bottom:951.630000px;}
.y61{bottom:951.990000px;}
.yd{bottom:956.130000px;}
.y93{bottom:968.910000px;}
.y60{bottom:969.270000px;}
.yc{bottom:973.230000px;}
.y5f{bottom:986.010000px;}
.yb8{bottom:986.370000px;}
.yb{bottom:990.510000px;}
.y5e{bottom:1003.650000px;}
.y5d{bottom:1020.930000px;}
.ya{bottom:1024.710000px;}
.y5c{bottom:1038.210000px;}
.y9{bottom:1044.150000px;}
.y92{bottom:1055.130000px;}
.y5b{bottom:1055.490000px;}
.y8{bottom:1071.870000px;}
.y5a{bottom:1072.770000px;}
.y57{bottom:1075.320000px;}
.y59{bottom:1089.870000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.ha{height:8.905078px;}
.h13{height:27.540000px;}
.h10{height:40.948242px;}
.hd{height:40.985156px;}
.h19{height:41.535703px;}
.hc{height:42.086250px;}
.h17{height:42.894141px;}
.h16{height:50.597578px;}
.he{height:52.971680px;}
.h12{height:54.421875px;}
.h7{height:57.324375px;}
.h6{height:58.651172px;}
.h9{height:60.226875px;}
.hf{height:61.423863px;}
.h15{height:62.211094px;}
.h14{height:64.002656px;}
.h8{height:64.126055px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h2{height:84.990000px;}
.h4{height:117.180000px;}
.h18{height:171.000000px;}
.h11{height:212.070000px;}
.hb{height:622.350000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w4{width:132.651000px;}
.w6{width:162.720000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w7{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:6.876000px;}
.x1b{left:8.085000px;}
.x4{left:12.765000px;}
.x16{left:15.471000px;}
.x6{left:17.265000px;}
.x19{left:20.691000px;}
.x18{left:23.751000px;}
.x17{left:27.171000px;}
.x20{left:29.151000px;}
.x1d{left:35.085000px;}
.x11{left:43.731000px;}
.x1f{left:47.691000px;}
.x12{left:50.751000px;}
.x10{left:55.071000px;}
.x1c{left:62.130000px;}
.x21{left:66.225000px;}
.x15{left:68.205000px;}
.x14{left:75.585000px;}
.x1{left:78.300000px;}
.x7{left:86.436000px;}
.xe{left:90.936000px;}
.x2{left:95.790000px;}
.x1e{left:103.305000px;}
.x23{left:113.436000px;}
.x13{left:124.545000px;}
.x5{left:141.330000px;}
.x3{left:182.385000px;}
.x1a{left:219.105000px;}
.xa{left:252.030000px;}
.xc{left:297.615000px;}
.xd{left:308.955000px;}
.x2e{left:345.854987px;}
.x2d{left:356.114987px;}
.x2c{left:376.304987px;}
.x27{left:416.624987px;}
.x26{left:435.884987px;}
.xb{left:446.685000px;}
.x2b{left:469.724987px;}
.x2a{left:480.749987px;}
.x29{left:487.439987px;}
.x28{left:491.759987px;}
.x24{left:576.465000px;}
.x25{left:608.685000px;}
.x9{left:766.050000px;}
.x8{left:791.970000px;}
.xf{left:806.940000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v2{vertical-align:-53.760000pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.720000pt;}
.ls11{letter-spacing:-0.544000pt;}
.ls19{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.406933pt;}
.lsd{letter-spacing:-0.359467pt;}
.lsf{letter-spacing:-0.201067pt;}
.lsa{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.011520pt;}
.ls1{letter-spacing:0.039040pt;}
.lsc{letter-spacing:0.085867pt;}
.ls18{letter-spacing:0.094933pt;}
.ls10{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.106240pt;}
.ls3{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.272533pt;}
.ls7{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.440320pt;}
.ls13{letter-spacing:0.960000pt;}
.ls6{letter-spacing:2.080000pt;}
.ls15{letter-spacing:2.240000pt;}
.ls5{letter-spacing:11.040000pt;}
.ls12{letter-spacing:37.712640pt;}
.ls9{letter-spacing:40.912640pt;}
.ls17{letter-spacing:44.112640pt;}
.ls16{letter-spacing:56.912640pt;}
.ls2{letter-spacing:767.040000pt;}
.ws4{word-spacing:-74.520533pt;}
.wsf{word-spacing:-53.120000pt;}
.ws3{word-spacing:-22.624747pt;}
.wse{word-spacing:-15.520000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.313067pt;}
.wsc{word-spacing:-14.240000pt;}
.ws2{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.552533pt;}
.ws11{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.096000pt;}
.ws7{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.697920pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-9.078933pt;}
.ws10{word-spacing:-8.389120pt;}
.wsb{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._3{width:1.850880pt;}
._2{width:3.001813pt;}
._7{width:4.752000pt;}
._6{width:6.096000pt;}
._5{width:7.067520pt;}
._4{width:8.428160pt;}
._f{width:9.521707pt;}
._8{width:10.848000pt;}
._d{width:12.232320pt;}
._e{width:14.236160pt;}
._14{width:15.350827pt;}
._13{width:16.245760pt;}
._c{width:17.285120pt;}
._b{width:18.501760pt;}
._a{width:19.543893pt;}
._9{width:20.669440pt;}
._11{width:21.840000pt;}
._12{width:22.894720pt;}
._10{width:74.944000pt;}
.fs5{font-size:10.880000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:3.186667pt;}
.y4c{bottom:3.200000pt;}
.y5{bottom:3.680000pt;}
.y58{bottom:4.453333pt;}
.yb6{bottom:8.733333pt;}
.y2{bottom:8.800000pt;}
.y4b{bottom:12.480000pt;}
.yb7{bottom:14.013333pt;}
.y40{bottom:17.906667pt;}
.yb5{bottom:19.133333pt;}
.y4{bottom:20.480000pt;}
.y3f{bottom:33.266667pt;}
.y4a{bottom:33.920000pt;}
.y55{bottom:34.080000pt;}
.y3{bottom:42.746667pt;}
.y49{bottom:45.600000pt;}
.y54{bottom:47.840000pt;}
.y3e{bottom:48.626667pt;}
.y7{bottom:51.200000pt;}
.y48{bottom:57.120000pt;}
.y53{bottom:63.360000pt;}
.y3d{bottom:63.986667pt;}
.y47{bottom:68.640000pt;}
.y52{bottom:77.440000pt;}
.y3c{bottom:79.186667pt;}
.y46{bottom:80.320000pt;}
.yb4{bottom:82.720000pt;}
.y56{bottom:85.600000pt;}
.y51{bottom:91.226667pt;}
.yb3{bottom:93.120000pt;}
.y3b{bottom:94.226667pt;}
.yaf{bottom:98.080000pt;}
.y42{bottom:98.560000pt;}
.y45{bottom:99.706667pt;}
.y50{bottom:104.666667pt;}
.y91{bottom:107.360000pt;}
.y3a{bottom:109.946667pt;}
.yae{bottom:113.440000pt;}
.y4f{bottom:118.906667pt;}
.y90{bottom:122.720000pt;}
.y39{bottom:125.306667pt;}
.yb2{bottom:128.413333pt;}
.yad{bottom:128.800000pt;}
.y4e{bottom:132.666667pt;}
.y8f{bottom:137.760000pt;}
.yb1{bottom:138.813333pt;}
.y38{bottom:140.666667pt;}
.ye4{bottom:140.800000pt;}
.yac{bottom:144.000000pt;}
.y4d{bottom:146.426667pt;}
.y8e{bottom:153.440000pt;}
.y44{bottom:154.906667pt;}
.y37{bottom:156.026667pt;}
.ye3{bottom:156.160000pt;}
.yab{bottom:159.040000pt;}
.y43{bottom:164.346667pt;}
.y8d{bottom:168.640000pt;}
.y36{bottom:171.226667pt;}
.ye2{bottom:171.360000pt;}
.yaa{bottom:174.720000pt;}
.y8c{bottom:184.000000pt;}
.y35{bottom:186.266667pt;}
.ye1{bottom:186.746667pt;}
.ya9{bottom:190.106667pt;}
.y8b{bottom:199.386667pt;}
.y34{bottom:201.946667pt;}
.ye0{bottom:202.106667pt;}
.ya8{bottom:205.466667pt;}
.y8a{bottom:214.426667pt;}
.ydf{bottom:217.146667pt;}
.y33{bottom:217.306667pt;}
.ya7{bottom:220.826667pt;}
.y89{bottom:230.426667pt;}
.y32{bottom:232.666667pt;}
.yde{bottom:232.826667pt;}
.ya6{bottom:236.026667pt;}
.y88{bottom:245.626667pt;}
.y31{bottom:247.866667pt;}
.ydd{bottom:248.186667pt;}
.ya5{bottom:251.386667pt;}
.y87{bottom:260.986667pt;}
.y30{bottom:263.226667pt;}
.ydc{bottom:263.386667pt;}
.y1d{bottom:265.626667pt;}
.ya4{bottom:266.746667pt;}
.y86{bottom:276.346667pt;}
.y2f{bottom:278.586667pt;}
.ya3{bottom:278.746667pt;}
.y1c{bottom:287.066667pt;}
.yf{bottom:287.720000pt;}
.y85{bottom:291.386667pt;}
.y2e{bottom:293.946667pt;}
.ydb{bottom:294.106667pt;}
.y84{bottom:307.386667pt;}
.y1b{bottom:308.506667pt;}
.y2d{bottom:309.306667pt;}
.yda{bottom:309.466667pt;}
.y83{bottom:322.586667pt;}
.y2c{bottom:324.693333pt;}
.yd9{bottom:324.826667pt;}
.y1a{bottom:329.973333pt;}
.y82{bottom:337.946667pt;}
.y2b{bottom:339.573333pt;}
.yd8{bottom:340.186667pt;}
.y19{bottom:351.413333pt;}
.y81{bottom:353.306667pt;}
.yd7{bottom:355.066667pt;}
.y2a{bottom:362.933333pt;}
.y80{bottom:368.666667pt;}
.yd6{bottom:370.746667pt;}
.y18{bottom:373.013333pt;}
.y29{bottom:376.693333pt;}
.y7f{bottom:383.706667pt;}
.yd5{bottom:386.106667pt;}
.y28{bottom:390.453333pt;}
.y17{bottom:394.453333pt;}
.y7e{bottom:399.586667pt;}
.yd4{bottom:401.506667pt;}
.y27{bottom:404.213333pt;}
.y7d{bottom:414.946667pt;}
.y16{bottom:415.893333pt;}
.yd3{bottom:416.866667pt;}
.y26{bottom:418.133333pt;}
.y7c{bottom:430.306667pt;}
.y25{bottom:431.893333pt;}
.yd2{bottom:432.226667pt;}
.y15{bottom:437.333333pt;}
.y24{bottom:445.653333pt;}
.y7b{bottom:445.666667pt;}
.yd1{bottom:447.426667pt;}
.y14{bottom:458.773333pt;}
.y23{bottom:459.413333pt;}
.y7a{bottom:460.706667pt;}
.yd0{bottom:462.786667pt;}
.y22{bottom:473.333333pt;}
.y79{bottom:476.546667pt;}
.ycf{bottom:478.146667pt;}
.y13{bottom:480.213333pt;}
.y21{bottom:487.093333pt;}
.y78{bottom:491.906667pt;}
.yce{bottom:493.186667pt;}
.ya2{bottom:494.786667pt;}
.y20{bottom:500.853333pt;}
.y12{bottom:501.813333pt;}
.y77{bottom:506.946667pt;}
.ycd{bottom:508.866667pt;}
.ya1{bottom:510.146667pt;}
.y1f{bottom:514.613333pt;}
.y76{bottom:522.626667pt;}
.y11{bottom:523.253333pt;}
.ycc{bottom:524.066667pt;}
.ya0{bottom:525.506667pt;}
.y75{bottom:537.986667pt;}
.ycb{bottom:539.426667pt;}
.y9f{bottom:540.866667pt;}
.y1e{bottom:542.013333pt;}
.y10{bottom:544.733333pt;}
.y74{bottom:553.346667pt;}
.yca{bottom:554.786667pt;}
.y9e{bottom:556.066667pt;}
.y73{bottom:568.546667pt;}
.yc9{bottom:570.146667pt;}
.y9d{bottom:571.426667pt;}
.y72{bottom:583.906667pt;}
.yc8{bottom:585.506667pt;}
.y9c{bottom:586.786667pt;}
.y71{bottom:599.266667pt;}
.yc7{bottom:600.866667pt;}
.y9b{bottom:602.146667pt;}
.y70{bottom:614.653333pt;}
.yc6{bottom:615.773333pt;}
.y9a{bottom:617.533333pt;}
.y6f{bottom:630.013333pt;}
.yc5{bottom:631.453333pt;}
.y99{bottom:632.733333pt;}
.y6e{bottom:645.213333pt;}
.yc4{bottom:646.813333pt;}
.y98{bottom:648.093333pt;}
.y6d{bottom:660.573333pt;}
.yc3{bottom:662.173333pt;}
.y97{bottom:663.133333pt;}
.y6c{bottom:675.933333pt;}
.yc2{bottom:677.533333pt;}
.y96{bottom:678.493333pt;}
.y6b{bottom:691.293333pt;}
.yc1{bottom:692.893333pt;}
.y95{bottom:693.853333pt;}
.y94{bottom:706.173333pt;}
.yb0{bottom:706.240000pt;}
.y6a{bottom:706.653333pt;}
.yc0{bottom:708.093333pt;}
.y69{bottom:722.013333pt;}
.ybf{bottom:723.453333pt;}
.y68{bottom:737.213333pt;}
.ybe{bottom:738.813333pt;}
.y67{bottom:752.573333pt;}
.ybd{bottom:754.173333pt;}
.y66{bottom:767.933333pt;}
.ybc{bottom:769.533333pt;}
.y65{bottom:783.293333pt;}
.ybb{bottom:784.733333pt;}
.y64{bottom:799.453333pt;}
.yba{bottom:800.093333pt;}
.y63{bottom:815.493333pt;}
.y62{bottom:830.853333pt;}
.ye{bottom:843.813333pt;}
.yb9{bottom:845.893333pt;}
.y61{bottom:846.213333pt;}
.yd{bottom:849.893333pt;}
.y93{bottom:861.253333pt;}
.y60{bottom:861.573333pt;}
.yc{bottom:865.093333pt;}
.y5f{bottom:876.453333pt;}
.yb8{bottom:876.773333pt;}
.yb{bottom:880.453333pt;}
.y5e{bottom:892.133333pt;}
.y5d{bottom:907.493333pt;}
.ya{bottom:910.853333pt;}
.y5c{bottom:922.853333pt;}
.y9{bottom:928.133333pt;}
.y92{bottom:937.893333pt;}
.y5b{bottom:938.213333pt;}
.y8{bottom:952.773333pt;}
.y5a{bottom:953.573333pt;}
.y57{bottom:955.840000pt;}
.y59{bottom:968.773333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.ha{height:7.915625pt;}
.h13{height:24.480000pt;}
.h10{height:36.398438pt;}
.hd{height:36.431250pt;}
.h19{height:36.920625pt;}
.hc{height:37.410000pt;}
.h17{height:38.128125pt;}
.h16{height:44.975625pt;}
.he{height:47.085938pt;}
.h12{height:48.375000pt;}
.h7{height:50.955000pt;}
.h6{height:52.134375pt;}
.h9{height:53.535000pt;}
.hf{height:54.598989pt;}
.h15{height:55.298750pt;}
.h14{height:56.891250pt;}
.h8{height:57.000937pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h2{height:75.546667pt;}
.h4{height:104.160000pt;}
.h18{height:152.000000pt;}
.h11{height:188.506667pt;}
.hb{height:553.200000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w4{width:117.912000pt;}
.w6{width:144.640000pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w7{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.112000pt;}
.x1b{left:7.186667pt;}
.x4{left:11.346667pt;}
.x16{left:13.752000pt;}
.x6{left:15.346667pt;}
.x19{left:18.392000pt;}
.x18{left:21.112000pt;}
.x17{left:24.152000pt;}
.x20{left:25.912000pt;}
.x1d{left:31.186667pt;}
.x11{left:38.872000pt;}
.x1f{left:42.392000pt;}
.x12{left:45.112000pt;}
.x10{left:48.952000pt;}
.x1c{left:55.226667pt;}
.x21{left:58.866667pt;}
.x15{left:60.626667pt;}
.x14{left:67.186667pt;}
.x1{left:69.600000pt;}
.x7{left:76.832000pt;}
.xe{left:80.832000pt;}
.x2{left:85.146667pt;}
.x1e{left:91.826667pt;}
.x23{left:100.832000pt;}
.x13{left:110.706667pt;}
.x5{left:125.626667pt;}
.x3{left:162.120000pt;}
.x1a{left:194.760000pt;}
.xa{left:224.026667pt;}
.xc{left:264.546667pt;}
.xd{left:274.626667pt;}
.x2e{left:307.426655pt;}
.x2d{left:316.546655pt;}
.x2c{left:334.493322pt;}
.x27{left:370.333322pt;}
.x26{left:387.453322pt;}
.xb{left:397.053333pt;}
.x2b{left:417.533322pt;}
.x2a{left:427.333322pt;}
.x29{left:433.279988pt;}
.x28{left:437.119988pt;}
.x24{left:512.413333pt;}
.x25{left:541.053333pt;}
.x9{left:680.933333pt;}
.x8{left:703.973333pt;}
.xf{left:717.280000pt;}
}




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