
    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_a5aef7adf4517a185dec233d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.954102;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_337a0a1fde0dc09a54c0c469.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_f1675116707f2516f7da1591.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_890416070983fe4d71c8af6e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922852;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_a6d58bc6b0d63eece9ca6e3a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.929688;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_0acccfd1e10e29b1a43b4ca3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_5c092a0a2ea37d9f281ce262.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.695312;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_1e4e979da59d109b889affb7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.880859;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_e7c7dcbe4a9b0eaff9893ca7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.687012;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_288221ef34edfa08f4b32a0a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.100098;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_0468689d18f4625d030f7476.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.922852;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_579c0c5ebc0ae5090a067ccd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682617;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_abe65cc4408646bb2df05c0b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.880371;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_1463ad8db2fb9a80b1232b5d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.880371;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_e48b2c94941116718fd3234c.woff2')format("woff");}.fff{font-family:fff;line-height:0.695312;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_783db1803e3341295120f287.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.880859;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_41fe50c40d686552796c7fed.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.695312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.400000px;}
.ls19{letter-spacing:-0.411264px;}
.lse{letter-spacing:-0.368928px;}
.ls18{letter-spacing:-0.362880px;}
.ls1e{letter-spacing:-0.356832px;}
.ls1c{letter-spacing:-0.350784px;}
.lsb{letter-spacing:-0.308448px;}
.ls12{letter-spacing:-0.302400px;}
.ls17{letter-spacing:-0.290304px;}
.ls29{letter-spacing:-0.247968px;}
.ls11{letter-spacing:-0.241920px;}
.lsd{letter-spacing:-0.229824px;}
.ls1b{letter-spacing:-0.187488px;}
.ls10{letter-spacing:-0.181440px;}
.lsc{letter-spacing:-0.169344px;}
.ls2{letter-spacing:-0.165600px;}
.ls16{letter-spacing:-0.133056px;}
.ls4{letter-spacing:-0.132480px;}
.ls2b{letter-spacing:-0.125856px;}
.lsf{letter-spacing:-0.120960px;}
.ls7{letter-spacing:-0.119232px;}
.ls1a{letter-spacing:-0.108864px;}
.ls3{letter-spacing:-0.105984px;}
.ls6{letter-spacing:-0.086112px;}
.ls9{letter-spacing:-0.079488px;}
.ls8{letter-spacing:-0.066240px;}
.ls13{letter-spacing:-0.036000px;}
.ls14{letter-spacing:-0.021600px;}
.ls15{letter-spacing:-0.014400px;}
.ls5{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.000432px;}
.ls20{letter-spacing:0.000576px;}
.ls1{letter-spacing:0.001440px;}
.ls1d{letter-spacing:0.014400px;}
.ls28{letter-spacing:0.015552px;}
.ls1f{letter-spacing:0.018000px;}
.ls27{letter-spacing:0.018288px;}
.ls26{letter-spacing:0.019584px;}
.ls0{letter-spacing:0.021600px;}
.lsa{letter-spacing:0.036000px;}
.ls2a{letter-spacing:0.047520px;}
.ls21{letter-spacing:0.050400px;}
.ls24{letter-spacing:0.486000px;}
.ls23{letter-spacing:0.576288px;}
.ls25{letter-spacing:194.399424px;}
.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;}
}
.ws5{word-spacing:-18.036000px;}
.ws8{word-spacing:-18.021600px;}
.wsf{word-spacing:-18.014400px;}
.ws7{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.985600px;}
.ws11{word-spacing:-17.978400px;}
.wsa{word-spacing:-17.964000px;}
.ws1{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.473888px;}
.ws0{word-spacing:-16.454016px;}
.ws2{word-spacing:-16.440768px;}
.ws1c{word-spacing:-16.434144px;}
.ws4{word-spacing:-16.427520px;}
.wse{word-spacing:-15.120000px;}
.ws1a{word-spacing:-15.011136px;}
.ws13{word-spacing:-14.999040px;}
.ws19{word-spacing:-14.986944px;}
.wsc{word-spacing:-14.950656px;}
.ws18{word-spacing:-14.938560px;}
.ws10{word-spacing:-14.932512px;}
.wsd{word-spacing:-14.878080px;}
.ws15{word-spacing:-14.872032px;}
.ws14{word-spacing:-14.817600px;}
.ws12{word-spacing:-14.811552px;}
.ws17{word-spacing:-14.757120px;}
.ws1b{word-spacing:-14.751072px;}
.ws6{word-spacing:-0.072000px;}
.ws16{word-spacing:-0.060480px;}
.ws9{word-spacing:0.000000px;}
._1{margin-left:-1.271232px;}
._0{width:1.059840px;}
._2{width:194.399424px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs4{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:5.848800px;}
.y20{bottom:51.000000px;}
.y1f{bottom:55.768800px;}
.y1d{bottom:130.648800px;}
.ye0{bottom:134.248800px;}
.ye2{bottom:147.208800px;}
.y1c{bottom:147.568800px;}
.y72{bottom:151.168800px;}
.y1b{bottom:164.488800px;}
.y43{bottom:168.088800px;}
.ydf{bottom:181.048800px;}
.y1a{bottom:181.408800px;}
.y96{bottom:182.488800px;}
.y19{bottom:185.008800px;}
.y18{bottom:197.968800px;}
.y42{bottom:198.328800px;}
.y95{bottom:199.408800px;}
.yce{bottom:201.928800px;}
.y94{bottom:203.008800px;}
.ycd{bottom:214.528800px;}
.y41{bottom:214.888800px;}
.y93{bottom:216.328800px;}
.yae{bottom:218.488800px;}
.y71{bottom:220.648800px;}
.yde{bottom:221.008800px;}
.yad{bottom:231.448800px;}
.y40{bottom:231.808800px;}
.y92{bottom:233.248800px;}
.y58{bottom:235.408800px;}
.y3f{bottom:248.728800px;}
.y82{bottom:249.808800px;}
.y91{bottom:250.168800px;}
.y60{bottom:252.328800px;}
.ycc{bottom:261.688800px;}
.y70{bottom:262.048800px;}
.yc1{bottom:265.288800px;}
.y3e{bottom:265.648800px;}
.y90{bottom:267.088800px;}
.yd9{bottom:269.248800px;}
.yd8{bottom:282.208800px;}
.y3d{bottom:282.568800px;}
.y8f{bottom:284.008800px;}
.y57{bottom:286.168800px;}
.y8e{bottom:287.608800px;}
.y3c{bottom:299.488800px;}
.yac{bottom:299.848800px;}
.y81{bottom:300.928800px;}
.y8d{bottom:301.648800px;}
.ycb{bottom:302.008800px;}
.y5f{bottom:303.088800px;}
.y6f{bottom:303.448800px;}
.y5e{bottom:316.048800px;}
.y3b{bottom:316.408800px;}
.y3a{bottom:333.328800px;}
.y39{bottom:336.928800px;}
.yc0{bottom:339.448800px;}
.yab{bottom:340.528800px;}
.y80{bottom:341.608800px;}
.yca{bottom:342.688800px;}
.y6e{bottom:344.128800px;}
.y38{bottom:349.888800px;}
.y37{bottom:366.808800px;}
.yaa{bottom:380.848800px;}
.y7f{bottom:381.928800px;}
.yd7{bottom:382.288800px;}
.y8c{bottom:382.648800px;}
.yc9{bottom:383.008800px;}
.y36{bottom:383.728800px;}
.y6d{bottom:384.448800px;}
.y35{bottom:387.328800px;}
.y34{bottom:400.288800px;}
.y56{bottom:400.648800px;}
.y55{bottom:417.568800px;}
.ya9{bottom:421.528800px;}
.y7e{bottom:422.608800px;}
.y17{bottom:422.968800px;}
.yc8{bottom:423.688800px;}
.y8b{bottom:424.048800px;}
.ydd{bottom:424.768800px;}
.y6c{bottom:425.128800px;}
.y5d{bottom:427.648800px;}
.ybf{bottom:429.808800px;}
.y33{bottom:430.168800px;}
.y54{bottom:434.488800px;}
.y53{bottom:438.088800px;}
.y52{bottom:451.048800px;}
.yd3{bottom:451.408800px;}
.ya8{bottom:461.848800px;}
.y7d{bottom:462.928800px;}
.ybe{bottom:463.288800px;}
.yc7{bottom:464.008800px;}
.y6b{bottom:465.448800px;}
.y16{bottom:465.808800px;}
.ydc{bottom:467.248800px;}
.yd2{bottom:468.328800px;}
.y5c{bottom:469.408800px;}
.y32{bottom:470.848800px;}
.yd1{bottom:471.928800px;}
.yd0{bottom:484.528800px;}
.ya7{bottom:502.528800px;}
.ybd{bottom:503.968800px;}
.y7c{bottom:504.328800px;}
.yc6{bottom:504.688800px;}
.y89{bottom:506.128800px;}
.y6a{bottom:506.488800px;}
.y15{bottom:507.208800px;}
.ydb{bottom:508.648800px;}
.yd6{bottom:510.808800px;}
.y31{bottom:511.168800px;}
.y8a{bottom:512.968800px;}
.y5b{bottom:518.008800px;}
.ya6{bottom:542.848800px;}
.ybc{bottom:544.288800px;}
.yc5{bottom:545.008800px;}
.y7b{bottom:546.448800px;}
.y14{bottom:547.888800px;}
.y69{bottom:548.248800px;}
.y51{bottom:549.328800px;}
.y30{bottom:551.848800px;}
.ya5{bottom:583.528800px;}
.ybb{bottom:586.048800px;}
.yc4{bottom:586.768800px;}
.y88{bottom:587.128800px;}
.y13{bottom:588.208800px;}
.y67{bottom:588.568800px;}
.y50{bottom:589.648800px;}
.y2e{bottom:592.168800px;}
.y68{bottom:595.408800px;}
.y2f{bottom:599.008800px;}
.ya4{bottom:624.568800px;}
.y87{bottom:627.448800px;}
.yba{bottom:627.808800px;}
.y7a{bottom:628.528800px;}
.y12{bottom:628.888800px;}
.y66{bottom:629.248800px;}
.y4e{bottom:630.328800px;}
.y2d{bottom:632.848800px;}
.y4f{bottom:637.168800px;}
.ya3{bottom:666.328800px;}
.y86{bottom:668.128800px;}
.yb9{bottom:668.488800px;}
.y11{bottom:669.208800px;}
.y65{bottom:670.288800px;}
.y4d{bottom:670.648800px;}
.y2c{bottom:673.168800px;}
.yc3{bottom:677.488800px;}
.ya2{bottom:707.368800px;}
.yb8{bottom:708.808800px;}
.y85{bottom:709.168800px;}
.y10{bottom:709.888800px;}
.y79{bottom:710.608800px;}
.y4c{bottom:711.328800px;}
.y64{bottom:712.048800px;}
.yc2{bottom:712.408800px;}
.y2a{bottom:713.848800px;}
.y2b{bottom:720.688800px;}
.ya1{bottom:749.128800px;}
.yb7{bottom:749.488800px;}
.yf{bottom:750.208800px;}
.y83{bottom:751.288800px;}
.y4b{bottom:751.648800px;}
.y63{bottom:752.368800px;}
.y29{bottom:754.168800px;}
.y84{bottom:758.128800px;}
.y78{bottom:759.208800px;}
.y5a{bottom:761.008800px;}
.yb6{bottom:789.808800px;}
.ya0{bottom:790.168800px;}
.ye{bottom:790.888800px;}
.y49{bottom:792.328800px;}
.y62{bottom:793.048800px;}
.y28{bottom:794.848800px;}
.y4a{bottom:799.168800px;}
.yb5{bottom:830.488800px;}
.y9f{bottom:831.568800px;}
.yd{bottom:832.288800px;}
.y48{bottom:832.648800px;}
.y77{bottom:833.368800px;}
.ycf{bottom:833.728800px;}
.y61{bottom:834.088800px;}
.y27{bottom:835.168800px;}
.yb4{bottom:870.808800px;}
.y9d{bottom:872.248800px;}
.y47{bottom:873.328800px;}
.y76{bottom:874.048800px;}
.yc{bottom:874.768800px;}
.y26{bottom:875.848800px;}
.y9e{bottom:879.088800px;}
.yb3{bottom:911.488800px;}
.y9c{bottom:912.568800px;}
.y46{bottom:913.648800px;}
.y75{bottom:914.368800px;}
.y25{bottom:916.168800px;}
.yb{bottom:916.528800px;}
.ye1{bottom:923.008800px;}
.yb2{bottom:951.808800px;}
.y9b{bottom:953.248800px;}
.y45{bottom:954.328800px;}
.y74{bottom:955.048800px;}
.ya{bottom:956.848800px;}
.yb1{bottom:992.488800px;}
.y9a{bottom:994.288800px;}
.yd5{bottom:994.648800px;}
.y44{bottom:995.728800px;}
.y73{bottom:996.088800px;}
.y24{bottom:997.168800px;}
.y9{bottom:997.528800px;}
.yda{bottom:1004.008800px;}
.yb0{bottom:1033.888800px;}
.yd4{bottom:1035.328800px;}
.y99{bottom:1036.048800px;}
.y7{bottom:1037.848800px;}
.y8{bottom:1044.688800px;}
.y98{bottom:1076.368800px;}
.yaf{bottom:1076.728800px;}
.y23{bottom:1078.168800px;}
.y6{bottom:1078.528800px;}
.y59{bottom:1085.008800px;}
.y5{bottom:1097.968800px;}
.y4{bottom:1117.048800px;}
.y97{bottom:1117.768800px;}
.y22{bottom:1118.848800px;}
.y3{bottom:1157.368800px;}
.y2{bottom:1176.088800px;}
.y1e{bottom:1194.448800px;}
.y1{bottom:1194.808800px;}
.hb{height:21.000000px;}
.h9{height:25.913672px;}
.h6{height:27.833203px;}
.h3{height:44.149219px;}
.h2{height:46.122188px;}
.h4{height:47.988281px;}
.h7{height:50.062500px;}
.hc{height:50.273438px;}
.h8{height:50.308594px;}
.ha{height:50.616563px;}
.h5{height:1251.000000px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w3{width:9.000000px;}
.w4{width:18.000000px;}
.w2{width:880.913250px;}
.w0{width:892.913250px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2d{left:1.185900px;}
.x4{left:12.000000px;}
.xb{left:116.145900px;}
.x1{left:128.145972px;}
.xc{left:132.465792px;}
.x22{left:137.505936px;}
.x18{left:171.945900px;}
.x14{left:178.785900px;}
.x2{left:180.582600px;}
.x19{left:188.864832px;}
.x23{left:194.273760px;}
.x15{left:195.983976px;}
.x34{left:202.905900px;}
.x31{left:210.401688px;}
.xe{left:212.265900px;}
.x35{left:224.842116px;}
.xf{left:229.356048px;}
.x10{left:290.385900px;}
.x32{left:296.145900px;}
.x11{left:307.525980px;}
.x33{left:318.392904px;}
.x28{left:334.665900px;}
.xa{left:344.145972px;}
.x26{left:351.945900px;}
.x29{left:356.827476px;}
.x27{left:374.071620px;}
.x3{left:390.845460px;}
.x2a{left:401.985900px;}
.x16{left:418.545900px;}
.x2b{left:423.923340px;}
.x17{left:435.424260px;}
.x2c{left:438.000000px;}
.xd{left:442.500000px;}
.x1e{left:445.905900px;}
.x1f{left:467.815620px;}
.x1c{left:476.145900px;}
.x5{left:486.585900px;}
.x1d{left:493.159620px;}
.x6{left:502.796100px;}
.x24{left:527.265900px;}
.x25{left:549.392340px;}
.x20{left:567.225900px;}
.x21{left:589.289340px;}
.x8{left:596.772300px;}
.x7{left:613.260660px;}
.x2e{left:653.625900px;}
.x30{left:662.265900px;}
.x2f{left:675.852780px;}
.x1a{left:683.505900px;}
.x1b{left:700.643100px;}
.x12{left:746.505900px;}
.x13{left:763.616820px;}
.x9{left:765.496020px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.800000pt;}
.ls19{letter-spacing:-0.365568pt;}
.lse{letter-spacing:-0.327936pt;}
.ls18{letter-spacing:-0.322560pt;}
.ls1e{letter-spacing:-0.317184pt;}
.ls1c{letter-spacing:-0.311808pt;}
.lsb{letter-spacing:-0.274176pt;}
.ls12{letter-spacing:-0.268800pt;}
.ls17{letter-spacing:-0.258048pt;}
.ls29{letter-spacing:-0.220416pt;}
.ls11{letter-spacing:-0.215040pt;}
.lsd{letter-spacing:-0.204288pt;}
.ls1b{letter-spacing:-0.166656pt;}
.ls10{letter-spacing:-0.161280pt;}
.lsc{letter-spacing:-0.150528pt;}
.ls2{letter-spacing:-0.147200pt;}
.ls16{letter-spacing:-0.118272pt;}
.ls4{letter-spacing:-0.117760pt;}
.ls2b{letter-spacing:-0.111872pt;}
.lsf{letter-spacing:-0.107520pt;}
.ls7{letter-spacing:-0.105984pt;}
.ls1a{letter-spacing:-0.096768pt;}
.ls3{letter-spacing:-0.094208pt;}
.ls6{letter-spacing:-0.076544pt;}
.ls9{letter-spacing:-0.070656pt;}
.ls8{letter-spacing:-0.058880pt;}
.ls13{letter-spacing:-0.032000pt;}
.ls14{letter-spacing:-0.019200pt;}
.ls15{letter-spacing:-0.012800pt;}
.ls5{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.000384pt;}
.ls20{letter-spacing:0.000512pt;}
.ls1{letter-spacing:0.001280pt;}
.ls1d{letter-spacing:0.012800pt;}
.ls28{letter-spacing:0.013824pt;}
.ls1f{letter-spacing:0.016000pt;}
.ls27{letter-spacing:0.016256pt;}
.ls26{letter-spacing:0.017408pt;}
.ls0{letter-spacing:0.019200pt;}
.lsa{letter-spacing:0.032000pt;}
.ls2a{letter-spacing:0.042240pt;}
.ls21{letter-spacing:0.044800pt;}
.ls24{letter-spacing:0.432000pt;}
.ls23{letter-spacing:0.512256pt;}
.ls25{letter-spacing:172.799488pt;}
.ws5{word-spacing:-16.032000pt;}
.ws8{word-spacing:-16.019200pt;}
.wsf{word-spacing:-16.012800pt;}
.ws7{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.987200pt;}
.ws11{word-spacing:-15.980800pt;}
.wsa{word-spacing:-15.968000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.643456pt;}
.ws0{word-spacing:-14.625792pt;}
.ws2{word-spacing:-14.614016pt;}
.ws1c{word-spacing:-14.608128pt;}
.ws4{word-spacing:-14.602240pt;}
.wse{word-spacing:-13.440000pt;}
.ws1a{word-spacing:-13.343232pt;}
.ws13{word-spacing:-13.332480pt;}
.ws19{word-spacing:-13.321728pt;}
.wsc{word-spacing:-13.289472pt;}
.ws18{word-spacing:-13.278720pt;}
.ws10{word-spacing:-13.273344pt;}
.wsd{word-spacing:-13.224960pt;}
.ws15{word-spacing:-13.219584pt;}
.ws14{word-spacing:-13.171200pt;}
.ws12{word-spacing:-13.165824pt;}
.ws17{word-spacing:-13.117440pt;}
.ws1b{word-spacing:-13.112064pt;}
.ws6{word-spacing:-0.064000pt;}
.ws16{word-spacing:-0.053760pt;}
.ws9{word-spacing:0.000000pt;}
._1{margin-left:-1.129984pt;}
._0{width:0.942080pt;}
._2{width:172.799488pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs4{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:5.198933pt;}
.y20{bottom:45.333333pt;}
.y1f{bottom:49.572267pt;}
.y1d{bottom:116.132267pt;}
.ye0{bottom:119.332267pt;}
.ye2{bottom:130.852267pt;}
.y1c{bottom:131.172267pt;}
.y72{bottom:134.372267pt;}
.y1b{bottom:146.212267pt;}
.y43{bottom:149.412267pt;}
.ydf{bottom:160.932267pt;}
.y1a{bottom:161.252267pt;}
.y96{bottom:162.212267pt;}
.y19{bottom:164.452267pt;}
.y18{bottom:175.972267pt;}
.y42{bottom:176.292267pt;}
.y95{bottom:177.252267pt;}
.yce{bottom:179.492267pt;}
.y94{bottom:180.452267pt;}
.ycd{bottom:190.692267pt;}
.y41{bottom:191.012267pt;}
.y93{bottom:192.292267pt;}
.yae{bottom:194.212267pt;}
.y71{bottom:196.132267pt;}
.yde{bottom:196.452267pt;}
.yad{bottom:205.732267pt;}
.y40{bottom:206.052267pt;}
.y92{bottom:207.332267pt;}
.y58{bottom:209.252267pt;}
.y3f{bottom:221.092267pt;}
.y82{bottom:222.052267pt;}
.y91{bottom:222.372267pt;}
.y60{bottom:224.292267pt;}
.ycc{bottom:232.612267pt;}
.y70{bottom:232.932267pt;}
.yc1{bottom:235.812267pt;}
.y3e{bottom:236.132267pt;}
.y90{bottom:237.412267pt;}
.yd9{bottom:239.332267pt;}
.yd8{bottom:250.852267pt;}
.y3d{bottom:251.172267pt;}
.y8f{bottom:252.452267pt;}
.y57{bottom:254.372267pt;}
.y8e{bottom:255.652267pt;}
.y3c{bottom:266.212267pt;}
.yac{bottom:266.532267pt;}
.y81{bottom:267.492267pt;}
.y8d{bottom:268.132267pt;}
.ycb{bottom:268.452267pt;}
.y5f{bottom:269.412267pt;}
.y6f{bottom:269.732267pt;}
.y5e{bottom:280.932267pt;}
.y3b{bottom:281.252267pt;}
.y3a{bottom:296.292267pt;}
.y39{bottom:299.492267pt;}
.yc0{bottom:301.732267pt;}
.yab{bottom:302.692267pt;}
.y80{bottom:303.652267pt;}
.yca{bottom:304.612267pt;}
.y6e{bottom:305.892267pt;}
.y38{bottom:311.012267pt;}
.y37{bottom:326.052267pt;}
.yaa{bottom:338.532267pt;}
.y7f{bottom:339.492267pt;}
.yd7{bottom:339.812267pt;}
.y8c{bottom:340.132267pt;}
.yc9{bottom:340.452267pt;}
.y36{bottom:341.092267pt;}
.y6d{bottom:341.732267pt;}
.y35{bottom:344.292267pt;}
.y34{bottom:355.812267pt;}
.y56{bottom:356.132267pt;}
.y55{bottom:371.172267pt;}
.ya9{bottom:374.692267pt;}
.y7e{bottom:375.652267pt;}
.y17{bottom:375.972267pt;}
.yc8{bottom:376.612267pt;}
.y8b{bottom:376.932267pt;}
.ydd{bottom:377.572267pt;}
.y6c{bottom:377.892267pt;}
.y5d{bottom:380.132267pt;}
.ybf{bottom:382.052267pt;}
.y33{bottom:382.372267pt;}
.y54{bottom:386.212267pt;}
.y53{bottom:389.412267pt;}
.y52{bottom:400.932267pt;}
.yd3{bottom:401.252267pt;}
.ya8{bottom:410.532267pt;}
.y7d{bottom:411.492267pt;}
.ybe{bottom:411.812267pt;}
.yc7{bottom:412.452267pt;}
.y6b{bottom:413.732267pt;}
.y16{bottom:414.052267pt;}
.ydc{bottom:415.332267pt;}
.yd2{bottom:416.292267pt;}
.y5c{bottom:417.252267pt;}
.y32{bottom:418.532267pt;}
.yd1{bottom:419.492267pt;}
.yd0{bottom:430.692267pt;}
.ya7{bottom:446.692267pt;}
.ybd{bottom:447.972267pt;}
.y7c{bottom:448.292267pt;}
.yc6{bottom:448.612267pt;}
.y89{bottom:449.892267pt;}
.y6a{bottom:450.212267pt;}
.y15{bottom:450.852267pt;}
.ydb{bottom:452.132267pt;}
.yd6{bottom:454.052267pt;}
.y31{bottom:454.372267pt;}
.y8a{bottom:455.972267pt;}
.y5b{bottom:460.452267pt;}
.ya6{bottom:482.532267pt;}
.ybc{bottom:483.812267pt;}
.yc5{bottom:484.452267pt;}
.y7b{bottom:485.732267pt;}
.y14{bottom:487.012267pt;}
.y69{bottom:487.332267pt;}
.y51{bottom:488.292267pt;}
.y30{bottom:490.532267pt;}
.ya5{bottom:518.692267pt;}
.ybb{bottom:520.932267pt;}
.yc4{bottom:521.572267pt;}
.y88{bottom:521.892267pt;}
.y13{bottom:522.852267pt;}
.y67{bottom:523.172267pt;}
.y50{bottom:524.132267pt;}
.y2e{bottom:526.372267pt;}
.y68{bottom:529.252267pt;}
.y2f{bottom:532.452267pt;}
.ya4{bottom:555.172267pt;}
.y87{bottom:557.732267pt;}
.yba{bottom:558.052267pt;}
.y7a{bottom:558.692267pt;}
.y12{bottom:559.012267pt;}
.y66{bottom:559.332267pt;}
.y4e{bottom:560.292267pt;}
.y2d{bottom:562.532267pt;}
.y4f{bottom:566.372267pt;}
.ya3{bottom:592.292267pt;}
.y86{bottom:593.892267pt;}
.yb9{bottom:594.212267pt;}
.y11{bottom:594.852267pt;}
.y65{bottom:595.812267pt;}
.y4d{bottom:596.132267pt;}
.y2c{bottom:598.372267pt;}
.yc3{bottom:602.212267pt;}
.ya2{bottom:628.772267pt;}
.yb8{bottom:630.052267pt;}
.y85{bottom:630.372267pt;}
.y10{bottom:631.012267pt;}
.y79{bottom:631.652267pt;}
.y4c{bottom:632.292267pt;}
.y64{bottom:632.932267pt;}
.yc2{bottom:633.252267pt;}
.y2a{bottom:634.532267pt;}
.y2b{bottom:640.612267pt;}
.ya1{bottom:665.892267pt;}
.yb7{bottom:666.212267pt;}
.yf{bottom:666.852267pt;}
.y83{bottom:667.812267pt;}
.y4b{bottom:668.132267pt;}
.y63{bottom:668.772267pt;}
.y29{bottom:670.372267pt;}
.y84{bottom:673.892267pt;}
.y78{bottom:674.852267pt;}
.y5a{bottom:676.452267pt;}
.yb6{bottom:702.052267pt;}
.ya0{bottom:702.372267pt;}
.ye{bottom:703.012267pt;}
.y49{bottom:704.292267pt;}
.y62{bottom:704.932267pt;}
.y28{bottom:706.532267pt;}
.y4a{bottom:710.372267pt;}
.yb5{bottom:738.212267pt;}
.y9f{bottom:739.172267pt;}
.yd{bottom:739.812267pt;}
.y48{bottom:740.132267pt;}
.y77{bottom:740.772267pt;}
.ycf{bottom:741.092267pt;}
.y61{bottom:741.412267pt;}
.y27{bottom:742.372267pt;}
.yb4{bottom:774.052267pt;}
.y9d{bottom:775.332267pt;}
.y47{bottom:776.292267pt;}
.y76{bottom:776.932267pt;}
.yc{bottom:777.572267pt;}
.y26{bottom:778.532267pt;}
.y9e{bottom:781.412267pt;}
.yb3{bottom:810.212267pt;}
.y9c{bottom:811.172267pt;}
.y46{bottom:812.132267pt;}
.y75{bottom:812.772267pt;}
.y25{bottom:814.372267pt;}
.yb{bottom:814.692267pt;}
.ye1{bottom:820.452267pt;}
.yb2{bottom:846.052267pt;}
.y9b{bottom:847.332267pt;}
.y45{bottom:848.292267pt;}
.y74{bottom:848.932267pt;}
.ya{bottom:850.532267pt;}
.yb1{bottom:882.212267pt;}
.y9a{bottom:883.812267pt;}
.yd5{bottom:884.132267pt;}
.y44{bottom:885.092267pt;}
.y73{bottom:885.412267pt;}
.y24{bottom:886.372267pt;}
.y9{bottom:886.692267pt;}
.yda{bottom:892.452267pt;}
.yb0{bottom:919.012267pt;}
.yd4{bottom:920.292267pt;}
.y99{bottom:920.932267pt;}
.y7{bottom:922.532267pt;}
.y8{bottom:928.612267pt;}
.y98{bottom:956.772267pt;}
.yaf{bottom:957.092267pt;}
.y23{bottom:958.372267pt;}
.y6{bottom:958.692267pt;}
.y59{bottom:964.452267pt;}
.y5{bottom:975.972267pt;}
.y4{bottom:992.932267pt;}
.y97{bottom:993.572267pt;}
.y22{bottom:994.532267pt;}
.y3{bottom:1028.772267pt;}
.y2{bottom:1045.412267pt;}
.y1e{bottom:1061.732267pt;}
.y1{bottom:1062.052267pt;}
.hb{height:18.666667pt;}
.h9{height:23.034375pt;}
.h6{height:24.740625pt;}
.h3{height:39.243750pt;}
.h2{height:40.997500pt;}
.h4{height:42.656250pt;}
.h7{height:44.500000pt;}
.hc{height:44.687500pt;}
.h8{height:44.718750pt;}
.ha{height:44.992500pt;}
.h5{height:1112.000000pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w3{width:8.000000pt;}
.w4{width:16.000000pt;}
.w2{width:783.034000pt;}
.w0{width:793.700667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:1.054133pt;}
.x4{left:10.666667pt;}
.xb{left:103.240800pt;}
.x1{left:113.907531pt;}
.xc{left:117.747371pt;}
.x22{left:122.227499pt;}
.x18{left:152.840800pt;}
.x14{left:158.920800pt;}
.x2{left:160.517867pt;}
.x19{left:167.879851pt;}
.x23{left:172.687787pt;}
.x15{left:174.207979pt;}
.x34{left:180.360800pt;}
.x31{left:187.023723pt;}
.xe{left:188.680800pt;}
.x35{left:199.859659pt;}
.xf{left:203.872043pt;}
.x10{left:258.120800pt;}
.x32{left:263.240800pt;}
.x11{left:273.356427pt;}
.x33{left:283.015915pt;}
.x28{left:297.480800pt;}
.xa{left:305.907531pt;}
.x26{left:312.840800pt;}
.x29{left:317.179979pt;}
.x27{left:332.508107pt;}
.x3{left:347.418187pt;}
.x2a{left:357.320800pt;}
.x16{left:372.040800pt;}
.x2b{left:376.820747pt;}
.x17{left:387.043787pt;}
.x2c{left:389.333333pt;}
.xd{left:393.333333pt;}
.x1e{left:396.360800pt;}
.x1f{left:415.836107pt;}
.x1c{left:423.240800pt;}
.x5{left:432.520800pt;}
.x1d{left:438.364107pt;}
.x6{left:446.929867pt;}
.x24{left:468.680800pt;}
.x25{left:488.348747pt;}
.x20{left:504.200800pt;}
.x21{left:523.812747pt;}
.x8{left:530.464267pt;}
.x7{left:545.120587pt;}
.x2e{left:581.000800pt;}
.x30{left:588.680800pt;}
.x2f{left:600.758027pt;}
.x1a{left:607.560800pt;}
.x1b{left:622.793867pt;}
.x12{left:663.560800pt;}
.x13{left:678.770507pt;}
.x9{left:680.440907pt;}
}




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