
    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_0a0e75eac892eb8a6076aea4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_8ba4ee27524d255170755205.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_dc609d65d79a12f1dc5c7090.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722656;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_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.281250;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_453cc6a58b6ac5839e741011.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_6d81a7296f1e780c78c087b2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.124512;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_4aec11bf6578cb4fd16990f4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908203;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_373ca7e8b457656eb9db18a2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_97acb0a9587e3a52b8c8f21a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.702148;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.201276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201276,0.000000,0.000000,0.250000,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);}
.v3{vertical-align:-56.517149px;}
.v8{vertical-align:-39.598272px;}
.v2{vertical-align:-35.298463px;}
.v6{vertical-align:-21.960000px;}
.v4{vertical-align:-16.920000px;}
.v1{vertical-align:-13.680828px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:16.920000px;}
.va{vertical-align:19.800000px;}
.v7{vertical-align:21.960000px;}
.v9{vertical-align:39.600000px;}
.ls42{letter-spacing:-5.972256px;}
.lsc{letter-spacing:-0.172800px;}
.ls30{letter-spacing:-0.158400px;}
.lsd{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.129600px;}
.ls23{letter-spacing:-0.115200px;}
.ls1e{letter-spacing:-0.105732px;}
.lsa{letter-spacing:-0.100800px;}
.ls24{letter-spacing:-0.095904px;}
.lsb{letter-spacing:-0.086400px;}
.ls1d{letter-spacing:-0.076896px;}
.ls3{letter-spacing:-0.072000px;}
.ls41{letter-spacing:-0.064800px;}
.ls27{letter-spacing:-0.059940px;}
.ls1f{letter-spacing:-0.057672px;}
.ls4{letter-spacing:-0.057600px;}
.ls1c{letter-spacing:-0.048060px;}
.ls5{letter-spacing:-0.047952px;}
.ls40{letter-spacing:-0.046116px;}
.lsf{letter-spacing:-0.043200px;}
.ls3f{letter-spacing:-0.036000px;}
.ls28{letter-spacing:-0.035964px;}
.ls1a{letter-spacing:-0.032400px;}
.ls19{letter-spacing:-0.023976px;}
.ls1b{letter-spacing:-0.021600px;}
.ls31{letter-spacing:-0.014400px;}
.ls2c{letter-spacing:-0.011988px;}
.lse{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.011988px;}
.ls17{letter-spacing:0.021600px;}
.ls2{letter-spacing:0.023976px;}
.ls26{letter-spacing:0.028800px;}
.ls11{letter-spacing:0.033624px;}
.ls22{letter-spacing:0.035964px;}
.ls13{letter-spacing:0.047952px;}
.ls6{letter-spacing:0.050328px;}
.ls29{letter-spacing:0.050436px;}
.ls39{letter-spacing:0.054000px;}
.ls43{letter-spacing:0.064800px;}
.ls20{letter-spacing:0.067248px;}
.ls25{letter-spacing:0.084060px;}
.ls0{letter-spacing:0.095940px;}
.ls9{letter-spacing:0.100872px;}
.ls21{letter-spacing:0.119880px;}
.ls1{letter-spacing:0.134316px;}
.ls3e{letter-spacing:0.150984px;}
.ls2d{letter-spacing:0.167832px;}
.ls36{letter-spacing:0.324000px;}
.ls33{letter-spacing:4.391640px;}
.ls35{letter-spacing:4.751640px;}
.ls38{letter-spacing:7.613640px;}
.ls3d{letter-spacing:12.204000px;}
.ls3c{letter-spacing:12.387600px;}
.ls3b{letter-spacing:24.440400px;}
.ls32{letter-spacing:28.511640px;}
.ls37{letter-spacing:28.511712px;}
.ls34{letter-spacing:31.373640px;}
.ls2f{letter-spacing:40.032000px;}
.ls16{letter-spacing:50.328432px;}
.ls2a{letter-spacing:68.343588px;}
.ls12{letter-spacing:74.489040px;}
.ls15{letter-spacing:80.589600px;}
.ls14{letter-spacing:106.560000px;}
.ls7{letter-spacing:111.600000px;}
.ls3a{letter-spacing:295.620480px;}
.ls2b{letter-spacing:389.279569px;}
.ls2e{letter-spacing:950.899449px;}
.ls18{letter-spacing:1677.046392px;}
.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;}
}
.wsd{word-spacing:-108.431400px;}
.ws1d{word-spacing:-108.324000px;}
.ws1c{word-spacing:-108.000000px;}
.ws1b{word-spacing:-77.716800px;}
.ws9{word-spacing:-39.916800px;}
.ws6{word-spacing:-39.902400px;}
.ws14{word-spacing:-39.326407px;}
.ws12{word-spacing:-37.527554px;}
.ws11{word-spacing:-18.772076px;}
.ws1f{word-spacing:-18.314640px;}
.ws8{word-spacing:-1.174824px;}
.ws23{word-spacing:-0.540000px;}
.ws2{word-spacing:-0.288000px;}
.wsb{word-spacing:-0.215784px;}
.ws22{word-spacing:-0.172800px;}
.wsf{word-spacing:-0.108431px;}
.ws7{word-spacing:-0.072000px;}
.ws13{word-spacing:-0.071633px;}
.ws0{word-spacing:0.000000px;}
.ws17{word-spacing:0.563436px;}
.ws5{word-spacing:0.676800px;}
.wsa{word-spacing:0.748800px;}
.ws1{word-spacing:0.849600px;}
.ws15{word-spacing:0.923076px;}
.ws16{word-spacing:0.935064px;}
.ws4{word-spacing:1.008000px;}
.ws19{word-spacing:1.252800px;}
.ws3{word-spacing:1.584000px;}
.ws18{word-spacing:71.697600px;}
.ws1a{word-spacing:71.784000px;}
.ws21{word-spacing:161.812800px;}
.ws20{word-spacing:182.639124px;}
.ws10{word-spacing:264.623564px;}
.ws1e{word-spacing:626.544000px;}
.wse{word-spacing:668.795882px;}
.wsc{word-spacing:1030.787583px;}
._a{margin-left:-576.464695px;}
._9{margin-left:-565.328790px;}
._8{margin-left:-498.578420px;}
._5{margin-left:-344.627519px;}
._7{margin-left:-305.028371px;}
._6{margin-left:-273.821814px;}
._d{margin-left:-224.748350px;}
._10{margin-left:-218.286631px;}
._4{margin-left:-215.767643px;}
._11{margin-left:-178.286876px;}
._f{margin-left:-170.364157px;}
._c{margin-left:-159.591220px;}
._e{margin-left:-154.576324px;}
._b{margin-left:-133.875618px;}
._14{margin-left:-9.288000px;}
._2{margin-left:-1.025532px;}
._0{width:1.454400px;}
._13{width:32.162400px;}
._1{width:68.319612px;}
._12{width:74.425716px;}
._3{width:111.628800px;}
._18{width:144.892800px;}
._1a{width:162.338400px;}
._19{width:197.258400px;}
._17{width:217.771200px;}
._16{width:687.571200px;}
._15{width:1060.560000px;}
.fc2{color:rgb(51,51,154);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(146,208,80);}
.fc0{color:rgb(38,38,114);}
.fsf{font-size:29.846400px;}
.fse{font-size:39.874200px;}
.fs10{font-size:41.785200px;}
.fs15{font-size:43.920000px;}
.fsc{font-size:63.251400px;}
.fs14{font-size:65.880000px;}
.fsd{font-size:68.356200px;}
.fs11{font-size:71.632800px;}
.fs13{font-size:72.000000px;}
.fs12{font-size:78.840000px;}
.fs3{font-size:83.880000px;}
.fs9{font-size:96.120000px;}
.fs6{font-size:108.000000px;}
.fsb{font-size:108.431400px;}
.fs8{font-size:118.800000px;}
.fs2{font-size:119.880000px;}
.fs5{font-size:132.120000px;}
.fs1{font-size:144.000000px;}
.fsa{font-size:148.246800px;}
.fs7{font-size:158.400000px;}
.fs4{font-size:168.120000px;}
.fs0{font-size:191.880000px;}
.fs16{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:64.470000px;}
.y11{bottom:67.890000px;}
.y33{bottom:157.170000px;}
.y88{bottom:157.350000px;}
.y7a{bottom:175.890000px;}
.y7{bottom:175.890036px;}
.y87{bottom:181.380000px;}
.y3c{bottom:188.942556px;}
.y32{bottom:200.370000px;}
.y8c{bottom:201.902484px;}
.y86{bottom:203.790000px;}
.y6b{bottom:210.450000px;}
.y6{bottom:211.890000px;}
.y85{bottom:214.050000px;}
.y3b{bottom:224.942520px;}
.y13{bottom:235.380000px;}
.y1e{bottom:235.380099px;}
.y31{bottom:243.570000px;}
.y8b{bottom:245.101242px;}
.y6a{bottom:260.941278px;}
.y1d{bottom:264.180054px;}
.y3a{bottom:268.141278px;}
.y28{bottom:268.320036px;}
.y79{bottom:278.220036px;}
.y12{bottom:278.580000px;}
.y71{bottom:281.010000px;}
.y8a{bottom:288.300000px;}
.y69{bottom:296.941242px;}
.y1c{bottom:298.740000px;}
.y5{bottom:303.060000px;}
.y39{bottom:304.141242px;}
.y27{bottom:304.320000px;}
.y78{bottom:314.220000px;}
.y30{bottom:328.620036px;}
.y70{bottom:332.850000px;}
.y1b{bottom:333.930000px;}
.y68{bottom:340.140000px;}
.y38{bottom:347.340000px;}
.y8f{bottom:348.150000px;}
.y26{bottom:348.870000px;}
.y77{bottom:358.770000px;}
.y10{bottom:362.640036px;}
.y2f{bottom:364.620000px;}
.y4{bottom:366.060000px;}
.y1a{bottom:372.180000px;}
.y89{bottom:376.050000px;}
.y6f{bottom:383.340000px;}
.y67{bottom:384.690000px;}
.y37{bottom:391.890000px;}
.y25{bottom:392.070000px;}
.yf{bottom:398.640000px;}
.y76{bottom:401.970000px;}
.y19{bottom:407.370000px;}
.y2e{bottom:409.170000px;}
.y8e{bottom:409.350000px;}
.y5f{bottom:426.446088px;}
.y5b{bottom:426.447879px;}
.y4f{bottom:426.540000px;}
.y6e{bottom:427.890000px;}
.y55{bottom:430.950000px;}
.y66{bottom:435.181242px;}
.y5d{bottom:437.876892px;}
.y59{bottom:437.878683px;}
.ye{bottom:443.190000px;}
.y24{bottom:443.910000px;}
.y61{bottom:444.716033px;}
.y52{bottom:444.720000px;}
.y5e{bottom:445.346402px;}
.y5a{bottom:445.348193px;}
.y40{bottom:446.882001px;}
.y44{bottom:446.884711px;}
.y18{bottom:448.320000px;}
.y4b{bottom:448.770000px;}
.y2d{bottom:452.370000px;}
.y75{bottom:453.810000px;}
.y48{bottom:455.520000px;}
.y56{bottom:455.699132px;}
.y60{bottom:456.775415px;}
.y5c{bottom:456.777206px;}
.y3e{bottom:464.250000px;}
.y42{bottom:464.252711px;}
.y4e{bottom:466.320000px;}
.y53{bottom:468.930000px;}
.y4c{bottom:469.649287px;}
.y54{bottom:470.189824px;}
.y51{bottom:470.189865px;}
.y3{bottom:471.355248px;}
.y62{bottom:474.685406px;}
.y58{bottom:474.688988px;}
.y4a{bottom:476.490633px;}
.y46{bottom:476.494616px;}
.y65{bottom:478.380000px;}
.y3f{bottom:479.370759px;}
.y43{bottom:479.373470px;}
.y6d{bottom:479.730000px;}
.y50{bottom:481.530368px;}
.y57{bottom:486.028460px;}
.yd{bottom:486.390000px;}
.y23{bottom:487.110000px;}
.y49{bottom:493.229730px;}
.y3d{bottom:493.320000px;}
.y41{bottom:496.741469px;}
.y45{bottom:496.744180px;}
.y74{bottom:497.010000px;}
.y47{bottom:507.360254px;}
.y4d{bottom:514.560000px;}
.y64{bottom:522.930000px;}
.y2{bottom:528.957624px;}
.y6c{bottom:530.220000px;}
.y22{bottom:537.600036px;}
.y17{bottom:537.690000px;}
.y8d{bottom:537.870000px;}
.y2c{bottom:546.060036px;}
.y36{bottom:546.061278px;}
.y73{bottom:547.500000px;}
.y21{bottom:573.600000px;}
.y63{bottom:574.770000px;}
.y82{bottom:579.540000px;}
.y16{bottom:580.890000px;}
.y2b{bottom:582.060000px;}
.y81{bottom:585.030000px;}
.y1{bottom:586.560000px;}
.y35{bottom:589.260036px;}
.y72{bottom:589.350000px;}
.yc{bottom:590.070000px;}
.y83{bottom:594.929568px;}
.y7d{bottom:602.670000px;}
.y7c{bottom:608.160000px;}
.y7f{bottom:611.940000px;}
.y7e{bottom:617.430000px;}
.y20{bottom:618.150000px;}
.y34{bottom:625.260000px;}
.y15{bottom:625.440000px;}
.y2a{bottom:626.610000px;}
.y80{bottom:627.329568px;}
.yb{bottom:633.270000px;}
.y1f{bottom:661.350000px;}
.y84{bottom:667.380000px;}
.y14{bottom:668.640000px;}
.y29{bottom:669.810000px;}
.ya{bottom:676.470000px;}
.y7b{bottom:753.240000px;}
.y9{bottom:755.580000px;}
.h14{height:20.723428px;}
.h15{height:29.012966px;}
.h17{height:40.989486px;}
.hf{height:43.917720px;}
.h16{height:49.737227px;}
.h1f{height:51.796406px;}
.h20{height:52.453125px;}
.h1c{height:53.163105px;}
.h5{height:61.107891px;}
.h11{height:62.046906px;}
.h19{height:66.351280px;}
.h13{height:67.054495px;}
.hb{height:70.024922px;}
.h18{height:70.268699px;}
.h1a{height:72.826172px;}
.h10{height:75.287818px;}
.h9{height:85.851563px;}
.h4{height:87.334453px;}
.h1e{height:92.053125px;}
.ha{height:94.289590px;}
.h1b{height:94.786172px;}
.h7{height:95.477344px;}
.he{height:100.436702px;}
.h3{height:104.906250px;}
.h12{height:106.366544px;}
.h1d{height:112.640625px;}
.h8{height:115.396875px;}
.h6{height:122.478047px;}
.hc{height:125.031094px;}
.hd{height:137.316494px;}
.h2{height:139.693887px;}
.h21{height:157.253906px;}
.h1{height:892.500000px;}
.h0{height:892.830000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x12{left:125.085750px;}
.x9{left:132.285900px;}
.xe{left:133.365900px;}
.x8{left:156.315750px;}
.x13{left:165.585750px;}
.xa{left:172.785900px;}
.xf{left:173.865900px;}
.x14{left:179.085750px;}
.xb{left:186.285750px;}
.x15{left:212.834967px;}
.xc{left:220.034967px;}
.x2{left:228.764481px;}
.x31{left:233.085750px;}
.x10{left:240.285750px;}
.x1{left:242.085750px;}
.x44{left:249.015750px;}
.x3{left:251.262411px;}
.x32{left:265.305750px;}
.x11{left:267.285858px;}
.x42{left:287.625750px;}
.x5{left:352.785750px;}
.x3e{left:378.165750px;}
.x19{left:381.764136px;}
.x20{left:405.976817px;}
.x1e{left:417.406918px;}
.x41{left:418.665750px;}
.x33{left:430.815750px;}
.x6{left:448.815624px;}
.x40{left:485.625750px;}
.x18{left:492.375007px;}
.x16{left:508.845750px;}
.x4{left:513.165750px;}
.x43{left:521.085750px;}
.x34{left:524.325750px;}
.x35{left:547.995750px;}
.x1b{left:590.025750px;}
.x3f{left:619.815750px;}
.xd{left:625.665750px;}
.x1d{left:628.095750px;}
.x1f{left:655.455782px;}
.x36{left:656.805750px;}
.x1c{left:699.465562px;}
.x1a{left:718.006132px;}
.x17{left:734.835750px;}
.x3b{left:787.485750px;}
.x28{left:821.775903px;}
.x3c{left:852.465750px;}
.x3d{left:858.855732px;}
.x2c{left:860.656381px;}
.x25{left:869.295686px;}
.x30{left:880.093942px;}
.x26{left:893.955750px;}
.x2f{left:905.564774px;}
.x21{left:910.515750px;}
.x37{left:915.735750px;}
.x2e{left:919.604803px;}
.x2b{left:928.515924px;}
.x2a{left:931.845058px;}
.x29{left:933.465750px;}
.x24{left:937.155896px;}
.x38{left:939.495750px;}
.x23{left:942.465750px;}
.x2d{left:956.325567px;}
.x27{left:964.785750px;}
.x22{left:969.915750px;}
.x39{left:1005.015750px;}
.x3a{left:1036.066713px;}
.x7{left:1056.585750px;}
@media print{
.v3{vertical-align:-50.237465pt;}
.v8{vertical-align:-35.198464pt;}
.v2{vertical-align:-31.376412pt;}
.v6{vertical-align:-19.520000pt;}
.v4{vertical-align:-15.040000pt;}
.v1{vertical-align:-12.160736pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:15.040000pt;}
.va{vertical-align:17.600000pt;}
.v7{vertical-align:19.520000pt;}
.v9{vertical-align:35.200000pt;}
.ls42{letter-spacing:-5.308672pt;}
.lsc{letter-spacing:-0.153600pt;}
.ls30{letter-spacing:-0.140800pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.115200pt;}
.ls23{letter-spacing:-0.102400pt;}
.ls1e{letter-spacing:-0.093984pt;}
.lsa{letter-spacing:-0.089600pt;}
.ls24{letter-spacing:-0.085248pt;}
.lsb{letter-spacing:-0.076800pt;}
.ls1d{letter-spacing:-0.068352pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls41{letter-spacing:-0.057600pt;}
.ls27{letter-spacing:-0.053280pt;}
.ls1f{letter-spacing:-0.051264pt;}
.ls4{letter-spacing:-0.051200pt;}
.ls1c{letter-spacing:-0.042720pt;}
.ls5{letter-spacing:-0.042624pt;}
.ls40{letter-spacing:-0.040992pt;}
.lsf{letter-spacing:-0.038400pt;}
.ls3f{letter-spacing:-0.032000pt;}
.ls28{letter-spacing:-0.031968pt;}
.ls1a{letter-spacing:-0.028800pt;}
.ls19{letter-spacing:-0.021312pt;}
.ls1b{letter-spacing:-0.019200pt;}
.ls31{letter-spacing:-0.012800pt;}
.ls2c{letter-spacing:-0.010656pt;}
.lse{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.010656pt;}
.ls17{letter-spacing:0.019200pt;}
.ls2{letter-spacing:0.021312pt;}
.ls26{letter-spacing:0.025600pt;}
.ls11{letter-spacing:0.029888pt;}
.ls22{letter-spacing:0.031968pt;}
.ls13{letter-spacing:0.042624pt;}
.ls6{letter-spacing:0.044736pt;}
.ls29{letter-spacing:0.044832pt;}
.ls39{letter-spacing:0.048000pt;}
.ls43{letter-spacing:0.057600pt;}
.ls20{letter-spacing:0.059776pt;}
.ls25{letter-spacing:0.074720pt;}
.ls0{letter-spacing:0.085280pt;}
.ls9{letter-spacing:0.089664pt;}
.ls21{letter-spacing:0.106560pt;}
.ls1{letter-spacing:0.119392pt;}
.ls3e{letter-spacing:0.134208pt;}
.ls2d{letter-spacing:0.149184pt;}
.ls36{letter-spacing:0.288000pt;}
.ls33{letter-spacing:3.903680pt;}
.ls35{letter-spacing:4.223680pt;}
.ls38{letter-spacing:6.767680pt;}
.ls3d{letter-spacing:10.848000pt;}
.ls3c{letter-spacing:11.011200pt;}
.ls3b{letter-spacing:21.724800pt;}
.ls32{letter-spacing:25.343680pt;}
.ls37{letter-spacing:25.343744pt;}
.ls34{letter-spacing:27.887680pt;}
.ls2f{letter-spacing:35.584000pt;}
.ls16{letter-spacing:44.736384pt;}
.ls2a{letter-spacing:60.749856pt;}
.ls12{letter-spacing:66.212480pt;}
.ls15{letter-spacing:71.635200pt;}
.ls14{letter-spacing:94.720000pt;}
.ls7{letter-spacing:99.200000pt;}
.ls3a{letter-spacing:262.773760pt;}
.ls2b{letter-spacing:346.026284pt;}
.ls2e{letter-spacing:845.243955pt;}
.ls18{letter-spacing:1490.707904pt;}
.wsd{word-spacing:-96.383467pt;}
.ws1d{word-spacing:-96.288000pt;}
.ws1c{word-spacing:-96.000000pt;}
.ws1b{word-spacing:-69.081600pt;}
.ws9{word-spacing:-35.481600pt;}
.ws6{word-spacing:-35.468800pt;}
.ws14{word-spacing:-34.956806pt;}
.ws12{word-spacing:-33.357826pt;}
.ws11{word-spacing:-16.686290pt;}
.ws1f{word-spacing:-16.279680pt;}
.ws8{word-spacing:-1.044288pt;}
.ws23{word-spacing:-0.480000pt;}
.ws2{word-spacing:-0.256000pt;}
.wsb{word-spacing:-0.191808pt;}
.ws22{word-spacing:-0.153600pt;}
.wsf{word-spacing:-0.096383pt;}
.ws7{word-spacing:-0.064000pt;}
.ws13{word-spacing:-0.063674pt;}
.ws0{word-spacing:0.000000pt;}
.ws17{word-spacing:0.500832pt;}
.ws5{word-spacing:0.601600pt;}
.wsa{word-spacing:0.665600pt;}
.ws1{word-spacing:0.755200pt;}
.ws15{word-spacing:0.820512pt;}
.ws16{word-spacing:0.831168pt;}
.ws4{word-spacing:0.896000pt;}
.ws19{word-spacing:1.113600pt;}
.ws3{word-spacing:1.408000pt;}
.ws18{word-spacing:63.731200pt;}
.ws1a{word-spacing:63.808000pt;}
.ws21{word-spacing:143.833600pt;}
.ws20{word-spacing:162.345888pt;}
.ws10{word-spacing:235.220946pt;}
.ws1e{word-spacing:556.928000pt;}
.wse{word-spacing:594.485229pt;}
.wsc{word-spacing:916.255629pt;}
._a{margin-left:-512.413062pt;}
._9{margin-left:-502.514480pt;}
._8{margin-left:-443.180818pt;}
._5{margin-left:-306.335572pt;}
._7{margin-left:-271.136330pt;}
._6{margin-left:-243.397168pt;}
._d{margin-left:-199.776311pt;}
._10{margin-left:-194.032561pt;}
._4{margin-left:-191.793460pt;}
._11{margin-left:-158.477223pt;}
._f{margin-left:-151.434806pt;}
._c{margin-left:-141.858862pt;}
._e{margin-left:-137.401177pt;}
._b{margin-left:-119.000549pt;}
._14{margin-left:-8.256000pt;}
._2{margin-left:-0.911584pt;}
._0{width:1.292800pt;}
._13{width:28.588800pt;}
._1{width:60.728544pt;}
._12{width:66.156192pt;}
._3{width:99.225600pt;}
._18{width:128.793600pt;}
._1a{width:144.300800pt;}
._19{width:175.340800pt;}
._17{width:193.574400pt;}
._16{width:611.174400pt;}
._15{width:942.720000pt;}
.fsf{font-size:26.530133pt;}
.fse{font-size:35.443733pt;}
.fs10{font-size:37.142400pt;}
.fs15{font-size:39.040000pt;}
.fsc{font-size:56.223467pt;}
.fs14{font-size:58.560000pt;}
.fsd{font-size:60.761067pt;}
.fs11{font-size:63.673600pt;}
.fs13{font-size:64.000000pt;}
.fs12{font-size:70.080000pt;}
.fs3{font-size:74.560000pt;}
.fs9{font-size:85.440000pt;}
.fs6{font-size:96.000000pt;}
.fsb{font-size:96.383467pt;}
.fs8{font-size:105.600000pt;}
.fs2{font-size:106.560000pt;}
.fs5{font-size:117.440000pt;}
.fs1{font-size:128.000000pt;}
.fsa{font-size:131.774933pt;}
.fs7{font-size:140.800000pt;}
.fs4{font-size:149.440000pt;}
.fs0{font-size:170.560000pt;}
.fs16{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:57.306667pt;}
.y11{bottom:60.346667pt;}
.y33{bottom:139.706667pt;}
.y88{bottom:139.866667pt;}
.y7a{bottom:156.346667pt;}
.y7{bottom:156.346699pt;}
.y87{bottom:161.226667pt;}
.y3c{bottom:167.948939pt;}
.y32{bottom:178.106667pt;}
.y8c{bottom:179.468875pt;}
.y86{bottom:181.146667pt;}
.y6b{bottom:187.066667pt;}
.y6{bottom:188.346667pt;}
.y85{bottom:190.266667pt;}
.y3b{bottom:199.948907pt;}
.y13{bottom:209.226667pt;}
.y1e{bottom:209.226755pt;}
.y31{bottom:216.506667pt;}
.y8b{bottom:217.867771pt;}
.y6a{bottom:231.947803pt;}
.y1d{bottom:234.826715pt;}
.y3a{bottom:238.347803pt;}
.y28{bottom:238.506699pt;}
.y79{bottom:247.306699pt;}
.y12{bottom:247.626667pt;}
.y71{bottom:249.786667pt;}
.y8a{bottom:256.266667pt;}
.y69{bottom:263.947771pt;}
.y1c{bottom:265.546667pt;}
.y5{bottom:269.386667pt;}
.y39{bottom:270.347771pt;}
.y27{bottom:270.506667pt;}
.y78{bottom:279.306667pt;}
.y30{bottom:292.106699pt;}
.y70{bottom:295.866667pt;}
.y1b{bottom:296.826667pt;}
.y68{bottom:302.346667pt;}
.y38{bottom:308.746667pt;}
.y8f{bottom:309.466667pt;}
.y26{bottom:310.106667pt;}
.y77{bottom:318.906667pt;}
.y10{bottom:322.346699pt;}
.y2f{bottom:324.106667pt;}
.y4{bottom:325.386667pt;}
.y1a{bottom:330.826667pt;}
.y89{bottom:334.266667pt;}
.y6f{bottom:340.746667pt;}
.y67{bottom:341.946667pt;}
.y37{bottom:348.346667pt;}
.y25{bottom:348.506667pt;}
.yf{bottom:354.346667pt;}
.y76{bottom:357.306667pt;}
.y19{bottom:362.106667pt;}
.y2e{bottom:363.706667pt;}
.y8e{bottom:363.866667pt;}
.y5f{bottom:379.063189pt;}
.y5b{bottom:379.064781pt;}
.y4f{bottom:379.146667pt;}
.y6e{bottom:380.346667pt;}
.y55{bottom:383.066667pt;}
.y66{bottom:386.827771pt;}
.y5d{bottom:389.223904pt;}
.y59{bottom:389.225496pt;}
.ye{bottom:393.946667pt;}
.y24{bottom:394.586667pt;}
.y61{bottom:395.303141pt;}
.y52{bottom:395.306667pt;}
.y5e{bottom:395.863468pt;}
.y5a{bottom:395.865060pt;}
.y40{bottom:397.228445pt;}
.y44{bottom:397.230854pt;}
.y18{bottom:398.506667pt;}
.y4b{bottom:398.906667pt;}
.y2d{bottom:402.106667pt;}
.y75{bottom:403.386667pt;}
.y48{bottom:404.906667pt;}
.y56{bottom:405.065895pt;}
.y60{bottom:406.022591pt;}
.y5c{bottom:406.024183pt;}
.y3e{bottom:412.666667pt;}
.y42{bottom:412.669076pt;}
.y4e{bottom:414.506667pt;}
.y53{bottom:416.826667pt;}
.y4c{bottom:417.466033pt;}
.y54{bottom:417.946510pt;}
.y51{bottom:417.946546pt;}
.y3{bottom:418.982443pt;}
.y62{bottom:421.942583pt;}
.y58{bottom:421.945767pt;}
.y4a{bottom:423.547229pt;}
.y46{bottom:423.550770pt;}
.y65{bottom:425.226667pt;}
.y3f{bottom:426.107341pt;}
.y43{bottom:426.109751pt;}
.y6d{bottom:426.426667pt;}
.y50{bottom:428.026994pt;}
.y57{bottom:432.025298pt;}
.yd{bottom:432.346667pt;}
.y23{bottom:432.986667pt;}
.y49{bottom:438.426427pt;}
.y3d{bottom:438.506667pt;}
.y41{bottom:441.547972pt;}
.y45{bottom:441.550382pt;}
.y74{bottom:441.786667pt;}
.y47{bottom:450.986892pt;}
.y4d{bottom:457.386667pt;}
.y64{bottom:464.826667pt;}
.y2{bottom:470.184555pt;}
.y6c{bottom:471.306667pt;}
.y22{bottom:477.866699pt;}
.y17{bottom:477.946667pt;}
.y8d{bottom:478.106667pt;}
.y2c{bottom:485.386699pt;}
.y36{bottom:485.387803pt;}
.y73{bottom:486.666667pt;}
.y21{bottom:509.866667pt;}
.y63{bottom:510.906667pt;}
.y82{bottom:515.146667pt;}
.y16{bottom:516.346667pt;}
.y2b{bottom:517.386667pt;}
.y81{bottom:520.026667pt;}
.y1{bottom:521.386667pt;}
.y35{bottom:523.786699pt;}
.y72{bottom:523.866667pt;}
.yc{bottom:524.506667pt;}
.y83{bottom:528.826283pt;}
.y7d{bottom:535.706667pt;}
.y7c{bottom:540.586667pt;}
.y7f{bottom:543.946667pt;}
.y7e{bottom:548.826667pt;}
.y20{bottom:549.466667pt;}
.y34{bottom:555.786667pt;}
.y15{bottom:555.946667pt;}
.y2a{bottom:556.986667pt;}
.y80{bottom:557.626283pt;}
.yb{bottom:562.906667pt;}
.y1f{bottom:587.866667pt;}
.y84{bottom:593.226667pt;}
.y14{bottom:594.346667pt;}
.y29{bottom:595.386667pt;}
.ya{bottom:601.306667pt;}
.y7b{bottom:669.546667pt;}
.y9{bottom:671.626667pt;}
.h14{height:18.420825pt;}
.h15{height:25.789303pt;}
.h17{height:36.435098pt;}
.hf{height:39.037973pt;}
.h16{height:44.210869pt;}
.h1f{height:46.041250pt;}
.h20{height:46.625000pt;}
.h1c{height:47.256094pt;}
.h5{height:54.318125pt;}
.h11{height:55.152805pt;}
.h19{height:58.978916pt;}
.h13{height:59.603996pt;}
.hb{height:62.244375pt;}
.h18{height:62.461066pt;}
.h1a{height:64.734375pt;}
.h10{height:66.922505pt;}
.h9{height:76.312500pt;}
.h4{height:77.630625pt;}
.h1e{height:81.825000pt;}
.ha{height:83.812969pt;}
.h1b{height:84.254375pt;}
.h7{height:84.868750pt;}
.he{height:89.277068pt;}
.h3{height:93.250000pt;}
.h12{height:94.548039pt;}
.h1d{height:100.125000pt;}
.h8{height:102.575000pt;}
.h6{height:108.869375pt;}
.hc{height:111.138750pt;}
.hd{height:122.059106pt;}
.h2{height:124.172344pt;}
.h21{height:139.781250pt;}
.h1{height:793.333333pt;}
.h0{height:793.626667pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x12{left:111.187333pt;}
.x9{left:117.587467pt;}
.xe{left:118.547467pt;}
.x8{left:138.947333pt;}
.x13{left:147.187333pt;}
.xa{left:153.587467pt;}
.xf{left:154.547467pt;}
.x14{left:159.187333pt;}
.xb{left:165.587333pt;}
.x15{left:189.186637pt;}
.xc{left:195.586637pt;}
.x2{left:203.346205pt;}
.x31{left:207.187333pt;}
.x10{left:213.587333pt;}
.x1{left:215.187333pt;}
.x44{left:221.347333pt;}
.x3{left:223.344365pt;}
.x32{left:235.827333pt;}
.x11{left:237.587429pt;}
.x42{left:255.667333pt;}
.x5{left:313.587333pt;}
.x3e{left:336.147333pt;}
.x19{left:339.345899pt;}
.x20{left:360.868282pt;}
.x1e{left:371.028371pt;}
.x41{left:372.147333pt;}
.x33{left:382.947333pt;}
.x6{left:398.947221pt;}
.x40{left:431.667333pt;}
.x18{left:437.666673pt;}
.x16{left:452.307333pt;}
.x4{left:456.147333pt;}
.x43{left:463.187333pt;}
.x34{left:466.067333pt;}
.x35{left:487.107333pt;}
.x1b{left:524.467333pt;}
.x3f{left:550.947333pt;}
.xd{left:556.147333pt;}
.x1d{left:558.307333pt;}
.x1f{left:582.627362pt;}
.x36{left:583.827333pt;}
.x1c{left:621.747166pt;}
.x1a{left:638.227673pt;}
.x17{left:653.187333pt;}
.x3b{left:699.987333pt;}
.x28{left:730.467469pt;}
.x3c{left:757.747333pt;}
.x3d{left:763.427317pt;}
.x2c{left:765.027894pt;}
.x25{left:772.707277pt;}
.x30{left:782.305726pt;}
.x26{left:794.627333pt;}
.x2f{left:804.946466pt;}
.x21{left:809.347333pt;}
.x37{left:813.987333pt;}
.x2e{left:817.426492pt;}
.x2b{left:825.347488pt;}
.x2a{left:828.306718pt;}
.x29{left:829.747333pt;}
.x24{left:833.027463pt;}
.x38{left:835.107333pt;}
.x23{left:837.747333pt;}
.x2d{left:850.067171pt;}
.x27{left:857.587333pt;}
.x22{left:862.147333pt;}
.x39{left:893.347333pt;}
.x3a{left:920.948189pt;}
.x7{left:939.187333pt;}
}




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