
    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_dbc5b4fb4e9a5eb0671795aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.978027;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_56edc047f8fbac35c9f30434.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_7d255cbf19d93ec8a34aa809.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_2afaf76240aaaa226bf4747d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_38d8a683e8e74a66c24d23f3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls2{letter-spacing:-0.360000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.109440px;}
.lsa{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.900000px;}
.lsb{letter-spacing:1.620000px;}
.lsc{letter-spacing:16.506720px;}
.ls6{letter-spacing:46.026720px;}
.ls9{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-59.760000px;}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.580000px;}
.ws4{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._d{margin-left:-5.992320px;}
._e{margin-left:-3.908160px;}
._c{margin-left:-2.185920px;}
._b{margin-left:-1.074240px;}
._4{width:1.254960px;}
._f{width:2.783760px;}
._11{width:3.944160px;}
._36{width:4.960080px;}
._10{width:6.035760px;}
._16{width:7.888320px;}
._3{width:9.540000px;}
._19{width:10.800000px;}
._1{width:12.420000px;}
._15{width:13.924080px;}
._2d{width:16.015680px;}
._14{width:17.130240px;}
._13{width:18.763200px;}
._12{width:20.258640px;}
._21{width:21.513600px;}
._22{width:22.647600px;}
._29{width:24.143040px;}
._27{width:25.696800px;}
._1f{width:26.772480px;}
._1a{width:28.445760px;}
._1b{width:29.700720px;}
._2a{width:31.075200px;}
._1e{width:32.315040px;}
._1c{width:34.242480px;}
._17{width:35.258400px;}
._18{width:36.991440px;}
._24{width:38.306160px;}
._20{width:39.501360px;}
._3f{width:40.756320px;}
._28{width:41.772240px;}
._23{width:43.086960px;}
._2b{width:45.118800px;}
._1d{width:46.373760px;}
._25{width:47.389680px;}
._2f{width:48.764160px;}
._30{width:50.019120px;}
._31{width:51.154560px;}
._40{width:52.971120px;}
._34{width:54.142560px;}
._32{width:55.636560px;}
._3a{width:57.250080px;}
._2c{width:58.996080px;}
._26{width:61.433280px;}
._3b{width:62.867520px;}
._2e{width:69.584400px;}
._3d{width:72.429120px;}
._37{width:75.888000px;}
._3c{width:80.317440px;}
._41{width:81.691920px;}
._3e{width:83.305440px;}
._8{width:88.200000px;}
._6{width:97.380000px;}
._0{width:102.600000px;}
._9{width:108.180000px;}
._39{width:109.236240px;}
._38{width:110.257200px;}
._35{width:154.061280px;}
._2{width:165.060000px;}
._33{width:167.865840px;}
._5{width:183.960000px;}
._a{width:229.860000px;}
._7{width:296.820000px;}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(24,23,23);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(177,84,7);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,10);}
.fs0{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:4.680000px;}
.y2{bottom:5.400000px;}
.y11{bottom:5.580000px;}
.y3b{bottom:5.760000px;}
.ya8{bottom:5.940000px;}
.y10{bottom:7.020000px;}
.y39{bottom:8.640000px;}
.y1e{bottom:8.820000px;}
.y8{bottom:15.660000px;}
.yba{bottom:15.690000px;}
.ya4{bottom:15.840000px;}
.yd{bottom:16.380000px;}
.y2c{bottom:23.220000px;}
.yab{bottom:25.560000px;}
.ya1{bottom:25.740000px;}
.ybb{bottom:25.770000px;}
.y38{bottom:28.440000px;}
.yaa{bottom:35.460000px;}
.ya3{bottom:35.640000px;}
.y12{bottom:36.720000px;}
.y7{bottom:39.960000px;}
.y2b{bottom:41.760000px;}
.yc{bottom:45.180000px;}
.yac{bottom:45.360000px;}
.ya2{bottom:45.540000px;}
.yb3{bottom:45.570000px;}
.y37{bottom:48.240000px;}
.yf{bottom:52.380000px;}
.yaf{bottom:55.260000px;}
.ya6{bottom:55.440000px;}
.y2a{bottom:60.480000px;}
.y6{bottom:64.260000px;}
.ya7{bottom:65.340000px;}
.yb4{bottom:65.370000px;}
.y36{bottom:68.040000px;}
.yb{bottom:74.160000px;}
.yae{bottom:75.240000px;}
.y29{bottom:79.020000px;}
.yb0{bottom:85.140000px;}
.y5{bottom:85.530000px;}
.y9f{bottom:87.480000px;}
.y35{bottom:87.840000px;}
.y103{bottom:92.160000px;}
.ya{bottom:93.450000px;}
.yb5{bottom:95.580000px;}
.y4f{bottom:96.480000px;}
.y28{bottom:97.740000px;}
.ybc{bottom:98.460000px;}
.yf0{bottom:102.780000px;}
.y89{bottom:107.280000px;}
.y34{bottom:107.820000px;}
.y4{bottom:108.030000px;}
.y9{bottom:111.270000px;}
.y102{bottom:111.960000px;}
.yb2{bottom:113.760000px;}
.y27{bottom:116.280000px;}
.yef{bottom:122.580000px;}
.y88{bottom:127.080000px;}
.y33{bottom:127.650000px;}
.y3{bottom:127.830000px;}
.y101{bottom:131.760000px;}
.y26{bottom:134.850000px;}
.y4e{bottom:136.080000px;}
.yee{bottom:142.380000px;}
.yb9{bottom:142.560000px;}
.y87{bottom:146.880000px;}
.y32{bottom:147.450000px;}
.y100{bottom:151.560000px;}
.y25{bottom:153.570000px;}
.y4d{bottom:155.910000px;}
.yed{bottom:162.210000px;}
.y86{bottom:166.710000px;}
.y31{bottom:167.250000px;}
.yff{bottom:171.570000px;}
.y24{bottom:172.110000px;}
.y4c{bottom:175.710000px;}
.yec{bottom:182.190000px;}
.y85{bottom:186.690000px;}
.yb8{bottom:186.870000px;}
.y30{bottom:187.050000px;}
.y23{bottom:190.830000px;}
.yfe{bottom:191.370000px;}
.y4b{bottom:195.690000px;}
.yb1{bottom:197.670000px;}
.yeb{bottom:201.990000px;}
.y84{bottom:206.490000px;}
.y2f{bottom:206.850000px;}
.y22{bottom:209.370000px;}
.yfd{bottom:211.170000px;}
.y4a{bottom:215.490000px;}
.yea{bottom:221.790000px;}
.y83{bottom:226.290000px;}
.y2e{bottom:226.830000px;}
.y21{bottom:227.910000px;}
.yb7{bottom:230.970000px;}
.y49{bottom:235.290000px;}
.ye9{bottom:241.590000px;}
.y82{bottom:246.090000px;}
.y20{bottom:246.630000px;}
.yfc{bottom:250.770000px;}
.y48{bottom:255.090000px;}
.ye8{bottom:261.390000px;}
.y81{bottom:265.890000px;}
.yfb{bottom:270.750000px;}
.y47{bottom:274.890000px;}
.yb6{bottom:275.970000px;}
.ye7{bottom:281.370000px;}
.y80{bottom:285.870000px;}
.yfa{bottom:290.550000px;}
.y46{bottom:294.870000px;}
.ye6{bottom:301.170000px;}
.yad{bottom:301.350000px;}
.y7f{bottom:305.670000px;}
.yf9{bottom:310.350000px;}
.y45{bottom:314.670000px;}
.ye5{bottom:320.970000px;}
.y7e{bottom:325.470000px;}
.yf8{bottom:330.150000px;}
.y44{bottom:334.470000px;}
.ye4{bottom:340.770000px;}
.y7d{bottom:345.270000px;}
.yf7{bottom:349.950000px;}
.y43{bottom:354.270000px;}
.ye3{bottom:360.570000px;}
.y7c{bottom:365.070000px;}
.yf6{bottom:369.750000px;}
.y42{bottom:374.070000px;}
.ye2{bottom:380.550000px;}
.y7b{bottom:385.050000px;}
.yf5{bottom:390.810000px;}
.y41{bottom:394.050000px;}
.ye1{bottom:400.350000px;}
.y7a{bottom:404.895000px;}
.ya9{bottom:405.075000px;}
.yf4{bottom:411.735000px;}
.y40{bottom:413.895000px;}
.ye0{bottom:420.195000px;}
.y79{bottom:424.695000px;}
.yf3{bottom:431.535000px;}
.y3f{bottom:433.695000px;}
.ydf{bottom:439.995000px;}
.y78{bottom:444.495000px;}
.yf2{bottom:452.415000px;}
.y3e{bottom:453.495000px;}
.yde{bottom:459.795000px;}
.y77{bottom:464.295000px;}
.ya5{bottom:468.975000px;}
.yf1{bottom:472.215000px;}
.y3d{bottom:473.295000px;}
.ydd{bottom:479.775000px;}
.y76{bottom:484.275000px;}
.y3c{bottom:493.275000px;}
.ydc{bottom:499.575000px;}
.y75{bottom:504.075000px;}
.y3a{bottom:508.035000px;}
.y72{bottom:513.075000px;}
.ydb{bottom:519.375000px;}
.y74{bottom:523.875000px;}
.y1f{bottom:528.555000px;}
.y71{bottom:532.875000px;}
.yda{bottom:539.175000px;}
.y73{bottom:543.675000px;}
.y70{bottom:552.675000px;}
.ya0{bottom:553.575000px;}
.yd9{bottom:558.975000px;}
.y9e{bottom:563.475000px;}
.y6f{bottom:572.475000px;}
.yd8{bottom:578.955000px;}
.y9d{bottom:583.455000px;}
.y6e{bottom:592.455000px;}
.yd7{bottom:598.755000px;}
.y9c{bottom:603.255000px;}
.y6d{bottom:612.255000px;}
.yd6{bottom:618.555000px;}
.y9b{bottom:623.055000px;}
.y6c{bottom:632.055000px;}
.yd5{bottom:638.355000px;}
.y9a{bottom:642.855000px;}
.y6b{bottom:651.885000px;}
.yd4{bottom:658.185000px;}
.y99{bottom:662.685000px;}
.y6a{bottom:671.685000px;}
.yd3{bottom:678.165000px;}
.y98{bottom:682.665000px;}
.y69{bottom:691.665000px;}
.yd2{bottom:697.965000px;}
.y97{bottom:702.465000px;}
.y68{bottom:711.465000px;}
.yd1{bottom:717.765000px;}
.y96{bottom:722.265000px;}
.y67{bottom:731.265000px;}
.yd0{bottom:737.565000px;}
.y95{bottom:742.065000px;}
.y66{bottom:751.065000px;}
.ycf{bottom:757.365000px;}
.y94{bottom:761.865000px;}
.y65{bottom:770.865000px;}
.yce{bottom:777.345000px;}
.y93{bottom:781.845000px;}
.y1d{bottom:789.945000px;}
.y64{bottom:790.845000px;}
.ycd{bottom:797.145000px;}
.y92{bottom:801.645000px;}
.y63{bottom:810.645000px;}
.ycc{bottom:816.945000px;}
.y1c{bottom:819.465000px;}
.y91{bottom:821.445000px;}
.y62{bottom:830.445000px;}
.ycb{bottom:836.745000px;}
.y90{bottom:841.245000px;}
.y1b{bottom:844.485000px;}
.y61{bottom:850.245000px;}
.yca{bottom:856.545000px;}
.y8f{bottom:861.045000px;}
.y1a{bottom:864.285000px;}
.y60{bottom:870.045000px;}
.yc9{bottom:876.525000px;}
.y8e{bottom:881.025000px;}
.y19{bottom:884.085000px;}
.y5f{bottom:890.025000px;}
.yc8{bottom:896.325000px;}
.y18{bottom:898.710000px;}
.y8d{bottom:900.870000px;}
.y5e{bottom:909.870000px;}
.yc7{bottom:916.170000px;}
.y8c{bottom:920.670000px;}
.y17{bottom:923.910000px;}
.y5d{bottom:929.670000px;}
.yc6{bottom:935.970000px;}
.y16{bottom:939.750000px;}
.y8b{bottom:940.470000px;}
.y5c{bottom:949.470000px;}
.yc5{bottom:955.770000px;}
.y8a{bottom:960.270000px;}
.y15{bottom:962.250000px;}
.y5b{bottom:969.270000px;}
.yc4{bottom:975.750000px;}
.y14{bottom:985.650000px;}
.y5a{bottom:989.250000px;}
.yc3{bottom:995.550000px;}
.y59{bottom:1009.050000px;}
.yc2{bottom:1015.350000px;}
.y13{bottom:1017.510000px;}
.y58{bottom:1028.850000px;}
.yc1{bottom:1035.150000px;}
.ye{bottom:1044.330000px;}
.y57{bottom:1048.650000px;}
.yc0{bottom:1054.950000px;}
.y1{bottom:1066.650000px;}
.y56{bottom:1068.450000px;}
.ybf{bottom:1074.930000px;}
.y55{bottom:1088.430000px;}
.ybe{bottom:1093.110000px;}
.y54{bottom:1108.230000px;}
.ybd{bottom:1118.130000px;}
.y53{bottom:1128.030000px;}
.y52{bottom:1147.860000px;}
.y51{bottom:1174.500000px;}
.y50{bottom:1193.580000px;}
.h3{height:2.195156px;}
.h11{height:19.800000px;}
.ha{height:22.320000px;}
.hf{height:22.860000px;}
.he{height:34.855313px;}
.h18{height:39.600000px;}
.h1a{height:39.636000px;}
.h19{height:39.816000px;}
.h1b{height:45.549492px;}
.h8{height:48.410156px;}
.h4{height:53.077852px;}
.h6{height:53.573906px;}
.hb{height:59.383125px;}
.h14{height:59.400000px;}
.h12{height:59.580000px;}
.h5{height:63.949219px;}
.h7{height:64.546875px;}
.h9{height:65.884219px;}
.hc{height:66.605977px;}
.h13{height:79.380000px;}
.h17{height:79.416000px;}
.hd{height:85.052461px;}
.h16{height:99.180000px;}
.h15{height:99.216000px;}
.h2{height:141.876000px;}
.h10{height:260.670000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:52.560000px;}
.w15{width:52.596000px;}
.w6{width:52.776000px;}
.wd{width:75.456000px;}
.w13{width:84.816000px;}
.wf{width:84.960000px;}
.we{width:86.760000px;}
.wc{width:92.700000px;}
.w14{width:95.760000px;}
.w10{width:95.796000px;}
.wb{width:99.936000px;}
.w16{width:121.500000px;}
.w12{width:121.536000px;}
.w4{width:158.970000px;}
.w2{width:172.830000px;}
.w8{width:192.270000px;}
.w3{width:464.865000px;}
.w9{width:585.510000px;}
.w7{width:731.670000px;}
.wa{width:777.780000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:1.080000px;}
.x9{left:8.100000px;}
.x4{left:38.340000px;}
.x1{left:48.240000px;}
.xb{left:53.999987px;}
.x12{left:56.340000px;}
.xd{left:57.600000px;}
.xa{left:62.100000px;}
.x10{left:77.039987px;}
.x6{left:80.865000px;}
.xc{left:107.496000px;}
.x7{left:133.605000px;}
.x1b{left:143.316000px;}
.x14{left:158.430000px;}
.x2{left:161.130000px;}
.x3{left:221.070000px;}
.x1c{left:241.410000px;}
.x5{left:248.295000px;}
.xe{left:249.870000px;}
.x15{left:253.290000px;}
.x1d{left:296.175000px;}
.x16{left:330.915000px;}
.x11{left:398.414987px;}
.xf{left:473.144987px;}
.x17{left:475.305000px;}
.x1e{left:500.144987px;}
.x1f{left:527.144987px;}
.x18{left:562.425000px;}
.x19{left:660.570000px;}
.x8{left:685.950000px;}
.x1a{left:715.290000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls2{letter-spacing:-0.320000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.097280pt;}
.lsa{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.800000pt;}
.lsb{letter-spacing:1.440000pt;}
.lsc{letter-spacing:14.672640pt;}
.ls6{letter-spacing:40.912640pt;}
.ls9{letter-spacing:56.912640pt;}
.ws8{word-spacing:-53.120000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.960000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._d{margin-left:-5.326507pt;}
._e{margin-left:-3.473920pt;}
._c{margin-left:-1.943040pt;}
._b{margin-left:-0.954880pt;}
._4{width:1.115520pt;}
._f{width:2.474453pt;}
._11{width:3.505920pt;}
._36{width:4.408960pt;}
._10{width:5.365120pt;}
._16{width:7.011840pt;}
._3{width:8.480000pt;}
._19{width:9.600000pt;}
._1{width:11.040000pt;}
._15{width:12.376960pt;}
._2d{width:14.236160pt;}
._14{width:15.226880pt;}
._13{width:16.678400pt;}
._12{width:18.007680pt;}
._21{width:19.123200pt;}
._22{width:20.131200pt;}
._29{width:21.460480pt;}
._27{width:22.841600pt;}
._1f{width:23.797760pt;}
._1a{width:25.285120pt;}
._1b{width:26.400640pt;}
._2a{width:27.622400pt;}
._1e{width:28.724480pt;}
._1c{width:30.437760pt;}
._17{width:31.340800pt;}
._18{width:32.881280pt;}
._24{width:34.049920pt;}
._20{width:35.112320pt;}
._3f{width:36.227840pt;}
._28{width:37.130880pt;}
._23{width:38.299520pt;}
._2b{width:40.105600pt;}
._1d{width:41.221120pt;}
._25{width:42.124160pt;}
._2f{width:43.345920pt;}
._30{width:44.461440pt;}
._31{width:45.470720pt;}
._40{width:47.085440pt;}
._34{width:48.126720pt;}
._32{width:49.454720pt;}
._3a{width:50.888960pt;}
._2c{width:52.440960pt;}
._26{width:54.607360pt;}
._3b{width:55.882240pt;}
._2e{width:61.852800pt;}
._3d{width:64.381440pt;}
._37{width:67.456000pt;}
._3c{width:71.393280pt;}
._41{width:72.615040pt;}
._3e{width:74.049280pt;}
._8{width:78.400000pt;}
._6{width:86.560000pt;}
._0{width:91.200000pt;}
._9{width:96.160000pt;}
._39{width:97.098880pt;}
._38{width:98.006400pt;}
._35{width:136.943360pt;}
._2{width:146.720000pt;}
._33{width:149.214080pt;}
._5{width:163.520000pt;}
._a{width:204.320000pt;}
._7{width:263.840000pt;}
.fs0{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:4.160000pt;}
.y2{bottom:4.800000pt;}
.y11{bottom:4.960000pt;}
.y3b{bottom:5.120000pt;}
.ya8{bottom:5.280000pt;}
.y10{bottom:6.240000pt;}
.y39{bottom:7.680000pt;}
.y1e{bottom:7.840000pt;}
.y8{bottom:13.920000pt;}
.yba{bottom:13.946667pt;}
.ya4{bottom:14.080000pt;}
.yd{bottom:14.560000pt;}
.y2c{bottom:20.640000pt;}
.yab{bottom:22.720000pt;}
.ya1{bottom:22.880000pt;}
.ybb{bottom:22.906667pt;}
.y38{bottom:25.280000pt;}
.yaa{bottom:31.520000pt;}
.ya3{bottom:31.680000pt;}
.y12{bottom:32.640000pt;}
.y7{bottom:35.520000pt;}
.y2b{bottom:37.120000pt;}
.yc{bottom:40.160000pt;}
.yac{bottom:40.320000pt;}
.ya2{bottom:40.480000pt;}
.yb3{bottom:40.506667pt;}
.y37{bottom:42.880000pt;}
.yf{bottom:46.560000pt;}
.yaf{bottom:49.120000pt;}
.ya6{bottom:49.280000pt;}
.y2a{bottom:53.760000pt;}
.y6{bottom:57.120000pt;}
.ya7{bottom:58.080000pt;}
.yb4{bottom:58.106667pt;}
.y36{bottom:60.480000pt;}
.yb{bottom:65.920000pt;}
.yae{bottom:66.880000pt;}
.y29{bottom:70.240000pt;}
.yb0{bottom:75.680000pt;}
.y5{bottom:76.026667pt;}
.y9f{bottom:77.760000pt;}
.y35{bottom:78.080000pt;}
.y103{bottom:81.920000pt;}
.ya{bottom:83.066667pt;}
.yb5{bottom:84.960000pt;}
.y4f{bottom:85.760000pt;}
.y28{bottom:86.880000pt;}
.ybc{bottom:87.520000pt;}
.yf0{bottom:91.360000pt;}
.y89{bottom:95.360000pt;}
.y34{bottom:95.840000pt;}
.y4{bottom:96.026667pt;}
.y9{bottom:98.906667pt;}
.y102{bottom:99.520000pt;}
.yb2{bottom:101.120000pt;}
.y27{bottom:103.360000pt;}
.yef{bottom:108.960000pt;}
.y88{bottom:112.960000pt;}
.y33{bottom:113.466667pt;}
.y3{bottom:113.626667pt;}
.y101{bottom:117.120000pt;}
.y26{bottom:119.866667pt;}
.y4e{bottom:120.960000pt;}
.yee{bottom:126.560000pt;}
.yb9{bottom:126.720000pt;}
.y87{bottom:130.560000pt;}
.y32{bottom:131.066667pt;}
.y100{bottom:134.720000pt;}
.y25{bottom:136.506667pt;}
.y4d{bottom:138.586667pt;}
.yed{bottom:144.186667pt;}
.y86{bottom:148.186667pt;}
.y31{bottom:148.666667pt;}
.yff{bottom:152.506667pt;}
.y24{bottom:152.986667pt;}
.y4c{bottom:156.186667pt;}
.yec{bottom:161.946667pt;}
.y85{bottom:165.946667pt;}
.yb8{bottom:166.106667pt;}
.y30{bottom:166.266667pt;}
.y23{bottom:169.626667pt;}
.yfe{bottom:170.106667pt;}
.y4b{bottom:173.946667pt;}
.yb1{bottom:175.706667pt;}
.yeb{bottom:179.546667pt;}
.y84{bottom:183.546667pt;}
.y2f{bottom:183.866667pt;}
.y22{bottom:186.106667pt;}
.yfd{bottom:187.706667pt;}
.y4a{bottom:191.546667pt;}
.yea{bottom:197.146667pt;}
.y83{bottom:201.146667pt;}
.y2e{bottom:201.626667pt;}
.y21{bottom:202.586667pt;}
.yb7{bottom:205.306667pt;}
.y49{bottom:209.146667pt;}
.ye9{bottom:214.746667pt;}
.y82{bottom:218.746667pt;}
.y20{bottom:219.226667pt;}
.yfc{bottom:222.906667pt;}
.y48{bottom:226.746667pt;}
.ye8{bottom:232.346667pt;}
.y81{bottom:236.346667pt;}
.yfb{bottom:240.666667pt;}
.y47{bottom:244.346667pt;}
.yb6{bottom:245.306667pt;}
.ye7{bottom:250.106667pt;}
.y80{bottom:254.106667pt;}
.yfa{bottom:258.266667pt;}
.y46{bottom:262.106667pt;}
.ye6{bottom:267.706667pt;}
.yad{bottom:267.866667pt;}
.y7f{bottom:271.706667pt;}
.yf9{bottom:275.866667pt;}
.y45{bottom:279.706667pt;}
.ye5{bottom:285.306667pt;}
.y7e{bottom:289.306667pt;}
.yf8{bottom:293.466667pt;}
.y44{bottom:297.306667pt;}
.ye4{bottom:302.906667pt;}
.y7d{bottom:306.906667pt;}
.yf7{bottom:311.066667pt;}
.y43{bottom:314.906667pt;}
.ye3{bottom:320.506667pt;}
.y7c{bottom:324.506667pt;}
.yf6{bottom:328.666667pt;}
.y42{bottom:332.506667pt;}
.ye2{bottom:338.266667pt;}
.y7b{bottom:342.266667pt;}
.yf5{bottom:347.386667pt;}
.y41{bottom:350.266667pt;}
.ye1{bottom:355.866667pt;}
.y7a{bottom:359.906667pt;}
.ya9{bottom:360.066667pt;}
.yf4{bottom:365.986667pt;}
.y40{bottom:367.906667pt;}
.ye0{bottom:373.506667pt;}
.y79{bottom:377.506667pt;}
.yf3{bottom:383.586667pt;}
.y3f{bottom:385.506667pt;}
.ydf{bottom:391.106667pt;}
.y78{bottom:395.106667pt;}
.yf2{bottom:402.146667pt;}
.y3e{bottom:403.106667pt;}
.yde{bottom:408.706667pt;}
.y77{bottom:412.706667pt;}
.ya5{bottom:416.866667pt;}
.yf1{bottom:419.746667pt;}
.y3d{bottom:420.706667pt;}
.ydd{bottom:426.466667pt;}
.y76{bottom:430.466667pt;}
.y3c{bottom:438.466667pt;}
.ydc{bottom:444.066667pt;}
.y75{bottom:448.066667pt;}
.y3a{bottom:451.586667pt;}
.y72{bottom:456.066667pt;}
.ydb{bottom:461.666667pt;}
.y74{bottom:465.666667pt;}
.y1f{bottom:469.826667pt;}
.y71{bottom:473.666667pt;}
.yda{bottom:479.266667pt;}
.y73{bottom:483.266667pt;}
.y70{bottom:491.266667pt;}
.ya0{bottom:492.066667pt;}
.yd9{bottom:496.866667pt;}
.y9e{bottom:500.866667pt;}
.y6f{bottom:508.866667pt;}
.yd8{bottom:514.626667pt;}
.y9d{bottom:518.626667pt;}
.y6e{bottom:526.626667pt;}
.yd7{bottom:532.226667pt;}
.y9c{bottom:536.226667pt;}
.y6d{bottom:544.226667pt;}
.yd6{bottom:549.826667pt;}
.y9b{bottom:553.826667pt;}
.y6c{bottom:561.826667pt;}
.yd5{bottom:567.426667pt;}
.y9a{bottom:571.426667pt;}
.y6b{bottom:579.453333pt;}
.yd4{bottom:585.053333pt;}
.y99{bottom:589.053333pt;}
.y6a{bottom:597.053333pt;}
.yd3{bottom:602.813333pt;}
.y98{bottom:606.813333pt;}
.y69{bottom:614.813333pt;}
.yd2{bottom:620.413333pt;}
.y97{bottom:624.413333pt;}
.y68{bottom:632.413333pt;}
.yd1{bottom:638.013333pt;}
.y96{bottom:642.013333pt;}
.y67{bottom:650.013333pt;}
.yd0{bottom:655.613333pt;}
.y95{bottom:659.613333pt;}
.y66{bottom:667.613333pt;}
.ycf{bottom:673.213333pt;}
.y94{bottom:677.213333pt;}
.y65{bottom:685.213333pt;}
.yce{bottom:690.973333pt;}
.y93{bottom:694.973333pt;}
.y1d{bottom:702.173333pt;}
.y64{bottom:702.973333pt;}
.ycd{bottom:708.573333pt;}
.y92{bottom:712.573333pt;}
.y63{bottom:720.573333pt;}
.ycc{bottom:726.173333pt;}
.y1c{bottom:728.413333pt;}
.y91{bottom:730.173333pt;}
.y62{bottom:738.173333pt;}
.ycb{bottom:743.773333pt;}
.y90{bottom:747.773333pt;}
.y1b{bottom:750.653333pt;}
.y61{bottom:755.773333pt;}
.yca{bottom:761.373333pt;}
.y8f{bottom:765.373333pt;}
.y1a{bottom:768.253333pt;}
.y60{bottom:773.373333pt;}
.yc9{bottom:779.133333pt;}
.y8e{bottom:783.133333pt;}
.y19{bottom:785.853333pt;}
.y5f{bottom:791.133333pt;}
.yc8{bottom:796.733333pt;}
.y18{bottom:798.853333pt;}
.y8d{bottom:800.773333pt;}
.y5e{bottom:808.773333pt;}
.yc7{bottom:814.373333pt;}
.y8c{bottom:818.373333pt;}
.y17{bottom:821.253333pt;}
.y5d{bottom:826.373333pt;}
.yc6{bottom:831.973333pt;}
.y16{bottom:835.333333pt;}
.y8b{bottom:835.973333pt;}
.y5c{bottom:843.973333pt;}
.yc5{bottom:849.573333pt;}
.y8a{bottom:853.573333pt;}
.y15{bottom:855.333333pt;}
.y5b{bottom:861.573333pt;}
.yc4{bottom:867.333333pt;}
.y14{bottom:876.133333pt;}
.y5a{bottom:879.333333pt;}
.yc3{bottom:884.933333pt;}
.y59{bottom:896.933333pt;}
.yc2{bottom:902.533333pt;}
.y13{bottom:904.453333pt;}
.y58{bottom:914.533333pt;}
.yc1{bottom:920.133333pt;}
.ye{bottom:928.293333pt;}
.y57{bottom:932.133333pt;}
.yc0{bottom:937.733333pt;}
.y1{bottom:948.133333pt;}
.y56{bottom:949.733333pt;}
.ybf{bottom:955.493333pt;}
.y55{bottom:967.493333pt;}
.ybe{bottom:971.653333pt;}
.y54{bottom:985.093333pt;}
.ybd{bottom:993.893333pt;}
.y53{bottom:1002.693333pt;}
.y52{bottom:1020.320000pt;}
.y51{bottom:1044.000000pt;}
.y50{bottom:1060.960000pt;}
.h3{height:1.951250pt;}
.h11{height:17.600000pt;}
.ha{height:19.840000pt;}
.hf{height:20.320000pt;}
.he{height:30.982500pt;}
.h18{height:35.200000pt;}
.h1a{height:35.232000pt;}
.h19{height:35.392000pt;}
.h1b{height:40.488438pt;}
.h8{height:43.031250pt;}
.h4{height:47.180312pt;}
.h6{height:47.621250pt;}
.hb{height:52.785000pt;}
.h14{height:52.800000pt;}
.h12{height:52.960000pt;}
.h5{height:56.843750pt;}
.h7{height:57.375000pt;}
.h9{height:58.563750pt;}
.hc{height:59.205313pt;}
.h13{height:70.560000pt;}
.h17{height:70.592000pt;}
.hd{height:75.602187pt;}
.h16{height:88.160000pt;}
.h15{height:88.192000pt;}
.h2{height:126.112000pt;}
.h10{height:231.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:46.720000pt;}
.w15{width:46.752000pt;}
.w6{width:46.912000pt;}
.wd{width:67.072000pt;}
.w13{width:75.392000pt;}
.wf{width:75.520000pt;}
.we{width:77.120000pt;}
.wc{width:82.400000pt;}
.w14{width:85.120000pt;}
.w10{width:85.152000pt;}
.wb{width:88.832000pt;}
.w16{width:108.000000pt;}
.w12{width:108.032000pt;}
.w4{width:141.306667pt;}
.w2{width:153.626667pt;}
.w8{width:170.906667pt;}
.w3{width:413.213333pt;}
.w9{width:520.453333pt;}
.w7{width:650.373333pt;}
.wa{width:691.360000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:0.960000pt;}
.x9{left:7.200000pt;}
.x4{left:34.080000pt;}
.x1{left:42.880000pt;}
.xb{left:47.999988pt;}
.x12{left:50.080000pt;}
.xd{left:51.200000pt;}
.xa{left:55.200000pt;}
.x10{left:68.479988pt;}
.x6{left:71.880000pt;}
.xc{left:95.552000pt;}
.x7{left:118.760000pt;}
.x1b{left:127.392000pt;}
.x14{left:140.826667pt;}
.x2{left:143.226667pt;}
.x3{left:196.506667pt;}
.x1c{left:214.586667pt;}
.x5{left:220.706667pt;}
.xe{left:222.106667pt;}
.x15{left:225.146667pt;}
.x1d{left:263.266667pt;}
.x16{left:294.146667pt;}
.x11{left:354.146655pt;}
.xf{left:420.573322pt;}
.x17{left:422.493333pt;}
.x1e{left:444.573322pt;}
.x1f{left:468.573322pt;}
.x18{left:499.933333pt;}
.x19{left:587.173333pt;}
.x8{left:609.733333pt;}
.x1a{left:635.813333pt;}
}




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