
    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_7bf8a90b7b169f49ae47c773.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1756cbd2910e785f73011c0d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_90422a4b2eaeb9a583568302.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6737b55c4d70b59653303363.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ae2c9f76e198fb529cf3ff0e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_082396c62f7b371ae4cd9d1b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_08e345dca415fc647bb0d10c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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_13c43a7259c7a09eb91fc253.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_050aada53bc3dd59e26c5f98.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);}
.v3{vertical-align:-82.800000px;}
.v5{vertical-align:-80.640000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v6{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.ls8{letter-spacing:-18.720000px;}
.ls9{letter-spacing:-17.280000px;}
.ls13{letter-spacing:-8.640000px;}
.lse{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.457800px;}
.ls4{letter-spacing:-0.360000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.119520px;}
.ls14{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.432000px;}
.ls16{letter-spacing:3.600000px;}
.ls11{letter-spacing:20.880000px;}
.lsf{letter-spacing:24.480000px;}
.lsb{letter-spacing:25.920000px;}
.ls17{letter-spacing:33.984000px;}
.ls18{letter-spacing:34.104000px;}
.lsd{letter-spacing:99.360000px;}
.ls6{letter-spacing:177.096000px;}
.ls7{letter-spacing:197.976000px;}
.lsc{letter-spacing:198.120000px;}
.ls2{letter-spacing:343.416000px;}
.ls15{letter-spacing:378.696000px;}
.ls10{letter-spacing:387.480000px;}
.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;}
}
.ws6{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.102200px;}
.ws0{word-spacing:-15.300000px;}
.ws1{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.580000px;}
.ws3{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.700000px;}
.ws5{word-spacing:0.000000px;}
.ws8{word-spacing:9.552000px;}
._53{margin-left:-45.360000px;}
._23{margin-left:-2.938560px;}
._2{margin-left:-1.152000px;}
._0{width:1.015920px;}
._1{width:2.443680px;}
._5{width:3.694320px;}
._25{width:4.699440px;}
._17{width:5.760000px;}
._8{width:7.200000px;}
._9{width:8.568000px;}
._a{width:10.080000px;}
._19{width:11.592000px;}
._1a{width:12.656160px;}
._1b{width:13.911840px;}
._14{width:15.264000px;}
._15{width:16.344000px;}
._56{width:17.724000px;}
._24{width:19.224000px;}
._26{width:20.664000px;}
._20{width:21.960000px;}
._6{width:23.112000px;}
._7{width:24.192000px;}
._3{width:25.344000px;}
._4{width:26.712000px;}
._b{width:27.840000px;}
._c{width:29.184000px;}
._18{width:30.240000px;}
._f{width:31.824000px;}
._10{width:33.048000px;}
._13{width:34.488000px;}
._12{width:35.712000px;}
._29{width:36.720000px;}
._35{width:38.304000px;}
._1e{width:39.456000px;}
._1f{width:40.664160px;}
._e{width:42.552000px;}
._1d{width:43.632000px;}
._4d{width:44.640000px;}
._21{width:45.648000px;}
._22{width:47.080080px;}
._28{width:48.888000px;}
._34{width:50.400000px;}
._d{width:52.056000px;}
._3b{width:53.784000px;}
._1c{width:55.512000px;}
._4c{width:57.456000px;}
._3a{width:58.680000px;}
._36{width:60.192000px;}
._47{width:61.632000px;}
._2a{width:62.928000px;}
._32{width:64.152000px;}
._11{width:65.160000px;}
._33{width:66.384000px;}
._2b{width:68.616000px;}
._41{width:70.048080px;}
._54{width:71.352000px;}
._2c{width:72.504000px;}
._2d{width:73.872000px;}
._52{width:74.880000px;}
._4a{width:76.032000px;}
._2f{width:77.400000px;}
._31{width:79.704000px;}
._30{width:81.072000px;}
._37{width:83.304000px;}
._57{width:85.752000px;}
._4e{width:86.832000px;}
._4f{width:87.880080px;}
._27{width:89.424000px;}
._48{width:90.724080px;}
._44{width:91.728000px;}
._45{width:92.880000px;}
._42{width:94.968000px;}
._43{width:96.120000px;}
._5f{width:97.560000px;}
._5d{width:100.296000px;}
._5e{width:101.304000px;}
._38{width:102.744000px;}
._39{width:103.752000px;}
._3d{width:105.048000px;}
._3e{width:106.920000px;}
._55{width:109.224000px;}
._49{width:110.952000px;}
._67{width:117.240000px;}
._3f{width:118.560000px;}
._40{width:119.736000px;}
._4b{width:121.392000px;}
._60{width:125.928000px;}
._46{width:128.376000px;}
._50{width:136.368000px;}
._51{width:137.376000px;}
._63{width:145.368000px;}
._62{width:146.592000px;}
._61{width:150.264000px;}
._58{width:154.008000px;}
._3c{width:165.672000px;}
._2e{width:175.680000px;}
._16{width:220.512000px;}
._66{width:384.168000px;}
._5a{width:410.328000px;}
._5b{width:418.608000px;}
._5c{width:570.576000px;}
._59{width:678.576000px;}
._68{width:712.872000px;}
._65{width:770.472000px;}
._64{width:934.632000px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(192,0,0);}
.fc5{color:rgb(0,176,80);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.yd9{bottom:-120.090000px;}
.yd8{bottom:-99.720000px;}
.yd7{bottom:-80.640000px;}
.yd6{bottom:-61.740000px;}
.yf{bottom:-43.050000px;}
.yd5{bottom:-42.660000px;}
.ye{bottom:-25.950000px;}
.yd4{bottom:-23.760000px;}
.yd{bottom:-8.640000px;}
.yd3{bottom:-4.500000px;}
.y0{bottom:0.000000px;}
.y5{bottom:3.240000px;}
.yb{bottom:3.600000px;}
.yc{bottom:5.400000px;}
.yd2{bottom:16.020000px;}
.ya{bottom:20.880000px;}
.yd1{bottom:34.920000px;}
.y9{bottom:38.160000px;}
.y6{bottom:46.296000px;}
.yd0{bottom:53.460000px;}
.y8{bottom:55.440000px;}
.y4{bottom:65.736000px;}
.ycf{bottom:71.460000px;}
.y3d{bottom:128.376000px;}
.ycc{bottom:128.736000px;}
.y6e{bottom:129.276000px;}
.y9f{bottom:129.816000px;}
.ycb{bottom:148.896000px;}
.y3c{bottom:149.076000px;}
.y6d{bottom:149.976000px;}
.y9e{bottom:150.870000px;}
.yca{bottom:169.230000px;}
.y3b{bottom:169.770000px;}
.y70{bottom:170.670000px;}
.y9d{bottom:171.930000px;}
.yc9{bottom:189.570000px;}
.y3a{bottom:190.470000px;}
.y6c{bottom:191.370000px;}
.y9c{bottom:193.170000px;}
.yc8{bottom:209.730000px;}
.y39{bottom:211.170000px;}
.y6b{bottom:212.070000px;}
.y9b{bottom:214.230000px;}
.yc7{bottom:230.070000px;}
.y38{bottom:231.870000px;}
.y6f{bottom:232.770000px;}
.y9a{bottom:235.470000px;}
.yc6{bottom:250.230000px;}
.y37{bottom:252.570000px;}
.y6a{bottom:253.470000px;}
.y99{bottom:256.530000px;}
.yc5{bottom:270.570000px;}
.y36{bottom:273.270000px;}
.y69{bottom:274.170000px;}
.y98{bottom:277.590000px;}
.yc4{bottom:290.955000px;}
.y35{bottom:294.015000px;}
.y68{bottom:294.915000px;}
.y97{bottom:298.875000px;}
.yc3{bottom:311.115000px;}
.y34{bottom:314.715000px;}
.y67{bottom:315.615000px;}
.y96{bottom:319.935000px;}
.yc2{bottom:331.455000px;}
.y33{bottom:335.415000px;}
.y66{bottom:336.315000px;}
.y95{bottom:341.175000px;}
.yc1{bottom:351.615000px;}
.y32{bottom:356.115000px;}
.y65{bottom:357.015000px;}
.y94{bottom:362.235000px;}
.yc0{bottom:371.955000px;}
.y31{bottom:376.815000px;}
.y64{bottom:377.715000px;}
.y93{bottom:383.295000px;}
.ybf{bottom:392.295000px;}
.y30{bottom:397.515000px;}
.y63{bottom:398.415000px;}
.y92{bottom:404.535000px;}
.ybe{bottom:412.455000px;}
.y2f{bottom:418.215000px;}
.y62{bottom:419.115000px;}
.y91{bottom:425.595000px;}
.ybd{bottom:432.795000px;}
.y2e{bottom:438.915000px;}
.y61{bottom:439.815000px;}
.y90{bottom:446.655000px;}
.ybc{bottom:452.955000px;}
.y2d{bottom:459.615000px;}
.y60{bottom:460.515000px;}
.y8f{bottom:467.895000px;}
.ybb{bottom:473.295000px;}
.y3e{bottom:480.315000px;}
.y5f{bottom:481.215000px;}
.y8e{bottom:488.955000px;}
.yba{bottom:493.635000px;}
.y2c{bottom:501.015000px;}
.y5e{bottom:501.915000px;}
.y8d{bottom:510.195000px;}
.yb9{bottom:513.795000px;}
.y5d{bottom:522.615000px;}
.y2b{bottom:525.495000px;}
.y8c{bottom:531.255000px;}
.yb8{bottom:534.135000px;}
.y5c{bottom:543.315000px;}
.y2a{bottom:546.195000px;}
.y8b{bottom:552.315000px;}
.yb7{bottom:554.295000px;}
.y5b{bottom:564.015000px;}
.y29{bottom:566.925000px;}
.y8a{bottom:573.585000px;}
.yb6{bottom:574.665000px;}
.y5a{bottom:584.745000px;}
.y28{bottom:587.625000px;}
.y89{bottom:594.645000px;}
.yb5{bottom:595.005000px;}
.y59{bottom:605.445000px;}
.y27{bottom:608.325000px;}
.yb4{bottom:615.165000px;}
.y88{bottom:615.885000px;}
.y58{bottom:626.145000px;}
.y26{bottom:629.025000px;}
.yb3{bottom:635.505000px;}
.y87{bottom:636.945000px;}
.y57{bottom:646.845000px;}
.y25{bottom:649.725000px;}
.yb2{bottom:655.665000px;}
.y86{bottom:658.005000px;}
.ycd{bottom:665.925000px;}
.y56{bottom:667.545000px;}
.y24{bottom:670.425000px;}
.yce{bottom:673.125000px;}
.yb1{bottom:676.005000px;}
.y85{bottom:679.245000px;}
.y55{bottom:688.245000px;}
.y23{bottom:691.125000px;}
.yb0{bottom:696.345000px;}
.y84{bottom:700.305000px;}
.y54{bottom:708.945000px;}
.y22{bottom:711.825000px;}
.yaf{bottom:716.505000px;}
.y83{bottom:721.365000px;}
.y53{bottom:729.645000px;}
.y21{bottom:732.525000px;}
.yae{bottom:736.845000px;}
.y82{bottom:742.605000px;}
.y52{bottom:750.345000px;}
.y20{bottom:753.225000px;}
.yad{bottom:757.005000px;}
.y81{bottom:763.665000px;}
.y51{bottom:771.045000px;}
.y1f{bottom:773.925000px;}
.yac{bottom:777.345000px;}
.y80{bottom:784.905000px;}
.y50{bottom:791.745000px;}
.y1e{bottom:794.625000px;}
.yab{bottom:797.685000px;}
.y7f{bottom:805.965000px;}
.y4f{bottom:812.445000px;}
.y1d{bottom:815.325000px;}
.yaa{bottom:817.845000px;}
.y7e{bottom:827.025000px;}
.y4e{bottom:833.145000px;}
.ya9{bottom:838.185000px;}
.y1c{bottom:839.805000px;}
.y7d{bottom:848.310000px;}
.y4d{bottom:853.890000px;}
.ya8{bottom:858.390000px;}
.y1b{bottom:860.550000px;}
.y7c{bottom:869.370000px;}
.y4c{bottom:874.590000px;}
.ya7{bottom:878.730000px;}
.y1a{bottom:881.250000px;}
.y7b{bottom:890.610000px;}
.y4b{bottom:895.290000px;}
.ya6{bottom:899.070000px;}
.y19{bottom:901.950000px;}
.y7a{bottom:911.670000px;}
.y4a{bottom:915.990000px;}
.ya5{bottom:919.230000px;}
.y18{bottom:929.490000px;}
.y79{bottom:932.730000px;}
.y49{bottom:936.690000px;}
.ya4{bottom:939.570000px;}
.y17{bottom:943.350000px;}
.y78{bottom:953.970000px;}
.y48{bottom:957.390000px;}
.ya3{bottom:959.730000px;}
.y16{bottom:970.890000px;}
.y77{bottom:975.030000px;}
.y47{bottom:978.090000px;}
.ya2{bottom:980.070000px;}
.y15{bottom:984.750000px;}
.y76{bottom:996.270000px;}
.y46{bottom:998.790000px;}
.y14{bottom:1005.450000px;}
.y75{bottom:1017.330000px;}
.y45{bottom:1019.490000px;}
.ya1{bottom:1020.570000px;}
.y13{bottom:1027.410000px;}
.y74{bottom:1038.390000px;}
.y44{bottom:1040.190000px;}
.y12{bottom:1054.950000px;}
.y73{bottom:1059.630000px;}
.y43{bottom:1060.890000px;}
.ya0{bottom:1061.070000px;}
.y72{bottom:1080.690000px;}
.y11{bottom:1081.230000px;}
.y42{bottom:1081.590000px;}
.y71{bottom:1101.750000px;}
.y10{bottom:1101.930000px;}
.y41{bottom:1102.290000px;}
.y3{bottom:1121.910000px;}
.y40{bottom:1122.990000px;}
.y3f{bottom:1143.000000px;}
.y2{bottom:1145.160000px;}
.y7{bottom:1147.140000px;}
.y1{bottom:1162.440000px;}
.h3{height:17.100000px;}
.hb{height:47.344922px;}
.hd{height:50.273438px;}
.h5{height:58.621992px;}
.h2{height:58.651172px;}
.he{height:59.343750px;}
.h4{height:60.226875px;}
.h11{height:65.010937px;}
.h12{height:66.757500px;}
.h6{height:69.480000px;}
.hc{height:70.628906px;}
.h9{height:70.664062px;}
.h7{height:72.562500px;}
.hf{height:74.004654px;}
.ha{height:74.704922px;}
.h10{height:88.200000px;}
.h8{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:69.480000px;}
.w6{width:198.390000px;}
.w5{width:515.595000px;}
.w4{width:624.885000px;}
.w7{width:655.125000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:10.800000px;}
.x27{left:11.880000px;}
.x4{left:45.900000px;}
.x3{left:99.396000px;}
.x2{left:108.035987px;}
.x1f{left:113.435987px;}
.x11{left:116.315987px;}
.x24{left:117.396000px;}
.x14{left:118.835987px;}
.x1a{left:120.275987px;}
.xf{left:124.595987px;}
.x20{left:140.435987px;}
.x1e{left:144.395987px;}
.xc{left:147.455987px;}
.x15{left:162.029987px;}
.x5{left:168.870000px;}
.x13{left:184.349987px;}
.x9{left:186.885000px;}
.x18{left:220.349987px;}
.x1b{left:223.409987px;}
.x25{left:238.539000px;}
.xe{left:255.989987px;}
.x12{left:265.349987px;}
.x26{left:327.639000px;}
.x6{left:355.215000px;}
.xa{left:365.834987px;}
.xd{left:381.494987px;}
.x10{left:398.594987px;}
.xb{left:446.474987px;}
.x16{left:459.974987px;}
.x22{left:465.374987px;}
.x1c{left:477.794987px;}
.x21{left:492.404987px;}
.x17{left:514.004987px;}
.x19{left:528.584987px;}
.x1d{left:567.464987px;}
.x8{left:602.385000px;}
.x23{left:775.049987px;}
.x1{left:785.129987px;}
@media print{
.v3{vertical-align:-73.600000pt;}
.v5{vertical-align:-71.680000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v6{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls8{letter-spacing:-16.640000pt;}
.ls9{letter-spacing:-15.360000pt;}
.ls13{letter-spacing:-7.680000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.406933pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.106240pt;}
.ls14{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.384000pt;}
.ls16{letter-spacing:3.200000pt;}
.ls11{letter-spacing:18.560000pt;}
.lsf{letter-spacing:21.760000pt;}
.lsb{letter-spacing:23.040000pt;}
.ls17{letter-spacing:30.208000pt;}
.ls18{letter-spacing:30.314667pt;}
.lsd{letter-spacing:88.320000pt;}
.ls6{letter-spacing:157.418667pt;}
.ls7{letter-spacing:175.978667pt;}
.lsc{letter-spacing:176.106667pt;}
.ls2{letter-spacing:305.258667pt;}
.ls15{letter-spacing:336.618667pt;}
.ls10{letter-spacing:344.426667pt;}
.ws6{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.313067pt;}
.ws0{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.960000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.400000pt;}
.ws5{word-spacing:0.000000pt;}
.ws8{word-spacing:8.490667pt;}
._53{margin-left:-40.320000pt;}
._23{margin-left:-2.612053pt;}
._2{margin-left:-1.024000pt;}
._0{width:0.903040pt;}
._1{width:2.172160pt;}
._5{width:3.283840pt;}
._25{width:4.177280pt;}
._17{width:5.120000pt;}
._8{width:6.400000pt;}
._9{width:7.616000pt;}
._a{width:8.960000pt;}
._19{width:10.304000pt;}
._1a{width:11.249920pt;}
._1b{width:12.366080pt;}
._14{width:13.568000pt;}
._15{width:14.528000pt;}
._56{width:15.754667pt;}
._24{width:17.088000pt;}
._26{width:18.368000pt;}
._20{width:19.520000pt;}
._6{width:20.544000pt;}
._7{width:21.504000pt;}
._3{width:22.528000pt;}
._4{width:23.744000pt;}
._b{width:24.746667pt;}
._c{width:25.941333pt;}
._18{width:26.880000pt;}
._f{width:28.288000pt;}
._10{width:29.376000pt;}
._13{width:30.656000pt;}
._12{width:31.744000pt;}
._29{width:32.640000pt;}
._35{width:34.048000pt;}
._1e{width:35.072000pt;}
._1f{width:36.145920pt;}
._e{width:37.824000pt;}
._1d{width:38.784000pt;}
._4d{width:39.680000pt;}
._21{width:40.576000pt;}
._22{width:41.848960pt;}
._28{width:43.456000pt;}
._34{width:44.800000pt;}
._d{width:46.272000pt;}
._3b{width:47.808000pt;}
._1c{width:49.344000pt;}
._4c{width:51.072000pt;}
._3a{width:52.160000pt;}
._36{width:53.504000pt;}
._47{width:54.784000pt;}
._2a{width:55.936000pt;}
._32{width:57.024000pt;}
._11{width:57.920000pt;}
._33{width:59.008000pt;}
._2b{width:60.992000pt;}
._41{width:62.264960pt;}
._54{width:63.424000pt;}
._2c{width:64.448000pt;}
._2d{width:65.664000pt;}
._52{width:66.560000pt;}
._4a{width:67.584000pt;}
._2f{width:68.800000pt;}
._31{width:70.848000pt;}
._30{width:72.064000pt;}
._37{width:74.048000pt;}
._57{width:76.224000pt;}
._4e{width:77.184000pt;}
._4f{width:78.115627pt;}
._27{width:79.488000pt;}
._48{width:80.643627pt;}
._44{width:81.536000pt;}
._45{width:82.560000pt;}
._42{width:84.416000pt;}
._43{width:85.440000pt;}
._5f{width:86.720000pt;}
._5d{width:89.152000pt;}
._5e{width:90.048000pt;}
._38{width:91.328000pt;}
._39{width:92.224000pt;}
._3d{width:93.376000pt;}
._3e{width:95.040000pt;}
._55{width:97.088000pt;}
._49{width:98.624000pt;}
._67{width:104.213333pt;}
._3f{width:105.386667pt;}
._40{width:106.432000pt;}
._4b{width:107.904000pt;}
._60{width:111.936000pt;}
._46{width:114.112000pt;}
._50{width:121.216000pt;}
._51{width:122.112000pt;}
._63{width:129.216000pt;}
._62{width:130.304000pt;}
._61{width:133.568000pt;}
._58{width:136.896000pt;}
._3c{width:147.264000pt;}
._2e{width:156.160000pt;}
._16{width:196.010667pt;}
._66{width:341.482667pt;}
._5a{width:364.736000pt;}
._5b{width:372.096000pt;}
._5c{width:507.178667pt;}
._59{width:603.178667pt;}
._68{width:633.664000pt;}
._65{width:684.864000pt;}
._64{width:830.784000pt;}
.fs4{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.yd9{bottom:-106.746667pt;}
.yd8{bottom:-88.640000pt;}
.yd7{bottom:-71.680000pt;}
.yd6{bottom:-54.880000pt;}
.yf{bottom:-38.266667pt;}
.yd5{bottom:-37.920000pt;}
.ye{bottom:-23.066667pt;}
.yd4{bottom:-21.120000pt;}
.yd{bottom:-7.680000pt;}
.yd3{bottom:-4.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:2.880000pt;}
.yb{bottom:3.200000pt;}
.yc{bottom:4.800000pt;}
.yd2{bottom:14.240000pt;}
.ya{bottom:18.560000pt;}
.yd1{bottom:31.040000pt;}
.y9{bottom:33.920000pt;}
.y6{bottom:41.152000pt;}
.yd0{bottom:47.520000pt;}
.y8{bottom:49.280000pt;}
.y4{bottom:58.432000pt;}
.ycf{bottom:63.520000pt;}
.y3d{bottom:114.112000pt;}
.ycc{bottom:114.432000pt;}
.y6e{bottom:114.912000pt;}
.y9f{bottom:115.392000pt;}
.ycb{bottom:132.352000pt;}
.y3c{bottom:132.512000pt;}
.y6d{bottom:133.312000pt;}
.y9e{bottom:134.106667pt;}
.yca{bottom:150.426667pt;}
.y3b{bottom:150.906667pt;}
.y70{bottom:151.706667pt;}
.y9d{bottom:152.826667pt;}
.yc9{bottom:168.506667pt;}
.y3a{bottom:169.306667pt;}
.y6c{bottom:170.106667pt;}
.y9c{bottom:171.706667pt;}
.yc8{bottom:186.426667pt;}
.y39{bottom:187.706667pt;}
.y6b{bottom:188.506667pt;}
.y9b{bottom:190.426667pt;}
.yc7{bottom:204.506667pt;}
.y38{bottom:206.106667pt;}
.y6f{bottom:206.906667pt;}
.y9a{bottom:209.306667pt;}
.yc6{bottom:222.426667pt;}
.y37{bottom:224.506667pt;}
.y6a{bottom:225.306667pt;}
.y99{bottom:228.026667pt;}
.yc5{bottom:240.506667pt;}
.y36{bottom:242.906667pt;}
.y69{bottom:243.706667pt;}
.y98{bottom:246.746667pt;}
.yc4{bottom:258.626667pt;}
.y35{bottom:261.346667pt;}
.y68{bottom:262.146667pt;}
.y97{bottom:265.666667pt;}
.yc3{bottom:276.546667pt;}
.y34{bottom:279.746667pt;}
.y67{bottom:280.546667pt;}
.y96{bottom:284.386667pt;}
.yc2{bottom:294.626667pt;}
.y33{bottom:298.146667pt;}
.y66{bottom:298.946667pt;}
.y95{bottom:303.266667pt;}
.yc1{bottom:312.546667pt;}
.y32{bottom:316.546667pt;}
.y65{bottom:317.346667pt;}
.y94{bottom:321.986667pt;}
.yc0{bottom:330.626667pt;}
.y31{bottom:334.946667pt;}
.y64{bottom:335.746667pt;}
.y93{bottom:340.706667pt;}
.ybf{bottom:348.706667pt;}
.y30{bottom:353.346667pt;}
.y63{bottom:354.146667pt;}
.y92{bottom:359.586667pt;}
.ybe{bottom:366.626667pt;}
.y2f{bottom:371.746667pt;}
.y62{bottom:372.546667pt;}
.y91{bottom:378.306667pt;}
.ybd{bottom:384.706667pt;}
.y2e{bottom:390.146667pt;}
.y61{bottom:390.946667pt;}
.y90{bottom:397.026667pt;}
.ybc{bottom:402.626667pt;}
.y2d{bottom:408.546667pt;}
.y60{bottom:409.346667pt;}
.y8f{bottom:415.906667pt;}
.ybb{bottom:420.706667pt;}
.y3e{bottom:426.946667pt;}
.y5f{bottom:427.746667pt;}
.y8e{bottom:434.626667pt;}
.yba{bottom:438.786667pt;}
.y2c{bottom:445.346667pt;}
.y5e{bottom:446.146667pt;}
.y8d{bottom:453.506667pt;}
.yb9{bottom:456.706667pt;}
.y5d{bottom:464.546667pt;}
.y2b{bottom:467.106667pt;}
.y8c{bottom:472.226667pt;}
.yb8{bottom:474.786667pt;}
.y5c{bottom:482.946667pt;}
.y2a{bottom:485.506667pt;}
.y8b{bottom:490.946667pt;}
.yb7{bottom:492.706667pt;}
.y5b{bottom:501.346667pt;}
.y29{bottom:503.933333pt;}
.y8a{bottom:509.853333pt;}
.yb6{bottom:510.813333pt;}
.y5a{bottom:519.773333pt;}
.y28{bottom:522.333333pt;}
.y89{bottom:528.573333pt;}
.yb5{bottom:528.893333pt;}
.y59{bottom:538.173333pt;}
.y27{bottom:540.733333pt;}
.yb4{bottom:546.813333pt;}
.y88{bottom:547.453333pt;}
.y58{bottom:556.573333pt;}
.y26{bottom:559.133333pt;}
.yb3{bottom:564.893333pt;}
.y87{bottom:566.173333pt;}
.y57{bottom:574.973333pt;}
.y25{bottom:577.533333pt;}
.yb2{bottom:582.813333pt;}
.y86{bottom:584.893333pt;}
.ycd{bottom:591.933333pt;}
.y56{bottom:593.373333pt;}
.y24{bottom:595.933333pt;}
.yce{bottom:598.333333pt;}
.yb1{bottom:600.893333pt;}
.y85{bottom:603.773333pt;}
.y55{bottom:611.773333pt;}
.y23{bottom:614.333333pt;}
.yb0{bottom:618.973333pt;}
.y84{bottom:622.493333pt;}
.y54{bottom:630.173333pt;}
.y22{bottom:632.733333pt;}
.yaf{bottom:636.893333pt;}
.y83{bottom:641.213333pt;}
.y53{bottom:648.573333pt;}
.y21{bottom:651.133333pt;}
.yae{bottom:654.973333pt;}
.y82{bottom:660.093333pt;}
.y52{bottom:666.973333pt;}
.y20{bottom:669.533333pt;}
.yad{bottom:672.893333pt;}
.y81{bottom:678.813333pt;}
.y51{bottom:685.373333pt;}
.y1f{bottom:687.933333pt;}
.yac{bottom:690.973333pt;}
.y80{bottom:697.693333pt;}
.y50{bottom:703.773333pt;}
.y1e{bottom:706.333333pt;}
.yab{bottom:709.053333pt;}
.y7f{bottom:716.413333pt;}
.y4f{bottom:722.173333pt;}
.y1d{bottom:724.733333pt;}
.yaa{bottom:726.973333pt;}
.y7e{bottom:735.133333pt;}
.y4e{bottom:740.573333pt;}
.ya9{bottom:745.053333pt;}
.y1c{bottom:746.493333pt;}
.y7d{bottom:754.053333pt;}
.y4d{bottom:759.013333pt;}
.ya8{bottom:763.013333pt;}
.y1b{bottom:764.933333pt;}
.y7c{bottom:772.773333pt;}
.y4c{bottom:777.413333pt;}
.ya7{bottom:781.093333pt;}
.y1a{bottom:783.333333pt;}
.y7b{bottom:791.653333pt;}
.y4b{bottom:795.813333pt;}
.ya6{bottom:799.173333pt;}
.y19{bottom:801.733333pt;}
.y7a{bottom:810.373333pt;}
.y4a{bottom:814.213333pt;}
.ya5{bottom:817.093333pt;}
.y18{bottom:826.213333pt;}
.y79{bottom:829.093333pt;}
.y49{bottom:832.613333pt;}
.ya4{bottom:835.173333pt;}
.y17{bottom:838.533333pt;}
.y78{bottom:847.973333pt;}
.y48{bottom:851.013333pt;}
.ya3{bottom:853.093333pt;}
.y16{bottom:863.013333pt;}
.y77{bottom:866.693333pt;}
.y47{bottom:869.413333pt;}
.ya2{bottom:871.173333pt;}
.y15{bottom:875.333333pt;}
.y76{bottom:885.573333pt;}
.y46{bottom:887.813333pt;}
.y14{bottom:893.733333pt;}
.y75{bottom:904.293333pt;}
.y45{bottom:906.213333pt;}
.ya1{bottom:907.173333pt;}
.y13{bottom:913.253333pt;}
.y74{bottom:923.013333pt;}
.y44{bottom:924.613333pt;}
.y12{bottom:937.733333pt;}
.y73{bottom:941.893333pt;}
.y43{bottom:943.013333pt;}
.ya0{bottom:943.173333pt;}
.y72{bottom:960.613333pt;}
.y11{bottom:961.093333pt;}
.y42{bottom:961.413333pt;}
.y71{bottom:979.333333pt;}
.y10{bottom:979.493333pt;}
.y41{bottom:979.813333pt;}
.y3{bottom:997.253333pt;}
.y40{bottom:998.213333pt;}
.y3f{bottom:1016.000000pt;}
.y2{bottom:1017.920000pt;}
.y7{bottom:1019.680000pt;}
.y1{bottom:1033.280000pt;}
.h3{height:15.200000pt;}
.hb{height:42.084375pt;}
.hd{height:44.687500pt;}
.h5{height:52.108438pt;}
.h2{height:52.134375pt;}
.he{height:52.750000pt;}
.h4{height:53.535000pt;}
.h11{height:57.787500pt;}
.h12{height:59.340000pt;}
.h6{height:61.760000pt;}
.hc{height:62.781250pt;}
.h9{height:62.812500pt;}
.h7{height:64.500000pt;}
.hf{height:65.781915pt;}
.ha{height:66.404375pt;}
.h10{height:78.400000pt;}
.h8{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:61.760000pt;}
.w6{width:176.346667pt;}
.w5{width:458.306667pt;}
.w4{width:555.453333pt;}
.w7{width:582.333333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:9.600000pt;}
.x27{left:10.560000pt;}
.x4{left:40.800000pt;}
.x3{left:88.352000pt;}
.x2{left:96.031988pt;}
.x1f{left:100.831988pt;}
.x11{left:103.391988pt;}
.x24{left:104.352000pt;}
.x14{left:105.631988pt;}
.x1a{left:106.911988pt;}
.xf{left:110.751988pt;}
.x20{left:124.831988pt;}
.x1e{left:128.351988pt;}
.xc{left:131.071988pt;}
.x15{left:144.026655pt;}
.x5{left:150.106667pt;}
.x13{left:163.866655pt;}
.x9{left:166.120000pt;}
.x18{left:195.866655pt;}
.x1b{left:198.586655pt;}
.x25{left:212.034667pt;}
.xe{left:227.546655pt;}
.x12{left:235.866655pt;}
.x26{left:291.234667pt;}
.x6{left:315.746667pt;}
.xa{left:325.186655pt;}
.xd{left:339.106655pt;}
.x10{left:354.306655pt;}
.xb{left:396.866655pt;}
.x16{left:408.866655pt;}
.x22{left:413.666655pt;}
.x1c{left:424.706655pt;}
.x21{left:437.693322pt;}
.x17{left:456.893322pt;}
.x19{left:469.853322pt;}
.x1d{left:504.413322pt;}
.x8{left:535.453333pt;}
.x23{left:688.933322pt;}
.x1{left:697.893322pt;}
}




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