
    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_992e062538eb7417272df5a7.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_27bb47896f32c1e983e7c421.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a2590942534831ac4517d0c6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946289;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_e6109e31a51605871857343a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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_93c770559d146f0e9ee9d239.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_678d2a888d828ca8f2bb02ed.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_c1da2d604f572ae967346e0a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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_5f2e03c323b393e8e5f54897.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.916992;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_3e5130054ad0c66e9e216141.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_43f6ef130d976a3db435865b.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_aaa29abf476b70842ae0484a.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_5090d1e137029b8e158c4540.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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;}
.m5{transform:matrix(0.240099,0.000000,-0.080025,0.236846,0,0);-ms-transform:matrix(0.240099,0.000000,-0.080025,0.236846,0,0);-webkit-transform:matrix(0.240099,0.000000,-0.080025,0.236846,0,0);}
.m3{transform:matrix(0.240413,0.000000,-0.080130,0.236811,0,0);-ms-transform:matrix(0.240413,0.000000,-0.080130,0.236811,0,0);-webkit-transform:matrix(0.240413,0.000000,-0.080130,0.236811,0,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);}
.m6{transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253434,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.253803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253803,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.372350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372350,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:-37.649633px;}
.v2{vertical-align:-9.360000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-1.458000px;}
.ls15{letter-spacing:-0.810000px;}
.ls3{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.341400px;}
.ls9{letter-spacing:-0.180000px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.037440px;}
.ls8{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.321600px;}
.lsa{letter-spacing:0.326640px;}
.ls16{letter-spacing:0.341400px;}
.ls2{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.378720px;}
.ls4{letter-spacing:0.485280px;}
.ls0{letter-spacing:0.504000px;}
.ls13{letter-spacing:2.700000px;}
.lse{letter-spacing:6.300000px;}
.ls5{letter-spacing:10.818720px;}
.ls11{letter-spacing:12.780000px;}
.lsf{letter-spacing:24.300000px;}
.lsc{letter-spacing:46.773120px;}
.ls6{letter-spacing:85.537356px;}
.lsb{letter-spacing:90.678584px;}
.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;}
}
.ws0{word-spacing:-24.300000px;}
.ws3{word-spacing:-21.420000px;}
.wse{word-spacing:-21.401400px;}
.wsd{word-spacing:-21.381600px;}
.wsb{word-spacing:-21.097440px;}
.ws1{word-spacing:-21.060000px;}
.ws9{word-spacing:-20.718600px;}
.ws2{word-spacing:-20.700000px;}
.wsc{word-spacing:-20.250000px;}
.wsa{word-spacing:-19.602000px;}
.ws6{word-spacing:-13.500000px;}
.ws5{word-spacing:-0.041948px;}
.ws7{word-spacing:-0.041862px;}
.ws4{word-spacing:0.000000px;}
.ws8{word-spacing:82.787172px;}
._6{margin-left:-5.812560px;}
._7{margin-left:-4.200720px;}
._11{margin-left:-2.864160px;}
._1{margin-left:-1.158720px;}
._0{width:1.392000px;}
._c{width:3.285360px;}
._d{width:4.359840px;}
._10{width:5.580480px;}
._4{width:6.654960px;}
._1d{width:7.748880px;}
._f{width:8.760960px;}
._1f{width:10.108800px;}
._e{width:11.540880px;}
._15{width:12.720240px;}
._3{width:13.854240px;}
._2{width:14.910480px;}
._26{width:16.762560px;}
._a{width:18.090960px;}
._b{width:19.563600px;}
._29{width:22.135680px;}
._14{width:23.502960px;}
._1e{width:24.682320px;}
._1c{width:26.114400px;}
._1b{width:27.883440px;}
._13{width:28.978560px;}
._25{width:30.410640px;}
._19{width:32.265600px;}
._12{width:33.274800px;}
._1a{width:35.210160px;}
._24{width:36.904080px;}
._16{width:39.109920px;}
._17{width:41.109120px;}
._27{width:46.393200px;}
._21{width:47.511360px;}
._8{width:49.512480px;}
._5{width:51.302160px;}
._28{width:52.966320px;}
._20{width:56.103840px;}
._18{width:59.220720px;}
._22{width:70.003440px;}
._23{width:71.059920px;}
._9{width:105.532080px;}
.fc5{color:rgb(79,129,189);}
.fc4{color:rgb(35,29,30);}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc6{color:rgb(33,33,33);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:41.862409px;}
.fs6{font-size:41.947778px;}
.fsc{font-size:42.325459px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs8{font-size:71.802857px;}
.fs5{font-size:71.852548px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:72.597084px;}
.fsa{font-size:75.790673px;}
.fs7{font-size:75.854452px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.y60{bottom:3.600000px;}
.y72{bottom:3.883937px;}
.y3{bottom:3.960000px;}
.ya{bottom:5.220000px;}
.y3b{bottom:5.257115px;}
.y4a{bottom:5.299701px;}
.y9{bottom:7.380000px;}
.y8e{bottom:8.100000px;}
.y90{bottom:8.280000px;}
.y61{bottom:14.400000px;}
.y4{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.y74{bottom:17.980258px;}
.y3d{bottom:19.180541px;}
.y4c{bottom:19.243090px;}
.y8c{bottom:21.960000px;}
.y71{bottom:22.512698px;}
.y76{bottom:22.512767px;}
.y3a{bottom:23.692534px;}
.y3f{bottom:23.692562px;}
.y40{bottom:23.692571px;}
.y49{bottom:23.759723px;}
.y4e{bottom:23.759736px;}
.y4f{bottom:23.759742px;}
.y62{bottom:23.760000px;}
.y2{bottom:24.660000px;}
.y73{bottom:31.539143px;}
.y3c{bottom:32.536414px;}
.y4b{bottom:32.615533px;}
.y8a{bottom:35.820000px;}
.y75{bottom:36.070173px;}
.y3e{bottom:37.048445px;}
.y4d{bottom:37.133653px;}
.y8{bottom:44.640000px;}
.y8b{bottom:49.680000px;}
.y8d{bottom:63.720000px;}
.yb0{bottom:98.856000px;}
.y53{bottom:105.156000px;}
.y98{bottom:121.356000px;}
.yaf{bottom:126.576000px;}
.y52{bottom:132.876000px;}
.y97{bottom:149.076000px;}
.y2f{bottom:150.870000px;}
.yae{bottom:154.470000px;}
.y51{bottom:160.590000px;}
.y6f{bottom:171.030000px;}
.y2e{bottom:178.590000px;}
.y96{bottom:179.670000px;}
.yad{bottom:182.190000px;}
.y48{bottom:183.839980px;}
.y6e{bottom:198.750000px;}
.y2d{bottom:206.310000px;}
.y50{bottom:207.750000px;}
.yac{bottom:209.910000px;}
.y95{bottom:210.270000px;}
.y6d{bottom:226.650000px;}
.y2c{bottom:234.030000px;}
.yab{bottom:237.630000px;}
.y94{bottom:240.870000px;}
.y47{bottom:247.350000px;}
.y6c{bottom:254.370000px;}
.y2b{bottom:261.930000px;}
.yaa{bottom:265.530000px;}
.y93{bottom:268.590000px;}
.y46{bottom:275.070000px;}
.y6b{bottom:282.090000px;}
.y92{bottom:288.930000px;}
.y2a{bottom:289.650000px;}
.ya9{bottom:293.250000px;}
.y45{bottom:302.790000px;}
.y6a{bottom:309.810000px;}
.y29{bottom:317.370000px;}
.y91{bottom:317.550000px;}
.ya8{bottom:320.970000px;}
.y44{bottom:330.690000px;}
.y69{bottom:337.575000px;}
.y28{bottom:345.135000px;}
.y8f{bottom:346.035000px;}
.ya7{bottom:348.915000px;}
.y43{bottom:358.455000px;}
.y68{bottom:368.175000px;}
.y27{bottom:373.035000px;}
.y89{bottom:374.655000px;}
.ya6{bottom:376.635000px;}
.y42{bottom:386.175000px;}
.y67{bottom:398.775000px;}
.y26{bottom:400.755000px;}
.ya5{bottom:404.355000px;}
.y39{bottom:409.439959px;}
.y25{bottom:428.475000px;}
.y66{bottom:429.375000px;}
.ya4{bottom:432.075000px;}
.y41{bottom:433.335000px;}
.y24{bottom:456.375000px;}
.y65{bottom:457.275000px;}
.ya3{bottom:459.975000px;}
.y88{bottom:466.815000px;}
.y38{bottom:472.935000px;}
.y23{bottom:484.095000px;}
.y64{bottom:484.995000px;}
.ya2{bottom:487.695000px;}
.y87{bottom:494.535000px;}
.y37{bottom:500.655000px;}
.y22{bottom:511.815000px;}
.y63{bottom:512.715000px;}
.ya1{bottom:515.415000px;}
.y86{bottom:522.435000px;}
.y36{bottom:528.375000px;}
.y5f{bottom:533.055000px;}
.y21{bottom:539.535000px;}
.ya0{bottom:543.315000px;}
.y85{bottom:550.155000px;}
.y35{bottom:556.095000px;}
.y20{bottom:567.435000px;}
.y9f{bottom:571.035000px;}
.y84{bottom:577.875000px;}
.y34{bottom:583.995000px;}
.y1f{bottom:595.155000px;}
.y9e{bottom:598.755000px;}
.y83{bottom:605.625000px;}
.y33{bottom:611.745000px;}
.y1e{bottom:622.905000px;}
.y9d{bottom:626.505000px;}
.y82{bottom:633.525000px;}
.y32{bottom:642.165000px;}
.y1d{bottom:650.805000px;}
.y9c{bottom:654.405000px;}
.y81{bottom:661.245000px;}
.y31{bottom:672.765000px;}
.y1c{bottom:678.525000px;}
.y80{bottom:680.865000px;}
.y9b{bottom:682.125000px;}
.y30{bottom:703.365000px;}
.y1b{bottom:706.245000px;}
.y9a{bottom:709.845000px;}
.y5e{bottom:725.685000px;}
.y1a{bottom:733.965000px;}
.y99{bottom:737.745000px;}
.y5d{bottom:753.405000px;}
.y19{bottom:761.865000px;}
.y5c{bottom:781.125000px;}
.y18{bottom:789.585000px;}
.y5b{bottom:809.025000px;}
.y17{bottom:817.305000px;}
.y5a{bottom:836.745000px;}
.y16{bottom:845.025000px;}
.y59{bottom:864.465000px;}
.y7f{bottom:870.405000px;}
.y15{bottom:872.970000px;}
.y58{bottom:892.230000px;}
.y7e{bottom:898.170000px;}
.y14{bottom:900.690000px;}
.y57{bottom:920.130000px;}
.y7d{bottom:925.890000px;}
.y13{bottom:928.410000px;}
.y56{bottom:947.670000px;}
.y7c{bottom:953.790000px;}
.y12{bottom:956.310000px;}
.y55{bottom:978.270000px;}
.y7b{bottom:981.510000px;}
.y11{bottom:984.030000px;}
.y54{bottom:1008.870000px;}
.y7a{bottom:1009.230000px;}
.y10{bottom:1011.750000px;}
.y79{bottom:1036.950000px;}
.yf{bottom:1039.470000px;}
.y78{bottom:1064.850000px;}
.ye{bottom:1067.370000px;}
.y70{bottom:1087.814919px;}
.yd{bottom:1095.090000px;}
.y77{bottom:1110.390000px;}
.yc{bottom:1122.810000px;}
.y7{bottom:1146.240000px;}
.y5{bottom:1161.540000px;}
.y1{bottom:1178.820000px;}
.h5{height:6.480000px;}
.h7{height:27.576000px;}
.h24{height:27.756000px;}
.h23{height:27.900000px;}
.h18{height:41.065225px;}
.h12{height:41.148967px;}
.h2{height:41.400000px;}
.h1f{height:41.519456px;}
.h1a{height:49.855304px;}
.h14{height:49.889806px;}
.h1b{height:52.624188px;}
.h15{height:52.668472px;}
.h4{height:53.709961px;}
.h1d{height:54.373737px;}
.h10{height:55.199111px;}
.h16{height:55.273610px;}
.h26{height:58.490859px;}
.hd{height:59.066719px;}
.he{height:59.436914px;}
.h6{height:66.757500px;}
.h19{height:70.435517px;}
.h13{height:70.484262px;}
.h8{height:70.664062px;}
.h20{height:71.214620px;}
.h3{height:72.562500px;}
.h17{height:73.802022px;}
.h11{height:73.853097px;}
.h1e{height:74.618363px;}
.hc{height:82.635820px;}
.ha{height:82.676953px;}
.h22{height:83.340000px;}
.hb{height:84.898125px;}
.h25{height:86.585445px;}
.h9{height:96.508125px;}
.hf{height:98.426190px;}
.h21{height:181.440000px;}
.h1c{height:183.630000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:39.276000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.wc{width:70.950977px;}
.w7{width:95.926329px;}
.w8{width:107.999956px;}
.w11{width:155.550000px;}
.w14{width:168.330000px;}
.w12{width:176.940000px;}
.w13{width:178.410000px;}
.wd{width:209.910000px;}
.w9{width:210.855000px;}
.we{width:236.370000px;}
.wb{width:242.130000px;}
.wf{width:254.730000px;}
.wa{width:266.970000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:3.594221px;}
.x2{left:8.640000px;}
.x2a{left:10.296000px;}
.x13{left:11.941272px;}
.x1a{left:13.054994px;}
.x7{left:19.800000px;}
.x15{left:22.839393px;}
.x1{left:31.860000px;}
.x1c{left:34.273995px;}
.x14{left:38.342273px;}
.x24{left:39.681420px;}
.x1b{left:50.133594px;}
.x12{left:51.290101px;}
.x23{left:54.130217px;}
.x4{left:59.970000px;}
.x18{left:61.570655px;}
.x19{left:64.699446px;}
.x5{left:84.959987px;}
.x11{left:88.408378px;}
.x27{left:95.976000px;}
.x17{left:100.340054px;}
.x9{left:123.515987px;}
.x2b{left:125.856000px;}
.x8{left:127.475987px;}
.x26{left:198.389987px;}
.x28{left:199.839000px;}
.x1e{left:205.635000px;}
.x2f{left:216.929987px;}
.x16{left:223.409987px;}
.x30{left:232.589987px;}
.x1d{left:235.469987px;}
.x22{left:237.465000px;}
.x20{left:262.470000px;}
.x2c{left:282.135000px;}
.xc{left:288.974987px;}
.x1f{left:297.435000px;}
.xe{left:305.534987px;}
.xd{left:317.234987px;}
.xa{left:318.854987px;}
.xf{left:368.894987px;}
.x10{left:389.234987px;}
.x31{left:425.594987px;}
.x32{left:441.254987px;}
.xb{left:446.474987px;}
.x2d{left:459.795000px;}
.x33{left:492.044987px;}
.x34{left:507.704987px;}
.x35{left:518.324987px;}
.x36{left:533.984987px;}
.x29{left:542.265000px;}
.x21{left:565.125000px;}
.x2e{left:638.925000px;}
.x37{left:671.369987px;}
.x38{left:687.029987px;}
.x39{left:728.249987px;}
.x3a{left:743.909987px;}
.x3{left:792.690000px;}
.x6{left:797.550000px;}
@media print{
.v1{vertical-align:-33.466341pt;}
.v2{vertical-align:-8.320000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-1.296000pt;}
.ls15{letter-spacing:-0.720000pt;}
.ls3{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.303467pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.033280pt;}
.ls8{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.285867pt;}
.lsa{letter-spacing:0.290347pt;}
.ls16{letter-spacing:0.303467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.336640pt;}
.ls4{letter-spacing:0.431360pt;}
.ls0{letter-spacing:0.448000pt;}
.ls13{letter-spacing:2.400000pt;}
.lse{letter-spacing:5.600000pt;}
.ls5{letter-spacing:9.616640pt;}
.ls11{letter-spacing:11.360000pt;}
.lsf{letter-spacing:21.600000pt;}
.lsc{letter-spacing:41.576107pt;}
.ls6{letter-spacing:76.033205pt;}
.lsb{letter-spacing:80.603186pt;}
.ws0{word-spacing:-21.600000pt;}
.ws3{word-spacing:-19.040000pt;}
.wse{word-spacing:-19.023467pt;}
.wsd{word-spacing:-19.005867pt;}
.wsb{word-spacing:-18.753280pt;}
.ws1{word-spacing:-18.720000pt;}
.ws9{word-spacing:-18.416533pt;}
.ws2{word-spacing:-18.400000pt;}
.wsc{word-spacing:-18.000000pt;}
.wsa{word-spacing:-17.424000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws5{word-spacing:-0.037287pt;}
.ws7{word-spacing:-0.037211pt;}
.ws4{word-spacing:0.000000pt;}
.ws8{word-spacing:73.588597pt;}
._6{margin-left:-5.166720pt;}
._7{margin-left:-3.733973pt;}
._11{margin-left:-2.545920pt;}
._1{margin-left:-1.029973pt;}
._0{width:1.237333pt;}
._c{width:2.920320pt;}
._d{width:3.875413pt;}
._10{width:4.960427pt;}
._4{width:5.915520pt;}
._1d{width:6.887893pt;}
._f{width:7.787520pt;}
._1f{width:8.985600pt;}
._e{width:10.258560pt;}
._15{width:11.306880pt;}
._3{width:12.314880pt;}
._2{width:13.253760pt;}
._26{width:14.900053pt;}
._a{width:16.080853pt;}
._b{width:17.389867pt;}
._29{width:19.676160pt;}
._14{width:20.891520pt;}
._1e{width:21.939840pt;}
._1c{width:23.212800pt;}
._1b{width:24.785280pt;}
._13{width:25.758720pt;}
._25{width:27.031680pt;}
._19{width:28.680533pt;}
._12{width:29.577600pt;}
._1a{width:31.297920pt;}
._24{width:32.803627pt;}
._16{width:34.764373pt;}
._17{width:36.541440pt;}
._27{width:41.238400pt;}
._21{width:42.232320pt;}
._8{width:44.011093pt;}
._5{width:45.601920pt;}
._28{width:47.081173pt;}
._20{width:49.870080pt;}
._18{width:52.640640pt;}
._22{width:62.225280pt;}
._23{width:63.164373pt;}
._9{width:93.806293pt;}
.fs9{font-size:37.211030pt;}
.fs6{font-size:37.286913pt;}
.fsc{font-size:37.622630pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs8{font-size:63.824762pt;}
.fs5{font-size:63.868931pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:64.530742pt;}
.fsa{font-size:67.369487pt;}
.fs7{font-size:67.426180pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:3.200000pt;}
.y72{bottom:3.452388pt;}
.y3{bottom:3.520000pt;}
.ya{bottom:4.640000pt;}
.y3b{bottom:4.672991pt;}
.y4a{bottom:4.710846pt;}
.y9{bottom:6.560000pt;}
.y8e{bottom:7.200000pt;}
.y90{bottom:7.360000pt;}
.y61{bottom:12.800000pt;}
.y4{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.y74{bottom:15.982452pt;}
.y3d{bottom:17.049369pt;}
.y4c{bottom:17.104969pt;}
.y8c{bottom:19.520000pt;}
.y71{bottom:20.011287pt;}
.y76{bottom:20.011349pt;}
.y3a{bottom:21.060030pt;}
.y3f{bottom:21.060055pt;}
.y40{bottom:21.060064pt;}
.y49{bottom:21.119754pt;}
.y4e{bottom:21.119765pt;}
.y4f{bottom:21.119771pt;}
.y62{bottom:21.120000pt;}
.y2{bottom:21.920000pt;}
.y73{bottom:28.034794pt;}
.y3c{bottom:28.921257pt;}
.y4b{bottom:28.991585pt;}
.y8a{bottom:31.840000pt;}
.y75{bottom:32.062376pt;}
.y3e{bottom:32.931951pt;}
.y4d{bottom:33.007692pt;}
.y8{bottom:39.680000pt;}
.y8b{bottom:44.160000pt;}
.y8d{bottom:56.640000pt;}
.yb0{bottom:87.872000pt;}
.y53{bottom:93.472000pt;}
.y98{bottom:107.872000pt;}
.yaf{bottom:112.512000pt;}
.y52{bottom:118.112000pt;}
.y97{bottom:132.512000pt;}
.y2f{bottom:134.106667pt;}
.yae{bottom:137.306667pt;}
.y51{bottom:142.746667pt;}
.y6f{bottom:152.026667pt;}
.y2e{bottom:158.746667pt;}
.y96{bottom:159.706667pt;}
.yad{bottom:161.946667pt;}
.y48{bottom:163.413315pt;}
.y6e{bottom:176.666667pt;}
.y2d{bottom:183.386667pt;}
.y50{bottom:184.666667pt;}
.yac{bottom:186.586667pt;}
.y95{bottom:186.906667pt;}
.y6d{bottom:201.466667pt;}
.y2c{bottom:208.026667pt;}
.yab{bottom:211.226667pt;}
.y94{bottom:214.106667pt;}
.y47{bottom:219.866667pt;}
.y6c{bottom:226.106667pt;}
.y2b{bottom:232.826667pt;}
.yaa{bottom:236.026667pt;}
.y93{bottom:238.746667pt;}
.y46{bottom:244.506667pt;}
.y6b{bottom:250.746667pt;}
.y92{bottom:256.826667pt;}
.y2a{bottom:257.466667pt;}
.ya9{bottom:260.666667pt;}
.y45{bottom:269.146667pt;}
.y6a{bottom:275.386667pt;}
.y29{bottom:282.106667pt;}
.y91{bottom:282.266667pt;}
.ya8{bottom:285.306667pt;}
.y44{bottom:293.946667pt;}
.y69{bottom:300.066667pt;}
.y28{bottom:306.786667pt;}
.y8f{bottom:307.586667pt;}
.ya7{bottom:310.146667pt;}
.y43{bottom:318.626667pt;}
.y68{bottom:327.266667pt;}
.y27{bottom:331.586667pt;}
.y89{bottom:333.026667pt;}
.ya6{bottom:334.786667pt;}
.y42{bottom:343.266667pt;}
.y67{bottom:354.466667pt;}
.y26{bottom:356.226667pt;}
.ya5{bottom:359.426667pt;}
.y39{bottom:363.946630pt;}
.y25{bottom:380.866667pt;}
.y66{bottom:381.666667pt;}
.ya4{bottom:384.066667pt;}
.y41{bottom:385.186667pt;}
.y24{bottom:405.666667pt;}
.y65{bottom:406.466667pt;}
.ya3{bottom:408.866667pt;}
.y88{bottom:414.946667pt;}
.y38{bottom:420.386667pt;}
.y23{bottom:430.306667pt;}
.y64{bottom:431.106667pt;}
.ya2{bottom:433.506667pt;}
.y87{bottom:439.586667pt;}
.y37{bottom:445.026667pt;}
.y22{bottom:454.946667pt;}
.y63{bottom:455.746667pt;}
.ya1{bottom:458.146667pt;}
.y86{bottom:464.386667pt;}
.y36{bottom:469.666667pt;}
.y5f{bottom:473.826667pt;}
.y21{bottom:479.586667pt;}
.ya0{bottom:482.946667pt;}
.y85{bottom:489.026667pt;}
.y35{bottom:494.306667pt;}
.y20{bottom:504.386667pt;}
.y9f{bottom:507.586667pt;}
.y84{bottom:513.666667pt;}
.y34{bottom:519.106667pt;}
.y1f{bottom:529.026667pt;}
.y9e{bottom:532.226667pt;}
.y83{bottom:538.333333pt;}
.y33{bottom:543.773333pt;}
.y1e{bottom:553.693333pt;}
.y9d{bottom:556.893333pt;}
.y82{bottom:563.133333pt;}
.y32{bottom:570.813333pt;}
.y1d{bottom:578.493333pt;}
.y9c{bottom:581.693333pt;}
.y81{bottom:587.773333pt;}
.y31{bottom:598.013333pt;}
.y1c{bottom:603.133333pt;}
.y80{bottom:605.213333pt;}
.y9b{bottom:606.333333pt;}
.y30{bottom:625.213333pt;}
.y1b{bottom:627.773333pt;}
.y9a{bottom:630.973333pt;}
.y5e{bottom:645.053333pt;}
.y1a{bottom:652.413333pt;}
.y99{bottom:655.773333pt;}
.y5d{bottom:669.693333pt;}
.y19{bottom:677.213333pt;}
.y5c{bottom:694.333333pt;}
.y18{bottom:701.853333pt;}
.y5b{bottom:719.133333pt;}
.y17{bottom:726.493333pt;}
.y5a{bottom:743.773333pt;}
.y16{bottom:751.133333pt;}
.y59{bottom:768.413333pt;}
.y7f{bottom:773.693333pt;}
.y15{bottom:775.973333pt;}
.y58{bottom:793.093333pt;}
.y7e{bottom:798.373333pt;}
.y14{bottom:800.613333pt;}
.y57{bottom:817.893333pt;}
.y7d{bottom:823.013333pt;}
.y13{bottom:825.253333pt;}
.y56{bottom:842.373333pt;}
.y7c{bottom:847.813333pt;}
.y12{bottom:850.053333pt;}
.y55{bottom:869.573333pt;}
.y7b{bottom:872.453333pt;}
.y11{bottom:874.693333pt;}
.y54{bottom:896.773333pt;}
.y7a{bottom:897.093333pt;}
.y10{bottom:899.333333pt;}
.y79{bottom:921.733333pt;}
.yf{bottom:923.973333pt;}
.y78{bottom:946.533333pt;}
.ye{bottom:948.773333pt;}
.y70{bottom:966.946594pt;}
.yd{bottom:973.413333pt;}
.y77{bottom:987.013333pt;}
.yc{bottom:998.053333pt;}
.y7{bottom:1018.880000pt;}
.y5{bottom:1032.480000pt;}
.y1{bottom:1047.840000pt;}
.h5{height:5.760000pt;}
.h7{height:24.512000pt;}
.h24{height:24.672000pt;}
.h23{height:24.800000pt;}
.h18{height:36.502422pt;}
.h12{height:36.576860pt;}
.h2{height:36.800000pt;}
.h1f{height:36.906183pt;}
.h1a{height:44.315826pt;}
.h14{height:44.346494pt;}
.h1b{height:46.777056pt;}
.h15{height:46.816420pt;}
.h4{height:47.742188pt;}
.h1d{height:48.332211pt;}
.h10{height:49.065877pt;}
.h16{height:49.132097pt;}
.h26{height:51.991875pt;}
.hd{height:52.503750pt;}
.he{height:52.832812pt;}
.h6{height:59.340000pt;}
.h19{height:62.609349pt;}
.h13{height:62.652677pt;}
.h8{height:62.812500pt;}
.h20{height:63.301885pt;}
.h3{height:64.500000pt;}
.h17{height:65.601798pt;}
.h11{height:65.647197pt;}
.h1e{height:66.327434pt;}
.hc{height:73.454062pt;}
.ha{height:73.490625pt;}
.h22{height:74.080000pt;}
.hb{height:75.465000pt;}
.h25{height:76.964840pt;}
.h9{height:85.785000pt;}
.hf{height:87.489947pt;}
.h21{height:161.280000pt;}
.h1c{height:163.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:34.912000pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.wc{width:63.067535pt;}
.w7{width:85.267848pt;}
.w8{width:95.999961pt;}
.w11{width:138.266667pt;}
.w14{width:149.626667pt;}
.w12{width:157.280000pt;}
.w13{width:158.586667pt;}
.wd{width:186.586667pt;}
.w9{width:187.426667pt;}
.we{width:210.106667pt;}
.wb{width:215.226667pt;}
.wf{width:226.426667pt;}
.wa{width:237.306667pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:3.194863pt;}
.x2{left:7.680000pt;}
.x2a{left:9.152000pt;}
.x13{left:10.614464pt;}
.x1a{left:11.604439pt;}
.x7{left:17.600000pt;}
.x15{left:20.301683pt;}
.x1{left:28.320000pt;}
.x1c{left:30.465773pt;}
.x14{left:34.082021pt;}
.x24{left:35.272373pt;}
.x1b{left:44.563195pt;}
.x12{left:45.591201pt;}
.x23{left:48.115748pt;}
.x4{left:53.306667pt;}
.x18{left:54.729472pt;}
.x19{left:57.510618pt;}
.x5{left:75.519988pt;}
.x11{left:78.585225pt;}
.x27{left:85.312000pt;}
.x17{left:89.191159pt;}
.x9{left:109.791988pt;}
.x2b{left:111.872000pt;}
.x8{left:113.311988pt;}
.x26{left:176.346655pt;}
.x28{left:177.634667pt;}
.x1e{left:182.786667pt;}
.x2f{left:192.826655pt;}
.x16{left:198.586655pt;}
.x30{left:206.746655pt;}
.x1d{left:209.306655pt;}
.x22{left:211.080000pt;}
.x20{left:233.306667pt;}
.x2c{left:250.786667pt;}
.xc{left:256.866655pt;}
.x1f{left:264.386667pt;}
.xe{left:271.586655pt;}
.xd{left:281.986655pt;}
.xa{left:283.426655pt;}
.xf{left:327.906655pt;}
.x10{left:345.986655pt;}
.x31{left:378.306655pt;}
.x32{left:392.226655pt;}
.xb{left:396.866655pt;}
.x2d{left:408.706667pt;}
.x33{left:437.373322pt;}
.x34{left:451.293322pt;}
.x35{left:460.733322pt;}
.x36{left:474.653322pt;}
.x29{left:482.013333pt;}
.x21{left:502.333333pt;}
.x2e{left:567.933333pt;}
.x37{left:596.773322pt;}
.x38{left:610.693322pt;}
.x39{left:647.333322pt;}
.x3a{left:661.253322pt;}
.x3{left:704.613333pt;}
.x6{left:708.933333pt;}
}




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