
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_0a9f3f7baa94bdcf9c70ced7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_85246cfbd6e75b9ec427a024.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_329079888c0429ce1cc6bde5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_76eb141950d2c7f23f9ff6c6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_8e2f8206a447567701424c0a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.136230;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_a1cfad4458bb03af1d3d6432.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_2672cede3d9e3974be3bc979.woff')format("woff");}.ff8{font-family:ff8;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_868f9fcd5c5075747ff540dd.woff')format("woff");}.ff9{font-family:ff9;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;}
.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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls2b{letter-spacing:-0.774000px;}
.ls22{letter-spacing:-0.768000px;}
.ls7{letter-spacing:-0.648000px;}
.ls1b{letter-spacing:-0.510600px;}
.lsa{letter-spacing:-0.429600px;}
.ls8{letter-spacing:-0.370200px;}
.ls9{letter-spacing:-0.326400px;}
.ls2f{letter-spacing:-0.226200px;}
.ls19{letter-spacing:-0.174000px;}
.lsc{letter-spacing:-0.094800px;}
.lsb{letter-spacing:-0.091200px;}
.ls18{letter-spacing:-0.053280px;}
.ls1c{letter-spacing:-0.052560px;}
.ls21{letter-spacing:-0.046800px;}
.ls1a{letter-spacing:-0.038880px;}
.ls15{letter-spacing:-0.036000px;}
.lsd{letter-spacing:-0.028800px;}
.lsf{letter-spacing:-0.010800px;}
.ls5{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.013200px;}
.ls3{letter-spacing:0.132960px;}
.ls6{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.206400px;}
.ls4{letter-spacing:0.211680px;}
.ls1d{letter-spacing:0.255600px;}
.ls1f{letter-spacing:0.295680px;}
.ls25{letter-spacing:0.319680px;}
.ls1{letter-spacing:0.351360px;}
.ls2c{letter-spacing:0.357000px;}
.ls20{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.385800px;}
.ls26{letter-spacing:0.532800px;}
.ls2d{letter-spacing:0.612000px;}
.ls13{letter-spacing:0.666720px;}
.ls17{letter-spacing:0.684000px;}
.lse{letter-spacing:0.708000px;}
.ls0{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.732000px;}
.ls2e{letter-spacing:0.786000px;}
.ls14{letter-spacing:1.008000px;}
.ls23{letter-spacing:14.212800px;}
.ls29{letter-spacing:20.692800px;}
.ls28{letter-spacing:21.412800px;}
.ls16{letter-spacing:24.292800px;}
.ls27{letter-spacing:47.466720px;}
.ls24{letter-spacing:48.186720px;}
.ls1e{letter-spacing:82.170720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-18.441600px;}
.ws3{word-spacing:-18.103200px;}
.wse{word-spacing:-14.958600px;}
.wsb{word-spacing:-14.572800px;}
.ws7{word-spacing:-13.879200px;}
.ws13{word-spacing:-13.831200px;}
.ws1c{word-spacing:-13.759200px;}
.ws9{word-spacing:-13.505760px;}
.ws1b{word-spacing:-13.504200px;}
.ws14{word-spacing:-13.402800px;}
.ws18{word-spacing:-13.353600px;}
.ws6{word-spacing:-13.160400px;}
.wsd{word-spacing:-13.160160px;}
.ws8{word-spacing:-13.147200px;}
.wsf{word-spacing:-13.111200px;}
.ws12{word-spacing:-13.108320px;}
.ws16{word-spacing:-13.100400px;}
.ws15{word-spacing:-13.094640px;}
.ws10{word-spacing:-13.093920px;}
.ws1a{word-spacing:-13.052400px;}
.ws11{word-spacing:-12.973200px;}
.ws1d{word-spacing:-12.921000px;}
.ws17{word-spacing:-12.379200px;}
.ws19{word-spacing:-12.373200px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws5{word-spacing:-9.092400px;}
.wsc{word-spacing:0.000000px;}
.wsa{word-spacing:2.408040px;}
._1a{margin-left:-20.309519px;}
._18{margin-left:-3.896763px;}
._8{margin-left:-2.287201px;}
._0{margin-left:-1.159200px;}
._3{width:1.463402px;}
._6{width:2.625671px;}
._7{width:3.627953px;}
._c{width:5.170794px;}
._b{width:6.513601px;}
._11{width:7.711431px;}
._f{width:9.322560px;}
._10{width:10.399675px;}
._12{width:11.801882px;}
._13{width:14.163120px;}
._17{width:15.692042px;}
._a{width:17.391595px;}
._9{width:18.525600px;}
._16{width:20.109958px;}
._d{width:21.693000px;}
._e{width:22.888200px;}
._15{width:23.984871px;}
._14{width:25.204320px;}
._19{width:26.219878px;}
._4{width:28.902720px;}
._5{width:30.154080px;}
._1{width:33.779987px;}
._2{width:34.835967px;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(31,31,31);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs7{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:7.740000px;}
.y5e{bottom:7.920000px;}
.y2{bottom:73.260000px;}
.y25{bottom:74.160000px;}
.y1{bottom:101.340000px;}
.y66{bottom:113.040000px;}
.y3d{bottom:114.300000px;}
.y94{bottom:114.840000px;}
.yea{bottom:118.800000px;}
.y93{bottom:132.480000px;}
.yb9{bottom:133.560000px;}
.y71{bottom:134.280000px;}
.ye9{bottom:136.440000px;}
.y65{bottom:148.680000px;}
.y3c{bottom:149.760000px;}
.y92{bottom:149.940000px;}
.yb8{bottom:151.200000px;}
.ye8{bottom:153.900000px;}
.y91{bottom:167.610000px;}
.y23{bottom:169.230000px;}
.y70{bottom:169.950000px;}
.yb7{bottom:175.350000px;}
.ye7{bottom:180.570000px;}
.y64{bottom:180.930000px;}
.y3b{bottom:185.430000px;}
.y22{bottom:186.870000px;}
.yb6{bottom:192.990000px;}
.ye6{bottom:198.210000px;}
.y6f{bottom:202.170000px;}
.y90{bottom:203.250000px;}
.ye5{bottom:215.850000px;}
.yb5{bottom:217.110000px;}
.y3a{bottom:217.650000px;}
.y8f{bottom:220.890000px;}
.y21{bottom:222.510000px;}
.yb4{bottom:234.750000px;}
.y8e{bottom:238.350000px;}
.y20{bottom:240.150000px;}
.ye4{bottom:240.870000px;}
.y5f{bottom:249.690000px;}
.yb3{bottom:252.390000px;}
.y1f{bottom:257.790000px;}
.ye3{bottom:258.510000px;}
.y8d{bottom:273.990000px;}
.y1e{bottom:275.250000px;}
.ye2{bottom:275.970000px;}
.yb2{bottom:276.510000px;}
.y5d{bottom:277.050000px;}
.y8c{bottom:291.630000px;}
.y1d{bottom:292.890000px;}
.ye1{bottom:293.610000px;}
.yb1{bottom:294.150000px;}
.y5c{bottom:304.410000px;}
.y8b{bottom:309.090000px;}
.y1c{bottom:310.530000px;}
.yb0{bottom:311.610000px;}
.ye0{bottom:317.190000px;}
.y8a{bottom:326.730000px;}
.y1b{bottom:327.990000px;}
.y5a{bottom:331.770000px;}
.ydf{bottom:334.830000px;}
.yaf{bottom:338.430000px;}
.yde{bottom:352.290000px;}
.y1a{bottom:354.810000px;}
.y89{bottom:362.190000px;}
.ydd{bottom:369.930000px;}
.y88{bottom:379.830000px;}
.y59{bottom:380.370000px;}
.yae{bottom:386.850000px;}
.ydc{bottom:387.570000px;}
.y19{bottom:403.230000px;}
.ydb{bottom:411.195000px;}
.yad{bottom:413.715000px;}
.y87{bottom:415.515000px;}
.y58{bottom:416.055000px;}
.y18{bottom:421.095000px;}
.yda{bottom:428.835000px;}
.y86{bottom:433.155000px;}
.y57{bottom:433.695000px;}
.yd9{bottom:446.295000px;}
.y85{bottom:450.615000px;}
.yac{bottom:450.975000px;}
.y17{bottom:458.175000px;}
.y84{bottom:468.255000px;}
.y56{bottom:469.155000px;}
.yd8{bottom:469.875000px;}
.y16{bottom:475.815000px;}
.y83{bottom:485.895000px;}
.y55{bottom:486.795000px;}
.yd7{bottom:487.515000px;}
.y63{bottom:488.055000px;}
.yab{bottom:499.395000px;}
.y54{bottom:504.435000px;}
.yd6{bottom:505.155000px;}
.y15{bottom:511.815000px;}
.y6e{bottom:515.955000px;}
.yaa{bottom:517.035000px;}
.y62{bottom:520.275000px;}
.y82{bottom:521.355000px;}
.y53{bottom:522.075000px;}
.yd5{bottom:528.555000px;}
.y14{bottom:530.175000px;}
.ya9{bottom:534.675000px;}
.y81{bottom:538.995000px;}
.y52{bottom:539.535000px;}
.yd4{bottom:546.195000px;}
.y6d{bottom:548.175000px;}
.y80{bottom:556.635000px;}
.y51{bottom:557.175000px;}
.yd3{bottom:563.835000px;}
.y13{bottom:565.995000px;}
.ya8{bottom:570.135000px;}
.y7f{bottom:574.275000px;}
.y50{bottom:574.815000px;}
.y12{bottom:583.635000px;}
.yd2{bottom:587.415000px;}
.ya7{bottom:587.775000px;}
.y7e{bottom:591.735000px;}
.y4f{bottom:601.275000px;}
.yd1{bottom:605.055000px;}
.ya6{bottom:605.415000px;}
.y11{bottom:619.095000px;}
.y7d{bottom:627.375000px;}
.yd0{bottom:628.635000px;}
.ya5{bottom:632.055000px;}
.y10{bottom:636.735000px;}
.y4e{bottom:637.095000px;}
.y7c{bottom:645.015000px;}
.ycf{bottom:646.275000px;}
.yf{bottom:654.405000px;}
.y7b{bottom:662.505000px;}
.yce{bottom:669.705000px;}
.ye{bottom:671.865000px;}
.ya4{bottom:680.505000px;}
.y4d{bottom:685.545000px;}
.ycd{bottom:687.345000px;}
.y7a{bottom:698.145000px;}
.yd{bottom:698.685000px;}
.y4c{bottom:703.185000px;}
.ycc{bottom:710.925000px;}
.y79{bottom:715.785000px;}
.y4b{bottom:720.645000px;}
.y39{bottom:725.145000px;}
.ycb{bottom:728.565000px;}
.y78{bottom:733.425000px;}
.y4a{bottom:738.285000px;}
.y38{bottom:742.785000px;}
.yc{bottom:745.665000px;}
.y77{bottom:750.885000px;}
.ya3{bottom:751.245000px;}
.yca{bottom:752.145000px;}
.y76{bottom:768.525000px;}
.ya2{bottom:768.885000px;}
.y49{bottom:773.925000px;}
.yc9{bottom:775.725000px;}
.y37{bottom:778.245000px;}
.yb{bottom:781.125000px;}
.y75{bottom:786.165000px;}
.ya1{bottom:786.525000px;}
.y48{bottom:791.565000px;}
.yc8{bottom:793.365000px;}
.y36{bottom:795.885000px;}
.y47{bottom:809.025000px;}
.y74{bottom:812.805000px;}
.y35{bottom:813.525000px;}
.ya{bottom:816.945000px;}
.ya0{bottom:821.985000px;}
.y46{bottom:826.665000px;}
.y61{bottom:831.885000px;}
.yc7{bottom:834.585000px;}
.y9f{bottom:839.625000px;}
.y6c{bottom:841.245000px;}
.y45{bottom:844.305000px;}
.y34{bottom:848.985000px;}
.y9{bottom:856.725000px;}
.y9e{bottom:857.265000px;}
.yc6{bottom:857.985000px;}
.y6b{bottom:859.065000px;}
.y73{bottom:861.225000px;}
.y44{bottom:861.765000px;}
.y60{bottom:864.105000px;}
.y33{bottom:866.625000px;}
.y8{bottom:874.725000px;}
.yc5{bottom:875.625000px;}
.y32{bottom:884.265000px;}
.y6a{bottom:886.425000px;}
.y43{bottom:888.585000px;}
.y9d{bottom:892.725000px;}
.y72{bottom:893.445000px;}
.yc4{bottom:899.205000px;}
.y31{bottom:901.950000px;}
.y7{bottom:906.810000px;}
.y9c{bottom:910.410000px;}
.y69{bottom:913.650000px;}
.yc3{bottom:916.890000px;}
.y30{bottom:919.410000px;}
.y6{bottom:925.350000px;}
.y42{bottom:937.050000px;}
.yc2{bottom:940.470000px;}
.y68{bottom:941.010000px;}
.y9b{bottom:946.050000px;}
.y41{bottom:954.690000px;}
.y2f{bottom:955.050000px;}
.yc1{bottom:958.110000px;}
.y5{bottom:962.970000px;}
.y9a{bottom:963.690000px;}
.y2e{bottom:972.690000px;}
.yc0{bottom:981.510000px;}
.y4{bottom:987.630000px;}
.y67{bottom:989.790000px;}
.y2d{bottom:990.150000px;}
.y99{bottom:999.150000px;}
.y2c{bottom:1007.790000px;}
.y3{bottom:1012.290000px;}
.y98{bottom:1016.790000px;}
.ybf{bottom:1022.730000px;}
.y2b{bottom:1025.430000px;}
.y97{bottom:1034.430000px;}
.ybe{bottom:1040.370000px;}
.y2a{bottom:1043.070000px;}
.ybd{bottom:1063.950000px;}
.y29{bottom:1069.530000px;}
.y96{bottom:1069.890000px;}
.y40{bottom:1078.530000px;}
.ybc{bottom:1081.590000px;}
.y95{bottom:1087.530000px;}
.y3f{bottom:1096.170000px;}
.ybb{bottom:1099.230000px;}
.y28{bottom:1105.170000px;}
.y3e{bottom:1113.810000px;}
.yba{bottom:1122.630000px;}
.y27{bottom:1122.810000px;}
.y26{bottom:1140.270000px;}
.y24{bottom:1194.300000px;}
.hd{height:26.460000px;}
.hf{height:26.496000px;}
.he{height:26.640000px;}
.h2{height:29.717578px;}
.h6{height:35.477578px;}
.h3{height:38.405391px;}
.h7{height:50.597578px;}
.h5{height:53.645625px;}
.h8{height:56.084062px;}
.h9{height:59.439023px;}
.h11{height:61.423863px;}
.hb{height:62.211094px;}
.hc{height:68.956875px;}
.h4{height:71.324297px;}
.h10{height:71.613281px;}
.ha{height:73.722656px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:32.040000px;}
.w4{width:32.076000px;}
.w7{width:60.120000px;}
.w3{width:73.080000px;}
.w5{width:93.600000px;}
.wa{width:101.916000px;}
.w8{width:105.696000px;}
.w6{width:181.290000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x1{left:68.040000px;}
.x10{left:98.675987px;}
.x1c{left:105.335987px;}
.x12{left:108.395987px;}
.xf{left:111.275987px;}
.x1e{left:116.675987px;}
.x1a{left:117.935987px;}
.x13{left:167.790000px;}
.x7{left:171.930000px;}
.x2{left:192.449987px;}
.x14{left:241.590000px;}
.x9{left:245.730000px;}
.x15{left:274.350000px;}
.xa{left:278.535000px;}
.x5{left:323.894987px;}
.xb{left:372.855000px;}
.x16{left:376.995000px;}
.x6{left:446.654987px;}
.xc{left:554.865000px;}
.x17{left:559.005000px;}
.xd{left:615.705000px;}
.x18{left:619.845000px;}
.x1d{left:771.809987px;}
.x1b{left:787.469987px;}
.x11{left:790.889987px;}
.xe{left:791.969987px;}
.x19{left:794.309987px;}
.x3{left:800.429987px;}
.x4{left:802.229987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls2b{letter-spacing:-0.688000pt;}
.ls22{letter-spacing:-0.682667pt;}
.ls7{letter-spacing:-0.576000pt;}
.ls1b{letter-spacing:-0.453867pt;}
.lsa{letter-spacing:-0.381867pt;}
.ls8{letter-spacing:-0.329067pt;}
.ls9{letter-spacing:-0.290133pt;}
.ls2f{letter-spacing:-0.201067pt;}
.ls19{letter-spacing:-0.154667pt;}
.lsc{letter-spacing:-0.084267pt;}
.lsb{letter-spacing:-0.081067pt;}
.ls18{letter-spacing:-0.047360pt;}
.ls1c{letter-spacing:-0.046720pt;}
.ls21{letter-spacing:-0.041600pt;}
.ls1a{letter-spacing:-0.034560pt;}
.ls15{letter-spacing:-0.032000pt;}
.lsd{letter-spacing:-0.025600pt;}
.lsf{letter-spacing:-0.009600pt;}
.ls5{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.011733pt;}
.ls3{letter-spacing:0.118187pt;}
.ls6{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.183467pt;}
.ls4{letter-spacing:0.188160pt;}
.ls1d{letter-spacing:0.227200pt;}
.ls1f{letter-spacing:0.262827pt;}
.ls25{letter-spacing:0.284160pt;}
.ls1{letter-spacing:0.312320pt;}
.ls2c{letter-spacing:0.317333pt;}
.ls20{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.342933pt;}
.ls26{letter-spacing:0.473600pt;}
.ls2d{letter-spacing:0.544000pt;}
.ls13{letter-spacing:0.592640pt;}
.ls17{letter-spacing:0.608000pt;}
.lse{letter-spacing:0.629333pt;}
.ls0{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.650667pt;}
.ls2e{letter-spacing:0.698667pt;}
.ls14{letter-spacing:0.896000pt;}
.ls23{letter-spacing:12.633600pt;}
.ls29{letter-spacing:18.393600pt;}
.ls28{letter-spacing:19.033600pt;}
.ls16{letter-spacing:21.593600pt;}
.ls27{letter-spacing:42.192640pt;}
.ls24{letter-spacing:42.832640pt;}
.ls1e{letter-spacing:73.040640pt;}
.ws4{word-spacing:-16.392533pt;}
.ws3{word-spacing:-16.091733pt;}
.wse{word-spacing:-13.296533pt;}
.wsb{word-spacing:-12.953600pt;}
.ws7{word-spacing:-12.337067pt;}
.ws13{word-spacing:-12.294400pt;}
.ws1c{word-spacing:-12.230400pt;}
.ws9{word-spacing:-12.005120pt;}
.ws1b{word-spacing:-12.003733pt;}
.ws14{word-spacing:-11.913600pt;}
.ws18{word-spacing:-11.869867pt;}
.ws6{word-spacing:-11.698133pt;}
.wsd{word-spacing:-11.697920pt;}
.ws8{word-spacing:-11.686400pt;}
.wsf{word-spacing:-11.654400pt;}
.ws12{word-spacing:-11.651840pt;}
.ws16{word-spacing:-11.644800pt;}
.ws15{word-spacing:-11.639680pt;}
.ws10{word-spacing:-11.639040pt;}
.ws1a{word-spacing:-11.602133pt;}
.ws11{word-spacing:-11.531733pt;}
.ws1d{word-spacing:-11.485333pt;}
.ws17{word-spacing:-11.003733pt;}
.ws19{word-spacing:-10.998400pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws5{word-spacing:-8.082133pt;}
.wsc{word-spacing:0.000000pt;}
.wsa{word-spacing:2.140480pt;}
._1a{margin-left:-18.052906pt;}
._18{margin-left:-3.463790pt;}
._8{margin-left:-2.033068pt;}
._0{margin-left:-1.030400pt;}
._3{width:1.300802pt;}
._6{width:2.333929pt;}
._7{width:3.224847pt;}
._c{width:4.596262pt;}
._b{width:5.789868pt;}
._11{width:6.854606pt;}
._f{width:8.286720pt;}
._10{width:9.244156pt;}
._12{width:10.490562pt;}
._13{width:12.589440pt;}
._17{width:13.948482pt;}
._a{width:15.459196pt;}
._9{width:16.467200pt;}
._16{width:17.875518pt;}
._d{width:19.282666pt;}
._e{width:20.345066pt;}
._15{width:21.319886pt;}
._14{width:22.403840pt;}
._19{width:23.306558pt;}
._4{width:25.691307pt;}
._5{width:26.803627pt;}
._1{width:30.026655pt;}
._2{width:30.965304pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs7{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:6.880000pt;}
.y5e{bottom:7.040000pt;}
.y2{bottom:65.120000pt;}
.y25{bottom:65.920000pt;}
.y1{bottom:90.080000pt;}
.y66{bottom:100.480000pt;}
.y3d{bottom:101.600000pt;}
.y94{bottom:102.080000pt;}
.yea{bottom:105.600000pt;}
.y93{bottom:117.760000pt;}
.yb9{bottom:118.720000pt;}
.y71{bottom:119.360000pt;}
.ye9{bottom:121.280000pt;}
.y65{bottom:132.160000pt;}
.y3c{bottom:133.120000pt;}
.y92{bottom:133.280000pt;}
.yb8{bottom:134.400000pt;}
.ye8{bottom:136.800000pt;}
.y91{bottom:148.986667pt;}
.y23{bottom:150.426667pt;}
.y70{bottom:151.066667pt;}
.yb7{bottom:155.866667pt;}
.ye7{bottom:160.506667pt;}
.y64{bottom:160.826667pt;}
.y3b{bottom:164.826667pt;}
.y22{bottom:166.106667pt;}
.yb6{bottom:171.546667pt;}
.ye6{bottom:176.186667pt;}
.y6f{bottom:179.706667pt;}
.y90{bottom:180.666667pt;}
.ye5{bottom:191.866667pt;}
.yb5{bottom:192.986667pt;}
.y3a{bottom:193.466667pt;}
.y8f{bottom:196.346667pt;}
.y21{bottom:197.786667pt;}
.yb4{bottom:208.666667pt;}
.y8e{bottom:211.866667pt;}
.y20{bottom:213.466667pt;}
.ye4{bottom:214.106667pt;}
.y5f{bottom:221.946667pt;}
.yb3{bottom:224.346667pt;}
.y1f{bottom:229.146667pt;}
.ye3{bottom:229.786667pt;}
.y8d{bottom:243.546667pt;}
.y1e{bottom:244.666667pt;}
.ye2{bottom:245.306667pt;}
.yb2{bottom:245.786667pt;}
.y5d{bottom:246.266667pt;}
.y8c{bottom:259.226667pt;}
.y1d{bottom:260.346667pt;}
.ye1{bottom:260.986667pt;}
.yb1{bottom:261.466667pt;}
.y5c{bottom:270.586667pt;}
.y8b{bottom:274.746667pt;}
.y1c{bottom:276.026667pt;}
.yb0{bottom:276.986667pt;}
.ye0{bottom:281.946667pt;}
.y8a{bottom:290.426667pt;}
.y1b{bottom:291.546667pt;}
.y5a{bottom:294.906667pt;}
.ydf{bottom:297.626667pt;}
.yaf{bottom:300.826667pt;}
.yde{bottom:313.146667pt;}
.y1a{bottom:315.386667pt;}
.y89{bottom:321.946667pt;}
.ydd{bottom:328.826667pt;}
.y88{bottom:337.626667pt;}
.y59{bottom:338.106667pt;}
.yae{bottom:343.866667pt;}
.ydc{bottom:344.506667pt;}
.y19{bottom:358.426667pt;}
.ydb{bottom:365.506667pt;}
.yad{bottom:367.746667pt;}
.y87{bottom:369.346667pt;}
.y58{bottom:369.826667pt;}
.y18{bottom:374.306667pt;}
.yda{bottom:381.186667pt;}
.y86{bottom:385.026667pt;}
.y57{bottom:385.506667pt;}
.yd9{bottom:396.706667pt;}
.y85{bottom:400.546667pt;}
.yac{bottom:400.866667pt;}
.y17{bottom:407.266667pt;}
.y84{bottom:416.226667pt;}
.y56{bottom:417.026667pt;}
.yd8{bottom:417.666667pt;}
.y16{bottom:422.946667pt;}
.y83{bottom:431.906667pt;}
.y55{bottom:432.706667pt;}
.yd7{bottom:433.346667pt;}
.y63{bottom:433.826667pt;}
.yab{bottom:443.906667pt;}
.y54{bottom:448.386667pt;}
.yd6{bottom:449.026667pt;}
.y15{bottom:454.946667pt;}
.y6e{bottom:458.626667pt;}
.yaa{bottom:459.586667pt;}
.y62{bottom:462.466667pt;}
.y82{bottom:463.426667pt;}
.y53{bottom:464.066667pt;}
.yd5{bottom:469.826667pt;}
.y14{bottom:471.266667pt;}
.ya9{bottom:475.266667pt;}
.y81{bottom:479.106667pt;}
.y52{bottom:479.586667pt;}
.yd4{bottom:485.506667pt;}
.y6d{bottom:487.266667pt;}
.y80{bottom:494.786667pt;}
.y51{bottom:495.266667pt;}
.yd3{bottom:501.186667pt;}
.y13{bottom:503.106667pt;}
.ya8{bottom:506.786667pt;}
.y7f{bottom:510.466667pt;}
.y50{bottom:510.946667pt;}
.y12{bottom:518.786667pt;}
.yd2{bottom:522.146667pt;}
.ya7{bottom:522.466667pt;}
.y7e{bottom:525.986667pt;}
.y4f{bottom:534.466667pt;}
.yd1{bottom:537.826667pt;}
.ya6{bottom:538.146667pt;}
.y11{bottom:550.306667pt;}
.y7d{bottom:557.666667pt;}
.yd0{bottom:558.786667pt;}
.ya5{bottom:561.826667pt;}
.y10{bottom:565.986667pt;}
.y4e{bottom:566.306667pt;}
.y7c{bottom:573.346667pt;}
.ycf{bottom:574.466667pt;}
.yf{bottom:581.693333pt;}
.y7b{bottom:588.893333pt;}
.yce{bottom:595.293333pt;}
.ye{bottom:597.213333pt;}
.ya4{bottom:604.893333pt;}
.y4d{bottom:609.373333pt;}
.ycd{bottom:610.973333pt;}
.y7a{bottom:620.573333pt;}
.yd{bottom:621.053333pt;}
.y4c{bottom:625.053333pt;}
.ycc{bottom:631.933333pt;}
.y79{bottom:636.253333pt;}
.y4b{bottom:640.573333pt;}
.y39{bottom:644.573333pt;}
.ycb{bottom:647.613333pt;}
.y78{bottom:651.933333pt;}
.y4a{bottom:656.253333pt;}
.y38{bottom:660.253333pt;}
.yc{bottom:662.813333pt;}
.y77{bottom:667.453333pt;}
.ya3{bottom:667.773333pt;}
.yca{bottom:668.573333pt;}
.y76{bottom:683.133333pt;}
.ya2{bottom:683.453333pt;}
.y49{bottom:687.933333pt;}
.yc9{bottom:689.533333pt;}
.y37{bottom:691.773333pt;}
.yb{bottom:694.333333pt;}
.y75{bottom:698.813333pt;}
.ya1{bottom:699.133333pt;}
.y48{bottom:703.613333pt;}
.yc8{bottom:705.213333pt;}
.y36{bottom:707.453333pt;}
.y47{bottom:719.133333pt;}
.y74{bottom:722.493333pt;}
.y35{bottom:723.133333pt;}
.ya{bottom:726.173333pt;}
.ya0{bottom:730.653333pt;}
.y46{bottom:734.813333pt;}
.y61{bottom:739.453333pt;}
.yc7{bottom:741.853333pt;}
.y9f{bottom:746.333333pt;}
.y6c{bottom:747.773333pt;}
.y45{bottom:750.493333pt;}
.y34{bottom:754.653333pt;}
.y9{bottom:761.533333pt;}
.y9e{bottom:762.013333pt;}
.yc6{bottom:762.653333pt;}
.y6b{bottom:763.613333pt;}
.y73{bottom:765.533333pt;}
.y44{bottom:766.013333pt;}
.y60{bottom:768.093333pt;}
.y33{bottom:770.333333pt;}
.y8{bottom:777.533333pt;}
.yc5{bottom:778.333333pt;}
.y32{bottom:786.013333pt;}
.y6a{bottom:787.933333pt;}
.y43{bottom:789.853333pt;}
.y9d{bottom:793.533333pt;}
.y72{bottom:794.173333pt;}
.yc4{bottom:799.293333pt;}
.y31{bottom:801.733333pt;}
.y7{bottom:806.053333pt;}
.y9c{bottom:809.253333pt;}
.y69{bottom:812.133333pt;}
.yc3{bottom:815.013333pt;}
.y30{bottom:817.253333pt;}
.y6{bottom:822.533333pt;}
.y42{bottom:832.933333pt;}
.yc2{bottom:835.973333pt;}
.y68{bottom:836.453333pt;}
.y9b{bottom:840.933333pt;}
.y41{bottom:848.613333pt;}
.y2f{bottom:848.933333pt;}
.yc1{bottom:851.653333pt;}
.y5{bottom:855.973333pt;}
.y9a{bottom:856.613333pt;}
.y2e{bottom:864.613333pt;}
.yc0{bottom:872.453333pt;}
.y4{bottom:877.893333pt;}
.y67{bottom:879.813333pt;}
.y2d{bottom:880.133333pt;}
.y99{bottom:888.133333pt;}
.y2c{bottom:895.813333pt;}
.y3{bottom:899.813333pt;}
.y98{bottom:903.813333pt;}
.ybf{bottom:909.093333pt;}
.y2b{bottom:911.493333pt;}
.y97{bottom:919.493333pt;}
.ybe{bottom:924.773333pt;}
.y2a{bottom:927.173333pt;}
.ybd{bottom:945.733333pt;}
.y29{bottom:950.693333pt;}
.y96{bottom:951.013333pt;}
.y40{bottom:958.693333pt;}
.ybc{bottom:961.413333pt;}
.y95{bottom:966.693333pt;}
.y3f{bottom:974.373333pt;}
.ybb{bottom:977.093333pt;}
.y28{bottom:982.373333pt;}
.y3e{bottom:990.053333pt;}
.yba{bottom:997.893333pt;}
.y27{bottom:998.053333pt;}
.y26{bottom:1013.573333pt;}
.y24{bottom:1061.600000pt;}
.hd{height:23.520000pt;}
.hf{height:23.552000pt;}
.he{height:23.680000pt;}
.h2{height:26.415625pt;}
.h6{height:31.535625pt;}
.h3{height:34.138125pt;}
.h7{height:44.975625pt;}
.h5{height:47.685000pt;}
.h8{height:49.852500pt;}
.h9{height:52.834688pt;}
.h11{height:54.598989pt;}
.hb{height:55.298750pt;}
.hc{height:61.295000pt;}
.h4{height:63.399375pt;}
.h10{height:63.656250pt;}
.ha{height:65.531250pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:28.480000pt;}
.w4{width:28.512000pt;}
.w7{width:53.440000pt;}
.w3{width:64.960000pt;}
.w5{width:83.200000pt;}
.wa{width:90.592000pt;}
.w8{width:93.952000pt;}
.w6{width:161.146667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x1{left:60.480000pt;}
.x10{left:87.711988pt;}
.x1c{left:93.631988pt;}
.x12{left:96.351988pt;}
.xf{left:98.911988pt;}
.x1e{left:103.711988pt;}
.x1a{left:104.831988pt;}
.x13{left:149.146667pt;}
.x7{left:152.826667pt;}
.x2{left:171.066655pt;}
.x14{left:214.746667pt;}
.x9{left:218.426667pt;}
.x15{left:243.866667pt;}
.xa{left:247.586667pt;}
.x5{left:287.906655pt;}
.xb{left:331.426667pt;}
.x16{left:335.106667pt;}
.x6{left:397.026655pt;}
.xc{left:493.213333pt;}
.x17{left:496.893333pt;}
.xd{left:547.293333pt;}
.x18{left:550.973333pt;}
.x1d{left:686.053322pt;}
.x1b{left:699.973322pt;}
.x11{left:703.013322pt;}
.xe{left:703.973322pt;}
.x19{left:706.053322pt;}
.x3{left:711.493322pt;}
.x4{left:713.093322pt;}
}




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