
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;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: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_83b5457c9e64cb38495df152.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_dcc26aa9a90661e64dfcb5de.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.331331;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_84aae81cc1c2d4f49554110f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331331;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_f7c7e589de5d0786e24e37b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.331331;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_7ebdaff7b83594203bfb2f7c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.331331;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_296a4c99231bdb3c71cb83f8.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_09fc3d3106ea60406620e6e6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.701660;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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.736816;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_46448410d19f8472eca100d9.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c35f38af48148e563d2a392c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b2795c0180fe13e647b90251.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_07234afee13c24bed2a976cb.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls24{letter-spacing:-1.728000px;}
.ls47{letter-spacing:-1.290000px;}
.ls38{letter-spacing:-0.972000px;}
.ls35{letter-spacing:-0.853806px;}
.ls2d{letter-spacing:-0.720000px;}
.ls3b{letter-spacing:-0.714668px;}
.ls3e{letter-spacing:-0.708343px;}
.ls28{letter-spacing:-0.702000px;}
.ls32{letter-spacing:-0.664072px;}
.ls3a{letter-spacing:-0.630000px;}
.ls2a{letter-spacing:-0.593400px;}
.ls2f{letter-spacing:-0.524933px;}
.ls42{letter-spacing:-0.507000px;}
.ls33{letter-spacing:-0.349112px;}
.ls43{letter-spacing:-0.288000px;}
.ls3c{letter-spacing:-0.234006px;}
.ls30{letter-spacing:-0.218827px;}
.ls29{letter-spacing:-0.121200px;}
.ls3d{letter-spacing:-0.115106px;}
.ls2c{letter-spacing:-0.089400px;}
.ls39{letter-spacing:-0.072000px;}
.ls37{letter-spacing:-0.031680px;}
.ls36{letter-spacing:-0.020160px;}
.ls34{letter-spacing:-0.015179px;}
.ls23{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.020160px;}
.ls41{letter-spacing:0.089400px;}
.ls49{letter-spacing:0.135600px;}
.ls27{letter-spacing:0.150000px;}
.ls4{letter-spacing:0.195840px;}
.ls1a{letter-spacing:0.303576px;}
.ls3f{letter-spacing:0.309600px;}
.ls26{letter-spacing:0.388800px;}
.ls2b{letter-spacing:0.391800px;}
.ls0{letter-spacing:0.423360px;}
.ls1{letter-spacing:0.466560px;}
.ls25{letter-spacing:0.466800px;}
.ls3{letter-spacing:0.596160px;}
.ls1f{letter-spacing:0.618000px;}
.ls45{letter-spacing:0.646560px;}
.lsf{letter-spacing:0.661795px;}
.ls1c{letter-spacing:0.664072px;}
.ls2{letter-spacing:0.720000px;}
.ls46{letter-spacing:0.846000px;}
.ls48{letter-spacing:0.882000px;}
.ls6{letter-spacing:1.080000px;}
.ls2e{letter-spacing:1.350000px;}
.ls16{letter-spacing:2.179673px;}
.ls18{letter-spacing:2.306163px;}
.ls17{letter-spacing:2.369408px;}
.lsd{letter-spacing:3.697551px;}
.lse{letter-spacing:3.824041px;}
.ls14{letter-spacing:5.215429px;}
.ls1b{letter-spacing:5.341919px;}
.ls31{letter-spacing:6.703962px;}
.ls15{letter-spacing:6.733307px;}
.lsa{letter-spacing:8.251185px;}
.lsc{letter-spacing:8.377675px;}
.lsb{letter-spacing:8.440920px;}
.ls7{letter-spacing:9.769063px;}
.ls13{letter-spacing:9.958798px;}
.ls8{letter-spacing:11.286942px;}
.ls9{letter-spacing:11.413431px;}
.ls19{letter-spacing:12.804820px;}
.ls20{letter-spacing:15.840576px;}
.ls21{letter-spacing:17.188452px;}
.ls22{letter-spacing:17.314941px;}
.ls10{letter-spacing:17.358454px;}
.ls11{letter-spacing:17.484944px;}
.ls12{letter-spacing:18.876332px;}
.ls1d{letter-spacing:20.394210px;}
.ls1e{letter-spacing:20.583945px;}
.ls44{letter-spacing:40.786560px;}
.ls40{letter-spacing:182.050560px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-38.880000px;}
.ws7{word-spacing:-18.399718px;}
.ws14{word-spacing:-17.695440px;}
.ws12{word-spacing:-17.659440px;}
.ws15{word-spacing:-17.431440px;}
.ws17{word-spacing:-17.205240px;}
.ws13{word-spacing:-16.963440px;}
.ws18{word-spacing:-16.949040px;}
.wsf{word-spacing:-16.902840px;}
.wsb{word-spacing:-16.813440px;}
.ws9{word-spacing:-16.793280px;}
.wsa{word-spacing:-16.781760px;}
.ws0{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.525440px;}
.ws10{word-spacing:-16.306440px;}
.ws16{word-spacing:-16.111440px;}
.ws8{word-spacing:-16.034864px;}
.ws3{word-spacing:-15.120000px;}
.wsd{word-spacing:-13.050000px;}
.ws6{word-spacing:-11.790000px;}
.ws4{word-spacing:-11.160000px;}
.ws5{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.wsc{word-spacing:-8.928000px;}
.wse{word-spacing:0.000000px;}
._11{margin-left:-16.090560px;}
._e{margin-left:-9.558124px;}
._9{margin-left:-8.266093px;}
._f{margin-left:-5.471622px;}
._7{margin-left:-3.923580px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._a{width:5.223066px;}
._8{width:7.225991px;}
._10{width:8.279111px;}
._6{width:9.281455px;}
._c{width:11.111590px;}
._b{width:12.585008px;}
._d{width:17.970544px;}
._5{width:164.639538px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs6{font-size:18.720000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fsc{font-size:54.720000px;}
.fs3{font-size:57.600000px;}
.fs9{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fsd{font-size:63.750880px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:83.520000px;}
.fse{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y40{bottom:1.075500px;}
.y37{bottom:3.960000px;}
.y5{bottom:4.320000px;}
.y4d{bottom:5.370000px;}
.y4b{bottom:8.995500px;}
.y2{bottom:10.080000px;}
.y4{bottom:23.400000px;}
.y36{bottom:24.120000px;}
.y4a{bottom:29.515500px;}
.y3f{bottom:30.595500px;}
.y3e{bottom:42.475500px;}
.y35{bottom:47.160000px;}
.y3{bottom:47.880000px;}
.y49{bottom:53.671500px;}
.y3d{bottom:55.474500px;}
.y7{bottom:57.636000px;}
.y3c{bottom:68.434500px;}
.y48{bottom:72.754500px;}
.y34{bottom:73.080000px;}
.y3b{bottom:90.034500px;}
.y47{bottom:90.394500px;}
.y38{bottom:96.160500px;}
.y46{bottom:96.874500px;}
.y33{bottom:99.360000px;}
.y78{bottom:104.436000px;}
.y45{bottom:112.714500px;}
.y77{bottom:124.596000px;}
.y32{bottom:125.685000px;}
.y44{bottom:128.194500px;}
.y43{bottom:143.674500px;}
.y76{bottom:144.792000px;}
.y31{bottom:151.245000px;}
.y3a{bottom:152.674500px;}
.y42{bottom:159.154500px;}
.ya2{bottom:162.075000px;}
.y39{bottom:163.114500px;}
.y75{bottom:164.955000px;}
.y41{bottom:174.274500px;}
.y30{bottom:174.645000px;}
.ya1{bottom:182.235000px;}
.y74{bottom:184.755000px;}
.y2f{bottom:198.405000px;}
.ya0{bottom:202.035000px;}
.y73{bottom:204.915000px;}
.y2e{bottom:221.805000px;}
.y9f{bottom:222.195000px;}
.y72{bottom:225.075000px;}
.y9e{bottom:242.355000px;}
.y2d{bottom:245.205000px;}
.y71{bottom:245.235000px;}
.y9d{bottom:262.515000px;}
.y70{bottom:265.395000px;}
.y2c{bottom:268.995000px;}
.y9c{bottom:285.225000px;}
.y6f{bottom:285.585000px;}
.y10{bottom:289.185000px;}
.y1e{bottom:291.675000px;}
.y2b{bottom:292.395000px;}
.y6e{bottom:305.385000px;}
.y9b{bottom:308.625000px;}
.y1d{bottom:315.795000px;}
.y6d{bottom:325.545000px;}
.y9a{bottom:331.665000px;}
.y2a{bottom:339.555000px;}
.y1c{bottom:339.915000px;}
.y6c{bottom:354.705000px;}
.y99{bottom:357.585000px;}
.y29{bottom:362.955000px;}
.y1b{bottom:364.035000px;}
.y6b{bottom:374.865000px;}
.y98{bottom:380.985000px;}
.y28{bottom:386.385000px;}
.y1a{bottom:388.545000px;}
.y6a{bottom:395.025000px;}
.y97{bottom:406.950000px;}
.y27{bottom:410.145000px;}
.y19{bottom:412.665000px;}
.y69{bottom:415.230000px;}
.y96{bottom:433.230000px;}
.y26{bottom:433.545000px;}
.y18{bottom:436.785000px;}
.y68{bottom:446.910000px;}
.y25{bottom:456.945000px;}
.y95{bottom:459.150000px;}
.y17{bottom:460.905000px;}
.y67{bottom:473.190000px;}
.y24{bottom:480.705000px;}
.y16{bottom:485.025000px;}
.y94{bottom:485.430000px;}
.y66{bottom:496.590000px;}
.y23{bottom:504.105000px;}
.y15{bottom:509.145000px;}
.y93{bottom:517.830000px;}
.y65{bottom:519.270000px;}
.y22{bottom:527.550000px;}
.y14{bottom:533.310000px;}
.y92{bottom:538.020000px;}
.y64{bottom:545.580000px;}
.y21{bottom:551.310000px;}
.y13{bottom:557.430000px;}
.y91{bottom:567.180000px;}
.y63{bottom:571.500000px;}
.y20{bottom:574.710000px;}
.y12{bottom:581.550000px;}
.y90{bottom:586.980000px;}
.y62{bottom:597.780000px;}
.y1f{bottom:598.110000px;}
.y11{bottom:605.670000px;}
.y8f{bottom:607.140000px;}
.y61{bottom:621.180000px;}
.y8e{bottom:627.300000px;}
.y60{bottom:643.860000px;}
.y8d{bottom:647.460000px;}
.y8c{bottom:667.620000px;}
.y5f{bottom:670.170000px;}
.y8b{bottom:687.450000px;}
.y5e{bottom:696.450000px;}
.y8a{bottom:707.610000px;}
.y5d{bottom:722.370000px;}
.y89{bottom:727.770000px;}
.y88{bottom:747.930000px;}
.y5c{bottom:748.650000px;}
.y5b{bottom:774.570000px;}
.y87{bottom:777.090000px;}
.y86{bottom:797.250000px;}
.y5a{bottom:800.895000px;}
.y85{bottom:817.095000px;}
.y59{bottom:827.175000px;}
.y84{bottom:837.255000px;}
.y58{bottom:853.095000px;}
.y83{bottom:857.415000px;}
.y57{bottom:876.495000px;}
.y82{bottom:877.575000px;}
.y81{bottom:897.735000px;}
.y56{bottom:899.535000px;}
.yf{bottom:907.095000px;}
.ye{bottom:912.495000px;}
.y80{bottom:917.895000px;}
.y55{bottom:925.455000px;}
.yd{bottom:933.045000px;}
.y7f{bottom:937.725000px;}
.y54{bottom:951.765000px;}
.y7e{bottom:957.885000px;}
.yc{bottom:958.965000px;}
.y53{bottom:975.165000px;}
.y7d{bottom:978.045000px;}
.yb{bottom:992.085000px;}
.y52{bottom:994.965000px;}
.y7c{bottom:998.205000px;}
.ya{bottom:1011.165000px;}
.y51{bottom:1018.005000px;}
.y7b{bottom:1027.365000px;}
.y9{bottom:1036.365000px;}
.y50{bottom:1041.405000px;}
.y7a{bottom:1047.525000px;}
.y4f{bottom:1064.085000px;}
.y79{bottom:1067.370000px;}
.y8{bottom:1072.050000px;}
.y4c{bottom:1075.320000px;}
.y4e{bottom:1087.530000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h17{height:5.650313px;}
.h1a{height:27.720000px;}
.h14{height:29.678906px;}
.h13{height:35.332031px;}
.ha{height:38.158594px;}
.h10{height:40.985156px;}
.hf{height:42.086250px;}
.h15{height:53.677969px;}
.h16{height:55.147500px;}
.h7{height:57.290625px;}
.h18{height:59.328281px;}
.h6{height:59.357813px;}
.hd{height:60.952500px;}
.h11{height:61.143509px;}
.h1b{height:63.565031px;}
.hc{height:64.112344px;}
.h5{height:65.010937px;}
.hb{height:65.518594px;}
.h3{height:65.884219px;}
.h9{height:66.543750px;}
.h19{height:67.579668px;}
.h2{height:84.990000px;}
.h8{height:88.536094px;}
.h4{height:116.640000px;}
.h12{height:191.925000px;}
.he{height:615.030000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:6.876000px;}
.x1a{left:8.295000px;}
.x4{left:13.305000px;}
.x16{left:16.906500px;}
.x1d{left:18.346500px;}
.x18{left:21.946500px;}
.x6{left:28.785000px;}
.x17{left:34.186500px;}
.x11{left:43.906500px;}
.x1e{left:47.542500px;}
.x12{left:50.782500px;}
.x15{left:53.302500px;}
.x10{left:55.102500px;}
.x20{left:57.262500px;}
.x1b{left:60.855000px;}
.x1f{left:66.265500px;}
.x14{left:73.105500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x2{left:95.425500px;}
.x21{left:102.985500px;}
.x1c{left:106.945500px;}
.x35{left:113.436000px;}
.x34{left:118.116000px;}
.x13{left:124.585500px;}
.x27{left:140.472000px;}
.x5{left:141.540000px;}
.x3{left:182.250000px;}
.x19{left:218.970000px;}
.x22{left:242.730000px;}
.x23{left:293.880000px;}
.x33{left:301.065000px;}
.x28{left:305.745000px;}
.x2b{left:309.345000px;}
.x2a{left:315.870000px;}
.x29{left:325.950000px;}
.xc{left:335.670000px;}
.x2e{left:336.750000px;}
.x2c{left:344.310000px;}
.x2d{left:346.470000px;}
.x32{left:349.350000px;}
.x2f{left:355.110000px;}
.x26{left:357.630000px;}
.x30{left:358.710000px;}
.x25{left:360.870000px;}
.x31{left:404.460000px;}
.xb{left:422.100000px;}
.xd{left:496.650000px;}
.xa{left:529.770000px;}
.xe{left:597.495000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xf{left:807.090000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls24{letter-spacing:-1.536000pt;}
.ls47{letter-spacing:-1.146667pt;}
.ls38{letter-spacing:-0.864000pt;}
.ls35{letter-spacing:-0.758939pt;}
.ls2d{letter-spacing:-0.640000pt;}
.ls3b{letter-spacing:-0.635260pt;}
.ls3e{letter-spacing:-0.629638pt;}
.ls28{letter-spacing:-0.624000pt;}
.ls32{letter-spacing:-0.590286pt;}
.ls3a{letter-spacing:-0.560000pt;}
.ls2a{letter-spacing:-0.527467pt;}
.ls2f{letter-spacing:-0.466607pt;}
.ls42{letter-spacing:-0.450667pt;}
.ls33{letter-spacing:-0.310322pt;}
.ls43{letter-spacing:-0.256000pt;}
.ls3c{letter-spacing:-0.208006pt;}
.ls30{letter-spacing:-0.194513pt;}
.ls29{letter-spacing:-0.107733pt;}
.ls3d{letter-spacing:-0.102316pt;}
.ls2c{letter-spacing:-0.079467pt;}
.ls39{letter-spacing:-0.064000pt;}
.ls37{letter-spacing:-0.028160pt;}
.ls36{letter-spacing:-0.017920pt;}
.ls34{letter-spacing:-0.013492pt;}
.ls23{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.017920pt;}
.ls41{letter-spacing:0.079467pt;}
.ls49{letter-spacing:0.120533pt;}
.ls27{letter-spacing:0.133333pt;}
.ls4{letter-spacing:0.174080pt;}
.ls1a{letter-spacing:0.269845pt;}
.ls3f{letter-spacing:0.275200pt;}
.ls26{letter-spacing:0.345600pt;}
.ls2b{letter-spacing:0.348267pt;}
.ls0{letter-spacing:0.376320pt;}
.ls1{letter-spacing:0.414720pt;}
.ls25{letter-spacing:0.414933pt;}
.ls3{letter-spacing:0.529920pt;}
.ls1f{letter-spacing:0.549333pt;}
.ls45{letter-spacing:0.574720pt;}
.lsf{letter-spacing:0.588262pt;}
.ls1c{letter-spacing:0.590286pt;}
.ls2{letter-spacing:0.640000pt;}
.ls46{letter-spacing:0.752000pt;}
.ls48{letter-spacing:0.784000pt;}
.ls6{letter-spacing:0.960000pt;}
.ls2e{letter-spacing:1.200000pt;}
.ls16{letter-spacing:1.937487pt;}
.ls18{letter-spacing:2.049922pt;}
.ls17{letter-spacing:2.106140pt;}
.lsd{letter-spacing:3.286712pt;}
.lse{letter-spacing:3.399147pt;}
.ls14{letter-spacing:4.635937pt;}
.ls1b{letter-spacing:4.748372pt;}
.ls31{letter-spacing:5.959077pt;}
.ls15{letter-spacing:5.985162pt;}
.lsa{letter-spacing:7.334387pt;}
.lsc{letter-spacing:7.446822pt;}
.lsb{letter-spacing:7.503040pt;}
.ls7{letter-spacing:8.683612pt;}
.ls13{letter-spacing:8.852265pt;}
.ls8{letter-spacing:10.032837pt;}
.ls9{letter-spacing:10.145272pt;}
.ls19{letter-spacing:11.382062pt;}
.ls20{letter-spacing:14.080512pt;}
.ls21{letter-spacing:15.278624pt;}
.ls22{letter-spacing:15.391059pt;}
.ls10{letter-spacing:15.429737pt;}
.ls11{letter-spacing:15.542172pt;}
.ls12{letter-spacing:16.778962pt;}
.ls1d{letter-spacing:18.128187pt;}
.ls1e{letter-spacing:18.296840pt;}
.ls44{letter-spacing:36.254720pt;}
.ls40{letter-spacing:161.822720pt;}
.ws1{word-spacing:-34.560000pt;}
.ws7{word-spacing:-16.355305pt;}
.ws14{word-spacing:-15.729280pt;}
.ws12{word-spacing:-15.697280pt;}
.ws15{word-spacing:-15.494613pt;}
.ws17{word-spacing:-15.293547pt;}
.ws13{word-spacing:-15.078613pt;}
.ws18{word-spacing:-15.065813pt;}
.wsf{word-spacing:-15.024747pt;}
.wsb{word-spacing:-14.945280pt;}
.ws9{word-spacing:-14.927360pt;}
.wsa{word-spacing:-14.917120pt;}
.ws0{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.689280pt;}
.ws10{word-spacing:-14.494613pt;}
.ws16{word-spacing:-14.321280pt;}
.ws8{word-spacing:-14.253213pt;}
.ws3{word-spacing:-13.440000pt;}
.wsd{word-spacing:-11.600000pt;}
.ws6{word-spacing:-10.480000pt;}
.ws4{word-spacing:-9.920000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.wsc{word-spacing:-7.936000pt;}
.wse{word-spacing:0.000000pt;}
._11{margin-left:-14.302720pt;}
._e{margin-left:-8.496110pt;}
._9{margin-left:-7.347638pt;}
._f{margin-left:-4.863664pt;}
._7{margin-left:-3.487627pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._a{width:4.642725pt;}
._8{width:6.423104pt;}
._10{width:7.359210pt;}
._6{width:8.250182pt;}
._c{width:9.876969pt;}
._b{width:11.186674pt;}
._d{width:15.973817pt;}
._5{width:146.346256pt;}
.fs7{font-size:5.120000pt;}
.fs6{font-size:16.640000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fsc{font-size:48.640000pt;}
.fs3{font-size:51.200000pt;}
.fs9{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fsd{font-size:56.667449pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.240000pt;}
.fse{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:0.956000pt;}
.y37{bottom:3.520000pt;}
.y5{bottom:3.840000pt;}
.y4d{bottom:4.773333pt;}
.y4b{bottom:7.996000pt;}
.y2{bottom:8.960000pt;}
.y4{bottom:20.800000pt;}
.y36{bottom:21.440000pt;}
.y4a{bottom:26.236000pt;}
.y3f{bottom:27.196000pt;}
.y3e{bottom:37.756000pt;}
.y35{bottom:41.920000pt;}
.y3{bottom:42.560000pt;}
.y49{bottom:47.708000pt;}
.y3d{bottom:49.310667pt;}
.y7{bottom:51.232000pt;}
.y3c{bottom:60.830667pt;}
.y48{bottom:64.670667pt;}
.y34{bottom:64.960000pt;}
.y3b{bottom:80.030667pt;}
.y47{bottom:80.350667pt;}
.y38{bottom:85.476000pt;}
.y46{bottom:86.110667pt;}
.y33{bottom:88.320000pt;}
.y78{bottom:92.832000pt;}
.y45{bottom:100.190667pt;}
.y77{bottom:110.752000pt;}
.y32{bottom:111.720000pt;}
.y44{bottom:113.950667pt;}
.y43{bottom:127.710667pt;}
.y76{bottom:128.704000pt;}
.y31{bottom:134.440000pt;}
.y3a{bottom:135.710667pt;}
.y42{bottom:141.470667pt;}
.ya2{bottom:144.066667pt;}
.y39{bottom:144.990667pt;}
.y75{bottom:146.626667pt;}
.y41{bottom:154.910667pt;}
.y30{bottom:155.240000pt;}
.ya1{bottom:161.986667pt;}
.y74{bottom:164.226667pt;}
.y2f{bottom:176.360000pt;}
.ya0{bottom:179.586667pt;}
.y73{bottom:182.146667pt;}
.y2e{bottom:197.160000pt;}
.y9f{bottom:197.506667pt;}
.y72{bottom:200.066667pt;}
.y9e{bottom:215.426667pt;}
.y2d{bottom:217.960000pt;}
.y71{bottom:217.986667pt;}
.y9d{bottom:233.346667pt;}
.y70{bottom:235.906667pt;}
.y2c{bottom:239.106667pt;}
.y9c{bottom:253.533333pt;}
.y6f{bottom:253.853333pt;}
.y10{bottom:257.053333pt;}
.y1e{bottom:259.266667pt;}
.y2b{bottom:259.906667pt;}
.y6e{bottom:271.453333pt;}
.y9b{bottom:274.333333pt;}
.y1d{bottom:280.706667pt;}
.y6d{bottom:289.373333pt;}
.y9a{bottom:294.813333pt;}
.y2a{bottom:301.826667pt;}
.y1c{bottom:302.146667pt;}
.y6c{bottom:315.293333pt;}
.y99{bottom:317.853333pt;}
.y29{bottom:322.626667pt;}
.y1b{bottom:323.586667pt;}
.y6b{bottom:333.213333pt;}
.y98{bottom:338.653333pt;}
.y28{bottom:343.453333pt;}
.y1a{bottom:345.373333pt;}
.y6a{bottom:351.133333pt;}
.y97{bottom:361.733333pt;}
.y27{bottom:364.573333pt;}
.y19{bottom:366.813333pt;}
.y69{bottom:369.093333pt;}
.y96{bottom:385.093333pt;}
.y26{bottom:385.373333pt;}
.y18{bottom:388.253333pt;}
.y68{bottom:397.253333pt;}
.y25{bottom:406.173333pt;}
.y95{bottom:408.133333pt;}
.y17{bottom:409.693333pt;}
.y67{bottom:420.613333pt;}
.y24{bottom:427.293333pt;}
.y16{bottom:431.133333pt;}
.y94{bottom:431.493333pt;}
.y66{bottom:441.413333pt;}
.y23{bottom:448.093333pt;}
.y15{bottom:452.573333pt;}
.y93{bottom:460.293333pt;}
.y65{bottom:461.573333pt;}
.y22{bottom:468.933333pt;}
.y14{bottom:474.053333pt;}
.y92{bottom:478.240000pt;}
.y64{bottom:484.960000pt;}
.y21{bottom:490.053333pt;}
.y13{bottom:495.493333pt;}
.y91{bottom:504.160000pt;}
.y63{bottom:508.000000pt;}
.y20{bottom:510.853333pt;}
.y12{bottom:516.933333pt;}
.y90{bottom:521.760000pt;}
.y62{bottom:531.360000pt;}
.y1f{bottom:531.653333pt;}
.y11{bottom:538.373333pt;}
.y8f{bottom:539.680000pt;}
.y61{bottom:552.160000pt;}
.y8e{bottom:557.600000pt;}
.y60{bottom:572.320000pt;}
.y8d{bottom:575.520000pt;}
.y8c{bottom:593.440000pt;}
.y5f{bottom:595.706667pt;}
.y8b{bottom:611.066667pt;}
.y5e{bottom:619.066667pt;}
.y8a{bottom:628.986667pt;}
.y5d{bottom:642.106667pt;}
.y89{bottom:646.906667pt;}
.y88{bottom:664.826667pt;}
.y5c{bottom:665.466667pt;}
.y5b{bottom:688.506667pt;}
.y87{bottom:690.746667pt;}
.y86{bottom:708.666667pt;}
.y5a{bottom:711.906667pt;}
.y85{bottom:726.306667pt;}
.y59{bottom:735.266667pt;}
.y84{bottom:744.226667pt;}
.y58{bottom:758.306667pt;}
.y83{bottom:762.146667pt;}
.y57{bottom:779.106667pt;}
.y82{bottom:780.066667pt;}
.y81{bottom:797.986667pt;}
.y56{bottom:799.586667pt;}
.yf{bottom:806.306667pt;}
.ye{bottom:811.106667pt;}
.y80{bottom:815.906667pt;}
.y55{bottom:822.626667pt;}
.yd{bottom:829.373333pt;}
.y7f{bottom:833.533333pt;}
.y54{bottom:846.013333pt;}
.y7e{bottom:851.453333pt;}
.yc{bottom:852.413333pt;}
.y53{bottom:866.813333pt;}
.y7d{bottom:869.373333pt;}
.yb{bottom:881.853333pt;}
.y52{bottom:884.413333pt;}
.y7c{bottom:887.293333pt;}
.ya{bottom:898.813333pt;}
.y51{bottom:904.893333pt;}
.y7b{bottom:913.213333pt;}
.y9{bottom:921.213333pt;}
.y50{bottom:925.693333pt;}
.y7a{bottom:931.133333pt;}
.y4f{bottom:945.853333pt;}
.y79{bottom:948.773333pt;}
.y8{bottom:952.933333pt;}
.y4c{bottom:955.840000pt;}
.y4e{bottom:966.693333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h17{height:5.022500pt;}
.h1a{height:24.640000pt;}
.h14{height:26.381250pt;}
.h13{height:31.406250pt;}
.ha{height:33.918750pt;}
.h10{height:36.431250pt;}
.hf{height:37.410000pt;}
.h15{height:47.713750pt;}
.h16{height:49.020000pt;}
.h7{height:50.925000pt;}
.h18{height:52.736250pt;}
.h6{height:52.762500pt;}
.hd{height:54.180000pt;}
.h11{height:54.349786pt;}
.h1b{height:56.502250pt;}
.hc{height:56.988750pt;}
.h5{height:57.787500pt;}
.hb{height:58.238750pt;}
.h3{height:58.563750pt;}
.h9{height:59.150000pt;}
.h19{height:60.070816pt;}
.h2{height:75.546667pt;}
.h8{height:78.698750pt;}
.h4{height:103.680000pt;}
.h12{height:170.600000pt;}
.he{height:546.693333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:6.112000pt;}
.x1a{left:7.373333pt;}
.x4{left:11.826667pt;}
.x16{left:15.028000pt;}
.x1d{left:16.308000pt;}
.x18{left:19.508000pt;}
.x6{left:25.586667pt;}
.x17{left:30.388000pt;}
.x11{left:39.028000pt;}
.x1e{left:42.260000pt;}
.x12{left:45.140000pt;}
.x15{left:47.380000pt;}
.x10{left:48.980000pt;}
.x20{left:50.900000pt;}
.x1b{left:54.093333pt;}
.x1f{left:58.902667pt;}
.x14{left:64.982667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x2{left:84.822667pt;}
.x21{left:91.542667pt;}
.x1c{left:95.062667pt;}
.x35{left:100.832000pt;}
.x34{left:104.992000pt;}
.x13{left:110.742667pt;}
.x27{left:124.864000pt;}
.x5{left:125.813333pt;}
.x3{left:162.000000pt;}
.x19{left:194.640000pt;}
.x22{left:215.760000pt;}
.x23{left:261.226667pt;}
.x33{left:267.613333pt;}
.x28{left:271.773333pt;}
.x2b{left:274.973333pt;}
.x2a{left:280.773333pt;}
.x29{left:289.733333pt;}
.xc{left:298.373333pt;}
.x2e{left:299.333333pt;}
.x2c{left:306.053333pt;}
.x2d{left:307.973333pt;}
.x32{left:310.533333pt;}
.x2f{left:315.653333pt;}
.x26{left:317.893333pt;}
.x30{left:318.853333pt;}
.x25{left:320.773333pt;}
.x31{left:359.520000pt;}
.xb{left:375.200000pt;}
.xd{left:441.466667pt;}
.xa{left:470.906667pt;}
.xe{left:531.106667pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xf{left:717.413333pt;}
}




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