
    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_2016032f5a0d37f0b22040e3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b60b19753f6853d5fc7c5b1d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_dfba30e6921474400898175c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e59a9c63dcd74f9593936439.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.741211;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_d3b4c24d646861f112dad27b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f428f13ec68e59497d2b1933.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_30057a9453510f9d8cbcc09b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_70aee2c38440d3d8462df893.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-73.440000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls9{letter-spacing:-2.700000px;}
.lsa{letter-spacing:-1.980000px;}
.lsb{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.269400px;}
.ls5{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.lse{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.149760px;}
.ls3{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.256200px;}
.ls4{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.480000px;}
.ls13{letter-spacing:6.588000px;}
.ls14{letter-spacing:9.468000px;}
.ls1{letter-spacing:9.540000px;}
.ls12{letter-spacing:20.988000px;}
.ls10{letter-spacing:26.748000px;}
.ls17{letter-spacing:36.000000px;}
.ls11{letter-spacing:36.108000px;}
.lsf{letter-spacing:41.148000px;}
.ls16{letter-spacing:52.668000px;}
.lsd{letter-spacing:56.268000px;}
.ls0{letter-spacing:1064.460000px;}
.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;}
}
.wsb{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.226440px;}
.ws0{word-spacing:-14.970240px;}
.ws5{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.608000px;}
.ws1{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.140000px;}
.ws9{word-spacing:-12.420000px;}
.ws8{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.790600px;}
.ws7{word-spacing:-11.700000px;}
.ws6{word-spacing:0.000000px;}
._5{margin-left:-3.307680px;}
._1{margin-left:-1.192320px;}
._0{width:1.254960px;}
._1b{width:2.268000px;}
._7{width:3.348000px;}
._12{width:4.914000px;}
._8{width:6.858000px;}
._9{width:7.875360px;}
._f{width:9.102240px;}
._3{width:10.210320px;}
._23{width:11.313360px;}
._6{width:12.384000px;}
._11{width:14.742000px;}
._19{width:15.796080px;}
._c{width:16.848000px;}
._d{width:17.969040px;}
._e{width:19.187040px;}
._14{width:20.790000px;}
._20{width:21.906000px;}
._24{width:23.333040px;}
._10{width:24.408000px;}
._1a{width:25.704000px;}
._16{width:26.842320px;}
._b{width:28.134000px;}
._a{width:29.376000px;}
._15{width:31.149360px;}
._18{width:32.508000px;}
._17{width:33.538320px;}
._2a{width:34.663680px;}
._1c{width:35.748000px;}
._1d{width:36.905760px;}
._27{width:38.400480px;}
._21{width:39.474000px;}
._22{width:40.932000px;}
._4{width:42.606000px;}
._13{width:44.820000px;}
._29{width:47.412000px;}
._25{width:53.550000px;}
._26{width:55.350000px;}
._28{width:63.342000px;}
._1e{width:82.134000px;}
._1f{width:83.201040px;}
._2{width:391.163760px;}
.fc6{color:transparent;}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(32,33,36);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs9{font-size:18.000000px;}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y25{bottom:3.240000px;}
.y22{bottom:5.580000px;}
.y24{bottom:18.720000px;}
.y21{bottom:23.580000px;}
.y20{bottom:50.400000px;}
.y5e{bottom:58.500000px;}
.y14{bottom:65.880000px;}
.y1f{bottom:68.220000px;}
.y4{bottom:76.860000px;}
.y5d{bottom:77.220000px;}
.y1e{bottom:86.040000px;}
.y13{bottom:92.700000px;}
.y3e{bottom:98.460000px;}
.y84{bottom:102.420000px;}
.y5a{bottom:103.680000px;}
.y1d{bottom:103.860000px;}
.y6{bottom:105.120000px;}
.yab{bottom:106.200000px;}
.yc8{bottom:112.680000px;}
.y3d{bottom:116.280000px;}
.y12{bottom:119.745000px;}
.y83{bottom:120.420000px;}
.y59{bottom:121.500000px;}
.y1c{bottom:121.905000px;}
.yaa{bottom:124.020000px;}
.yf9{bottom:126.360000px;}
.yc7{bottom:130.680000px;}
.y3c{bottom:134.100000px;}
.y58{bottom:139.320000px;}
.y1b{bottom:139.725000px;}
.ya9{bottom:141.840000px;}
.y82{bottom:144.000000px;}
.yf8{bottom:144.180000px;}
.y11{bottom:146.205000px;}
.yc6{bottom:148.500000px;}
.y3b{bottom:151.920000px;}
.y1a{bottom:157.545000px;}
.yf7{bottom:162.000000px;}
.y57{bottom:166.140000px;}
.yc5{bottom:166.320000px;}
.ya8{bottom:168.660000px;}
.y10{bottom:173.385000px;}
.y19{bottom:175.365000px;}
.y3a{bottom:175.680000px;}
.yf6{bottom:180.000000px;}
.y56{bottom:184.140000px;}
.ya7{bottom:186.480000px;}
.yf{bottom:191.205000px;}
.y18{bottom:193.185000px;}
.y55{bottom:201.960000px;}
.ya6{bottom:204.480000px;}
.yf5{bottom:206.850000px;}
.y17{bottom:211.005000px;}
.yc4{bottom:219.810000px;}
.ye{bottom:223.065000px;}
.yf4{bottom:224.670000px;}
.ya5{bottom:228.270000px;}
.y54{bottom:228.810000px;}
.y16{bottom:229.005000px;}
.yc3{bottom:237.810000px;}
.yf3{bottom:242.490000px;}
.yd{bottom:246.465000px;}
.y53{bottom:246.630000px;}
.y15{bottom:246.825000px;}
.yc2{bottom:255.630000px;}
.yf2{bottom:260.310000px;}
.y52{bottom:264.450000px;}
.yf1{bottom:278.130000px;}
.yc1{bottom:282.090000px;}
.y51{bottom:282.450000px;}
.yf0{bottom:296.130000px;}
.y50{bottom:300.270000px;}
.yc0{bottom:309.270000px;}
.y4f{bottom:318.090000px;}
.yef{bottom:322.590000px;}
.ybf{bottom:327.090000px;}
.y4e{bottom:335.910000px;}
.y81{bottom:340.770000px;}
.ybe{bottom:345.090000px;}
.yee{bottom:349.770000px;}
.y4d{bottom:353.730000px;}
.y80{bottom:358.590000px;}
.ybd{bottom:362.910000px;}
.yed{bottom:367.590000px;}
.y4c{bottom:371.550000px;}
.y7f{bottom:376.590000px;}
.ybc{bottom:380.730000px;}
.yec{bottom:385.410000px;}
.y4b{bottom:389.550000px;}
.y7e{bottom:394.410000px;}
.ybb{bottom:398.550000px;}
.yeb{bottom:403.410000px;}
.y39{bottom:407.370000px;}
.y7d{bottom:412.230000px;}
.yea{bottom:421.230000px;}
.yba{bottom:422.310000px;}
.y38{bottom:425.190000px;}
.y7c{bottom:430.050000px;}
.ye9{bottom:439.050000px;}
.y37{bottom:443.055000px;}
.y7b{bottom:447.915000px;}
.y4a{bottom:452.055000px;}
.ye8{bottom:456.915000px;}
.y36{bottom:460.875000px;}
.ya4{bottom:463.215000px;}
.y7a{bottom:465.735000px;}
.y49{bottom:469.875000px;}
.ye7{bottom:474.735000px;}
.y35{bottom:478.875000px;}
.ya3{bottom:481.035000px;}
.y79{bottom:483.735000px;}
.y48{bottom:487.875000px;}
.y34{bottom:496.695000px;}
.ya2{bottom:498.855000px;}
.y78{bottom:501.555000px;}
.y47{bottom:505.695000px;}
.y33{bottom:514.515000px;}
.ya1{bottom:516.675000px;}
.y77{bottom:519.375000px;}
.ye6{bottom:519.555000px;}
.y46{bottom:523.515000px;}
.y32{bottom:532.335000px;}
.ya0{bottom:534.495000px;}
.y76{bottom:537.195000px;}
.ye5{bottom:537.375000px;}
.y45{bottom:541.335000px;}
.y31{bottom:550.155000px;}
.y9f{bottom:552.495000px;}
.y75{bottom:555.015000px;}
.ye4{bottom:555.195000px;}
.y44{bottom:559.155000px;}
.y9e{bottom:570.315000px;}
.y74{bottom:573.015000px;}
.y30{bottom:576.975000px;}
.y9d{bottom:588.135000px;}
.ye3{bottom:590.835000px;}
.y2f{bottom:594.975000px;}
.y11b{bottom:596.595000px;}
.y73{bottom:599.835000px;}
.y9c{bottom:605.955000px;}
.ye2{bottom:608.655000px;}
.y2e{bottom:612.795000px;}
.y72{bottom:617.655000px;}
.y9b{bottom:623.775000px;}
.y108{bottom:626.655000px;}
.y2d{bottom:630.615000px;}
.ye1{bottom:635.295000px;}
.y71{bottom:635.475000px;}
.y9a{bottom:641.775000px;}
.y107{bottom:644.655000px;}
.y2c{bottom:648.435000px;}
.y70{bottom:653.295000px;}
.y43{bottom:657.435000px;}
.y99{bottom:659.595000px;}
.ye0{bottom:662.475000px;}
.y2b{bottom:666.255000px;}
.yb9{bottom:668.595000px;}
.y6f{bottom:671.115000px;}
.y42{bottom:675.255000px;}
.y98{bottom:677.445000px;}
.y11a{bottom:680.145000px;}
.ydf{bottom:680.325000px;}
.y2a{bottom:684.285000px;}
.yb8{bottom:686.445000px;}
.y6e{bottom:689.145000px;}
.y41{bottom:693.285000px;}
.y119{bottom:697.965000px;}
.yde{bottom:698.145000px;}
.y29{bottom:702.105000px;}
.y97{bottom:704.265000px;}
.y6d{bottom:706.965000px;}
.y40{bottom:711.105000px;}
.ydd{bottom:715.965000px;}
.y28{bottom:719.925000px;}
.y96{bottom:722.085000px;}
.y6c{bottom:724.785000px;}
.y3f{bottom:728.925000px;}
.y118{bottom:733.785000px;}
.ydc{bottom:733.965000px;}
.y95{bottom:739.905000px;}
.y27{bottom:741.525000px;}
.y26{bottom:746.925000px;}
.y6b{bottom:751.605000px;}
.ydb{bottom:751.785000px;}
.y94{bottom:757.905000px;}
.y117{bottom:760.605000px;}
.yda{bottom:769.605000px;}
.y23{bottom:773.385000px;}
.y93{bottom:775.725000px;}
.y6a{bottom:778.425000px;}
.y106{bottom:787.425000px;}
.y92{bottom:793.545000px;}
.y116{bottom:796.245000px;}
.y69{bottom:796.425000px;}
.yc{bottom:805.065000px;}
.y105{bottom:805.245000px;}
.y91{bottom:811.365000px;}
.y115{bottom:814.065000px;}
.y68{bottom:814.245000px;}
.y104{bottom:823.065000px;}
.y90{bottom:829.185000px;}
.y67{bottom:832.065000px;}
.y103{bottom:841.065000px;}
.y8f{bottom:847.185000px;}
.yd9{bottom:850.065000px;}
.y66{bottom:855.645000px;}
.y114{bottom:858.885000px;}
.yb7{bottom:865.005000px;}
.yd8{bottom:867.885000px;}
.y102{bottom:869.325000px;}
.y8e{bottom:874.005000px;}
.y113{bottom:876.705000px;}
.yb6{bottom:882.825000px;}
.yd7{bottom:885.705000px;}
.y112{bottom:894.525000px;}
.y101{bottom:900.645000px;}
.y8d{bottom:900.825000px;}
.yd6{bottom:903.525000px;}
.yb5{bottom:909.645000px;}
.y111{bottom:912.390000px;}
.y100{bottom:918.510000px;}
.y8c{bottom:918.690000px;}
.yd5{bottom:921.390000px;}
.yb4{bottom:927.510000px;}
.y110{bottom:930.390000px;}
.yff{bottom:936.330000px;}
.y8b{bottom:936.510000px;}
.yb3{bottom:945.330000px;}
.yd4{bottom:948.030000px;}
.y8a{bottom:954.330000px;}
.y10f{bottom:957.210000px;}
.yb2{bottom:963.330000px;}
.yfe{bottom:972.150000px;}
.y89{bottom:972.330000px;}
.yd3{bottom:974.850000px;}
.y10e{bottom:975.030000px;}
.yb1{bottom:981.150000px;}
.yfd{bottom:989.970000px;}
.y88{bottom:990.150000px;}
.yb0{bottom:998.970000px;}
.y10d{bottom:1001.850000px;}
.yd2{bottom:1002.030000px;}
.yaf{bottom:1016.790000px;}
.y87{bottom:1016.970000px;}
.y10c{bottom:1019.670000px;}
.yd1{bottom:1019.850000px;}
.yae{bottom:1034.610000px;}
.y86{bottom:1034.790000px;}
.yd0{bottom:1037.670000px;}
.y10b{bottom:1046.490000px;}
.y85{bottom:1052.610000px;}
.ycf{bottom:1055.490000px;}
.y10a{bottom:1064.490000px;}
.yad{bottom:1070.430000px;}
.y65{bottom:1070.610000px;}
.yce{bottom:1073.490000px;}
.yb{bottom:1079.430000px;}
.y109{bottom:1082.310000px;}
.yfc{bottom:1088.250000px;}
.y64{bottom:1088.430000px;}
.ycd{bottom:1091.310000px;}
.yac{bottom:1096.890000px;}
.ya{bottom:1105.890000px;}
.yfb{bottom:1106.070000px;}
.y63{bottom:1106.250000px;}
.ycc{bottom:1109.130000px;}
.y5{bottom:1112.940000px;}
.y62{bottom:1124.070000px;}
.ycb{bottom:1126.950000px;}
.y9{bottom:1132.350000px;}
.yfa{bottom:1132.530000px;}
.y61{bottom:1141.890000px;}
.yca{bottom:1144.770000px;}
.y60{bottom:1159.740000px;}
.y8{bottom:1164.420000px;}
.y3{bottom:1166.040000px;}
.yc9{bottom:1173.240000px;}
.y5f{bottom:1177.740000px;}
.y2{bottom:1181.520000px;}
.y5c{bottom:1191.060000px;}
.y7{bottom:1191.240000px;}
.y1{bottom:1196.820000px;}
.y5b{bottom:1198.080000px;}
.h12{height:5.805000px;}
.h14{height:17.666016px;}
.h10{height:30.960000px;}
.hf{height:37.705078px;}
.h5{height:47.344922px;}
.h13{height:47.980898px;}
.h7{height:48.256875px;}
.h8{height:48.361781px;}
.h16{height:52.971680px;}
.he{height:52.998047px;}
.hd{height:54.421875px;}
.h15{height:55.503491px;}
.h2{height:58.651172px;}
.hb{height:59.092031px;}
.ha{height:60.041250px;}
.h4{height:65.010937px;}
.h3{height:65.884219px;}
.h17{height:70.664062px;}
.h11{height:72.562500px;}
.h9{height:84.898125px;}
.h6{height:149.940000px;}
.hc{height:268.050000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:-79.560000px;}
.w3{width:210.133500px;}
.w4{width:536.505000px;}
.w5{width:747.358500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.098500px;}
.x3{left:12.090000px;}
.x1{left:54.000000px;}
.x9{left:72.901500px;}
.x13{left:81.000000px;}
.x19{left:86.040000px;}
.xc{left:95.256000px;}
.x14{left:107.136000px;}
.x6{left:271.515000px;}
.x8{left:280.515000px;}
.xb{left:283.755000px;}
.xd{left:371.415000px;}
.x7{left:392.655000px;}
.x18{left:407.955000px;}
.x12{left:410.115000px;}
.x11{left:438.195000px;}
.xe{left:473.505000px;}
.x1a{left:500.505000px;}
.x15{left:505.545000px;}
.xf{left:514.725000px;}
.x16{left:526.605000px;}
.x10{left:668.490000px;}
.x17{left:821.520000px;}
.x2{left:972.540000px;}
.x4{left:997.050000px;}
.x5{left:1004.070000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls9{letter-spacing:-2.400000pt;}
.lsa{letter-spacing:-1.760000pt;}
.lsb{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.239467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.lse{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.133120pt;}
.ls3{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.227733pt;}
.ls4{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.426667pt;}
.ls13{letter-spacing:5.856000pt;}
.ls14{letter-spacing:8.416000pt;}
.ls1{letter-spacing:8.480000pt;}
.ls12{letter-spacing:18.656000pt;}
.ls10{letter-spacing:23.776000pt;}
.ls17{letter-spacing:32.000000pt;}
.ls11{letter-spacing:32.096000pt;}
.lsf{letter-spacing:36.576000pt;}
.ls16{letter-spacing:46.816000pt;}
.lsd{letter-spacing:50.016000pt;}
.ls0{letter-spacing:946.186667pt;}
.wsb{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.306880pt;}
.ws5{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.096000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.680000pt;}
.ws9{word-spacing:-11.040000pt;}
.ws8{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.480533pt;}
.ws7{word-spacing:-10.400000pt;}
.ws6{word-spacing:0.000000pt;}
._5{margin-left:-2.940160pt;}
._1{margin-left:-1.059840pt;}
._0{width:1.115520pt;}
._1b{width:2.016000pt;}
._7{width:2.976000pt;}
._12{width:4.368000pt;}
._8{width:6.096000pt;}
._9{width:7.000320pt;}
._f{width:8.090880pt;}
._3{width:9.075840pt;}
._23{width:10.056320pt;}
._6{width:11.008000pt;}
._11{width:13.104000pt;}
._19{width:14.040960pt;}
._c{width:14.976000pt;}
._d{width:15.972480pt;}
._e{width:17.055147pt;}
._14{width:18.480000pt;}
._20{width:19.472000pt;}
._24{width:20.740480pt;}
._10{width:21.696000pt;}
._1a{width:22.848000pt;}
._16{width:23.859840pt;}
._b{width:25.008000pt;}
._a{width:26.112000pt;}
._15{width:27.688320pt;}
._18{width:28.896000pt;}
._17{width:29.811840pt;}
._2a{width:30.812160pt;}
._1c{width:31.776000pt;}
._1d{width:32.805120pt;}
._27{width:34.133760pt;}
._21{width:35.088000pt;}
._22{width:36.384000pt;}
._4{width:37.872000pt;}
._13{width:39.840000pt;}
._29{width:42.144000pt;}
._25{width:47.600000pt;}
._26{width:49.200000pt;}
._28{width:56.304000pt;}
._1e{width:73.008000pt;}
._1f{width:73.956480pt;}
._2{width:347.701120pt;}
.fs8{font-size:5.120000pt;}
.fs9{font-size:16.000000pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:2.880000pt;}
.y22{bottom:4.960000pt;}
.y24{bottom:16.640000pt;}
.y21{bottom:20.960000pt;}
.y20{bottom:44.800000pt;}
.y5e{bottom:52.000000pt;}
.y14{bottom:58.560000pt;}
.y1f{bottom:60.640000pt;}
.y4{bottom:68.320000pt;}
.y5d{bottom:68.640000pt;}
.y1e{bottom:76.480000pt;}
.y13{bottom:82.400000pt;}
.y3e{bottom:87.520000pt;}
.y84{bottom:91.040000pt;}
.y5a{bottom:92.160000pt;}
.y1d{bottom:92.320000pt;}
.y6{bottom:93.440000pt;}
.yab{bottom:94.400000pt;}
.yc8{bottom:100.160000pt;}
.y3d{bottom:103.360000pt;}
.y12{bottom:106.440000pt;}
.y83{bottom:107.040000pt;}
.y59{bottom:108.000000pt;}
.y1c{bottom:108.360000pt;}
.yaa{bottom:110.240000pt;}
.yf9{bottom:112.320000pt;}
.yc7{bottom:116.160000pt;}
.y3c{bottom:119.200000pt;}
.y58{bottom:123.840000pt;}
.y1b{bottom:124.200000pt;}
.ya9{bottom:126.080000pt;}
.y82{bottom:128.000000pt;}
.yf8{bottom:128.160000pt;}
.y11{bottom:129.960000pt;}
.yc6{bottom:132.000000pt;}
.y3b{bottom:135.040000pt;}
.y1a{bottom:140.040000pt;}
.yf7{bottom:144.000000pt;}
.y57{bottom:147.680000pt;}
.yc5{bottom:147.840000pt;}
.ya8{bottom:149.920000pt;}
.y10{bottom:154.120000pt;}
.y19{bottom:155.880000pt;}
.y3a{bottom:156.160000pt;}
.yf6{bottom:160.000000pt;}
.y56{bottom:163.680000pt;}
.ya7{bottom:165.760000pt;}
.yf{bottom:169.960000pt;}
.y18{bottom:171.720000pt;}
.y55{bottom:179.520000pt;}
.ya6{bottom:181.760000pt;}
.yf5{bottom:183.866667pt;}
.y17{bottom:187.560000pt;}
.yc4{bottom:195.386667pt;}
.ye{bottom:198.280000pt;}
.yf4{bottom:199.706667pt;}
.ya5{bottom:202.906667pt;}
.y54{bottom:203.386667pt;}
.y16{bottom:203.560000pt;}
.yc3{bottom:211.386667pt;}
.yf3{bottom:215.546667pt;}
.yd{bottom:219.080000pt;}
.y53{bottom:219.226667pt;}
.y15{bottom:219.400000pt;}
.yc2{bottom:227.226667pt;}
.yf2{bottom:231.386667pt;}
.y52{bottom:235.066667pt;}
.yf1{bottom:247.226667pt;}
.yc1{bottom:250.746667pt;}
.y51{bottom:251.066667pt;}
.yf0{bottom:263.226667pt;}
.y50{bottom:266.906667pt;}
.yc0{bottom:274.906667pt;}
.y4f{bottom:282.746667pt;}
.yef{bottom:286.746667pt;}
.ybf{bottom:290.746667pt;}
.y4e{bottom:298.586667pt;}
.y81{bottom:302.906667pt;}
.ybe{bottom:306.746667pt;}
.yee{bottom:310.906667pt;}
.y4d{bottom:314.426667pt;}
.y80{bottom:318.746667pt;}
.ybd{bottom:322.586667pt;}
.yed{bottom:326.746667pt;}
.y4c{bottom:330.266667pt;}
.y7f{bottom:334.746667pt;}
.ybc{bottom:338.426667pt;}
.yec{bottom:342.586667pt;}
.y4b{bottom:346.266667pt;}
.y7e{bottom:350.586667pt;}
.ybb{bottom:354.266667pt;}
.yeb{bottom:358.586667pt;}
.y39{bottom:362.106667pt;}
.y7d{bottom:366.426667pt;}
.yea{bottom:374.426667pt;}
.yba{bottom:375.386667pt;}
.y38{bottom:377.946667pt;}
.y7c{bottom:382.266667pt;}
.ye9{bottom:390.266667pt;}
.y37{bottom:393.826667pt;}
.y7b{bottom:398.146667pt;}
.y4a{bottom:401.826667pt;}
.ye8{bottom:406.146667pt;}
.y36{bottom:409.666667pt;}
.ya4{bottom:411.746667pt;}
.y7a{bottom:413.986667pt;}
.y49{bottom:417.666667pt;}
.ye7{bottom:421.986667pt;}
.y35{bottom:425.666667pt;}
.ya3{bottom:427.586667pt;}
.y79{bottom:429.986667pt;}
.y48{bottom:433.666667pt;}
.y34{bottom:441.506667pt;}
.ya2{bottom:443.426667pt;}
.y78{bottom:445.826667pt;}
.y47{bottom:449.506667pt;}
.y33{bottom:457.346667pt;}
.ya1{bottom:459.266667pt;}
.y77{bottom:461.666667pt;}
.ye6{bottom:461.826667pt;}
.y46{bottom:465.346667pt;}
.y32{bottom:473.186667pt;}
.ya0{bottom:475.106667pt;}
.y76{bottom:477.506667pt;}
.ye5{bottom:477.666667pt;}
.y45{bottom:481.186667pt;}
.y31{bottom:489.026667pt;}
.y9f{bottom:491.106667pt;}
.y75{bottom:493.346667pt;}
.ye4{bottom:493.506667pt;}
.y44{bottom:497.026667pt;}
.y9e{bottom:506.946667pt;}
.y74{bottom:509.346667pt;}
.y30{bottom:512.866667pt;}
.y9d{bottom:522.786667pt;}
.ye3{bottom:525.186667pt;}
.y2f{bottom:528.866667pt;}
.y11b{bottom:530.306667pt;}
.y73{bottom:533.186667pt;}
.y9c{bottom:538.626667pt;}
.ye2{bottom:541.026667pt;}
.y2e{bottom:544.706667pt;}
.y72{bottom:549.026667pt;}
.y9b{bottom:554.466667pt;}
.y108{bottom:557.026667pt;}
.y2d{bottom:560.546667pt;}
.ye1{bottom:564.706667pt;}
.y71{bottom:564.866667pt;}
.y9a{bottom:570.466667pt;}
.y107{bottom:573.026667pt;}
.y2c{bottom:576.386667pt;}
.y70{bottom:580.706667pt;}
.y43{bottom:584.386667pt;}
.y99{bottom:586.306667pt;}
.ye0{bottom:588.866667pt;}
.y2b{bottom:592.226667pt;}
.yb9{bottom:594.306667pt;}
.y6f{bottom:596.546667pt;}
.y42{bottom:600.226667pt;}
.y98{bottom:602.173333pt;}
.y11a{bottom:604.573333pt;}
.ydf{bottom:604.733333pt;}
.y2a{bottom:608.253333pt;}
.yb8{bottom:610.173333pt;}
.y6e{bottom:612.573333pt;}
.y41{bottom:616.253333pt;}
.y119{bottom:620.413333pt;}
.yde{bottom:620.573333pt;}
.y29{bottom:624.093333pt;}
.y97{bottom:626.013333pt;}
.y6d{bottom:628.413333pt;}
.y40{bottom:632.093333pt;}
.ydd{bottom:636.413333pt;}
.y28{bottom:639.933333pt;}
.y96{bottom:641.853333pt;}
.y6c{bottom:644.253333pt;}
.y3f{bottom:647.933333pt;}
.y118{bottom:652.253333pt;}
.ydc{bottom:652.413333pt;}
.y95{bottom:657.693333pt;}
.y27{bottom:659.133333pt;}
.y26{bottom:663.933333pt;}
.y6b{bottom:668.093333pt;}
.ydb{bottom:668.253333pt;}
.y94{bottom:673.693333pt;}
.y117{bottom:676.093333pt;}
.yda{bottom:684.093333pt;}
.y23{bottom:687.453333pt;}
.y93{bottom:689.533333pt;}
.y6a{bottom:691.933333pt;}
.y106{bottom:699.933333pt;}
.y92{bottom:705.373333pt;}
.y116{bottom:707.773333pt;}
.y69{bottom:707.933333pt;}
.yc{bottom:715.613333pt;}
.y105{bottom:715.773333pt;}
.y91{bottom:721.213333pt;}
.y115{bottom:723.613333pt;}
.y68{bottom:723.773333pt;}
.y104{bottom:731.613333pt;}
.y90{bottom:737.053333pt;}
.y67{bottom:739.613333pt;}
.y103{bottom:747.613333pt;}
.y8f{bottom:753.053333pt;}
.yd9{bottom:755.613333pt;}
.y66{bottom:760.573333pt;}
.y114{bottom:763.453333pt;}
.yb7{bottom:768.893333pt;}
.yd8{bottom:771.453333pt;}
.y102{bottom:772.733333pt;}
.y8e{bottom:776.893333pt;}
.y113{bottom:779.293333pt;}
.yb6{bottom:784.733333pt;}
.yd7{bottom:787.293333pt;}
.y112{bottom:795.133333pt;}
.y101{bottom:800.573333pt;}
.y8d{bottom:800.733333pt;}
.yd6{bottom:803.133333pt;}
.yb5{bottom:808.573333pt;}
.y111{bottom:811.013333pt;}
.y100{bottom:816.453333pt;}
.y8c{bottom:816.613333pt;}
.yd5{bottom:819.013333pt;}
.yb4{bottom:824.453333pt;}
.y110{bottom:827.013333pt;}
.yff{bottom:832.293333pt;}
.y8b{bottom:832.453333pt;}
.yb3{bottom:840.293333pt;}
.yd4{bottom:842.693333pt;}
.y8a{bottom:848.293333pt;}
.y10f{bottom:850.853333pt;}
.yb2{bottom:856.293333pt;}
.yfe{bottom:864.133333pt;}
.y89{bottom:864.293333pt;}
.yd3{bottom:866.533333pt;}
.y10e{bottom:866.693333pt;}
.yb1{bottom:872.133333pt;}
.yfd{bottom:879.973333pt;}
.y88{bottom:880.133333pt;}
.yb0{bottom:887.973333pt;}
.y10d{bottom:890.533333pt;}
.yd2{bottom:890.693333pt;}
.yaf{bottom:903.813333pt;}
.y87{bottom:903.973333pt;}
.y10c{bottom:906.373333pt;}
.yd1{bottom:906.533333pt;}
.yae{bottom:919.653333pt;}
.y86{bottom:919.813333pt;}
.yd0{bottom:922.373333pt;}
.y10b{bottom:930.213333pt;}
.y85{bottom:935.653333pt;}
.ycf{bottom:938.213333pt;}
.y10a{bottom:946.213333pt;}
.yad{bottom:951.493333pt;}
.y65{bottom:951.653333pt;}
.yce{bottom:954.213333pt;}
.yb{bottom:959.493333pt;}
.y109{bottom:962.053333pt;}
.yfc{bottom:967.333333pt;}
.y64{bottom:967.493333pt;}
.ycd{bottom:970.053333pt;}
.yac{bottom:975.013333pt;}
.ya{bottom:983.013333pt;}
.yfb{bottom:983.173333pt;}
.y63{bottom:983.333333pt;}
.ycc{bottom:985.893333pt;}
.y5{bottom:989.280000pt;}
.y62{bottom:999.173333pt;}
.ycb{bottom:1001.733333pt;}
.y9{bottom:1006.533333pt;}
.yfa{bottom:1006.693333pt;}
.y61{bottom:1015.013333pt;}
.yca{bottom:1017.573333pt;}
.y60{bottom:1030.880000pt;}
.y8{bottom:1035.040000pt;}
.y3{bottom:1036.480000pt;}
.yc9{bottom:1042.880000pt;}
.y5f{bottom:1046.880000pt;}
.y2{bottom:1050.240000pt;}
.y5c{bottom:1058.720000pt;}
.y7{bottom:1058.880000pt;}
.y1{bottom:1063.840000pt;}
.y5b{bottom:1064.960000pt;}
.h12{height:5.160000pt;}
.h14{height:15.703125pt;}
.h10{height:27.520000pt;}
.hf{height:33.515625pt;}
.h5{height:42.084375pt;}
.h13{height:42.649687pt;}
.h7{height:42.895000pt;}
.h8{height:42.988250pt;}
.h16{height:47.085938pt;}
.he{height:47.109375pt;}
.hd{height:48.375000pt;}
.h15{height:49.336436pt;}
.h2{height:52.134375pt;}
.hb{height:52.526250pt;}
.ha{height:53.370000pt;}
.h4{height:57.787500pt;}
.h3{height:58.563750pt;}
.h17{height:62.812500pt;}
.h11{height:64.500000pt;}
.h9{height:75.465000pt;}
.h6{height:133.280000pt;}
.hc{height:238.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:-70.720000pt;}
.w3{width:186.785333pt;}
.w4{width:476.893333pt;}
.w5{width:664.318667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.198667pt;}
.x3{left:10.746667pt;}
.x1{left:48.000000pt;}
.x9{left:64.801333pt;}
.x13{left:72.000000pt;}
.x19{left:76.480000pt;}
.xc{left:84.672000pt;}
.x14{left:95.232000pt;}
.x6{left:241.346667pt;}
.x8{left:249.346667pt;}
.xb{left:252.226667pt;}
.xd{left:330.146667pt;}
.x7{left:349.026667pt;}
.x18{left:362.626667pt;}
.x12{left:364.546667pt;}
.x11{left:389.506667pt;}
.xe{left:420.893333pt;}
.x1a{left:444.893333pt;}
.x15{left:449.373333pt;}
.xf{left:457.533333pt;}
.x16{left:468.093333pt;}
.x10{left:594.213333pt;}
.x17{left:730.240000pt;}
.x2{left:864.480000pt;}
.x4{left:886.266667pt;}
.x5{left:892.506667pt;}
}




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