
    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_3a499efd4362a2ff35aedfb2.woff')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_0439c3a6fd6a21e2c5efd41b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.130371;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_83d6f8d05d305f5c83268c52.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cdc1d8107672b49c2558fd07.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9bd57edbadcf401dbab06bba.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_575881e38289a7268dcef98f.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_698bf87ebdfff5a16bba29b4.woff')format("woff");}.ff8{font-family:ff8;line-height:0.940918;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_b2b65bbf2dbfddeca848c2b9.woff')format("woff");}.ff9{font-family:ff9;line-height:1.130371;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_f2d98c987d71953cad9e949c.woff')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_b2eec437617c997facf0be1c.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')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;}
.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;}
.ls9{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.630000px;}
.ls11{letter-spacing:-0.590400px;}
.ls7{letter-spacing:-0.328200px;}
.ls21{letter-spacing:-0.193200px;}
.lse{letter-spacing:-0.132600px;}
.ls1f{letter-spacing:-0.115200px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.020160px;}
.lsd{letter-spacing:0.031680px;}
.ls20{letter-spacing:0.054720px;}
.ls15{letter-spacing:0.075000px;}
.ls4{letter-spacing:0.089280px;}
.lsa{letter-spacing:0.089400px;}
.ls16{letter-spacing:0.129600px;}
.ls1d{letter-spacing:0.132480px;}
.ls22{letter-spacing:0.132600px;}
.ls8{letter-spacing:0.141000px;}
.lsf{letter-spacing:0.152400px;}
.lsb{letter-spacing:0.233280px;}
.ls19{letter-spacing:0.256200px;}
.ls1a{letter-spacing:0.265200px;}
.ls0{letter-spacing:0.382320px;}
.ls12{letter-spacing:0.528480px;}
.ls2{letter-spacing:0.571680px;}
.ls1b{letter-spacing:0.587400px;}
.ls14{letter-spacing:18.132480px;}
.ls24{letter-spacing:18.149760px;}
.ls13{letter-spacing:27.936000px;}
.ls18{letter-spacing:36.305280px;}
.ls17{letter-spacing:39.185280px;}
.lsc{letter-spacing:40.661280px;}
.ls23{letter-spacing:40.986720px;}
.ls1c{letter-spacing:59.345280px;}
.ls1e{letter-spacing:64.026720px;}
.ls1{letter-spacing:121.373280px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(88,98,58),0 0.015em rgb(88,98,58),0.015em 0 rgb(88,98,58),0 -0.015em  rgb(88,98,58);}
.sc1{text-shadow:-0.015em 0 rgb(0,148,68),0 0.015em rgb(0,148,68),0.015em 0 rgb(0,148,68),0 -0.015em  rgb(0,148,68);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(88,98,58);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,148,68);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-66.240000px;}
.ws2{word-spacing:-65.911800px;}
.ws11{word-spacing:-59.760000px;}
.ws8{word-spacing:-19.038240px;}
.ws0{word-spacing:-16.272000px;}
.wsd{word-spacing:-15.235440px;}
.wsc{word-spacing:-15.226440px;}
.ws7{word-spacing:-15.122640px;}
.ws3{word-spacing:-15.111240px;}
.ws12{word-spacing:-15.102840px;}
.wsb{word-spacing:-15.099840px;}
.ws4{word-spacing:-15.059640px;}
.wsa{word-spacing:-15.045240px;}
.ws10{word-spacing:-15.024960px;}
.ws6{word-spacing:-15.001920px;}
.ws1{word-spacing:-14.970240px;}
.wsf{word-spacing:-14.855040px;}
.ws9{word-spacing:-14.379840px;}
.ws5{word-spacing:0.000000px;}
._11{margin-left:-4.880160px;}
._a{margin-left:-3.444480px;}
._c{margin-left:-2.189760px;}
._0{margin-left:-1.057920px;}
._1{width:1.080000px;}
._6{width:2.148480px;}
._b{width:3.165600px;}
._9{width:4.173120px;}
._3{width:6.158400px;}
._2{width:7.352640px;}
._5{width:8.543040px;}
._4{width:9.604800px;}
._13{width:10.888800px;}
._12{width:11.897760px;}
._8{width:12.909120px;}
._7{width:13.910400px;}
._f{width:16.828800px;}
._d{width:18.745920px;}
._e{width:19.803840px;}
._10{width:21.198720px;}
._1a{width:23.093760px;}
._1b{width:24.127680px;}
._16{width:32.126400px;}
._17{width:33.190080px;}
._1c{width:35.292000px;}
._14{width:44.680320px;}
._15{width:46.434240px;}
._19{width:61.833600px;}
._18{width:63.098880px;}
._1d{width:849.329760px;}
.fc4{color:rgb(0,104,56);}
.fc3{color:transparent;}
.fc2{color:rgb(88,98,58);}
.fc1{color:rgb(0,148,68);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:9.000000px;}
.ye9{bottom:9.570000px;}
.y6{bottom:13.860000px;}
.yf2{bottom:14.940000px;}
.yf6{bottom:15.120000px;}
.yf1{bottom:16.560000px;}
.yf5{bottom:16.605000px;}
.y96{bottom:17.100000px;}
.y5e{bottom:19.080000px;}
.y5f{bottom:29.160000px;}
.yef{bottom:33.660000px;}
.y7a{bottom:34.050000px;}
.y95{bottom:37.260000px;}
.yee{bottom:53.820000px;}
.y79{bottom:54.030000px;}
.y9c{bottom:54.585000px;}
.yeb{bottom:55.260000px;}
.y94{bottom:62.685000px;}
.y78{bottom:74.190000px;}
.yed{bottom:78.300000px;}
.y9b{bottom:80.145000px;}
.y93{bottom:82.845000px;}
.yec{bottom:98.460000px;}
.y77{bottom:98.895000px;}
.y92{bottom:103.005000px;}
.y9a{bottom:105.705000px;}
.ya6{bottom:106.920000px;}
.y76{bottom:119.055000px;}
.y91{bottom:123.165000px;}
.ya5{bottom:130.140000px;}
.yca{bottom:130.680000px;}
.y99{bottom:131.265000px;}
.y4e{bottom:132.480000px;}
.y67{bottom:137.700000px;}
.y75{bottom:139.215000px;}
.y25{bottom:140.760000px;}
.y90{bottom:148.725000px;}
.ya4{bottom:153.180000px;}
.yc9{bottom:153.720000px;}
.y4d{bottom:155.520000px;}
.y98{bottom:156.645000px;}
.y6e{bottom:158.295000px;}
.y74{bottom:159.375000px;}
.y66{bottom:160.740000px;}
.y24{bottom:163.980000px;}
.y8f{bottom:168.885000px;}
.ya3{bottom:176.400000px;}
.y97{bottom:176.805000px;}
.y6d{bottom:178.455000px;}
.y73{bottom:179.535000px;}
.y65{bottom:183.960000px;}
.yc8{bottom:185.940000px;}
.y23{bottom:187.200000px;}
.y4c{bottom:187.740000px;}
.y72{bottom:199.695000px;}
.y6c{bottom:203.115000px;}
.ye7{bottom:208.290000px;}
.ya2{bottom:208.650000px;}
.yc7{bottom:209.190000px;}
.y22{bottom:210.270000px;}
.y4b{bottom:210.990000px;}
.y64{bottom:221.070000px;}
.y6b{bottom:223.275000px;}
.y71{bottom:224.355000px;}
.ya1{bottom:231.690000px;}
.y21{bottom:233.490000px;}
.y4a{bottom:234.030000px;}
.ye6{bottom:240.330000px;}
.yc6{bottom:241.230000px;}
.y70{bottom:244.515000px;}
.y6a{bottom:246.495000px;}
.y20{bottom:256.710000px;}
.y49{bottom:257.250000px;}
.y63{bottom:260.670000px;}
.ye5{bottom:263.550000px;}
.ya0{bottom:263.910000px;}
.yc5{bottom:273.450000px;}
.y1f{bottom:279.930000px;}
.y48{bottom:280.470000px;}
.y6f{bottom:285.015000px;}
.y62{bottom:286.050000px;}
.ye4{bottom:286.770000px;}
.y9f{bottom:287.130000px;}
.y1e{bottom:302.970000px;}
.y69{bottom:303.195000px;}
.yc4{bottom:305.670000px;}
.ye3{bottom:309.810000px;}
.y47{bottom:312.690000px;}
.y9e{bottom:324.210000px;}
.y1d{bottom:326.190000px;}
.y46{bottom:335.730000px;}
.y61{bottom:336.090000px;}
.yc3{bottom:337.710000px;}
.ye2{bottom:342.930000px;}
.y1c{bottom:358.410000px;}
.y45{bottom:358.950000px;}
.yc2{bottom:360.930000px;}
.y9d{bottom:363.810000px;}
.ye1{bottom:365.970000px;}
.y1b{bottom:381.450000px;}
.y60{bottom:386.130000px;}
.y8e{bottom:389.190000px;}
.y44{bottom:391.170000px;}
.yc1{bottom:393.150000px;}
.y1a{bottom:404.670000px;}
.ye0{bottom:412.410000px;}
.y43{bottom:414.210000px;}
.yc0{bottom:416.190000px;}
.y19{bottom:427.890000px;}
.y5d{bottom:436.215000px;}
.y42{bottom:437.475000px;}
.ybf{bottom:439.455000px;}
.ydf{bottom:445.395000px;}
.y41{bottom:460.695000px;}
.ybe{bottom:462.675000px;}
.yde{bottom:468.615000px;}
.y18{bottom:468.975000px;}
.y40{bottom:483.735000px;}
.y5b{bottom:486.255000px;}
.ydd{bottom:491.835000px;}
.ybd{bottom:499.755000px;}
.y17{bottom:517.215000px;}
.y3f{bottom:520.995000px;}
.ydc{bottom:524.775000px;}
.ybc{bottom:529.275000px;}
.y5a{bottom:531.255000px;}
.ydb{bottom:547.995000px;}
.y16{bottom:549.255000px;}
.y59{bottom:560.595000px;}
.y3e{bottom:566.355000px;}
.ybb{bottom:568.695000px;}
.yda{bottom:571.215000px;}
.y15{bottom:572.475000px;}
.y8d{bottom:587.775000px;}
.y58{bottom:592.815000px;}
.y14{bottom:595.695000px;}
.yba{bottom:600.915000px;}
.yd9{bottom:604.155000px;}
.y3d{bottom:614.595000px;}
.y57{bottom:615.855000px;}
.y13{bottom:618.735000px;}
.yb9{bottom:624.135000px;}
.yd8{bottom:627.375000px;}
.y8c{bottom:632.955000px;}
.y12{bottom:641.955000px;}
.y3c{bottom:646.635000px;}
.yb8{bottom:647.175000px;}
.y56{bottom:648.075000px;}
.yd7{bottom:650.595000px;}
.y8b{bottom:662.115000px;}
.y3b{bottom:669.885000px;}
.yb7{bottom:670.425000px;}
.y11{bottom:674.205000px;}
.y55{bottom:680.325000px;}
.yd6{bottom:683.565000px;}
.y8a{bottom:685.365000px;}
.y3a{bottom:693.105000px;}
.yb6{bottom:693.645000px;}
.y10{bottom:697.245000px;}
.y54{bottom:703.365000px;}
.yd5{bottom:706.785000px;}
.y39{bottom:716.145000px;}
.yb5{bottom:716.685000px;}
.y89{bottom:717.585000px;}
.yf{bottom:720.465000px;}
.y53{bottom:726.585000px;}
.y38{bottom:739.365000px;}
.yb4{bottom:739.905000px;}
.y88{bottom:740.625000px;}
.ye{bottom:743.685000px;}
.yd4{bottom:747.825000px;}
.y37{bottom:762.585000px;}
.y52{bottom:763.665000px;}
.y87{bottom:763.845000px;}
.yd{bottom:766.725000px;}
.yb3{bottom:772.125000px;}
.yc{bottom:789.945000px;}
.yf9{bottom:790.485000px;}
.y36{bottom:794.625000px;}
.yb2{bottom:795.165000px;}
.y86{bottom:796.065000px;}
.y51{bottom:803.265000px;}
.yb{bottom:813.165000px;}
.y35{bottom:817.845000px;}
.yb1{bottom:818.385000px;}
.y85{bottom:819.285000px;}
.yf8{bottom:822.525000px;}
.yd3{bottom:828.285000px;}
.y50{bottom:834.045000px;}
.ya{bottom:836.205000px;}
.y34{bottom:841.065000px;}
.yf7{bottom:847.905000px;}
.y84{bottom:851.325000px;}
.yb0{bottom:855.465000px;}
.y4f{bottom:855.825000px;}
.y68{bottom:855.900000px;}
.y33{bottom:864.285000px;}
.yd2{bottom:874.545000px;}
.y9{bottom:877.425000px;}
.y83{bottom:883.545000px;}
.yf4{bottom:889.845000px;}
.yaf{bottom:895.065000px;}
.y32{bottom:896.325000px;}
.yd1{bottom:897.765000px;}
.y82{bottom:915.810000px;}
.y31{bottom:919.590000px;}
.y8{bottom:925.530000px;}
.yae{bottom:927.330000px;}
.yd0{bottom:929.850000px;}
.yf3{bottom:931.830000px;}
.y81{bottom:938.850000px;}
.y30{bottom:942.810000px;}
.yad{bottom:950.370000px;}
.y7{bottom:951.090000px;}
.ycf{bottom:953.070000px;}
.y80{bottom:971.070000px;}
.yac{bottom:973.590000px;}
.yf0{bottom:973.770000px;}
.y2f{bottom:974.850000px;}
.yce{bottom:985.290000px;}
.y5{bottom:991.770000px;}
.y2e{bottom:998.070000px;}
.y7f{bottom:1003.290000px;}
.yab{bottom:1005.810000px;}
.ycd{bottom:1008.330000px;}
.yea{bottom:1015.710000px;}
.y2d{bottom:1021.290000px;}
.y7e{bottom:1026.330000px;}
.yaa{bottom:1028.850000px;}
.ycc{bottom:1040.550000px;}
.y2c{bottom:1044.330000px;}
.y7d{bottom:1049.550000px;}
.y4{bottom:1054.950000px;}
.ya9{bottom:1061.070000px;}
.y2b{bottom:1067.550000px;}
.ycb{bottom:1072.770000px;}
.y7c{bottom:1081.770000px;}
.y2a{bottom:1090.770000px;}
.ya8{bottom:1094.010000px;}
.y3{bottom:1097.070000px;}
.y7b{bottom:1104.810000px;}
.y29{bottom:1113.810000px;}
.ya7{bottom:1127.130000px;}
.ye8{bottom:1135.050000px;}
.y28{bottom:1137.030000px;}
.y2{bottom:1142.250000px;}
.y27{bottom:1160.280000px;}
.y1{bottom:1174.320000px;}
.y26{bottom:1183.320000px;}
.h9{height:29.160000px;}
.he{height:31.176000px;}
.h4{height:39.960000px;}
.h8{height:41.185547px;}
.h11{height:41.220000px;}
.h12{height:41.256000px;}
.ha{height:49.320000px;}
.hb{height:49.356000px;}
.h2{height:65.884219px;}
.h6{height:67.824844px;}
.h5{height:68.554688px;}
.hf{height:73.722656px;}
.h7{height:80.208984px;}
.h3{height:114.486328px;}
.h10{height:118.620000px;}
.hd{height:197.850000px;}
.hc{height:343.080000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:136.980000px;}
.w4{width:232.770000px;}
.w6{width:296.670000px;}
.w7{width:424.005000px;}
.w5{width:487.905000px;}
.wa{width:583.710000px;}
.w3{width:668.850000px;}
.w8{width:721.410000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.x6{left:29.880000px;}
.x1{left:84.959987px;}
.x9{left:92.694000px;}
.x4{left:112.176000px;}
.x2{left:114.335987px;}
.x1a{left:127.475987px;}
.xd{left:132.515987px;}
.x5{left:136.074000px;}
.x17{left:138.995987px;}
.x19{left:164.190000px;}
.xf{left:165.239987px;}
.xb{left:170.130000px;}
.xe{left:172.079987px;}
.x10{left:178.019987px;}
.x3{left:187.409987px;}
.x1c{left:223.590000px;}
.x1b{left:286.959000px;}
.x8{left:288.794987px;}
.xa{left:319.395000px;}
.x11{left:367.949987px;}
.x18{left:383.295000px;}
.x12{left:400.709987px;}
.x13{left:413.489987px;}
.x14{left:603.434987px;}
.x15{left:636.149987px;}
.x16{left:648.929987px;}
.x7{left:771.659987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.560000pt;}
.ls11{letter-spacing:-0.524800pt;}
.ls7{letter-spacing:-0.291733pt;}
.ls21{letter-spacing:-0.171733pt;}
.lse{letter-spacing:-0.117867pt;}
.ls1f{letter-spacing:-0.102400pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.017920pt;}
.lsd{letter-spacing:0.028160pt;}
.ls20{letter-spacing:0.048640pt;}
.ls15{letter-spacing:0.066667pt;}
.ls4{letter-spacing:0.079360pt;}
.lsa{letter-spacing:0.079467pt;}
.ls16{letter-spacing:0.115200pt;}
.ls1d{letter-spacing:0.117760pt;}
.ls22{letter-spacing:0.117867pt;}
.ls8{letter-spacing:0.125333pt;}
.lsf{letter-spacing:0.135467pt;}
.lsb{letter-spacing:0.207360pt;}
.ls19{letter-spacing:0.227733pt;}
.ls1a{letter-spacing:0.235733pt;}
.ls0{letter-spacing:0.339840pt;}
.ls12{letter-spacing:0.469760pt;}
.ls2{letter-spacing:0.508160pt;}
.ls1b{letter-spacing:0.522133pt;}
.ls14{letter-spacing:16.117760pt;}
.ls24{letter-spacing:16.133120pt;}
.ls13{letter-spacing:24.832000pt;}
.ls18{letter-spacing:32.271360pt;}
.ls17{letter-spacing:34.831360pt;}
.lsc{letter-spacing:36.143360pt;}
.ls23{letter-spacing:36.432640pt;}
.ls1c{letter-spacing:52.751360pt;}
.ls1e{letter-spacing:56.912640pt;}
.ls1{letter-spacing:107.887360pt;}
.wse{word-spacing:-58.880000pt;}
.ws2{word-spacing:-58.588267pt;}
.ws11{word-spacing:-53.120000pt;}
.ws8{word-spacing:-16.922880pt;}
.ws0{word-spacing:-14.464000pt;}
.wsd{word-spacing:-13.542613pt;}
.wsc{word-spacing:-13.534613pt;}
.ws7{word-spacing:-13.442347pt;}
.ws3{word-spacing:-13.432213pt;}
.ws12{word-spacing:-13.424747pt;}
.wsb{word-spacing:-13.422080pt;}
.ws4{word-spacing:-13.386347pt;}
.wsa{word-spacing:-13.373547pt;}
.ws10{word-spacing:-13.355520pt;}
.ws6{word-spacing:-13.335040pt;}
.ws1{word-spacing:-13.306880pt;}
.wsf{word-spacing:-13.204480pt;}
.ws9{word-spacing:-12.782080pt;}
.ws5{word-spacing:0.000000pt;}
._11{margin-left:-4.337920pt;}
._a{margin-left:-3.061760pt;}
._c{margin-left:-1.946453pt;}
._0{margin-left:-0.940373pt;}
._1{width:0.960000pt;}
._6{width:1.909760pt;}
._b{width:2.813867pt;}
._9{width:3.709440pt;}
._3{width:5.474133pt;}
._2{width:6.535680pt;}
._5{width:7.593813pt;}
._4{width:8.537600pt;}
._13{width:9.678933pt;}
._12{width:10.575787pt;}
._8{width:11.474773pt;}
._7{width:12.364800pt;}
._f{width:14.958933pt;}
._d{width:16.663040pt;}
._e{width:17.603413pt;}
._10{width:18.843307pt;}
._1a{width:20.527787pt;}
._1b{width:21.446827pt;}
._16{width:28.556800pt;}
._17{width:29.502293pt;}
._1c{width:31.370667pt;}
._14{width:39.715840pt;}
._15{width:41.274880pt;}
._19{width:54.963200pt;}
._18{width:56.087893pt;}
._1d{width:754.959787pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:8.000000pt;}
.ye9{bottom:8.506667pt;}
.y6{bottom:12.320000pt;}
.yf2{bottom:13.280000pt;}
.yf6{bottom:13.440000pt;}
.yf1{bottom:14.720000pt;}
.yf5{bottom:14.760000pt;}
.y96{bottom:15.200000pt;}
.y5e{bottom:16.960000pt;}
.y5f{bottom:25.920000pt;}
.yef{bottom:29.920000pt;}
.y7a{bottom:30.266667pt;}
.y95{bottom:33.120000pt;}
.yee{bottom:47.840000pt;}
.y79{bottom:48.026667pt;}
.y9c{bottom:48.520000pt;}
.yeb{bottom:49.120000pt;}
.y94{bottom:55.720000pt;}
.y78{bottom:65.946667pt;}
.yed{bottom:69.600000pt;}
.y9b{bottom:71.240000pt;}
.y93{bottom:73.640000pt;}
.yec{bottom:87.520000pt;}
.y77{bottom:87.906667pt;}
.y92{bottom:91.560000pt;}
.y9a{bottom:93.960000pt;}
.ya6{bottom:95.040000pt;}
.y76{bottom:105.826667pt;}
.y91{bottom:109.480000pt;}
.ya5{bottom:115.680000pt;}
.yca{bottom:116.160000pt;}
.y99{bottom:116.680000pt;}
.y4e{bottom:117.760000pt;}
.y67{bottom:122.400000pt;}
.y75{bottom:123.746667pt;}
.y25{bottom:125.120000pt;}
.y90{bottom:132.200000pt;}
.ya4{bottom:136.160000pt;}
.yc9{bottom:136.640000pt;}
.y4d{bottom:138.240000pt;}
.y98{bottom:139.240000pt;}
.y6e{bottom:140.706667pt;}
.y74{bottom:141.666667pt;}
.y66{bottom:142.880000pt;}
.y24{bottom:145.760000pt;}
.y8f{bottom:150.120000pt;}
.ya3{bottom:156.800000pt;}
.y97{bottom:157.160000pt;}
.y6d{bottom:158.626667pt;}
.y73{bottom:159.586667pt;}
.y65{bottom:163.520000pt;}
.yc8{bottom:165.280000pt;}
.y23{bottom:166.400000pt;}
.y4c{bottom:166.880000pt;}
.y72{bottom:177.506667pt;}
.y6c{bottom:180.546667pt;}
.ye7{bottom:185.146667pt;}
.ya2{bottom:185.466667pt;}
.yc7{bottom:185.946667pt;}
.y22{bottom:186.906667pt;}
.y4b{bottom:187.546667pt;}
.y64{bottom:196.506667pt;}
.y6b{bottom:198.466667pt;}
.y71{bottom:199.426667pt;}
.ya1{bottom:205.946667pt;}
.y21{bottom:207.546667pt;}
.y4a{bottom:208.026667pt;}
.ye6{bottom:213.626667pt;}
.yc6{bottom:214.426667pt;}
.y70{bottom:217.346667pt;}
.y6a{bottom:219.106667pt;}
.y20{bottom:228.186667pt;}
.y49{bottom:228.666667pt;}
.y63{bottom:231.706667pt;}
.ye5{bottom:234.266667pt;}
.ya0{bottom:234.586667pt;}
.yc5{bottom:243.066667pt;}
.y1f{bottom:248.826667pt;}
.y48{bottom:249.306667pt;}
.y6f{bottom:253.346667pt;}
.y62{bottom:254.266667pt;}
.ye4{bottom:254.906667pt;}
.y9f{bottom:255.226667pt;}
.y1e{bottom:269.306667pt;}
.y69{bottom:269.506667pt;}
.yc4{bottom:271.706667pt;}
.ye3{bottom:275.386667pt;}
.y47{bottom:277.946667pt;}
.y9e{bottom:288.186667pt;}
.y1d{bottom:289.946667pt;}
.y46{bottom:298.426667pt;}
.y61{bottom:298.746667pt;}
.yc3{bottom:300.186667pt;}
.ye2{bottom:304.826667pt;}
.y1c{bottom:318.586667pt;}
.y45{bottom:319.066667pt;}
.yc2{bottom:320.826667pt;}
.y9d{bottom:323.386667pt;}
.ye1{bottom:325.306667pt;}
.y1b{bottom:339.066667pt;}
.y60{bottom:343.226667pt;}
.y8e{bottom:345.946667pt;}
.y44{bottom:347.706667pt;}
.yc1{bottom:349.466667pt;}
.y1a{bottom:359.706667pt;}
.ye0{bottom:366.586667pt;}
.y43{bottom:368.186667pt;}
.yc0{bottom:369.946667pt;}
.y19{bottom:380.346667pt;}
.y5d{bottom:387.746667pt;}
.y42{bottom:388.866667pt;}
.ybf{bottom:390.626667pt;}
.ydf{bottom:395.906667pt;}
.y41{bottom:409.506667pt;}
.ybe{bottom:411.266667pt;}
.yde{bottom:416.546667pt;}
.y18{bottom:416.866667pt;}
.y40{bottom:429.986667pt;}
.y5b{bottom:432.226667pt;}
.ydd{bottom:437.186667pt;}
.ybd{bottom:444.226667pt;}
.y17{bottom:459.746667pt;}
.y3f{bottom:463.106667pt;}
.ydc{bottom:466.466667pt;}
.ybc{bottom:470.466667pt;}
.y5a{bottom:472.226667pt;}
.ydb{bottom:487.106667pt;}
.y16{bottom:488.226667pt;}
.y59{bottom:498.306667pt;}
.y3e{bottom:503.426667pt;}
.ybb{bottom:505.506667pt;}
.yda{bottom:507.746667pt;}
.y15{bottom:508.866667pt;}
.y8d{bottom:522.466667pt;}
.y58{bottom:526.946667pt;}
.y14{bottom:529.506667pt;}
.yba{bottom:534.146667pt;}
.yd9{bottom:537.026667pt;}
.y3d{bottom:546.306667pt;}
.y57{bottom:547.426667pt;}
.y13{bottom:549.986667pt;}
.yb9{bottom:554.786667pt;}
.yd8{bottom:557.666667pt;}
.y8c{bottom:562.626667pt;}
.y12{bottom:570.626667pt;}
.y3c{bottom:574.786667pt;}
.yb8{bottom:575.266667pt;}
.y56{bottom:576.066667pt;}
.yd7{bottom:578.306667pt;}
.y8b{bottom:588.546667pt;}
.y3b{bottom:595.453333pt;}
.yb7{bottom:595.933333pt;}
.y11{bottom:599.293333pt;}
.y55{bottom:604.733333pt;}
.yd6{bottom:607.613333pt;}
.y8a{bottom:609.213333pt;}
.y3a{bottom:616.093333pt;}
.yb6{bottom:616.573333pt;}
.y10{bottom:619.773333pt;}
.y54{bottom:625.213333pt;}
.yd5{bottom:628.253333pt;}
.y39{bottom:636.573333pt;}
.yb5{bottom:637.053333pt;}
.y89{bottom:637.853333pt;}
.yf{bottom:640.413333pt;}
.y53{bottom:645.853333pt;}
.y38{bottom:657.213333pt;}
.yb4{bottom:657.693333pt;}
.y88{bottom:658.333333pt;}
.ye{bottom:661.053333pt;}
.yd4{bottom:664.733333pt;}
.y37{bottom:677.853333pt;}
.y52{bottom:678.813333pt;}
.y87{bottom:678.973333pt;}
.yd{bottom:681.533333pt;}
.yb3{bottom:686.333333pt;}
.yc{bottom:702.173333pt;}
.yf9{bottom:702.653333pt;}
.y36{bottom:706.333333pt;}
.yb2{bottom:706.813333pt;}
.y86{bottom:707.613333pt;}
.y51{bottom:714.013333pt;}
.yb{bottom:722.813333pt;}
.y35{bottom:726.973333pt;}
.yb1{bottom:727.453333pt;}
.y85{bottom:728.253333pt;}
.yf8{bottom:731.133333pt;}
.yd3{bottom:736.253333pt;}
.y50{bottom:741.373333pt;}
.ya{bottom:743.293333pt;}
.y34{bottom:747.613333pt;}
.yf7{bottom:753.693333pt;}
.y84{bottom:756.733333pt;}
.yb0{bottom:760.413333pt;}
.y4f{bottom:760.733333pt;}
.y68{bottom:760.800000pt;}
.y33{bottom:768.253333pt;}
.yd2{bottom:777.373333pt;}
.y9{bottom:779.933333pt;}
.y83{bottom:785.373333pt;}
.yf4{bottom:790.973333pt;}
.yaf{bottom:795.613333pt;}
.y32{bottom:796.733333pt;}
.yd1{bottom:798.013333pt;}
.y82{bottom:814.053333pt;}
.y31{bottom:817.413333pt;}
.y8{bottom:822.693333pt;}
.yae{bottom:824.293333pt;}
.yd0{bottom:826.533333pt;}
.yf3{bottom:828.293333pt;}
.y81{bottom:834.533333pt;}
.y30{bottom:838.053333pt;}
.yad{bottom:844.773333pt;}
.y7{bottom:845.413333pt;}
.ycf{bottom:847.173333pt;}
.y80{bottom:863.173333pt;}
.yac{bottom:865.413333pt;}
.yf0{bottom:865.573333pt;}
.y2f{bottom:866.533333pt;}
.yce{bottom:875.813333pt;}
.y5{bottom:881.573333pt;}
.y2e{bottom:887.173333pt;}
.y7f{bottom:891.813333pt;}
.yab{bottom:894.053333pt;}
.ycd{bottom:896.293333pt;}
.yea{bottom:902.853333pt;}
.y2d{bottom:907.813333pt;}
.y7e{bottom:912.293333pt;}
.yaa{bottom:914.533333pt;}
.ycc{bottom:924.933333pt;}
.y2c{bottom:928.293333pt;}
.y7d{bottom:932.933333pt;}
.y4{bottom:937.733333pt;}
.ya9{bottom:943.173333pt;}
.y2b{bottom:948.933333pt;}
.ycb{bottom:953.573333pt;}
.y7c{bottom:961.573333pt;}
.y2a{bottom:969.573333pt;}
.ya8{bottom:972.453333pt;}
.y3{bottom:975.173333pt;}
.y7b{bottom:982.053333pt;}
.y29{bottom:990.053333pt;}
.ya7{bottom:1001.893333pt;}
.ye8{bottom:1008.933333pt;}
.y28{bottom:1010.693333pt;}
.y2{bottom:1015.333333pt;}
.y27{bottom:1031.360000pt;}
.y1{bottom:1043.840000pt;}
.y26{bottom:1051.840000pt;}
.h9{height:25.920000pt;}
.he{height:27.712000pt;}
.h4{height:35.520000pt;}
.h8{height:36.609375pt;}
.h11{height:36.640000pt;}
.h12{height:36.672000pt;}
.ha{height:43.840000pt;}
.hb{height:43.872000pt;}
.h2{height:58.563750pt;}
.h6{height:60.288750pt;}
.h5{height:60.937500pt;}
.hf{height:65.531250pt;}
.h7{height:71.296875pt;}
.h3{height:101.765625pt;}
.h10{height:105.440000pt;}
.hd{height:175.866667pt;}
.hc{height:304.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:121.760000pt;}
.w4{width:206.906667pt;}
.w6{width:263.706667pt;}
.w7{width:376.893333pt;}
.w5{width:433.693333pt;}
.wa{width:518.853333pt;}
.w3{width:594.533333pt;}
.w8{width:641.253333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.x6{left:26.560000pt;}
.x1{left:75.519988pt;}
.x9{left:82.394667pt;}
.x4{left:99.712000pt;}
.x2{left:101.631988pt;}
.x1a{left:113.311988pt;}
.xd{left:117.791988pt;}
.x5{left:120.954667pt;}
.x17{left:123.551988pt;}
.x19{left:145.946667pt;}
.xf{left:146.879988pt;}
.xb{left:151.226667pt;}
.xe{left:152.959988pt;}
.x10{left:158.239988pt;}
.x3{left:166.586655pt;}
.x1c{left:198.746667pt;}
.x1b{left:255.074667pt;}
.x8{left:256.706655pt;}
.xa{left:283.906667pt;}
.x11{left:327.066655pt;}
.x18{left:340.706667pt;}
.x12{left:356.186655pt;}
.x13{left:367.546655pt;}
.x14{left:536.386655pt;}
.x15{left:565.466655pt;}
.x16{left:576.826655pt;}
.x7{left:685.919988pt;}
}




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