
    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_13e4e94a3700fd816c98834a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d680ddb810d5b3852ec2fa01.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_992add753a0cb38336c63a36.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_e8ff68c22071185c6d2ab6be.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_a897018ac87a27b232bd89d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_f4cf74258961e4b30b6a969f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_50ac8e32400d4596d875cb67.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.050293;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:ffa;src:url('chunks/assets/font_2b71bb067f9bed0f1e167478.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.934082;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:ffb;src:url('chunks/assets/font_3c9ed2c3045bd5fc8635a6ed.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_83e8a06ecb41f4c8aa414a55.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_259622c80579cb4d5d15f390.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.050293;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:ffe;src:url('chunks/assets/font_c94170beb1b6fe90007f839f.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v4{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.lsc{letter-spacing:-4.680000px;}
.lsd{letter-spacing:-3.960000px;}
.lse{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.127200px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls5{letter-spacing:0.066240px;}
.ls3{letter-spacing:0.132600px;}
.ls7{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.540000px;}
.ls6{letter-spacing:4.500000px;}
.ls10{letter-spacing:16.506720px;}
.lsf{letter-spacing:46.026720px;}
.ls1{letter-spacing:679.176000px;}
.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;}
}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.ws1{word-spacing:-16.488000px;}
.ws6{word-spacing:-15.300000px;}
.ws9{word-spacing:-14.940000px;}
.wsa{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.ws8{word-spacing:-10.980000px;}
.ws7{word-spacing:-10.260000px;}
.ws4{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._10{margin-left:-7.232400px;}
._5{margin-left:-3.406320px;}
._3{margin-left:-2.358720px;}
._0{margin-left:-1.195200px;}
._1{width:1.065360px;}
._2{width:2.822400px;}
._6{width:3.975360px;}
._4{width:5.028720px;}
._7{width:6.095520px;}
._1d{width:7.121760px;}
._9{width:8.127360px;}
._8{width:9.621360px;}
._a{width:11.354400px;}
._e{width:13.217280px;}
._f{width:16.056960px;}
._13{width:17.509680px;}
._12{width:18.764640px;}
._14{width:20.258640px;}
._17{width:25.109520px;}
._16{width:26.951760px;}
._c{width:31.075200px;}
._d{width:32.150880px;}
._b{width:33.405840px;}
._15{width:35.328480px;}
._1f{width:39.013680px;}
._1e{width:41.064720px;}
._11{width:53.082480px;}
._1b{width:55.587120px;}
._1c{width:56.951280px;}
._18{width:65.855520px;}
._19{width:69.261840px;}
._1a{width:169.908000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y40{bottom:3.240000px;}
.y18{bottom:3.600000px;}
.ye{bottom:9.540000px;}
.y5{bottom:11.519850px;}
.y1a{bottom:12.420000px;}
.y44{bottom:13.140000px;}
.yc{bottom:13.860000px;}
.y86{bottom:15.120000px;}
.y88{bottom:15.300000px;}
.y97{bottom:20.385000px;}
.y3f{bottom:20.520000px;}
.y46{bottom:21.240000px;}
.y17{bottom:23.760000px;}
.y8c{bottom:26.490000px;}
.y43{bottom:27.900000px;}
.yb{bottom:30.240000px;}
.y4{bottom:33.480000px;}
.y3e{bottom:37.800000px;}
.y45{bottom:39.420000px;}
.y16{bottom:40.320000px;}
.y42{bottom:42.480000px;}
.ya{bottom:46.440000px;}
.y3d{bottom:55.080000px;}
.y3{bottom:55.440000px;}
.y15{bottom:56.160000px;}
.y14{bottom:66.600000px;}
.y3c{bottom:72.180000px;}
.y9{bottom:73.290000px;}
.y2{bottom:76.716000px;}
.y13{bottom:82.980000px;}
.y3b{bottom:89.460000px;}
.y8{bottom:92.910000px;}
.y12{bottom:96.660000px;}
.y89{bottom:98.676000px;}
.ya4{bottom:101.196000px;}
.y3a{bottom:106.740000px;}
.ycd{bottom:109.296000px;}
.y7{bottom:111.270000px;}
.y4f{bottom:112.176000px;}
.ya3{bottom:120.096000px;}
.y11{bottom:122.400000px;}
.y39{bottom:124.020000px;}
.ycc{bottom:126.576000px;}
.y87{bottom:128.556000px;}
.y4e{bottom:129.456000px;}
.ya2{bottom:134.136000px;}
.y38{bottom:141.300000px;}
.ycb{bottom:143.856000px;}
.y4d{bottom:146.556000px;}
.y10{bottom:146.700000px;}
.y37{bottom:158.580000px;}
.y85{bottom:158.610000px;}
.yca{bottom:161.130000px;}
.y4c{bottom:163.830000px;}
.y36{bottom:175.680000px;}
.y4b{bottom:181.110000px;}
.yc9{bottom:190.290000px;}
.y84{bottom:191.910000px;}
.y35{bottom:192.990000px;}
.yc8{bottom:207.570000px;}
.y83{bottom:209.010000px;}
.y34{bottom:210.270000px;}
.y27{bottom:221.070000px;}
.yc7{bottom:224.850000px;}
.y33{bottom:227.550000px;}
.y26{bottom:235.650000px;}
.y82{bottom:238.350000px;}
.yc6{bottom:242.130000px;}
.y32{bottom:244.830000px;}
.y25{bottom:252.930000px;}
.y81{bottom:255.630000px;}
.yc5{bottom:259.230000px;}
.y31{bottom:261.930000px;}
.y4a{bottom:262.110000px;}
.y24{bottom:270.210000px;}
.y80{bottom:272.730000px;}
.yc4{bottom:276.510000px;}
.y30{bottom:279.210000px;}
.y49{bottom:279.390000px;}
.y23{bottom:287.310000px;}
.y7f{bottom:290.010000px;}
.yc3{bottom:293.790000px;}
.y2f{bottom:296.490000px;}
.y48{bottom:296.670000px;}
.y22{bottom:304.590000px;}
.y7e{bottom:307.290000px;}
.yc2{bottom:311.070000px;}
.y2e{bottom:313.770000px;}
.y21{bottom:322.410000px;}
.y7d{bottom:324.570000px;}
.yeb{bottom:326.010000px;}
.yc1{bottom:328.350000px;}
.y2d{bottom:331.050000px;}
.y20{bottom:339.870000px;}
.y7c{bottom:341.895000px;}
.yea{bottom:343.335000px;}
.yc0{bottom:345.675000px;}
.y2c{bottom:348.330000px;}
.y47{bottom:349.095000px;}
.y1f{bottom:357.150000px;}
.y7b{bottom:359.175000px;}
.ye9{bottom:360.615000px;}
.y41{bottom:363.495000px;}
.y2b{bottom:365.430000px;}
.y1e{bottom:374.790000px;}
.ybf{bottom:374.835000px;}
.y7a{bottom:376.275000px;}
.ye8{bottom:377.895000px;}
.y2a{bottom:382.710000px;}
.ybe{bottom:392.115000px;}
.y79{bottom:393.555000px;}
.ye7{bottom:395.175000px;}
.y29{bottom:399.990000px;}
.y1d{bottom:402.150000px;}
.ybd{bottom:409.395000px;}
.ya1{bottom:410.115000px;}
.ye6{bottom:412.275000px;}
.y28{bottom:417.270000px;}
.y1b{bottom:417.315000px;}
.y1c{bottom:419.970000px;}
.y78{bottom:422.895000px;}
.ybc{bottom:426.675000px;}
.ya0{bottom:427.395000px;}
.ye5{bottom:429.555000px;}
.y77{bottom:440.175000px;}
.y9f{bottom:441.435000px;}
.ye4{bottom:446.835000px;}
.ybb{bottom:455.835000px;}
.y76{bottom:457.275000px;}
.ye3{bottom:464.115000px;}
.yba{bottom:473.115000px;}
.y75{bottom:474.555000px;}
.ye2{bottom:481.395000px;}
.yb9{bottom:490.395000px;}
.y74{bottom:491.835000px;}
.ye1{bottom:498.675000px;}
.y73{bottom:509.115000px;}
.ye0{bottom:515.775000px;}
.yb8{bottom:519.555000px;}
.y72{bottom:526.395000px;}
.ydf{bottom:533.055000px;}
.yb7{bottom:536.835000px;}
.y71{bottom:543.675000px;}
.yde{bottom:550.335000px;}
.yb6{bottom:554.115000px;}
.y70{bottom:560.775000px;}
.ydd{bottom:567.615000px;}
.yb5{bottom:571.395000px;}
.y6f{bottom:578.055000px;}
.ydc{bottom:584.895000px;}
.y6e{bottom:595.335000px;}
.yb4{bottom:600.555000px;}
.ydb{bottom:602.175000px;}
.y6d{bottom:612.645000px;}
.yb3{bottom:617.865000px;}
.yda{bottom:619.305000px;}
.y6c{bottom:629.925000px;}
.yb2{bottom:635.145000px;}
.yd9{bottom:636.585000px;}
.y6b{bottom:647.025000px;}
.yd8{bottom:653.865000px;}
.yb1{bottom:664.305000px;}
.yd7{bottom:671.145000px;}
.y6a{bottom:676.365000px;}
.yb0{bottom:681.585000px;}
.yd6{bottom:688.425000px;}
.y69{bottom:693.645000px;}
.yaf{bottom:698.865000px;}
.yd5{bottom:705.525000px;}
.y68{bottom:710.925000px;}
.yae{bottom:716.145000px;}
.y9e{bottom:718.305000px;}
.yd4{bottom:722.805000px;}
.y67{bottom:728.025000px;}
.y9d{bottom:733.065000px;}
.yd3{bottom:740.085000px;}
.y66{bottom:745.305000px;}
.y9c{bottom:751.065000px;}
.yd2{bottom:757.365000px;}
.y65{bottom:762.585000px;}
.y9b{bottom:769.065000px;}
.yd1{bottom:774.645000px;}
.yad{bottom:779.865000px;}
.y9a{bottom:787.065000px;}
.y64{bottom:791.745000px;}
.yd0{bottom:791.925000px;}
.yac{bottom:797.145000px;}
.y99{bottom:805.065000px;}
.y63{bottom:809.025000px;}
.y62{bottom:826.305000px;}
.y61{bottom:843.585000px;}
.y98{bottom:844.845000px;}
.y19{bottom:848.625000px;}
.yab{bottom:860.865000px;}
.y96{bottom:861.225000px;}
.y60{bottom:872.790000px;}
.yf{bottom:878.190000px;}
.y5f{bottom:890.070000px;}
.y95{bottom:896.370000px;}
.y5e{bottom:907.350000px;}
.y94{bottom:914.370000px;}
.y5d{bottom:924.630000px;}
.y93{bottom:932.370000px;}
.y5c{bottom:941.910000px;}
.y92{bottom:950.370000px;}
.y5b{bottom:959.190000px;}
.ycf{bottom:971.070000px;}
.y5a{bottom:976.470000px;}
.yaa{bottom:988.350000px;}
.y91{bottom:989.430000px;}
.y59{bottom:993.570000px;}
.ya9{bottom:1005.630000px;}
.y90{bottom:1009.230000px;}
.y58{bottom:1022.910000px;}
.y8f{bottom:1025.610000px;}
.yd{bottom:1040.010000px;}
.y57{bottom:1040.190000px;}
.y8e{bottom:1055.490000px;}
.y56{bottom:1057.290000px;}
.y6{bottom:1065.390000px;}
.y55{bottom:1074.570000px;}
.y8d{bottom:1085.550000px;}
.ya8{bottom:1086.630000px;}
.y54{bottom:1091.850000px;}
.ya7{bottom:1103.910000px;}
.y53{bottom:1109.130000px;}
.y8b{bottom:1115.610000px;}
.yce{bottom:1121.010000px;}
.ya6{bottom:1121.190000px;}
.y52{bottom:1126.410000px;}
.ya5{bottom:1138.320000px;}
.y51{bottom:1155.600000px;}
.y8a{bottom:1156.860000px;}
.y50{bottom:1172.880000px;}
.y1{bottom:1191.780000px;}
.h25{height:17.280000px;}
.h8{height:25.020000px;}
.hc{height:27.000000px;}
.he{height:28.968750px;}
.h1f{height:29.160000px;}
.h20{height:29.340000px;}
.h11{height:29.556000px;}
.h26{height:34.416000px;}
.h24{height:34.560000px;}
.hd{height:35.806641px;}
.h5{height:36.180000px;}
.h1c{height:36.462656px;}
.h19{height:38.818125px;}
.h21{height:40.536000px;}
.h10{height:40.816406px;}
.h1e{height:42.164648px;}
.ha{height:44.002969px;}
.h7{height:44.820000px;}
.h1d{height:45.170156px;}
.h15{height:45.770625px;}
.h23{height:46.736719px;}
.h16{height:46.968750px;}
.h14{height:47.980898px;}
.h17{height:49.255313px;}
.h1a{height:49.868086px;}
.h1b{height:53.820000px;}
.h6{height:54.000000px;}
.hf{height:55.175977px;}
.h28{height:59.436914px;}
.h18{height:59.439023px;}
.h3{height:61.189805px;}
.hb{height:63.180000px;}
.h22{height:65.884219px;}
.h27{height:70.295977px;}
.h2{height:71.613281px;}
.h12{height:73.722656px;}
.h4{height:121.536000px;}
.h9{height:161.820000px;}
.h13{height:431.310000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:87.840000px;}
.w3{width:155.370000px;}
.wb{width:162.930000px;}
.w11{width:167.790000px;}
.wa{width:190.650000px;}
.wc{width:195.330000px;}
.wd{width:195.510000px;}
.w6{width:220.935000px;}
.wf{width:227.010000px;}
.w8{width:251.175000px;}
.we{width:261.795000px;}
.w9{width:494.715000px;}
.w7{width:526.395000px;}
.w4{width:591.945000px;}
.w5{width:747.330000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.xb{left:55.836000px;}
.x2{left:72.900000px;}
.x1{left:80.999987px;}
.xe{left:91.290000px;}
.x3{left:98.130000px;}
.x20{left:108.035987px;}
.xc{left:135.390000px;}
.x14{left:197.849987px;}
.x18{left:206.489987px;}
.xf{left:215.175000px;}
.x4{left:228.270000px;}
.x11{left:237.449987px;}
.xd{left:241.455000px;}
.x15{left:264.630000px;}
.x1d{left:282.134987px;}
.x8{left:285.015000px;}
.x10{left:293.835000px;}
.x13{left:325.155000px;}
.x12{left:328.214987px;}
.x19{left:335.775000px;}
.x6{left:344.775000px;}
.x7{left:364.035000px;}
.xa{left:373.575000px;}
.x16{left:428.295000px;}
.x1e{left:446.474987px;}
.x9{left:452.280000px;}
.x1a{left:563.505000px;}
.x17{left:624.345000px;}
.x1b{left:652.065000px;}
.x1f{left:716.729987px;}
.x1c{left:727.169987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v4{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsc{letter-spacing:-4.160000pt;}
.lsd{letter-spacing:-3.520000pt;}
.lse{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.113067pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls5{letter-spacing:0.058880pt;}
.ls3{letter-spacing:0.117867pt;}
.ls7{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.480000pt;}
.ls6{letter-spacing:4.000000pt;}
.ls10{letter-spacing:14.672640pt;}
.lsf{letter-spacing:40.912640pt;}
.ls1{letter-spacing:603.712000pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.ws1{word-spacing:-14.656000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.ws8{word-spacing:-9.760000pt;}
.ws7{word-spacing:-9.120000pt;}
.ws4{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._10{margin-left:-6.428800pt;}
._5{margin-left:-3.027840pt;}
._3{margin-left:-2.096640pt;}
._0{margin-left:-1.062400pt;}
._1{width:0.946987pt;}
._2{width:2.508800pt;}
._6{width:3.533653pt;}
._4{width:4.469973pt;}
._7{width:5.418240pt;}
._1d{width:6.330453pt;}
._9{width:7.224320pt;}
._8{width:8.552320pt;}
._a{width:10.092800pt;}
._e{width:11.748693pt;}
._f{width:14.272853pt;}
._13{width:15.564160pt;}
._12{width:16.679680pt;}
._14{width:18.007680pt;}
._17{width:22.319573pt;}
._16{width:23.957120pt;}
._c{width:27.622400pt;}
._d{width:28.578560pt;}
._b{width:29.694080pt;}
._15{width:31.403093pt;}
._1f{width:34.678827pt;}
._1e{width:36.501973pt;}
._11{width:47.184427pt;}
._1b{width:49.410773pt;}
._1c{width:50.623360pt;}
._18{width:58.538240pt;}
._19{width:61.566080pt;}
._1a{width:151.029333pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:2.880000pt;}
.y18{bottom:3.200000pt;}
.ye{bottom:8.480000pt;}
.y5{bottom:10.239867pt;}
.y1a{bottom:11.040000pt;}
.y44{bottom:11.680000pt;}
.yc{bottom:12.320000pt;}
.y86{bottom:13.440000pt;}
.y88{bottom:13.600000pt;}
.y97{bottom:18.120000pt;}
.y3f{bottom:18.240000pt;}
.y46{bottom:18.880000pt;}
.y17{bottom:21.120000pt;}
.y8c{bottom:23.546667pt;}
.y43{bottom:24.800000pt;}
.yb{bottom:26.880000pt;}
.y4{bottom:29.760000pt;}
.y3e{bottom:33.600000pt;}
.y45{bottom:35.040000pt;}
.y16{bottom:35.840000pt;}
.y42{bottom:37.760000pt;}
.ya{bottom:41.280000pt;}
.y3d{bottom:48.960000pt;}
.y3{bottom:49.280000pt;}
.y15{bottom:49.920000pt;}
.y14{bottom:59.200000pt;}
.y3c{bottom:64.160000pt;}
.y9{bottom:65.146667pt;}
.y2{bottom:68.192000pt;}
.y13{bottom:73.760000pt;}
.y3b{bottom:79.520000pt;}
.y8{bottom:82.586667pt;}
.y12{bottom:85.920000pt;}
.y89{bottom:87.712000pt;}
.ya4{bottom:89.952000pt;}
.y3a{bottom:94.880000pt;}
.ycd{bottom:97.152000pt;}
.y7{bottom:98.906667pt;}
.y4f{bottom:99.712000pt;}
.ya3{bottom:106.752000pt;}
.y11{bottom:108.800000pt;}
.y39{bottom:110.240000pt;}
.ycc{bottom:112.512000pt;}
.y87{bottom:114.272000pt;}
.y4e{bottom:115.072000pt;}
.ya2{bottom:119.232000pt;}
.y38{bottom:125.600000pt;}
.ycb{bottom:127.872000pt;}
.y4d{bottom:130.272000pt;}
.y10{bottom:130.400000pt;}
.y37{bottom:140.960000pt;}
.y85{bottom:140.986667pt;}
.yca{bottom:143.226667pt;}
.y4c{bottom:145.626667pt;}
.y36{bottom:156.160000pt;}
.y4b{bottom:160.986667pt;}
.yc9{bottom:169.146667pt;}
.y84{bottom:170.586667pt;}
.y35{bottom:171.546667pt;}
.yc8{bottom:184.506667pt;}
.y83{bottom:185.786667pt;}
.y34{bottom:186.906667pt;}
.y27{bottom:196.506667pt;}
.yc7{bottom:199.866667pt;}
.y33{bottom:202.266667pt;}
.y26{bottom:209.466667pt;}
.y82{bottom:211.866667pt;}
.yc6{bottom:215.226667pt;}
.y32{bottom:217.626667pt;}
.y25{bottom:224.826667pt;}
.y81{bottom:227.226667pt;}
.yc5{bottom:230.426667pt;}
.y31{bottom:232.826667pt;}
.y4a{bottom:232.986667pt;}
.y24{bottom:240.186667pt;}
.y80{bottom:242.426667pt;}
.yc4{bottom:245.786667pt;}
.y30{bottom:248.186667pt;}
.y49{bottom:248.346667pt;}
.y23{bottom:255.386667pt;}
.y7f{bottom:257.786667pt;}
.yc3{bottom:261.146667pt;}
.y2f{bottom:263.546667pt;}
.y48{bottom:263.706667pt;}
.y22{bottom:270.746667pt;}
.y7e{bottom:273.146667pt;}
.yc2{bottom:276.506667pt;}
.y2e{bottom:278.906667pt;}
.y21{bottom:286.586667pt;}
.y7d{bottom:288.506667pt;}
.yeb{bottom:289.786667pt;}
.yc1{bottom:291.866667pt;}
.y2d{bottom:294.266667pt;}
.y20{bottom:302.106667pt;}
.y7c{bottom:303.906667pt;}
.yea{bottom:305.186667pt;}
.yc0{bottom:307.266667pt;}
.y2c{bottom:309.626667pt;}
.y47{bottom:310.306667pt;}
.y1f{bottom:317.466667pt;}
.y7b{bottom:319.266667pt;}
.ye9{bottom:320.546667pt;}
.y41{bottom:323.106667pt;}
.y2b{bottom:324.826667pt;}
.y1e{bottom:333.146667pt;}
.ybf{bottom:333.186667pt;}
.y7a{bottom:334.466667pt;}
.ye8{bottom:335.906667pt;}
.y2a{bottom:340.186667pt;}
.ybe{bottom:348.546667pt;}
.y79{bottom:349.826667pt;}
.ye7{bottom:351.266667pt;}
.y29{bottom:355.546667pt;}
.y1d{bottom:357.466667pt;}
.ybd{bottom:363.906667pt;}
.ya1{bottom:364.546667pt;}
.ye6{bottom:366.466667pt;}
.y28{bottom:370.906667pt;}
.y1b{bottom:370.946667pt;}
.y1c{bottom:373.306667pt;}
.y78{bottom:375.906667pt;}
.ybc{bottom:379.266667pt;}
.ya0{bottom:379.906667pt;}
.ye5{bottom:381.826667pt;}
.y77{bottom:391.266667pt;}
.y9f{bottom:392.386667pt;}
.ye4{bottom:397.186667pt;}
.ybb{bottom:405.186667pt;}
.y76{bottom:406.466667pt;}
.ye3{bottom:412.546667pt;}
.yba{bottom:420.546667pt;}
.y75{bottom:421.826667pt;}
.ye2{bottom:427.906667pt;}
.yb9{bottom:435.906667pt;}
.y74{bottom:437.186667pt;}
.ye1{bottom:443.266667pt;}
.y73{bottom:452.546667pt;}
.ye0{bottom:458.466667pt;}
.yb8{bottom:461.826667pt;}
.y72{bottom:467.906667pt;}
.ydf{bottom:473.826667pt;}
.yb7{bottom:477.186667pt;}
.y71{bottom:483.266667pt;}
.yde{bottom:489.186667pt;}
.yb6{bottom:492.546667pt;}
.y70{bottom:498.466667pt;}
.ydd{bottom:504.546667pt;}
.yb5{bottom:507.906667pt;}
.y6f{bottom:513.826667pt;}
.ydc{bottom:519.906667pt;}
.y6e{bottom:529.186667pt;}
.yb4{bottom:533.826667pt;}
.ydb{bottom:535.266667pt;}
.y6d{bottom:544.573333pt;}
.yb3{bottom:549.213333pt;}
.yda{bottom:550.493333pt;}
.y6c{bottom:559.933333pt;}
.yb2{bottom:564.573333pt;}
.yd9{bottom:565.853333pt;}
.y6b{bottom:575.133333pt;}
.yd8{bottom:581.213333pt;}
.yb1{bottom:590.493333pt;}
.yd7{bottom:596.573333pt;}
.y6a{bottom:601.213333pt;}
.yb0{bottom:605.853333pt;}
.yd6{bottom:611.933333pt;}
.y69{bottom:616.573333pt;}
.yaf{bottom:621.213333pt;}
.yd5{bottom:627.133333pt;}
.y68{bottom:631.933333pt;}
.yae{bottom:636.573333pt;}
.y9e{bottom:638.493333pt;}
.yd4{bottom:642.493333pt;}
.y67{bottom:647.133333pt;}
.y9d{bottom:651.613333pt;}
.yd3{bottom:657.853333pt;}
.y66{bottom:662.493333pt;}
.y9c{bottom:667.613333pt;}
.yd2{bottom:673.213333pt;}
.y65{bottom:677.853333pt;}
.y9b{bottom:683.613333pt;}
.yd1{bottom:688.573333pt;}
.yad{bottom:693.213333pt;}
.y9a{bottom:699.613333pt;}
.y64{bottom:703.773333pt;}
.yd0{bottom:703.933333pt;}
.yac{bottom:708.573333pt;}
.y99{bottom:715.613333pt;}
.y63{bottom:719.133333pt;}
.y62{bottom:734.493333pt;}
.y61{bottom:749.853333pt;}
.y98{bottom:750.973333pt;}
.y19{bottom:754.333333pt;}
.yab{bottom:765.213333pt;}
.y96{bottom:765.533333pt;}
.y60{bottom:775.813333pt;}
.yf{bottom:780.613333pt;}
.y5f{bottom:791.173333pt;}
.y95{bottom:796.773333pt;}
.y5e{bottom:806.533333pt;}
.y94{bottom:812.773333pt;}
.y5d{bottom:821.893333pt;}
.y93{bottom:828.773333pt;}
.y5c{bottom:837.253333pt;}
.y92{bottom:844.773333pt;}
.y5b{bottom:852.613333pt;}
.ycf{bottom:863.173333pt;}
.y5a{bottom:867.973333pt;}
.yaa{bottom:878.533333pt;}
.y91{bottom:879.493333pt;}
.y59{bottom:883.173333pt;}
.ya9{bottom:893.893333pt;}
.y90{bottom:897.093333pt;}
.y58{bottom:909.253333pt;}
.y8f{bottom:911.653333pt;}
.yd{bottom:924.453333pt;}
.y57{bottom:924.613333pt;}
.y8e{bottom:938.213333pt;}
.y56{bottom:939.813333pt;}
.y6{bottom:947.013333pt;}
.y55{bottom:955.173333pt;}
.y8d{bottom:964.933333pt;}
.ya8{bottom:965.893333pt;}
.y54{bottom:970.533333pt;}
.ya7{bottom:981.253333pt;}
.y53{bottom:985.893333pt;}
.y8b{bottom:991.653333pt;}
.yce{bottom:996.453333pt;}
.ya6{bottom:996.613333pt;}
.y52{bottom:1001.253333pt;}
.ya5{bottom:1011.840000pt;}
.y51{bottom:1027.200000pt;}
.y8a{bottom:1028.320000pt;}
.y50{bottom:1042.560000pt;}
.y1{bottom:1059.360000pt;}
.h25{height:15.360000pt;}
.h8{height:22.240000pt;}
.hc{height:24.000000pt;}
.he{height:25.750000pt;}
.h1f{height:25.920000pt;}
.h20{height:26.080000pt;}
.h11{height:26.272000pt;}
.h26{height:30.592000pt;}
.h24{height:30.720000pt;}
.hd{height:31.828125pt;}
.h5{height:32.160000pt;}
.h1c{height:32.411250pt;}
.h19{height:34.505000pt;}
.h21{height:36.032000pt;}
.h10{height:36.281250pt;}
.h1e{height:37.479688pt;}
.ha{height:39.113750pt;}
.h7{height:39.840000pt;}
.h1d{height:40.151250pt;}
.h15{height:40.685000pt;}
.h23{height:41.543750pt;}
.h16{height:41.750000pt;}
.h14{height:42.649687pt;}
.h17{height:43.782500pt;}
.h1a{height:44.327188pt;}
.h1b{height:47.840000pt;}
.h6{height:48.000000pt;}
.hf{height:49.045313pt;}
.h28{height:52.832812pt;}
.h18{height:52.834688pt;}
.h3{height:54.390938pt;}
.hb{height:56.160000pt;}
.h22{height:58.563750pt;}
.h27{height:62.485312pt;}
.h2{height:63.656250pt;}
.h12{height:65.531250pt;}
.h4{height:108.032000pt;}
.h9{height:143.840000pt;}
.h13{height:383.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:78.080000pt;}
.w3{width:138.106667pt;}
.wb{width:144.826667pt;}
.w11{width:149.146667pt;}
.wa{width:169.466667pt;}
.wc{width:173.626667pt;}
.wd{width:173.786667pt;}
.w6{width:196.386667pt;}
.wf{width:201.786667pt;}
.w8{width:223.266667pt;}
.we{width:232.706667pt;}
.w9{width:439.746667pt;}
.w7{width:467.906667pt;}
.w4{width:526.173333pt;}
.w5{width:664.293333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.xb{left:49.632000pt;}
.x2{left:64.800000pt;}
.x1{left:71.999988pt;}
.xe{left:81.146667pt;}
.x3{left:87.226667pt;}
.x20{left:96.031988pt;}
.xc{left:120.346667pt;}
.x14{left:175.866655pt;}
.x18{left:183.546655pt;}
.xf{left:191.266667pt;}
.x4{left:202.906667pt;}
.x11{left:211.066655pt;}
.xd{left:214.626667pt;}
.x15{left:235.226667pt;}
.x1d{left:250.786655pt;}
.x8{left:253.346667pt;}
.x10{left:261.186667pt;}
.x13{left:289.026667pt;}
.x12{left:291.746655pt;}
.x19{left:298.466667pt;}
.x6{left:306.466667pt;}
.x7{left:323.586667pt;}
.xa{left:332.066667pt;}
.x16{left:380.706667pt;}
.x1e{left:396.866655pt;}
.x9{left:402.026667pt;}
.x1a{left:500.893333pt;}
.x17{left:554.973333pt;}
.x1b{left:579.613333pt;}
.x1f{left:637.093322pt;}
.x1c{left:646.373322pt;}
}




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