
    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_a23c9325f5d4f824073cb614.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f7024e4dedd7d632ed88ced3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.046387;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_3a0773df25950047ef22eaba.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_041c7376cc538a3019eb9aff.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c42e4cbb3d1b91b5ad087c3c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_116f94bab2aabab4aee1f647.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.046387;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_ee06ddaa9f8a7bb616d2ac32.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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);}
.v2{vertical-align:-20.880000px;}
.v5{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.v4{vertical-align:23.760000px;}
.v3{vertical-align:27.360000px;}
.lsd{letter-spacing:-2.160000px;}
.ls8{letter-spacing:-1.260000px;}
.lsc{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.259800px;}
.ls1f{letter-spacing:-0.226200px;}
.ls16{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.072000px;}
.lsb{letter-spacing:-0.004320px;}
.ls5{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.080400px;}
.ls18{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.119520px;}
.ls15{letter-spacing:0.156000px;}
.ls1{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.259800px;}
.ls1b{letter-spacing:0.262080px;}
.ls10{letter-spacing:0.269400px;}
.ls21{letter-spacing:0.305400px;}
.ls9{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.432000px;}
.lse{letter-spacing:0.720000px;}
.ls12{letter-spacing:1.440000px;}
.ls13{letter-spacing:4.320000px;}
.ls1e{letter-spacing:6.785280px;}
.ls11{letter-spacing:7.920000px;}
.ls19{letter-spacing:12.240000px;}
.ls14{letter-spacing:12.960000px;}
.ls1d{letter-spacing:33.984000px;}
.ls1c{letter-spacing:39.905280px;}
.ls2{letter-spacing:71.460000px;}
.ls3{letter-spacing:92.160000px;}
.ls4{letter-spacing:92.880000px;}
.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;}
}
.ws8{word-spacing:-18.720000px;}
.ws9{word-spacing:-18.432000px;}
.ws7{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.928000px;}
.wsd{word-spacing:-17.784000px;}
.wse{word-spacing:-17.712000px;}
.ws13{word-spacing:-16.640400px;}
.ws11{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.120000px;}
.wsf{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.580000px;}
.ws6{word-spacing:-13.680000px;}
.wsa{word-spacing:-12.329400px;}
.ws12{word-spacing:-10.213800px;}
.wsb{word-spacing:-9.720000px;}
.ws3{word-spacing:-9.715680px;}
.wsc{word-spacing:0.000000px;}
._1c{margin-left:-8.725440px;}
._1b{margin-left:-7.645920px;}
._8{margin-left:-6.083280px;}
._f{margin-left:-5.074320px;}
._4{margin-left:-4.039200px;}
._a{margin-left:-2.931840px;}
._1{margin-left:-1.513680px;}
._0{width:1.135440px;}
._9{width:2.662080px;}
._e{width:3.740880px;}
._b{width:5.189040px;}
._2{width:6.504480px;}
._c{width:8.280000px;}
._d{width:9.383760px;}
._14{width:10.656000px;}
._10{width:12.240000px;}
._15{width:13.536000px;}
._16{width:14.854320px;}
._17{width:15.887520px;}
._18{width:21.528000px;}
._12{width:25.579200px;}
._11{width:27.216000px;}
._13{width:28.332240px;}
._1a{width:30.963360px;}
._19{width:32.641680px;}
._6{width:71.689440px;}
._5{width:72.776640px;}
._7{width:93.836400px;}
._3{width:142.747200px;}
.fc7{color:rgb(62,61,64);}
.fc4{color:transparent;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(255,0,0);}
.fc6{color:rgb(51,51,51);}
.fc5{color:rgb(33,33,33);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,176,240);}
.fs2{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fs7{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.ye0{bottom:-26.820000px;}
.ydf{bottom:-8.640000px;}
.y0{bottom:0.000000px;}
.y54{bottom:3.240000px;}
.y57{bottom:3.420000px;}
.ya3{bottom:4.320000px;}
.y37{bottom:4.500000px;}
.y9b{bottom:4.860000px;}
.y5f{bottom:5.040000px;}
.y74{bottom:5.580000px;}
.y62{bottom:5.760000px;}
.y6a{bottom:6.120000px;}
.y6d{bottom:6.300000px;}
.y6f{bottom:6.480000px;}
.y64{bottom:6.660000px;}
.y71{bottom:7.050000px;}
.y68{bottom:7.380000px;}
.ya7{bottom:8.640000px;}
.y5d{bottom:9.000000px;}
.y5a{bottom:9.180000px;}
.y66{bottom:9.900000px;}
.y52{bottom:10.980000px;}
.yaa{bottom:13.860000px;}
.y99{bottom:14.040000px;}
.y76{bottom:16.020000px;}
.y9f{bottom:16.560000px;}
.y97{bottom:18.000000px;}
.y9d{bottom:21.420000px;}
.y36{bottom:21.780000px;}
.ya1{bottom:22.320000px;}
.y5{bottom:24.300000px;}
.ya5{bottom:25.605000px;}
.yde{bottom:26.460000px;}
.y95{bottom:27.900000px;}
.yab{bottom:29.160000px;}
.y96{bottom:36.900000px;}
.ydd{bottom:43.785000px;}
.y77{bottom:60.300000px;}
.ydc{bottom:61.065000px;}
.y34{bottom:64.800000px;}
.y92{bottom:73.620000px;}
.ydb{bottom:78.345000px;}
.y75{bottom:78.480000px;}
.ycf{bottom:87.120000px;}
.y33{bottom:88.560000px;}
.yda{bottom:95.625000px;}
.y91{bottom:97.380000px;}
.yce{bottom:106.020000px;}
.y73{bottom:109.620000px;}
.y32{bottom:111.420000px;}
.yd9{bottom:112.725000px;}
.y90{bottom:121.320000px;}
.ycd{bottom:125.100000px;}
.yd8{bottom:130.005000px;}
.y72{bottom:130.320000px;}
.y31{bottom:133.200000px;}
.ycc{bottom:144.000000px;}
.y8f{bottom:145.080000px;}
.yd7{bottom:147.285000px;}
.y70{bottom:151.560000px;}
.y30{bottom:156.990000px;}
.ycb{bottom:164.370000px;}
.yd6{bottom:164.565000px;}
.y8e{bottom:168.870000px;}
.y6e{bottom:173.730000px;}
.y2f{bottom:180.750000px;}
.yd5{bottom:181.845000px;}
.yca{bottom:183.450000px;}
.y8d{bottom:192.630000px;}
.y6c{bottom:195.330000px;}
.yd4{bottom:199.125000px;}
.yc9{bottom:202.350000px;}
.y2e{bottom:204.690000px;}
.yd3{bottom:216.225000px;}
.y8c{bottom:216.390000px;}
.y6b{bottom:216.750000px;}
.yc8{bottom:222.690000px;}
.y2d{bottom:228.450000px;}
.yd2{bottom:233.505000px;}
.y69{bottom:237.630000px;}
.y8b{bottom:240.330000px;}
.yc7{bottom:241.770000px;}
.y2c{bottom:252.210000px;}
.y67{bottom:258.870000px;}
.yc6{bottom:260.670000px;}
.y8a{bottom:264.090000px;}
.y2b{bottom:275.970000px;}
.yc5{bottom:281.010000px;}
.y65{bottom:281.370000px;}
.y89{bottom:287.850000px;}
.y2a{bottom:299.910000px;}
.yc4{bottom:300.090000px;}
.y63{bottom:306.390000px;}
.y88{bottom:311.610000px;}
.yc3{bottom:318.990000px;}
.y29{bottom:323.670000px;}
.y61{bottom:328.170000px;}
.y87{bottom:335.550000px;}
.yc2{bottom:339.330000px;}
.y28{bottom:347.430000px;}
.y60{bottom:349.050000px;}
.yc1{bottom:358.410000px;}
.y86{bottom:359.310000px;}
.y5e{bottom:367.410000px;}
.y27{bottom:371.190000px;}
.yc0{bottom:377.310000px;}
.y85{bottom:383.070000px;}
.y5c{bottom:387.570000px;}
.ybf{bottom:396.390000px;}
.y26{bottom:404.175000px;}
.y84{bottom:406.875000px;}
.y5b{bottom:411.735000px;}
.ybe{bottom:415.335000px;}
.y25{bottom:427.935000px;}
.y59{bottom:430.095000px;}
.y83{bottom:430.815000px;}
.ybd{bottom:434.415000px;}
.y24{bottom:451.695000px;}
.ybc{bottom:453.315000px;}
.y58{bottom:454.575000px;}
.y56{bottom:472.935000px;}
.ybb{bottom:473.655000px;}
.y23{bottom:475.455000px;}
.y82{bottom:478.335000px;}
.y55{bottom:491.475000px;}
.yba{bottom:492.735000px;}
.y22{bottom:499.395000px;}
.y81{bottom:502.095000px;}
.y53{bottom:509.835000px;}
.yb9{bottom:511.635000px;}
.y21{bottom:523.155000px;}
.y80{bottom:526.035000px;}
.y51{bottom:529.635000px;}
.yb8{bottom:531.975000px;}
.y20{bottom:546.915000px;}
.y7f{bottom:549.795000px;}
.yb7{bottom:551.055000px;}
.y50{bottom:569.595000px;}
.yb6{bottom:569.955000px;}
.y1f{bottom:570.675000px;}
.y7e{bottom:573.555000px;}
.yb5{bottom:588.855000px;}
.y4f{bottom:592.275000px;}
.y1e{bottom:594.435000px;}
.y7d{bottom:597.315000px;}
.yb4{bottom:607.935000px;}
.y4e{bottom:616.035000px;}
.y1d{bottom:618.375000px;}
.y7c{bottom:621.255000px;}
.yb3{bottom:626.835000px;}
.y4d{bottom:639.795000px;}
.y1c{bottom:642.135000px;}
.yb2{bottom:645.915000px;}
.y7b{bottom:654.045000px;}
.y4c{bottom:663.585000px;}
.y1b{bottom:665.925000px;}
.yb1{bottom:668.265000px;}
.y7a{bottom:683.205000px;}
.y4b{bottom:687.525000px;}
.y1a{bottom:689.685000px;}
.yb0{bottom:692.025000px;}
.y79{bottom:702.465000px;}
.y19{bottom:710.385000px;}
.y4a{bottom:711.285000px;}
.yaf{bottom:712.725000px;}
.y78{bottom:726.765000px;}
.y18{bottom:730.365000px;}
.yae{bottom:733.425000px;}
.y49{bottom:735.045000px;}
.y17{bottom:747.645000px;}
.yad{bottom:753.405000px;}
.y48{bottom:758.805000px;}
.y16{bottom:764.925000px;}
.yac{bottom:770.685000px;}
.y15{bottom:782.205000px;}
.y47{bottom:782.745000px;}
.ya9{bottom:795.165000px;}
.y14{bottom:802.005000px;}
.y46{bottom:806.505000px;}
.ya8{bottom:824.325000px;}
.y45{bottom:830.265000px;}
.y35{bottom:838.185000px;}
.ya6{bottom:848.265000px;}
.y44{bottom:854.025000px;}
.yd1{bottom:862.305000px;}
.ya4{bottom:872.205000px;}
.y43{bottom:877.785000px;}
.y13{bottom:894.885000px;}
.y42{bottom:901.770000px;}
.y12{bottom:912.930000px;}
.ya2{bottom:913.110000px;}
.y41{bottom:925.530000px;}
.ya0{bottom:932.730000px;}
.y11{bottom:935.250000px;}
.y10{bottom:947.310000px;}
.y40{bottom:949.290000px;}
.yf{bottom:964.590000px;}
.y9e{bottom:970.350000px;}
.y3f{bottom:973.050000px;}
.ye{bottom:981.870000px;}
.y3e{bottom:996.990000px;}
.yd{bottom:999.330000px;}
.y9c{bottom:1002.210000px;}
.yc{bottom:1017.150000px;}
.y3d{bottom:1020.750000px;}
.y9a{bottom:1023.630000px;}
.yb{bottom:1038.390000px;}
.y98{bottom:1043.790000px;}
.y3c{bottom:1044.510000px;}
.ya{bottom:1059.630000px;}
.y3b{bottom:1068.270000px;}
.y94{bottom:1074.750000px;}
.y9{bottom:1078.170000px;}
.y3a{bottom:1092.210000px;}
.y8{bottom:1102.290000px;}
.y39{bottom:1115.970000px;}
.y7{bottom:1125.150000px;}
.y38{bottom:1139.730000px;}
.y93{bottom:1140.990000px;}
.yd0{bottom:1141.170000px;}
.y6{bottom:1142.430000px;}
.y4{bottom:1159.740000px;}
.y3{bottom:1177.020000px;}
.y2{bottom:1194.300000px;}
.y1{bottom:1211.580000px;}
.h13{height:17.100000px;}
.h11{height:17.280000px;}
.h12{height:17.460000px;}
.h16{height:19.080000px;}
.h17{height:19.620000px;}
.h1c{height:19.800000px;}
.h1b{height:20.160000px;}
.h1d{height:20.520000px;}
.h18{height:20.700000px;}
.h1e{height:21.096000px;}
.h1a{height:21.420000px;}
.h15{height:22.896000px;}
.h14{height:23.220000px;}
.h19{height:23.760000px;}
.h27{height:23.940000px;}
.h10{height:24.840000px;}
.h28{height:29.160000px;}
.h23{height:29.340000px;}
.h1f{height:30.060000px;}
.h24{height:31.860000px;}
.h8{height:32.292422px;}
.hd{height:35.820000px;}
.h25{height:37.620000px;}
.h26{height:40.896000px;}
.h4{height:42.164648px;}
.h6{height:44.704687px;}
.h20{height:46.736719px;}
.h5{height:48.312422px;}
.h2{height:49.634648px;}
.hb{height:50.800781px;}
.h21{height:52.200000px;}
.h9{height:52.624688px;}
.h7{height:53.172422px;}
.h22{height:53.224453px;}
.hf{height:55.016719px;}
.h3{height:59.436914px;}
.ha{height:59.800781px;}
.hc{height:67.426523px;}
.he{height:67.546523px;}
.h29{height:247.530000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:121.716000px;}
.wa{width:131.256000px;}
.w4{width:223.455000px;}
.w8{width:240.330000px;}
.w6{width:255.315000px;}
.w5{width:265.710000px;}
.w7{width:305.175000px;}
.wb{width:781.380000px;}
.w3{width:781.920000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:7.740000px;}
.x11{left:10.800000px;}
.x28{left:29.745000px;}
.x1f{left:35.145000px;}
.x29{left:37.440000px;}
.x21{left:41.760000px;}
.x2d{left:46.485000px;}
.x2f{left:48.465000px;}
.x27{left:50.400000px;}
.x2b{left:52.740000px;}
.x1{left:53.999987px;}
.x31{left:65.520000px;}
.x1d{left:67.500000px;}
.x8{left:68.759987px;}
.x25{left:72.396000px;}
.x13{left:74.340000px;}
.x30{left:78.336000px;}
.x34{left:80.999987px;}
.x22{left:83.556000px;}
.xd{left:84.995987px;}
.x2a{left:88.596000px;}
.x1a{left:90.036000px;}
.x4{left:93.275987px;}
.x1c{left:94.530000px;}
.x6{left:101.555987px;}
.x10{left:108.575987px;}
.x23{left:109.830000px;}
.x2c{left:111.810000px;}
.x24{left:117.390000px;}
.x2e{left:119.010000px;}
.x26{left:120.090000px;}
.xb{left:126.035987px;}
.x32{left:155.909987px;}
.xe{left:169.049987px;}
.x5{left:193.349987px;}
.x7{left:216.029987px;}
.x18{left:230.789987px;}
.x33{left:258.329987px;}
.x9{left:267.734987px;}
.xa{left:281.954987px;}
.x15{left:297.795000px;}
.xf{left:322.274987px;}
.x19{left:344.054987px;}
.x1b{left:359.175000px;}
.xc{left:375.194987px;}
.x2{left:376.634987px;}
.x12{left:386.354987px;}
.x3{left:446.504987px;}
.x16{left:563.505000px;}
.x1e{left:599.505000px;}
.x20{left:721.230000px;}
.x17{left:833.579987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v5{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.v4{vertical-align:21.120000pt;}
.v3{vertical-align:24.320000pt;}
.lsd{letter-spacing:-1.920000pt;}
.ls8{letter-spacing:-1.120000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.230933pt;}
.ls1f{letter-spacing:-0.201067pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.064000pt;}
.lsb{letter-spacing:-0.003840pt;}
.ls5{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.071467pt;}
.ls18{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.106240pt;}
.ls15{letter-spacing:0.138667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.230933pt;}
.ls1b{letter-spacing:0.232960pt;}
.ls10{letter-spacing:0.239467pt;}
.ls21{letter-spacing:0.271467pt;}
.ls9{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.640000pt;}
.ls12{letter-spacing:1.280000pt;}
.ls13{letter-spacing:3.840000pt;}
.ls1e{letter-spacing:6.031360pt;}
.ls11{letter-spacing:7.040000pt;}
.ls19{letter-spacing:10.880000pt;}
.ls14{letter-spacing:11.520000pt;}
.ls1d{letter-spacing:30.208000pt;}
.ls1c{letter-spacing:35.471360pt;}
.ls2{letter-spacing:63.520000pt;}
.ls3{letter-spacing:81.920000pt;}
.ls4{letter-spacing:82.560000pt;}
.ws8{word-spacing:-16.640000pt;}
.ws9{word-spacing:-16.384000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.936000pt;}
.wsd{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.744000pt;}
.ws13{word-spacing:-14.791467pt;}
.ws11{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.440000pt;}
.wsf{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.160000pt;}
.wsa{word-spacing:-10.959467pt;}
.ws12{word-spacing:-9.078933pt;}
.wsb{word-spacing:-8.640000pt;}
.ws3{word-spacing:-8.636160pt;}
.wsc{word-spacing:0.000000pt;}
._1c{margin-left:-7.755947pt;}
._1b{margin-left:-6.796373pt;}
._8{margin-left:-5.407360pt;}
._f{margin-left:-4.510507pt;}
._4{margin-left:-3.590400pt;}
._a{margin-left:-2.606080pt;}
._1{margin-left:-1.345493pt;}
._0{width:1.009280pt;}
._9{width:2.366293pt;}
._e{width:3.325227pt;}
._b{width:4.612480pt;}
._2{width:5.781760pt;}
._c{width:7.360000pt;}
._d{width:8.341120pt;}
._14{width:9.472000pt;}
._10{width:10.880000pt;}
._15{width:12.032000pt;}
._16{width:13.203840pt;}
._17{width:14.122240pt;}
._18{width:19.136000pt;}
._12{width:22.737067pt;}
._11{width:24.192000pt;}
._13{width:25.184213pt;}
._1a{width:27.522987pt;}
._19{width:29.014827pt;}
._6{width:63.723947pt;}
._5{width:64.690347pt;}
._7{width:83.410133pt;}
._3{width:126.886400pt;}
.fs2{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fs7{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.ye0{bottom:-23.840000pt;}
.ydf{bottom:-7.680000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:2.880000pt;}
.y57{bottom:3.040000pt;}
.ya3{bottom:3.840000pt;}
.y37{bottom:4.000000pt;}
.y9b{bottom:4.320000pt;}
.y5f{bottom:4.480000pt;}
.y74{bottom:4.960000pt;}
.y62{bottom:5.120000pt;}
.y6a{bottom:5.440000pt;}
.y6d{bottom:5.600000pt;}
.y6f{bottom:5.760000pt;}
.y64{bottom:5.920000pt;}
.y71{bottom:6.266667pt;}
.y68{bottom:6.560000pt;}
.ya7{bottom:7.680000pt;}
.y5d{bottom:8.000000pt;}
.y5a{bottom:8.160000pt;}
.y66{bottom:8.800000pt;}
.y52{bottom:9.760000pt;}
.yaa{bottom:12.320000pt;}
.y99{bottom:12.480000pt;}
.y76{bottom:14.240000pt;}
.y9f{bottom:14.720000pt;}
.y97{bottom:16.000000pt;}
.y9d{bottom:19.040000pt;}
.y36{bottom:19.360000pt;}
.ya1{bottom:19.840000pt;}
.y5{bottom:21.600000pt;}
.ya5{bottom:22.760000pt;}
.yde{bottom:23.520000pt;}
.y95{bottom:24.800000pt;}
.yab{bottom:25.920000pt;}
.y96{bottom:32.800000pt;}
.ydd{bottom:38.920000pt;}
.y77{bottom:53.600000pt;}
.ydc{bottom:54.280000pt;}
.y34{bottom:57.600000pt;}
.y92{bottom:65.440000pt;}
.ydb{bottom:69.640000pt;}
.y75{bottom:69.760000pt;}
.ycf{bottom:77.440000pt;}
.y33{bottom:78.720000pt;}
.yda{bottom:85.000000pt;}
.y91{bottom:86.560000pt;}
.yce{bottom:94.240000pt;}
.y73{bottom:97.440000pt;}
.y32{bottom:99.040000pt;}
.yd9{bottom:100.200000pt;}
.y90{bottom:107.840000pt;}
.ycd{bottom:111.200000pt;}
.yd8{bottom:115.560000pt;}
.y72{bottom:115.840000pt;}
.y31{bottom:118.400000pt;}
.ycc{bottom:128.000000pt;}
.y8f{bottom:128.960000pt;}
.yd7{bottom:130.920000pt;}
.y70{bottom:134.720000pt;}
.y30{bottom:139.546667pt;}
.ycb{bottom:146.106667pt;}
.yd6{bottom:146.280000pt;}
.y8e{bottom:150.106667pt;}
.y6e{bottom:154.426667pt;}
.y2f{bottom:160.666667pt;}
.yd5{bottom:161.640000pt;}
.yca{bottom:163.066667pt;}
.y8d{bottom:171.226667pt;}
.y6c{bottom:173.626667pt;}
.yd4{bottom:177.000000pt;}
.yc9{bottom:179.866667pt;}
.y2e{bottom:181.946667pt;}
.yd3{bottom:192.200000pt;}
.y8c{bottom:192.346667pt;}
.y6b{bottom:192.666667pt;}
.yc8{bottom:197.946667pt;}
.y2d{bottom:203.066667pt;}
.yd2{bottom:207.560000pt;}
.y69{bottom:211.226667pt;}
.y8b{bottom:213.626667pt;}
.yc7{bottom:214.906667pt;}
.y2c{bottom:224.186667pt;}
.y67{bottom:230.106667pt;}
.yc6{bottom:231.706667pt;}
.y8a{bottom:234.746667pt;}
.y2b{bottom:245.306667pt;}
.yc5{bottom:249.786667pt;}
.y65{bottom:250.106667pt;}
.y89{bottom:255.866667pt;}
.y2a{bottom:266.586667pt;}
.yc4{bottom:266.746667pt;}
.y63{bottom:272.346667pt;}
.y88{bottom:276.986667pt;}
.yc3{bottom:283.546667pt;}
.y29{bottom:287.706667pt;}
.y61{bottom:291.706667pt;}
.y87{bottom:298.266667pt;}
.yc2{bottom:301.626667pt;}
.y28{bottom:308.826667pt;}
.y60{bottom:310.266667pt;}
.yc1{bottom:318.586667pt;}
.y86{bottom:319.386667pt;}
.y5e{bottom:326.586667pt;}
.y27{bottom:329.946667pt;}
.yc0{bottom:335.386667pt;}
.y85{bottom:340.506667pt;}
.y5c{bottom:344.506667pt;}
.ybf{bottom:352.346667pt;}
.y26{bottom:359.266667pt;}
.y84{bottom:361.666667pt;}
.y5b{bottom:365.986667pt;}
.ybe{bottom:369.186667pt;}
.y25{bottom:380.386667pt;}
.y59{bottom:382.306667pt;}
.y83{bottom:382.946667pt;}
.ybd{bottom:386.146667pt;}
.y24{bottom:401.506667pt;}
.ybc{bottom:402.946667pt;}
.y58{bottom:404.066667pt;}
.y56{bottom:420.386667pt;}
.ybb{bottom:421.026667pt;}
.y23{bottom:422.626667pt;}
.y82{bottom:425.186667pt;}
.y55{bottom:436.866667pt;}
.yba{bottom:437.986667pt;}
.y22{bottom:443.906667pt;}
.y81{bottom:446.306667pt;}
.y53{bottom:453.186667pt;}
.yb9{bottom:454.786667pt;}
.y21{bottom:465.026667pt;}
.y80{bottom:467.586667pt;}
.y51{bottom:470.786667pt;}
.yb8{bottom:472.866667pt;}
.y20{bottom:486.146667pt;}
.y7f{bottom:488.706667pt;}
.yb7{bottom:489.826667pt;}
.y50{bottom:506.306667pt;}
.yb6{bottom:506.626667pt;}
.y1f{bottom:507.266667pt;}
.y7e{bottom:509.826667pt;}
.yb5{bottom:523.426667pt;}
.y4f{bottom:526.466667pt;}
.y1e{bottom:528.386667pt;}
.y7d{bottom:530.946667pt;}
.yb4{bottom:540.386667pt;}
.y4e{bottom:547.586667pt;}
.y1d{bottom:549.666667pt;}
.y7c{bottom:552.226667pt;}
.yb3{bottom:557.186667pt;}
.y4d{bottom:568.706667pt;}
.y1c{bottom:570.786667pt;}
.yb2{bottom:574.146667pt;}
.y7b{bottom:581.373333pt;}
.y4c{bottom:589.853333pt;}
.y1b{bottom:591.933333pt;}
.yb1{bottom:594.013333pt;}
.y7a{bottom:607.293333pt;}
.y4b{bottom:611.133333pt;}
.y1a{bottom:613.053333pt;}
.yb0{bottom:615.133333pt;}
.y79{bottom:624.413333pt;}
.y19{bottom:631.453333pt;}
.y4a{bottom:632.253333pt;}
.yaf{bottom:633.533333pt;}
.y78{bottom:646.013333pt;}
.y18{bottom:649.213333pt;}
.yae{bottom:651.933333pt;}
.y49{bottom:653.373333pt;}
.y17{bottom:664.573333pt;}
.yad{bottom:669.693333pt;}
.y48{bottom:674.493333pt;}
.y16{bottom:679.933333pt;}
.yac{bottom:685.053333pt;}
.y15{bottom:695.293333pt;}
.y47{bottom:695.773333pt;}
.ya9{bottom:706.813333pt;}
.y14{bottom:712.893333pt;}
.y46{bottom:716.893333pt;}
.ya8{bottom:732.733333pt;}
.y45{bottom:738.013333pt;}
.y35{bottom:745.053333pt;}
.ya6{bottom:754.013333pt;}
.y44{bottom:759.133333pt;}
.yd1{bottom:766.493333pt;}
.ya4{bottom:775.293333pt;}
.y43{bottom:780.253333pt;}
.y13{bottom:795.453333pt;}
.y42{bottom:801.573333pt;}
.y12{bottom:811.493333pt;}
.ya2{bottom:811.653333pt;}
.y41{bottom:822.693333pt;}
.ya0{bottom:829.093333pt;}
.y11{bottom:831.333333pt;}
.y10{bottom:842.053333pt;}
.y40{bottom:843.813333pt;}
.yf{bottom:857.413333pt;}
.y9e{bottom:862.533333pt;}
.y3f{bottom:864.933333pt;}
.ye{bottom:872.773333pt;}
.y3e{bottom:886.213333pt;}
.yd{bottom:888.293333pt;}
.y9c{bottom:890.853333pt;}
.yc{bottom:904.133333pt;}
.y3d{bottom:907.333333pt;}
.y9a{bottom:909.893333pt;}
.yb{bottom:923.013333pt;}
.y98{bottom:927.813333pt;}
.y3c{bottom:928.453333pt;}
.ya{bottom:941.893333pt;}
.y3b{bottom:949.573333pt;}
.y94{bottom:955.333333pt;}
.y9{bottom:958.373333pt;}
.y3a{bottom:970.853333pt;}
.y8{bottom:979.813333pt;}
.y39{bottom:991.973333pt;}
.y7{bottom:1000.133333pt;}
.y38{bottom:1013.093333pt;}
.y93{bottom:1014.213333pt;}
.yd0{bottom:1014.373333pt;}
.y6{bottom:1015.493333pt;}
.y4{bottom:1030.880000pt;}
.y3{bottom:1046.240000pt;}
.y2{bottom:1061.600000pt;}
.y1{bottom:1076.960000pt;}
.h13{height:15.200000pt;}
.h11{height:15.360000pt;}
.h12{height:15.520000pt;}
.h16{height:16.960000pt;}
.h17{height:17.440000pt;}
.h1c{height:17.600000pt;}
.h1b{height:17.920000pt;}
.h1d{height:18.240000pt;}
.h18{height:18.400000pt;}
.h1e{height:18.752000pt;}
.h1a{height:19.040000pt;}
.h15{height:20.352000pt;}
.h14{height:20.640000pt;}
.h19{height:21.120000pt;}
.h27{height:21.280000pt;}
.h10{height:22.080000pt;}
.h28{height:25.920000pt;}
.h23{height:26.080000pt;}
.h1f{height:26.720000pt;}
.h24{height:28.320000pt;}
.h8{height:28.704375pt;}
.hd{height:31.840000pt;}
.h25{height:33.440000pt;}
.h26{height:36.352000pt;}
.h4{height:37.479688pt;}
.h6{height:39.737500pt;}
.h20{height:41.543750pt;}
.h5{height:42.944375pt;}
.h2{height:44.119688pt;}
.hb{height:45.156250pt;}
.h21{height:46.400000pt;}
.h9{height:46.777500pt;}
.h7{height:47.264375pt;}
.h22{height:47.310625pt;}
.hf{height:48.903750pt;}
.h3{height:52.832812pt;}
.ha{height:53.156250pt;}
.hc{height:59.934688pt;}
.he{height:60.041354pt;}
.h29{height:220.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:108.192000pt;}
.wa{width:116.672000pt;}
.w4{width:198.626667pt;}
.w8{width:213.626667pt;}
.w6{width:226.946667pt;}
.w5{width:236.186667pt;}
.w7{width:271.266667pt;}
.wb{width:694.560000pt;}
.w3{width:695.040000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.880000pt;}
.x11{left:9.600000pt;}
.x28{left:26.440000pt;}
.x1f{left:31.240000pt;}
.x29{left:33.280000pt;}
.x21{left:37.120000pt;}
.x2d{left:41.320000pt;}
.x2f{left:43.080000pt;}
.x27{left:44.800000pt;}
.x2b{left:46.880000pt;}
.x1{left:47.999988pt;}
.x31{left:58.240000pt;}
.x1d{left:60.000000pt;}
.x8{left:61.119988pt;}
.x25{left:64.352000pt;}
.x13{left:66.080000pt;}
.x30{left:69.632000pt;}
.x34{left:71.999988pt;}
.x22{left:74.272000pt;}
.xd{left:75.551988pt;}
.x2a{left:78.752000pt;}
.x1a{left:80.032000pt;}
.x4{left:82.911988pt;}
.x1c{left:84.026667pt;}
.x6{left:90.271988pt;}
.x10{left:96.511988pt;}
.x23{left:97.626667pt;}
.x2c{left:99.386667pt;}
.x24{left:104.346667pt;}
.x2e{left:105.786667pt;}
.x26{left:106.746667pt;}
.xb{left:112.031988pt;}
.x32{left:138.586655pt;}
.xe{left:150.266655pt;}
.x5{left:171.866655pt;}
.x7{left:192.026655pt;}
.x18{left:205.146655pt;}
.x33{left:229.626655pt;}
.x9{left:237.986655pt;}
.xa{left:250.626655pt;}
.x15{left:264.706667pt;}
.xf{left:286.466655pt;}
.x19{left:305.826655pt;}
.x1b{left:319.266667pt;}
.xc{left:333.506655pt;}
.x2{left:334.786655pt;}
.x12{left:343.426655pt;}
.x3{left:396.893322pt;}
.x16{left:500.893333pt;}
.x1e{left:532.893333pt;}
.x20{left:641.093333pt;}
.x17{left:740.959988pt;}
}




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