
    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_ad34b4901846c6be45d73b1f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_caa6aab99b723b3760821fd6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.149414;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_fe0e5e72bac19d02010b2270.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.771484;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_ecb23b77bca0801df8b531b4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_65503bc86c613343381733d2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_66ea5a4d2dcecb47d278b145.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_adc12962f0100ea84efd1c7a.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-0.229800px;}
.ls5{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.720000px;}
.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;}
}
.ws4{word-spacing:-41.040000px;}
.ws0{word-spacing:-18.808440px;}
.ws5{word-spacing:-18.288000px;}
.ws3{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-2.329920px;}
._0{margin-left:-1.010880px;}
._1{width:1.370880px;}
._1b{width:2.373120px;}
._7{width:3.528000px;}
._2{width:4.608000px;}
._12{width:5.832000px;}
._13{width:6.912000px;}
._14{width:8.338080px;}
._3{width:9.362880px;}
._6{width:10.802880px;}
._5{width:11.928000px;}
._17{width:13.416000px;}
._d{width:15.264000px;}
._a{width:16.488000px;}
._15{width:19.077120px;}
._8{width:20.952000px;}
._9{width:22.069920px;}
._1d{width:23.506080px;}
._2d{width:24.552960px;}
._f{width:26.061120px;}
._e{width:27.074880px;}
._18{width:28.512000px;}
._10{width:30.024000px;}
._11{width:31.608000px;}
._1c{width:32.618880px;}
._20{width:34.418880px;}
._19{width:35.424000px;}
._1a{width:36.976320px;}
._37{width:38.430720px;}
._16{width:39.458880px;}
._b{width:41.184000px;}
._c{width:42.431040px;}
._27{width:44.452800px;}
._28{width:45.547200px;}
._1e{width:46.584000px;}
._1f{width:47.689920px;}
._2e{width:48.792960px;}
._2c{width:51.770880px;}
._2b{width:52.848000px;}
._22{width:54.432000px;}
._23{width:55.584000px;}
._21{width:56.594880px;}
._32{width:58.464000px;}
._34{width:61.632000px;}
._35{width:63.648000px;}
._25{width:64.872000px;}
._26{width:66.397920px;}
._39{width:68.114880px;}
._38{width:69.192000px;}
._2f{width:72.288000px;}
._29{width:73.296000px;}
._2a{width:75.216000px;}
._24{width:93.816000px;}
._30{width:157.176000px;}
._36{width:184.320000px;}
._31{width:192.096000px;}
._3a{width:227.952000px;}
._3b{width:229.032000px;}
._3c{width:243.864000px;}
._3d{width:245.304000px;}
._33{width:375.696000px;}
._3e{width:640.944000px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:5.760000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y9{bottom:-9.358500px;}
.yf{bottom:-6.285000px;}
.y0{bottom:0.000000px;}
.ye4{bottom:4.485000px;}
.y90{bottom:4.500000px;}
.yd{bottom:14.730000px;}
.ye3{bottom:25.185000px;}
.yc0{bottom:25.200000px;}
.ya{bottom:28.620000px;}
.y8{bottom:34.558500px;}
.y7{bottom:36.000000px;}
.yc{bottom:39.210000px;}
.ye6{bottom:45.885000px;}
.ye1{bottom:45.900000px;}
.y6e{bottom:112.860000px;}
.y65{bottom:113.220000px;}
.y8c{bottom:117.180000px;}
.yac{bottom:122.220000px;}
.y39{bottom:124.920000px;}
.yd3{bottom:126.360000px;}
.y10a{bottom:130.860000px;}
.y6d{bottom:133.560000px;}
.y64{bottom:133.920000px;}
.y8b{bottom:137.880000px;}
.yab{bottom:142.920000px;}
.y38{bottom:145.620000px;}
.yd2{bottom:146.700000px;}
.yea{bottom:147.060000px;}
.y109{bottom:151.560000px;}
.y6c{bottom:154.260000px;}
.y63{bottom:154.620000px;}
.y8a{bottom:158.580000px;}
.yaa{bottom:163.620000px;}
.y37{bottom:166.320000px;}
.yd1{bottom:167.400000px;}
.ye9{bottom:167.760000px;}
.y108{bottom:172.260000px;}
.y69{bottom:174.960000px;}
.y62{bottom:175.320000px;}
.y89{bottom:179.280000px;}
.ya9{bottom:184.680000px;}
.y36{bottom:186.660000px;}
.yd0{bottom:188.460000px;}
.y107{bottom:192.960000px;}
.y68{bottom:195.660000px;}
.y61{bottom:196.020000px;}
.y88{bottom:199.980000px;}
.ya8{bottom:205.380000px;}
.y35{bottom:207.750000px;}
.ycf{bottom:209.190000px;}
.y106{bottom:213.690000px;}
.y60{bottom:216.750000px;}
.y87{bottom:220.710000px;}
.ya7{bottom:226.110000px;}
.y34{bottom:228.450000px;}
.yce{bottom:229.890000px;}
.y105{bottom:234.390000px;}
.y5f{bottom:237.450000px;}
.y86{bottom:241.410000px;}
.ya6{bottom:246.810000px;}
.y33{bottom:249.150000px;}
.ycd{bottom:250.230000px;}
.ye8{bottom:250.590000px;}
.y104{bottom:255.090000px;}
.y5e{bottom:258.150000px;}
.y85{bottom:262.110000px;}
.ya5{bottom:267.150000px;}
.y32{bottom:269.490000px;}
.ycc{bottom:270.930000px;}
.ye7{bottom:271.290000px;}
.y103{bottom:275.790000px;}
.y5d{bottom:278.850000px;}
.y84{bottom:282.810000px;}
.ya4{bottom:287.850000px;}
.y31{bottom:290.550000px;}
.ycb{bottom:291.990000px;}
.y102{bottom:296.490000px;}
.y5c{bottom:299.550000px;}
.y83{bottom:303.510000px;}
.ya3{bottom:308.910000px;}
.y30{bottom:311.250000px;}
.yca{bottom:312.690000px;}
.y101{bottom:317.190000px;}
.y5b{bottom:320.250000px;}
.y82{bottom:324.210000px;}
.ya2{bottom:329.610000px;}
.y2f{bottom:331.950000px;}
.yc9{bottom:333.390000px;}
.y100{bottom:337.890000px;}
.y5a{bottom:340.950000px;}
.y81{bottom:344.910000px;}
.ya1{bottom:350.310000px;}
.ye5{bottom:350.325000px;}
.y2e{bottom:352.650000px;}
.yc8{bottom:354.090000px;}
.yff{bottom:358.590000px;}
.y10e{bottom:361.290000px;}
.y59{bottom:361.650000px;}
.y80{bottom:365.610000px;}
.ya0{bottom:371.010000px;}
.y2d{bottom:373.350000px;}
.yc7{bottom:374.790000px;}
.yfe{bottom:379.290000px;}
.y10d{bottom:381.990000px;}
.y58{bottom:382.350000px;}
.y7f{bottom:386.310000px;}
.y9f{bottom:391.710000px;}
.y2c{bottom:394.050000px;}
.yc6{bottom:395.490000px;}
.yfd{bottom:399.630000px;}
.y57{bottom:403.050000px;}
.y7e{bottom:407.010000px;}
.y9e{bottom:412.410000px;}
.ye2{bottom:413.145000px;}
.y2b{bottom:414.750000px;}
.yc5{bottom:416.190000px;}
.yfc{bottom:420.330000px;}
.y56{bottom:423.750000px;}
.y7d{bottom:427.710000px;}
.y9d{bottom:433.110000px;}
.y2a{bottom:435.450000px;}
.yc4{bottom:436.890000px;}
.yfb{bottom:441.435000px;}
.y55{bottom:444.495000px;}
.y7c{bottom:448.455000px;}
.y9c{bottom:450.075000px;}
.yc3{bottom:453.855000px;}
.ye0{bottom:455.295000px;}
.y29{bottom:456.195000px;}
.yfa{bottom:462.135000px;}
.y54{bottom:465.195000px;}
.y7b{bottom:469.155000px;}
.y9b{bottom:471.495000px;}
.yc2{bottom:475.275000px;}
.y28{bottom:476.895000px;}
.yf9{bottom:482.835000px;}
.y53{bottom:485.895000px;}
.y7a{bottom:489.855000px;}
.y9a{bottom:493.095000px;}
.y27{bottom:497.595000px;}
.yf8{bottom:503.535000px;}
.y71{bottom:506.235000px;}
.y52{bottom:506.595000px;}
.y79{bottom:510.555000px;}
.y99{bottom:514.515000px;}
.yc1{bottom:517.395000px;}
.y26{bottom:518.295000px;}
.yf7{bottom:524.235000px;}
.y70{bottom:526.935000px;}
.y51{bottom:527.295000px;}
.y78{bottom:530.895000px;}
.y98{bottom:535.935000px;}
.y25{bottom:538.995000px;}
.yf6{bottom:544.935000px;}
.y6b{bottom:547.635000px;}
.y50{bottom:547.995000px;}
.y77{bottom:551.595000px;}
.y97{bottom:557.355000px;}
.y24{bottom:559.695000px;}
.ydf{bottom:564.915000px;}
.yf5{bottom:565.635000px;}
.y6a{bottom:568.335000px;}
.y4f{bottom:568.695000px;}
.y76{bottom:572.655000px;}
.y96{bottom:578.775000px;}
.y23{bottom:580.395000px;}
.yde{bottom:585.255000px;}
.ybf{bottom:585.615000px;}
.yf4{bottom:586.335000px;}
.y10b{bottom:589.035000px;}
.y4e{bottom:589.395000px;}
.y75{bottom:593.355000px;}
.y95{bottom:600.195000px;}
.y22{bottom:601.095000px;}
.ybe{bottom:605.955000px;}
.yf3{bottom:607.035000px;}
.y74{bottom:609.555000px;}
.y10c{bottom:609.735000px;}
.y4d{bottom:610.095000px;}
.y21{bottom:621.795000px;}
.ybd{bottom:626.655000px;}
.ydd{bottom:627.015000px;}
.yf2{bottom:627.735000px;}
.y4c{bottom:630.795000px;}
.y20{bottom:642.135000px;}
.y94{bottom:643.215000px;}
.ybc{bottom:647.715000px;}
.yf1{bottom:648.435000px;}
.y4b{bottom:651.495000px;}
.y1f{bottom:662.835000px;}
.y93{bottom:664.635000px;}
.ydc{bottom:668.055000px;}
.ybb{bottom:668.415000px;}
.yf0{bottom:669.135000px;}
.y4a{bottom:672.195000px;}
.y1e{bottom:683.925000px;}
.y92{bottom:686.085000px;}
.ydb{bottom:688.785000px;}
.yba{bottom:689.145000px;}
.y49{bottom:692.925000px;}
.y1d{bottom:704.625000px;}
.y91{bottom:707.505000px;}
.yb9{bottom:709.485000px;}
.yda{bottom:709.845000px;}
.y48{bottom:713.625000px;}
.y1c{bottom:724.965000px;}
.yef{bottom:728.205000px;}
.y8f{bottom:728.925000px;}
.yb8{bottom:730.545000px;}
.y47{bottom:734.325000px;}
.y1b{bottom:745.665000px;}
.yb7{bottom:751.245000px;}
.y46{bottom:754.845000px;}
.y1a{bottom:766.725000px;}
.yee{bottom:770.325000px;}
.yb6{bottom:771.945000px;}
.y8e{bottom:775.185000px;}
.y45{bottom:775.545000px;}
.y19{bottom:787.425000px;}
.yb5{bottom:792.645000px;}
.y8d{bottom:795.885000px;}
.y44{bottom:796.245000px;}
.y18{bottom:807.765000px;}
.yb4{bottom:813.345000px;}
.y43{bottom:816.945000px;}
.y17{bottom:828.465000px;}
.yb3{bottom:834.045000px;}
.yed{bottom:837.285000px;}
.y42{bottom:837.645000px;}
.y16{bottom:849.525000px;}
.yb2{bottom:854.745000px;}
.y67{bottom:857.985000px;}
.y41{bottom:858.345000px;}
.y15{bottom:870.225000px;}
.yb1{bottom:875.445000px;}
.y66{bottom:878.685000px;}
.y40{bottom:879.045000px;}
.y14{bottom:890.565000px;}
.yb0{bottom:892.365000px;}
.yd9{bottom:896.145000px;}
.y73{bottom:899.385000px;}
.y3f{bottom:899.745000px;}
.y13{bottom:911.130000px;}
.yaf{bottom:913.830000px;}
.yd8{bottom:916.530000px;}
.y72{bottom:920.130000px;}
.y3e{bottom:920.490000px;}
.yd7{bottom:933.810000px;}
.yae{bottom:935.250000px;}
.yec{bottom:940.830000px;}
.y3d{bottom:941.190000px;}
.y12{bottom:953.430000px;}
.yd6{bottom:955.230000px;}
.yad{bottom:956.670000px;}
.yeb{bottom:961.530000px;}
.y3c{bottom:961.890000px;}
.yd5{bottom:976.650000px;}
.y11{bottom:977.370000px;}
.y3b{bottom:982.590000px;}
.yd4{bottom:998.070000px;}
.y6f{bottom:1002.930000px;}
.y3a{bottom:1003.290000px;}
.y10{bottom:1018.230000px;}
.y6{bottom:1023.270000px;}
.y5{bottom:1042.710000px;}
.ye{bottom:1046.475000px;}
.yb{bottom:1046.520000px;}
.y4{bottom:1067.370000px;}
.y3{bottom:1091.850000px;}
.y2{bottom:1116.330000px;}
.y1{bottom:1137.930000px;}
.h9{height:4.353750px;}
.h11{height:20.685000px;}
.hf{height:20.700000px;}
.h12{height:20.722500px;}
.h10{height:20.730000px;}
.h4{height:39.060000px;}
.h13{height:41.385000px;}
.h16{height:41.400000px;}
.h15{height:41.421000px;}
.h6{height:48.417900px;}
.h2{height:53.709961px;}
.hb{height:54.421875px;}
.h8{height:57.060000px;}
.h5{height:59.439023px;}
.h14{height:62.085000px;}
.he{height:64.546875px;}
.hd{height:70.664062px;}
.hc{height:72.562500px;}
.h3{height:73.722656px;}
.h7{height:83.787539px;}
.ha{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:32.745000px;}
.w1a{width:40.485000px;}
.w1f{width:40.500000px;}
.wf{width:41.040000px;}
.w1b{width:42.321000px;}
.w1c{width:43.185000px;}
.w20{width:46.656000px;}
.w3{width:46.836000px;}
.w21{width:49.845000px;}
.w11{width:72.021000px;}
.w1d{width:73.965000px;}
.w12{width:75.045000px;}
.w17{width:80.989500px;}
.wb{width:90.576000px;}
.w8{width:91.101000px;}
.wd{width:97.941000px;}
.w14{width:98.301000px;}
.w15{width:98.445000px;}
.w23{width:106.005000px;}
.w9{width:124.365000px;}
.wc{width:131.385000px;}
.w22{width:149.421000px;}
.w19{width:151.410000px;}
.w18{width:152.475000px;}
.w6{width:176.059500px;}
.w10{width:178.770000px;}
.w1e{width:193.339500px;}
.w7{width:229.350000px;}
.w4{width:240.300000px;}
.w5{width:240.330000px;}
.we{width:260.659500px;}
.wa{width:261.019500px;}
.w13{width:391.204500px;}
.w2{width:621.676800px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:1.980000px;}
.x3{left:3.780000px;}
.x9{left:10.785000px;}
.x7{left:55.005000px;}
.x8{left:67.965000px;}
.xe{left:127.306500px;}
.x1{left:135.036000px;}
.x27{left:189.030000px;}
.xb{left:198.210000px;}
.x1b{left:209.025000px;}
.xc{left:272.955000px;}
.xf{left:304.095000px;}
.x22{left:321.375000px;}
.x1c{left:362.235000px;}
.x12{left:389.055000px;}
.x23{left:403.995000px;}
.x4{left:423.075000px;}
.x15{left:430.635000px;}
.xa{left:446.505000px;}
.x24{left:451.380000px;}
.x13{left:480.360000px;}
.x25{left:501.960000px;}
.x6{left:509.760000px;}
.x1d{left:514.380000px;}
.x18{left:519.420000px;}
.x10{left:534.180000px;}
.x1e{left:555.780000px;}
.x1f{left:597.000000px;}
.x16{left:610.320000px;}
.x14{left:612.660000px;}
.x19{left:618.450000px;}
.x11{left:626.010000px;}
.x20{left:640.050000px;}
.x26{left:652.110000px;}
.x17{left:683.070000px;}
.x21{left:684.150000px;}
.x1a{left:717.630000px;}
.x2{left:758.130000px;}
.xd{left:837.180000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.204267pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.640000pt;}
.ws4{word-spacing:-36.480000pt;}
.ws0{word-spacing:-16.718613pt;}
.ws5{word-spacing:-16.256000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-2.071040pt;}
._0{margin-left:-0.898560pt;}
._1{width:1.218560pt;}
._1b{width:2.109440pt;}
._7{width:3.136000pt;}
._2{width:4.096000pt;}
._12{width:5.184000pt;}
._13{width:6.144000pt;}
._14{width:7.411627pt;}
._3{width:8.322560pt;}
._6{width:9.602560pt;}
._5{width:10.602667pt;}
._17{width:11.925333pt;}
._d{width:13.568000pt;}
._a{width:14.656000pt;}
._15{width:16.957440pt;}
._8{width:18.624000pt;}
._9{width:19.617707pt;}
._1d{width:20.894293pt;}
._2d{width:21.824853pt;}
._f{width:23.165440pt;}
._e{width:24.066560pt;}
._18{width:25.344000pt;}
._10{width:26.688000pt;}
._11{width:28.096000pt;}
._1c{width:28.994560pt;}
._20{width:30.594560pt;}
._19{width:31.488000pt;}
._1a{width:32.867840pt;}
._37{width:34.160640pt;}
._16{width:35.074560pt;}
._b{width:36.608000pt;}
._c{width:37.716480pt;}
._27{width:39.513600pt;}
._28{width:40.486400pt;}
._1e{width:41.408000pt;}
._1f{width:42.391040pt;}
._2e{width:43.371520pt;}
._2c{width:46.018560pt;}
._2b{width:46.976000pt;}
._22{width:48.384000pt;}
._23{width:49.408000pt;}
._21{width:50.306560pt;}
._32{width:51.968000pt;}
._34{width:54.784000pt;}
._35{width:56.576000pt;}
._25{width:57.664000pt;}
._26{width:59.020373pt;}
._39{width:60.546560pt;}
._38{width:61.504000pt;}
._2f{width:64.256000pt;}
._29{width:65.152000pt;}
._2a{width:66.858667pt;}
._24{width:83.392000pt;}
._30{width:139.712000pt;}
._36{width:163.840000pt;}
._31{width:170.752000pt;}
._3a{width:202.624000pt;}
._3b{width:203.584000pt;}
._3c{width:216.768000pt;}
._3d{width:218.048000pt;}
._33{width:333.952000pt;}
._3e{width:569.728000pt;}
.fs4{font-size:5.120000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y9{bottom:-8.318667pt;}
.yf{bottom:-5.586667pt;}
.y0{bottom:0.000000pt;}
.ye4{bottom:3.986667pt;}
.y90{bottom:4.000000pt;}
.yd{bottom:13.093333pt;}
.ye3{bottom:22.386667pt;}
.yc0{bottom:22.400000pt;}
.ya{bottom:25.440000pt;}
.y8{bottom:30.718667pt;}
.y7{bottom:32.000000pt;}
.yc{bottom:34.853333pt;}
.ye6{bottom:40.786667pt;}
.ye1{bottom:40.800000pt;}
.y6e{bottom:100.320000pt;}
.y65{bottom:100.640000pt;}
.y8c{bottom:104.160000pt;}
.yac{bottom:108.640000pt;}
.y39{bottom:111.040000pt;}
.yd3{bottom:112.320000pt;}
.y10a{bottom:116.320000pt;}
.y6d{bottom:118.720000pt;}
.y64{bottom:119.040000pt;}
.y8b{bottom:122.560000pt;}
.yab{bottom:127.040000pt;}
.y38{bottom:129.440000pt;}
.yd2{bottom:130.400000pt;}
.yea{bottom:130.720000pt;}
.y109{bottom:134.720000pt;}
.y6c{bottom:137.120000pt;}
.y63{bottom:137.440000pt;}
.y8a{bottom:140.960000pt;}
.yaa{bottom:145.440000pt;}
.y37{bottom:147.840000pt;}
.yd1{bottom:148.800000pt;}
.ye9{bottom:149.120000pt;}
.y108{bottom:153.120000pt;}
.y69{bottom:155.520000pt;}
.y62{bottom:155.840000pt;}
.y89{bottom:159.360000pt;}
.ya9{bottom:164.160000pt;}
.y36{bottom:165.920000pt;}
.yd0{bottom:167.520000pt;}
.y107{bottom:171.520000pt;}
.y68{bottom:173.920000pt;}
.y61{bottom:174.240000pt;}
.y88{bottom:177.760000pt;}
.ya8{bottom:182.560000pt;}
.y35{bottom:184.666667pt;}
.ycf{bottom:185.946667pt;}
.y106{bottom:189.946667pt;}
.y60{bottom:192.666667pt;}
.y87{bottom:196.186667pt;}
.ya7{bottom:200.986667pt;}
.y34{bottom:203.066667pt;}
.yce{bottom:204.346667pt;}
.y105{bottom:208.346667pt;}
.y5f{bottom:211.066667pt;}
.y86{bottom:214.586667pt;}
.ya6{bottom:219.386667pt;}
.y33{bottom:221.466667pt;}
.ycd{bottom:222.426667pt;}
.ye8{bottom:222.746667pt;}
.y104{bottom:226.746667pt;}
.y5e{bottom:229.466667pt;}
.y85{bottom:232.986667pt;}
.ya5{bottom:237.466667pt;}
.y32{bottom:239.546667pt;}
.ycc{bottom:240.826667pt;}
.ye7{bottom:241.146667pt;}
.y103{bottom:245.146667pt;}
.y5d{bottom:247.866667pt;}
.y84{bottom:251.386667pt;}
.ya4{bottom:255.866667pt;}
.y31{bottom:258.266667pt;}
.ycb{bottom:259.546667pt;}
.y102{bottom:263.546667pt;}
.y5c{bottom:266.266667pt;}
.y83{bottom:269.786667pt;}
.ya3{bottom:274.586667pt;}
.y30{bottom:276.666667pt;}
.yca{bottom:277.946667pt;}
.y101{bottom:281.946667pt;}
.y5b{bottom:284.666667pt;}
.y82{bottom:288.186667pt;}
.ya2{bottom:292.986667pt;}
.y2f{bottom:295.066667pt;}
.yc9{bottom:296.346667pt;}
.y100{bottom:300.346667pt;}
.y5a{bottom:303.066667pt;}
.y81{bottom:306.586667pt;}
.ya1{bottom:311.386667pt;}
.ye5{bottom:311.400000pt;}
.y2e{bottom:313.466667pt;}
.yc8{bottom:314.746667pt;}
.yff{bottom:318.746667pt;}
.y10e{bottom:321.146667pt;}
.y59{bottom:321.466667pt;}
.y80{bottom:324.986667pt;}
.ya0{bottom:329.786667pt;}
.y2d{bottom:331.866667pt;}
.yc7{bottom:333.146667pt;}
.yfe{bottom:337.146667pt;}
.y10d{bottom:339.546667pt;}
.y58{bottom:339.866667pt;}
.y7f{bottom:343.386667pt;}
.y9f{bottom:348.186667pt;}
.y2c{bottom:350.266667pt;}
.yc6{bottom:351.546667pt;}
.yfd{bottom:355.226667pt;}
.y57{bottom:358.266667pt;}
.y7e{bottom:361.786667pt;}
.y9e{bottom:366.586667pt;}
.ye2{bottom:367.240000pt;}
.y2b{bottom:368.666667pt;}
.yc5{bottom:369.946667pt;}
.yfc{bottom:373.626667pt;}
.y56{bottom:376.666667pt;}
.y7d{bottom:380.186667pt;}
.y9d{bottom:384.986667pt;}
.y2a{bottom:387.066667pt;}
.yc4{bottom:388.346667pt;}
.yfb{bottom:392.386667pt;}
.y55{bottom:395.106667pt;}
.y7c{bottom:398.626667pt;}
.y9c{bottom:400.066667pt;}
.yc3{bottom:403.426667pt;}
.ye0{bottom:404.706667pt;}
.y29{bottom:405.506667pt;}
.yfa{bottom:410.786667pt;}
.y54{bottom:413.506667pt;}
.y7b{bottom:417.026667pt;}
.y9b{bottom:419.106667pt;}
.yc2{bottom:422.466667pt;}
.y28{bottom:423.906667pt;}
.yf9{bottom:429.186667pt;}
.y53{bottom:431.906667pt;}
.y7a{bottom:435.426667pt;}
.y9a{bottom:438.306667pt;}
.y27{bottom:442.306667pt;}
.yf8{bottom:447.586667pt;}
.y71{bottom:449.986667pt;}
.y52{bottom:450.306667pt;}
.y79{bottom:453.826667pt;}
.y99{bottom:457.346667pt;}
.yc1{bottom:459.906667pt;}
.y26{bottom:460.706667pt;}
.yf7{bottom:465.986667pt;}
.y70{bottom:468.386667pt;}
.y51{bottom:468.706667pt;}
.y78{bottom:471.906667pt;}
.y98{bottom:476.386667pt;}
.y25{bottom:479.106667pt;}
.yf6{bottom:484.386667pt;}
.y6b{bottom:486.786667pt;}
.y50{bottom:487.106667pt;}
.y77{bottom:490.306667pt;}
.y97{bottom:495.426667pt;}
.y24{bottom:497.506667pt;}
.ydf{bottom:502.146667pt;}
.yf5{bottom:502.786667pt;}
.y6a{bottom:505.186667pt;}
.y4f{bottom:505.506667pt;}
.y76{bottom:509.026667pt;}
.y96{bottom:514.466667pt;}
.y23{bottom:515.906667pt;}
.yde{bottom:520.226667pt;}
.ybf{bottom:520.546667pt;}
.yf4{bottom:521.186667pt;}
.y10b{bottom:523.586667pt;}
.y4e{bottom:523.906667pt;}
.y75{bottom:527.426667pt;}
.y95{bottom:533.506667pt;}
.y22{bottom:534.306667pt;}
.ybe{bottom:538.626667pt;}
.yf3{bottom:539.586667pt;}
.y74{bottom:541.826667pt;}
.y10c{bottom:541.986667pt;}
.y4d{bottom:542.306667pt;}
.y21{bottom:552.706667pt;}
.ybd{bottom:557.026667pt;}
.ydd{bottom:557.346667pt;}
.yf2{bottom:557.986667pt;}
.y4c{bottom:560.706667pt;}
.y20{bottom:570.786667pt;}
.y94{bottom:571.746667pt;}
.ybc{bottom:575.746667pt;}
.yf1{bottom:576.386667pt;}
.y4b{bottom:579.106667pt;}
.y1f{bottom:589.186667pt;}
.y93{bottom:590.786667pt;}
.ydc{bottom:593.826667pt;}
.ybb{bottom:594.146667pt;}
.yf0{bottom:594.786667pt;}
.y4a{bottom:597.506667pt;}
.y1e{bottom:607.933333pt;}
.y92{bottom:609.853333pt;}
.ydb{bottom:612.253333pt;}
.yba{bottom:612.573333pt;}
.y49{bottom:615.933333pt;}
.y1d{bottom:626.333333pt;}
.y91{bottom:628.893333pt;}
.yb9{bottom:630.653333pt;}
.yda{bottom:630.973333pt;}
.y48{bottom:634.333333pt;}
.y1c{bottom:644.413333pt;}
.yef{bottom:647.293333pt;}
.y8f{bottom:647.933333pt;}
.yb8{bottom:649.373333pt;}
.y47{bottom:652.733333pt;}
.y1b{bottom:662.813333pt;}
.yb7{bottom:667.773333pt;}
.y46{bottom:670.973333pt;}
.y1a{bottom:681.533333pt;}
.yee{bottom:684.733333pt;}
.yb6{bottom:686.173333pt;}
.y8e{bottom:689.053333pt;}
.y45{bottom:689.373333pt;}
.y19{bottom:699.933333pt;}
.yb5{bottom:704.573333pt;}
.y8d{bottom:707.453333pt;}
.y44{bottom:707.773333pt;}
.y18{bottom:718.013333pt;}
.yb4{bottom:722.973333pt;}
.y43{bottom:726.173333pt;}
.y17{bottom:736.413333pt;}
.yb3{bottom:741.373333pt;}
.yed{bottom:744.253333pt;}
.y42{bottom:744.573333pt;}
.y16{bottom:755.133333pt;}
.yb2{bottom:759.773333pt;}
.y67{bottom:762.653333pt;}
.y41{bottom:762.973333pt;}
.y15{bottom:773.533333pt;}
.yb1{bottom:778.173333pt;}
.y66{bottom:781.053333pt;}
.y40{bottom:781.373333pt;}
.y14{bottom:791.613333pt;}
.yb0{bottom:793.213333pt;}
.yd9{bottom:796.573333pt;}
.y73{bottom:799.453333pt;}
.y3f{bottom:799.773333pt;}
.y13{bottom:809.893333pt;}
.yaf{bottom:812.293333pt;}
.yd8{bottom:814.693333pt;}
.y72{bottom:817.893333pt;}
.y3e{bottom:818.213333pt;}
.yd7{bottom:830.053333pt;}
.yae{bottom:831.333333pt;}
.yec{bottom:836.293333pt;}
.y3d{bottom:836.613333pt;}
.y12{bottom:847.493333pt;}
.yd6{bottom:849.093333pt;}
.yad{bottom:850.373333pt;}
.yeb{bottom:854.693333pt;}
.y3c{bottom:855.013333pt;}
.yd5{bottom:868.133333pt;}
.y11{bottom:868.773333pt;}
.y3b{bottom:873.413333pt;}
.yd4{bottom:887.173333pt;}
.y6f{bottom:891.493333pt;}
.y3a{bottom:891.813333pt;}
.y10{bottom:905.093333pt;}
.y6{bottom:909.573333pt;}
.y5{bottom:926.853333pt;}
.ye{bottom:930.200000pt;}
.yb{bottom:930.240000pt;}
.y4{bottom:948.773333pt;}
.y3{bottom:970.533333pt;}
.y2{bottom:992.293333pt;}
.y1{bottom:1011.493333pt;}
.h9{height:3.870000pt;}
.h11{height:18.386667pt;}
.hf{height:18.400000pt;}
.h12{height:18.420000pt;}
.h10{height:18.426667pt;}
.h4{height:34.720000pt;}
.h13{height:36.786667pt;}
.h16{height:36.800000pt;}
.h15{height:36.818667pt;}
.h6{height:43.038133pt;}
.h2{height:47.742188pt;}
.hb{height:48.375000pt;}
.h8{height:50.720000pt;}
.h5{height:52.834688pt;}
.h14{height:55.186667pt;}
.he{height:57.375000pt;}
.hd{height:62.812500pt;}
.hc{height:64.500000pt;}
.h3{height:65.531250pt;}
.h7{height:74.477812pt;}
.ha{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:29.106667pt;}
.w1a{width:35.986667pt;}
.w1f{width:36.000000pt;}
.wf{width:36.480000pt;}
.w1b{width:37.618667pt;}
.w1c{width:38.386667pt;}
.w20{width:41.472000pt;}
.w3{width:41.632000pt;}
.w21{width:44.306667pt;}
.w11{width:64.018667pt;}
.w1d{width:65.746667pt;}
.w12{width:66.706667pt;}
.w17{width:71.990667pt;}
.wb{width:80.512000pt;}
.w8{width:80.978667pt;}
.wd{width:87.058667pt;}
.w14{width:87.378667pt;}
.w15{width:87.506667pt;}
.w23{width:94.226667pt;}
.w9{width:110.546667pt;}
.wc{width:116.786667pt;}
.w22{width:132.818667pt;}
.w19{width:134.586667pt;}
.w18{width:135.533333pt;}
.w6{width:156.497333pt;}
.w10{width:158.906667pt;}
.w1e{width:171.857333pt;}
.w7{width:203.866667pt;}
.w4{width:213.600000pt;}
.w5{width:213.626667pt;}
.we{width:231.697333pt;}
.wa{width:232.017333pt;}
.w13{width:347.737333pt;}
.w2{width:552.601600pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:1.760000pt;}
.x3{left:3.360000pt;}
.x9{left:9.586667pt;}
.x7{left:48.893333pt;}
.x8{left:60.413333pt;}
.xe{left:113.161333pt;}
.x1{left:120.032000pt;}
.x27{left:168.026667pt;}
.xb{left:176.186667pt;}
.x1b{left:185.800000pt;}
.xc{left:242.626667pt;}
.xf{left:270.306667pt;}
.x22{left:285.666667pt;}
.x1c{left:321.986667pt;}
.x12{left:345.826667pt;}
.x23{left:359.106667pt;}
.x4{left:376.066667pt;}
.x15{left:382.786667pt;}
.xa{left:396.893333pt;}
.x24{left:401.226667pt;}
.x13{left:426.986667pt;}
.x25{left:446.186667pt;}
.x6{left:453.120000pt;}
.x1d{left:457.226667pt;}
.x18{left:461.706667pt;}
.x10{left:474.826667pt;}
.x1e{left:494.026667pt;}
.x1f{left:530.666667pt;}
.x16{left:542.506667pt;}
.x14{left:544.586667pt;}
.x19{left:549.733333pt;}
.x11{left:556.453333pt;}
.x20{left:568.933333pt;}
.x26{left:579.653333pt;}
.x17{left:607.173333pt;}
.x21{left:608.133333pt;}
.x1a{left:637.893333pt;}
.x2{left:673.893333pt;}
.xd{left:744.160000pt;}
}




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