
    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_c1e13ee1cdf6bbe69ea6aa8c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120000;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_6193fc93719873dbca485474.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6448da9e57adb2fd9ec4b6a1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120000;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.854004;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_cbb3b18d054bc07d6155c451.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104000;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8034e87704b6e3e1a2e1e4c3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104000;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_6dbbe303112aa983a9dc0d80.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.087891;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_5384d477d347d5829c39b417.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.080000;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_09b7c27b8c7868d4246b4e63.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_bf040a9396e10760f29c9953.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.087891;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f52a4dc9cf0ab4beb7921af4.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.080000;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_aca1696f3dc1d6a77fb730ee.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.828000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.008640px;}
.lsa{letter-spacing:0.062400px;}
.ls11{letter-spacing:0.066240px;}
.ls7{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.129600px;}
.ls3{letter-spacing:0.157200px;}
.lsf{letter-spacing:0.252000px;}
.ls8{letter-spacing:0.288000px;}
.ls10{letter-spacing:16.901280px;}
.lsb{letter-spacing:33.858720px;}
.lsd{letter-spacing:45.701280px;}
.ls4{letter-spacing:71.040000px;}
.ls2{letter-spacing:132.984000px;}
.ls6{letter-spacing:834.276000px;}
.ls1{letter-spacing:840.881280px;}
.ls9{letter-spacing:845.885280px;}
.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;}
}
.ws1{word-spacing:-49.896000px;}
.ws7{word-spacing:-25.920000px;}
.ws9{word-spacing:-25.236000px;}
.ws3{word-spacing:-25.056000px;}
.ws2{word-spacing:-24.948000px;}
.wsb{word-spacing:-22.120560px;}
.ws5{word-spacing:-19.616640px;}
.ws4{word-spacing:-19.468080px;}
.ws6{word-spacing:-19.459440px;}
.ws8{word-spacing:-16.632000px;}
.wsa{word-spacing:-10.962000px;}
.ws0{word-spacing:0.000000px;}
._8{margin-left:-19.127040px;}
._4{margin-left:-17.692800px;}
._7{margin-left:-13.111440px;}
._2{margin-left:-12.092640px;}
._9{margin-left:-10.061760px;}
._d{margin-left:-7.704240px;}
._2f{margin-left:-6.414480px;}
._22{margin-left:-5.307120px;}
._6{margin-left:-4.296480px;}
._1{margin-left:-3.095760px;}
._0{margin-left:-1.560960px;}
._3{width:1.101360px;}
._5{width:2.391120px;}
._20{width:3.445440px;}
._10{width:4.450080px;}
._12{width:5.469120px;}
._1e{width:6.516960px;}
._28{width:7.665840px;}
._f{width:8.805600px;}
._e{width:9.940320px;}
._26{width:10.951200px;}
._13{width:11.980320px;}
._29{width:14.766720px;}
._1a{width:16.020960px;}
._19{width:17.382720px;}
._2a{width:18.659280px;}
._b{width:20.518800px;}
._a{width:21.818400px;}
._16{width:23.418720px;}
._23{width:24.429600px;}
._11{width:26.035920px;}
._c{width:27.068880px;}
._27{width:28.221120px;}
._15{width:30.073680px;}
._14{width:31.590000px;}
._18{width:32.600880px;}
._17{width:33.611760px;}
._1f{width:35.216640px;}
._21{width:38.205360px;}
._1d{width:39.340080px;}
._1b{width:41.614560px;}
._1c{width:43.238640px;}
._2b{width:47.427120px;}
._24{width:48.943440px;}
._25{width:49.998960px;}
._2d{width:59.978880px;}
._2e{width:61.034400px;}
._2c{width:83.060640px;}
.fc4{color:rgb(70,120,134);}
.fc3{color:rgb(14,40,65);}
.fc2{color:rgb(0,76,62);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.yaa{bottom:16.560000px;}
.yb8{bottom:16.740000px;}
.y6c{bottom:18.540000px;}
.y55{bottom:18.720000px;}
.y7{bottom:25.200000px;}
.yb4{bottom:28.620000px;}
.y6b{bottom:35.100000px;}
.y54{bottom:35.280000px;}
.yad{bottom:36.900000px;}
.yac{bottom:37.080000px;}
.yb3{bottom:48.780000px;}
.yb2{bottom:48.960000px;}
.yaf{bottom:57.420000px;}
.y1{bottom:64.836000px;}
.yb7{bottom:77.940000px;}
.yb6{bottom:78.120000px;}
.y6a{bottom:85.356000px;}
.y43{bottom:89.856000px;}
.ye3{bottom:111.996000px;}
.y42{bottom:117.576000px;}
.yc8{bottom:119.916000px;}
.y24{bottom:124.956000px;}
.y107{bottom:129.636000px;}
.ye2{bottom:137.916000px;}
.y41{bottom:145.296000px;}
.yc7{bottom:146.016000px;}
.ya6{bottom:146.196000px;}
.y106{bottom:155.730000px;}
.y87{bottom:158.610000px;}
.y53{bottom:166.350000px;}
.y23{bottom:168.870000px;}
.yc6{bottom:172.110000px;}
.ya5{bottom:174.090000px;}
.ye1{bottom:176.070000px;}
.y105{bottom:181.830000px;}
.y40{bottom:183.450000px;}
.y86{bottom:186.330000px;}
.y22{bottom:194.970000px;}
.ya4{bottom:201.810000px;}
.ye0{bottom:201.990000px;}
.y104{bottom:207.750000px;}
.yc5{bottom:210.090000px;}
.y85{bottom:214.050000px;}
.y3f{bottom:216.930000px;}
.y21{bottom:220.890000px;}
.y56{bottom:227.190000px;}
.ydf{bottom:228.090000px;}
.ye4{bottom:228.450000px;}
.ya3{bottom:229.530000px;}
.y103{bottom:233.850000px;}
.yc4{bottom:236.190000px;}
.y84{bottom:241.950000px;}
.yde{bottom:254.190000px;}
.ya2{bottom:257.250000px;}
.y20{bottom:259.050000px;}
.yc3{bottom:262.110000px;}
.y83{bottom:269.670000px;}
.y102{bottom:271.830000px;}
.y3e{bottom:277.590000px;}
.ya1{bottom:285.015000px;}
.yc2{bottom:288.255000px;}
.y1f{bottom:288.795000px;}
.ydd{bottom:292.215000px;}
.y82{bottom:297.435000px;}
.y3d{bottom:305.355000px;}
.y101{bottom:305.535000px;}
.ya0{bottom:312.735000px;}
.yc1{bottom:314.355000px;}
.y81{bottom:325.155000px;}
.ydc{bottom:330.195000px;}
.y3c{bottom:333.255000px;}
.y1e{bottom:340.275000px;}
.y9f{bottom:340.635000px;}
.y80{bottom:352.875000px;}
.ydb{bottom:356.295000px;}
.y3b{bottom:360.975000px;}
.y100{bottom:364.395000px;}
.yc0{bottom:366.375000px;}
.y9e{bottom:368.355000px;}
.y1d{bottom:372.135000px;}
.y7f{bottom:381.675000px;}
.yda{bottom:382.395000px;}
.y3a{bottom:388.695000px;}
.y9d{bottom:396.075000px;}
.y1c{bottom:398.235000px;}
.yff{bottom:402.555000px;}
.ybf{bottom:404.355000px;}
.yd9{bottom:408.315000px;}
.y7e{bottom:409.395000px;}
.y39{bottom:416.415000px;}
.y9c{bottom:423.795000px;}
.y1b{bottom:424.335000px;}
.yfe{bottom:428.475000px;}
.ybe{bottom:430.455000px;}
.yd8{bottom:434.415000px;}
.y7d{bottom:437.115000px;}
.y38{bottom:444.135000px;}
.y1a{bottom:450.255000px;}
.y9b{bottom:451.515000px;}
.yfd{bottom:454.575000px;}
.ybd{bottom:456.555000px;}
.yd7{bottom:460.515000px;}
.y69{bottom:463.755000px;}
.y7c{bottom:464.835000px;}
.y37{bottom:471.855000px;}
.y19{bottom:476.355000px;}
.y9a{bottom:479.235000px;}
.yfc{bottom:480.675000px;}
.ybc{bottom:482.475000px;}
.y68{bottom:486.795000px;}
.y7b{bottom:492.555000px;}
.yd6{bottom:498.495000px;}
.y36{bottom:499.755000px;}
.y18{bottom:502.455000px;}
.yfb{bottom:506.595000px;}
.y99{bottom:507.135000px;}
.y67{bottom:514.515000px;}
.y7a{bottom:520.275000px;}
.ybb{bottom:520.635000px;}
.yd5{bottom:524.595000px;}
.y35{bottom:527.475000px;}
.yfa{bottom:532.695000px;}
.y98{bottom:534.855000px;}
.y17{bottom:540.435000px;}
.y66{bottom:542.235000px;}
.y79{bottom:548.175000px;}
.yd4{bottom:550.515000px;}
.yba{bottom:554.295000px;}
.yf9{bottom:558.795000px;}
.y97{bottom:562.575000px;}
.y34{bottom:567.285000px;}
.y65{bottom:569.985000px;}
.y16{bottom:570.345000px;}
.yd3{bottom:576.645000px;}
.y78{bottom:576.825000px;}
.yf8{bottom:584.745000px;}
.y33{bottom:595.005000px;}
.y64{bottom:597.885000px;}
.y96{bottom:600.585000px;}
.y77{bottom:604.545000px;}
.yb9{bottom:607.965000px;}
.y52{bottom:611.025000px;}
.yd2{bottom:614.625000px;}
.y15{bottom:621.825000px;}
.y32{bottom:622.725000px;}
.yf7{bottom:622.905000px;}
.y63{bottom:625.605000px;}
.y76{bottom:632.265000px;}
.y95{bottom:634.245000px;}
.y51{bottom:638.745000px;}
.yd1{bottom:640.725000px;}
.y31{bottom:650.445000px;}
.y62{bottom:653.325000px;}
.y14{bottom:655.485000px;}
.yf6{bottom:656.385000px;}
.y75{bottom:659.985000px;}
.yb5{bottom:661.605000px;}
.y50{bottom:666.465000px;}
.yd0{bottom:666.825000px;}
.y94{bottom:667.905000px;}
.y30{bottom:678.165000px;}
.y74{bottom:687.885000px;}
.y13{bottom:688.965000px;}
.y61{bottom:691.305000px;}
.ycf{bottom:692.745000px;}
.y4f{bottom:694.185000px;}
.yea{bottom:702.825000px;}
.y2f{bottom:705.885000px;}
.yf5{bottom:715.425000px;}
.y73{bottom:715.605000px;}
.y4e{bottom:722.085000px;}
.y12{bottom:722.445000px;}
.y93{bottom:726.585000px;}
.y60{bottom:727.125000px;}
.yce{bottom:730.905000px;}
.y2e{bottom:733.605000px;}
.ye9{bottom:740.805000px;}
.y72{bottom:743.325000px;}
.y4d{bottom:749.805000px;}
.yf4{bottom:753.405000px;}
.y10c{bottom:754.845000px;}
.y11{bottom:756.105000px;}
.yb1{bottom:756.285000px;}
.y2d{bottom:761.505000px;}
.y92{bottom:764.565000px;}
.ye8{bottom:766.905000px;}
.ycd{bottom:768.885000px;}
.y71{bottom:771.045000px;}
.y4c{bottom:777.525000px;}
.yf3{bottom:779.505000px;}
.y10b{bottom:780.945000px;}
.y5f{bottom:785.985000px;}
.y2c{bottom:789.225000px;}
.y10{bottom:789.585000px;}
.y91{bottom:790.665000px;}
.ycc{bottom:794.985000px;}
.ye7{bottom:804.885000px;}
.yf2{bottom:805.425000px;}
.y10a{bottom:806.865000px;}
.y70{bottom:810.105000px;}
.yf{bottom:815.685000px;}
.y90{bottom:816.765000px;}
.y2b{bottom:816.945000px;}
.y4b{bottom:817.305000px;}
.yb0{bottom:821.985000px;}
.y5e{bottom:825.765000px;}
.ye6{bottom:830.985000px;}
.yf1{bottom:831.525000px;}
.ycb{bottom:832.965000px;}
.y6f{bottom:842.145000px;}
.y8f{bottom:843.765000px;}
.y2a{bottom:844.665000px;}
.y4a{bottom:845.025000px;}
.ye{bottom:849.210000px;}
.y5d{bottom:853.530000px;}
.yae{bottom:855.150000px;}
.ye5{bottom:856.950000px;}
.yf0{bottom:857.670000px;}
.y6{bottom:867.030000px;}
.y8e{bottom:869.730000px;}
.yca{bottom:870.990000px;}
.y49{bottom:872.790000px;}
.yd{bottom:875.310000px;}
.y5c{bottom:881.430000px;}
.y6e{bottom:883.050000px;}
.y29{bottom:884.490000px;}
.yef{bottom:895.650000px;}
.y8d{bottom:895.830000px;}
.y48{bottom:900.510000px;}
.yc{bottom:908.790000px;}
.y5b{bottom:909.150000px;}
.y6d{bottom:921.030000px;}
.yee{bottom:921.750000px;}
.y8c{bottom:921.930000px;}
.y28{bottom:923.190000px;}
.y47{bottom:928.230000px;}
.yab{bottom:929.310000px;}
.y5{bottom:932.010000px;}
.yc9{bottom:935.070000px;}
.yb{bottom:942.270000px;}
.y5a{bottom:947.130000px;}
.yed{bottom:947.670000px;}
.y8b{bottom:948.030000px;}
.y109{bottom:961.170000px;}
.y27{bottom:962.250000px;}
.y46{bottom:968.010000px;}
.y4{bottom:971.790000px;}
.y59{bottom:973.230000px;}
.yec{bottom:973.770000px;}
.ya{bottom:975.930000px;}
.ya9{bottom:982.950000px;}
.y8a{bottom:986.910000px;}
.y108{bottom:987.270000px;}
.y45{bottom:995.730000px;}
.y58{bottom:999.150000px;}
.y26{bottom:1009.770000px;}
.y3{bottom:1011.570000px;}
.yeb{bottom:1011.750000px;}
.y9{bottom:1015.530000px;}
.y89{bottom:1020.750000px;}
.y44{bottom:1023.630000px;}
.y57{bottom:1025.250000px;}
.ya8{bottom:1035.870000px;}
.y8{bottom:1045.410000px;}
.y25{bottom:1045.590000px;}
.y88{bottom:1048.290000px;}
.y2{bottom:1051.350000px;}
.ya7{bottom:1056.030000px;}
.hb{height:31.500000px;}
.hf{height:32.400000px;}
.h14{height:32.436000px;}
.h9{height:46.669922px;}
.h8{height:47.880000px;}
.ha{height:48.168000px;}
.h11{height:52.920000px;}
.hd{height:57.248437px;}
.h10{height:60.675840px;}
.h12{height:61.735680px;}
.h15{height:64.800000px;}
.h7{height:67.104000px;}
.h13{height:73.440000px;}
.hc{height:75.142080px;}
.h3{height:77.040000px;}
.h2{height:78.511680px;}
.he{height:89.248320px;}
.h16{height:93.960000px;}
.h6{height:98.928000px;}
.h5{height:100.656000px;}
.h4{height:201.312000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:137.556000px;}
.w4{width:218.730000px;}
.w8{width:243.930000px;}
.w3{width:321.735000px;}
.w5{width:333.255000px;}
.w9{width:382.035000px;}
.w6{width:423.795000px;}
.wa{width:678.525000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.740000px;}
.xc{left:63.720000px;}
.x1{left:84.959987px;}
.x3{left:92.565000px;}
.x4{left:101.555987px;}
.x10{left:107.316000px;}
.x5{left:111.995987px;}
.x9{left:116.495987px;}
.x6{left:138.996000px;}
.xa{left:143.495987px;}
.xb{left:165.989987px;}
.xe{left:201.990000px;}
.x8{left:234.570000px;}
.x2{left:285.690000px;}
.xf{left:446.655000px;}
.x7{left:447.735000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.736000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.007680pt;}
.lsa{letter-spacing:0.055467pt;}
.ls11{letter-spacing:0.058880pt;}
.ls7{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.115200pt;}
.ls3{letter-spacing:0.139733pt;}
.lsf{letter-spacing:0.224000pt;}
.ls8{letter-spacing:0.256000pt;}
.ls10{letter-spacing:15.023360pt;}
.lsb{letter-spacing:30.096640pt;}
.lsd{letter-spacing:40.623360pt;}
.ls4{letter-spacing:63.146667pt;}
.ls2{letter-spacing:118.208000pt;}
.ls6{letter-spacing:741.578667pt;}
.ls1{letter-spacing:747.450027pt;}
.ls9{letter-spacing:751.898027pt;}
.ws1{word-spacing:-44.352000pt;}
.ws7{word-spacing:-23.040000pt;}
.ws9{word-spacing:-22.432000pt;}
.ws3{word-spacing:-22.272000pt;}
.ws2{word-spacing:-22.176000pt;}
.wsb{word-spacing:-19.662720pt;}
.ws5{word-spacing:-17.437013pt;}
.ws4{word-spacing:-17.304960pt;}
.ws6{word-spacing:-17.297280pt;}
.ws8{word-spacing:-14.784000pt;}
.wsa{word-spacing:-9.744000pt;}
.ws0{word-spacing:0.000000pt;}
._8{margin-left:-17.001813pt;}
._4{margin-left:-15.726933pt;}
._7{margin-left:-11.654613pt;}
._2{margin-left:-10.749013pt;}
._9{margin-left:-8.943787pt;}
._d{margin-left:-6.848213pt;}
._2f{margin-left:-5.701760pt;}
._22{margin-left:-4.717440pt;}
._6{margin-left:-3.819093pt;}
._1{margin-left:-2.751787pt;}
._0{margin-left:-1.387520pt;}
._3{width:0.978987pt;}
._5{width:2.125440pt;}
._20{width:3.062613pt;}
._10{width:3.955627pt;}
._12{width:4.861440pt;}
._1e{width:5.792853pt;}
._28{width:6.814080pt;}
._f{width:7.827200pt;}
._e{width:8.835840pt;}
._26{width:9.734400pt;}
._13{width:10.649173pt;}
._29{width:13.125973pt;}
._1a{width:14.240853pt;}
._19{width:15.451307pt;}
._2a{width:16.586027pt;}
._b{width:18.238933pt;}
._a{width:19.394133pt;}
._16{width:20.816640pt;}
._23{width:21.715200pt;}
._11{width:23.143040pt;}
._c{width:24.061227pt;}
._27{width:25.085440pt;}
._15{width:26.732160pt;}
._14{width:28.080000pt;}
._18{width:28.978560pt;}
._17{width:29.877120pt;}
._1f{width:31.303680pt;}
._21{width:33.960320pt;}
._1d{width:34.968960pt;}
._1b{width:36.990720pt;}
._1c{width:38.434347pt;}
._2b{width:42.157440pt;}
._24{width:43.505280pt;}
._25{width:44.443520pt;}
._2d{width:53.314560pt;}
._2e{width:54.252800pt;}
._2c{width:73.831680pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.yaa{bottom:14.720000pt;}
.yb8{bottom:14.880000pt;}
.y6c{bottom:16.480000pt;}
.y55{bottom:16.640000pt;}
.y7{bottom:22.400000pt;}
.yb4{bottom:25.440000pt;}
.y6b{bottom:31.200000pt;}
.y54{bottom:31.360000pt;}
.yad{bottom:32.800000pt;}
.yac{bottom:32.960000pt;}
.yb3{bottom:43.360000pt;}
.yb2{bottom:43.520000pt;}
.yaf{bottom:51.040000pt;}
.y1{bottom:57.632000pt;}
.yb7{bottom:69.280000pt;}
.yb6{bottom:69.440000pt;}
.y6a{bottom:75.872000pt;}
.y43{bottom:79.872000pt;}
.ye3{bottom:99.552000pt;}
.y42{bottom:104.512000pt;}
.yc8{bottom:106.592000pt;}
.y24{bottom:111.072000pt;}
.y107{bottom:115.232000pt;}
.ye2{bottom:122.592000pt;}
.y41{bottom:129.152000pt;}
.yc7{bottom:129.792000pt;}
.ya6{bottom:129.952000pt;}
.y106{bottom:138.426667pt;}
.y87{bottom:140.986667pt;}
.y53{bottom:147.866667pt;}
.y23{bottom:150.106667pt;}
.yc6{bottom:152.986667pt;}
.ya5{bottom:154.746667pt;}
.ye1{bottom:156.506667pt;}
.y105{bottom:161.626667pt;}
.y40{bottom:163.066667pt;}
.y86{bottom:165.626667pt;}
.y22{bottom:173.306667pt;}
.ya4{bottom:179.386667pt;}
.ye0{bottom:179.546667pt;}
.y104{bottom:184.666667pt;}
.yc5{bottom:186.746667pt;}
.y85{bottom:190.266667pt;}
.y3f{bottom:192.826667pt;}
.y21{bottom:196.346667pt;}
.y56{bottom:201.946667pt;}
.ydf{bottom:202.746667pt;}
.ye4{bottom:203.066667pt;}
.ya3{bottom:204.026667pt;}
.y103{bottom:207.866667pt;}
.yc4{bottom:209.946667pt;}
.y84{bottom:215.066667pt;}
.yde{bottom:225.946667pt;}
.ya2{bottom:228.666667pt;}
.y20{bottom:230.266667pt;}
.yc3{bottom:232.986667pt;}
.y83{bottom:239.706667pt;}
.y102{bottom:241.626667pt;}
.y3e{bottom:246.746667pt;}
.ya1{bottom:253.346667pt;}
.yc2{bottom:256.226667pt;}
.y1f{bottom:256.706667pt;}
.ydd{bottom:259.746667pt;}
.y82{bottom:264.386667pt;}
.y3d{bottom:271.426667pt;}
.y101{bottom:271.586667pt;}
.ya0{bottom:277.986667pt;}
.yc1{bottom:279.426667pt;}
.y81{bottom:289.026667pt;}
.ydc{bottom:293.506667pt;}
.y3c{bottom:296.226667pt;}
.y1e{bottom:302.466667pt;}
.y9f{bottom:302.786667pt;}
.y80{bottom:313.666667pt;}
.ydb{bottom:316.706667pt;}
.y3b{bottom:320.866667pt;}
.y100{bottom:323.906667pt;}
.yc0{bottom:325.666667pt;}
.y9e{bottom:327.426667pt;}
.y1d{bottom:330.786667pt;}
.y7f{bottom:339.266667pt;}
.yda{bottom:339.906667pt;}
.y3a{bottom:345.506667pt;}
.y9d{bottom:352.066667pt;}
.y1c{bottom:353.986667pt;}
.yff{bottom:357.826667pt;}
.ybf{bottom:359.426667pt;}
.yd9{bottom:362.946667pt;}
.y7e{bottom:363.906667pt;}
.y39{bottom:370.146667pt;}
.y9c{bottom:376.706667pt;}
.y1b{bottom:377.186667pt;}
.yfe{bottom:380.866667pt;}
.ybe{bottom:382.626667pt;}
.yd8{bottom:386.146667pt;}
.y7d{bottom:388.546667pt;}
.y38{bottom:394.786667pt;}
.y1a{bottom:400.226667pt;}
.y9b{bottom:401.346667pt;}
.yfd{bottom:404.066667pt;}
.ybd{bottom:405.826667pt;}
.yd7{bottom:409.346667pt;}
.y69{bottom:412.226667pt;}
.y7c{bottom:413.186667pt;}
.y37{bottom:419.426667pt;}
.y19{bottom:423.426667pt;}
.y9a{bottom:425.986667pt;}
.yfc{bottom:427.266667pt;}
.ybc{bottom:428.866667pt;}
.y68{bottom:432.706667pt;}
.y7b{bottom:437.826667pt;}
.yd6{bottom:443.106667pt;}
.y36{bottom:444.226667pt;}
.y18{bottom:446.626667pt;}
.yfb{bottom:450.306667pt;}
.y99{bottom:450.786667pt;}
.y67{bottom:457.346667pt;}
.y7a{bottom:462.466667pt;}
.ybb{bottom:462.786667pt;}
.yd5{bottom:466.306667pt;}
.y35{bottom:468.866667pt;}
.yfa{bottom:473.506667pt;}
.y98{bottom:475.426667pt;}
.y17{bottom:480.386667pt;}
.y66{bottom:481.986667pt;}
.y79{bottom:487.266667pt;}
.yd4{bottom:489.346667pt;}
.yba{bottom:492.706667pt;}
.yf9{bottom:496.706667pt;}
.y97{bottom:500.066667pt;}
.y34{bottom:504.253333pt;}
.y65{bottom:506.653333pt;}
.y16{bottom:506.973333pt;}
.yd3{bottom:512.573333pt;}
.y78{bottom:512.733333pt;}
.yf8{bottom:519.773333pt;}
.y33{bottom:528.893333pt;}
.y64{bottom:531.453333pt;}
.y96{bottom:533.853333pt;}
.y77{bottom:537.373333pt;}
.yb9{bottom:540.413333pt;}
.y52{bottom:543.133333pt;}
.yd2{bottom:546.333333pt;}
.y15{bottom:552.733333pt;}
.y32{bottom:553.533333pt;}
.yf7{bottom:553.693333pt;}
.y63{bottom:556.093333pt;}
.y76{bottom:562.013333pt;}
.y95{bottom:563.773333pt;}
.y51{bottom:567.773333pt;}
.yd1{bottom:569.533333pt;}
.y31{bottom:578.173333pt;}
.y62{bottom:580.733333pt;}
.y14{bottom:582.653333pt;}
.yf6{bottom:583.453333pt;}
.y75{bottom:586.653333pt;}
.yb5{bottom:588.093333pt;}
.y50{bottom:592.413333pt;}
.yd0{bottom:592.733333pt;}
.y94{bottom:593.693333pt;}
.y30{bottom:602.813333pt;}
.y74{bottom:611.453333pt;}
.y13{bottom:612.413333pt;}
.y61{bottom:614.493333pt;}
.ycf{bottom:615.773333pt;}
.y4f{bottom:617.053333pt;}
.yea{bottom:624.733333pt;}
.y2f{bottom:627.453333pt;}
.yf5{bottom:635.933333pt;}
.y73{bottom:636.093333pt;}
.y4e{bottom:641.853333pt;}
.y12{bottom:642.173333pt;}
.y93{bottom:645.853333pt;}
.y60{bottom:646.333333pt;}
.yce{bottom:649.693333pt;}
.y2e{bottom:652.093333pt;}
.ye9{bottom:658.493333pt;}
.y72{bottom:660.733333pt;}
.y4d{bottom:666.493333pt;}
.yf4{bottom:669.693333pt;}
.y10c{bottom:670.973333pt;}
.y11{bottom:672.093333pt;}
.yb1{bottom:672.253333pt;}
.y2d{bottom:676.893333pt;}
.y92{bottom:679.613333pt;}
.ye8{bottom:681.693333pt;}
.ycd{bottom:683.453333pt;}
.y71{bottom:685.373333pt;}
.y4c{bottom:691.133333pt;}
.yf3{bottom:692.893333pt;}
.y10b{bottom:694.173333pt;}
.y5f{bottom:698.653333pt;}
.y2c{bottom:701.533333pt;}
.y10{bottom:701.853333pt;}
.y91{bottom:702.813333pt;}
.ycc{bottom:706.653333pt;}
.ye7{bottom:715.453333pt;}
.yf2{bottom:715.933333pt;}
.y10a{bottom:717.213333pt;}
.y70{bottom:720.093333pt;}
.yf{bottom:725.053333pt;}
.y90{bottom:726.013333pt;}
.y2b{bottom:726.173333pt;}
.y4b{bottom:726.493333pt;}
.yb0{bottom:730.653333pt;}
.y5e{bottom:734.013333pt;}
.ye6{bottom:738.653333pt;}
.yf1{bottom:739.133333pt;}
.ycb{bottom:740.413333pt;}
.y6f{bottom:748.573333pt;}
.y8f{bottom:750.013333pt;}
.y2a{bottom:750.813333pt;}
.y4a{bottom:751.133333pt;}
.ye{bottom:754.853333pt;}
.y5d{bottom:758.693333pt;}
.yae{bottom:760.133333pt;}
.ye5{bottom:761.733333pt;}
.yf0{bottom:762.373333pt;}
.y6{bottom:770.693333pt;}
.y8e{bottom:773.093333pt;}
.yca{bottom:774.213333pt;}
.y49{bottom:775.813333pt;}
.yd{bottom:778.053333pt;}
.y5c{bottom:783.493333pt;}
.y6e{bottom:784.933333pt;}
.y29{bottom:786.213333pt;}
.yef{bottom:796.133333pt;}
.y8d{bottom:796.293333pt;}
.y48{bottom:800.453333pt;}
.yc{bottom:807.813333pt;}
.y5b{bottom:808.133333pt;}
.y6d{bottom:818.693333pt;}
.yee{bottom:819.333333pt;}
.y8c{bottom:819.493333pt;}
.y28{bottom:820.613333pt;}
.y47{bottom:825.093333pt;}
.yab{bottom:826.053333pt;}
.y5{bottom:828.453333pt;}
.yc9{bottom:831.173333pt;}
.yb{bottom:837.573333pt;}
.y5a{bottom:841.893333pt;}
.yed{bottom:842.373333pt;}
.y8b{bottom:842.693333pt;}
.y109{bottom:854.373333pt;}
.y27{bottom:855.333333pt;}
.y46{bottom:860.453333pt;}
.y4{bottom:863.813333pt;}
.y59{bottom:865.093333pt;}
.yec{bottom:865.573333pt;}
.ya{bottom:867.493333pt;}
.ya9{bottom:873.733333pt;}
.y8a{bottom:877.253333pt;}
.y108{bottom:877.573333pt;}
.y45{bottom:885.093333pt;}
.y58{bottom:888.133333pt;}
.y26{bottom:897.573333pt;}
.y3{bottom:899.173333pt;}
.yeb{bottom:899.333333pt;}
.y9{bottom:902.693333pt;}
.y89{bottom:907.333333pt;}
.y44{bottom:909.893333pt;}
.y57{bottom:911.333333pt;}
.ya8{bottom:920.773333pt;}
.y8{bottom:929.253333pt;}
.y25{bottom:929.413333pt;}
.y88{bottom:931.813333pt;}
.y2{bottom:934.533333pt;}
.ya7{bottom:938.693333pt;}
.hb{height:28.000000pt;}
.hf{height:28.800000pt;}
.h14{height:28.832000pt;}
.h9{height:41.484375pt;}
.h8{height:42.560000pt;}
.ha{height:42.816000pt;}
.h11{height:47.040000pt;}
.hd{height:50.887500pt;}
.h10{height:53.934080pt;}
.h12{height:54.876160pt;}
.h15{height:57.600000pt;}
.h7{height:59.648000pt;}
.h13{height:65.280000pt;}
.hc{height:66.792960pt;}
.h3{height:68.480000pt;}
.h2{height:69.788160pt;}
.he{height:79.331840pt;}
.h16{height:83.520000pt;}
.h6{height:87.936000pt;}
.h5{height:89.472000pt;}
.h4{height:178.944000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:122.272000pt;}
.w4{width:194.426667pt;}
.w8{width:216.826667pt;}
.w3{width:285.986667pt;}
.w5{width:296.226667pt;}
.w9{width:339.586667pt;}
.w6{width:376.706667pt;}
.wa{width:603.133333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.880000pt;}
.xc{left:56.640000pt;}
.x1{left:75.519988pt;}
.x3{left:82.280000pt;}
.x4{left:90.271988pt;}
.x10{left:95.392000pt;}
.x5{left:99.551988pt;}
.x9{left:103.551988pt;}
.x6{left:123.552000pt;}
.xa{left:127.551988pt;}
.xb{left:147.546655pt;}
.xe{left:179.546667pt;}
.x8{left:208.506667pt;}
.x2{left:253.946667pt;}
.xf{left:397.026667pt;}
.x7{left:397.986667pt;}
}




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