
    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_c1d09c73082f6a74e55e87ea.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.891602;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_f3dcfcb8d2c999ac3656d35d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4244e0102cb56b580cf0bfa1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.693359;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_efec53bb7935b6be819728e0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_94296d3ed9e8979f0c80c7b6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_8eb1f191a5ce92430d9fdcd0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_8eb892127b05b31e4345c269.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.891113;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_28fcd2c929a33a2bcc8192cb.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_51ff7509dc9a62edc11c0662.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_108d6181cdd1174fe120302d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-27.321681px;}
.v2{vertical-align:-22.768068px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321681px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:4.494135px;}
.ls2{letter-spacing:9.000000px;}
.ls4{letter-spacing:13.500000px;}
.ls3{letter-spacing:27.000000px;}
.ls6{letter-spacing:84.023438px;}
.ls5{letter-spacing:346.500000px;}
.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:-18.000000px;}
.ws7{word-spacing:-16.500000px;}
.ws6{word-spacing:-15.000000px;}
.ws4{word-spacing:-10.800000px;}
.ws5{word-spacing:-9.000000px;}
.ws2{word-spacing:-2.893230px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:90.000000px;}
._17{margin-left:-18.000000px;}
._29{margin-left:-10.024088px;}
._1{margin-left:-8.538412px;}
._1f{margin-left:-7.475152px;}
._7{margin-left:-5.343750px;}
._10{margin-left:-3.471329px;}
._0{margin-left:-2.272151px;}
._1e{margin-left:-1.009691px;}
._11{width:1.606770px;}
._5{width:4.500001px;}
._14{width:6.093765px;}
._18{width:7.548175px;}
._3{width:8.999997px;}
._15{width:11.309897px;}
._2{width:13.500000px;}
._16{width:14.825516px;}
._1c{width:17.921409px;}
._4{width:22.500002px;}
._6{width:26.999999px;}
._19{width:31.499999px;}
._a{width:35.999996px;}
._9{width:40.500001px;}
._1a{width:45.000001px;}
._20{width:48.023438px;}
._13{width:49.499998px;}
._21{width:52.066406px;}
._12{width:54.000000px;}
._8{width:58.500022px;}
._22{width:63.000002px;}
._1d{width:67.500000px;}
._24{width:71.200524px;}
._23{width:72.799441px;}
._e{width:76.100290px;}
._f{width:77.330758px;}
._d{width:81.000001px;}
._36{width:84.023438px;}
._28{width:85.499991px;}
._27{width:89.999999px;}
._26{width:94.500022px;}
._25{width:99.000000px;}
._2a{width:103.499997px;}
._1b{width:108.000000px;}
._3a{width:125.367186px;}
._35{width:175.499988px;}
._34{width:180.000000px;}
._38{width:219.700551px;}
._39{width:221.299448px;}
._37{width:225.799456px;}
._33{width:270.399750px;}
._c{width:293.471372px;}
._b{width:297.000000px;}
._31{width:302.299455px;}
._2c{width:306.000014px;}
._2b{width:310.500002px;}
._2e{width:346.499995px;}
._2d{width:351.000001px;}
._32{width:985.500023px;}
._30{width:1026.000000px;}
._2f{width:2232.000022px;}
.fc4{color:rgb(17,85,204);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(5,16,62);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs7{font-size:43.200002px;}
.fsa{font-size:54.000000px;}
.fs9{font-size:59.999999px;}
.fs6{font-size:66.000002px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:78.000003px;}
.fs2{font-size:90.000000px;}
.fs1{font-size:108.000000px;}
.fs3{font-size:114.000003px;}
.fs0{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.y60{bottom:60.039553px;}
.y50{bottom:60.040093px;}
.y53{bottom:60.040288px;}
.y8d{bottom:60.041008px;}
.y55{bottom:111.410148px;}
.ya{bottom:112.443323px;}
.yc3{bottom:113.630858px;}
.y12f{bottom:113.636723px;}
.yc5{bottom:114.000003px;}
.ye3{bottom:114.679688px;}
.y52{bottom:117.101805px;}
.y5f{bottom:117.102165px;}
.y63{bottom:118.910148px;}
.yfe{bottom:126.679688px;}
.y8b{bottom:128.660148px;}
.y108{bottom:134.332028px;}
.y54{bottom:134.350710px;}
.y94{bottom:134.352165px;}
.yb7{bottom:135.679688px;}
.y62{bottom:136.158693px;}
.yc4{bottom:139.523070px;}
.yc2{bottom:140.774408px;}
.y24{bottom:144.679688px;}
.yd7{bottom:145.722652px;}
.y58{bottom:145.907223px;}
.y5b{bottom:151.599240px;}
.y97{bottom:151.600703px;}
.yfd{bottom:157.728517px;}
.y61{bottom:159.099240px;}
.y95{bottom:163.154298px;}
.y57{bottom:163.155768px;}
.y107{bottom:165.374992px;}
.y122{bottom:166.417973px;}
.yb6{bottom:166.728517px;}
.y8a{bottom:168.846315px;}
.y5c{bottom:168.847785px;}
.y98{bottom:168.913695px;}
.yc1{bottom:171.823238px;}
.y23{bottom:175.727048px;}
.y93{bottom:175.728517px;}
.y64{bottom:176.347785px;}
.yd6{bottom:176.771483px;}
.y6e{bottom:176.774408px;}
.y5e{bottom:180.404298px;}
.y56{bottom:186.096315px;}
.y67{bottom:187.904298px;}
.yfc{bottom:188.777348px;}
.y106{bottom:196.423823px;}
.y121{bottom:197.460938px;}
.y5a{bottom:197.652828px;}
.y96{bottom:197.654298px;}
.yb5{bottom:197.774408px;}
.y5d{bottom:203.344845px;}
.y8c{bottom:203.346315px;}
.y66{bottom:205.152828px;}
.y22{bottom:206.774408px;}
.ycd{bottom:206.777348px;}
.yd5{bottom:207.820312px;}
.y6d{bottom:207.823238px;}
.yc0{bottom:208.869143px;}
.y7f{bottom:214.901373px;}
.yfb{bottom:219.820312px;}
.y59{bottom:220.593390px;}
.y105{bottom:227.472652px;}
.y65{bottom:228.093390px;}
.y120{bottom:228.509768px;}
.yb4{bottom:228.820312px;}
.y9c{bottom:232.148433px;}
.y92{bottom:237.820312px;}
.y21{bottom:237.821783px;}
.y12e{bottom:237.826178px;}
.y7e{bottom:237.841920px;}
.y6c{bottom:238.869142px;}
.y69{bottom:239.649903px;}
.y9b{bottom:249.398433px;}
.y104{bottom:258.521483px;}
.yb3{bottom:259.869142px;}
.y68{bottom:262.590450px;}
.ybf{bottom:263.917973px;}
.y9a{bottom:266.648433px;}
.y20{bottom:268.869142px;}
.y6b{bottom:269.917973px;}
.yfa{bottom:281.917973px;}
.y103{bottom:289.570312px;}
.y99{bottom:289.587525px;}
.y11f{bottom:290.601563px;}
.yb2{bottom:290.917973px;}
.y9{bottom:293.014983px;}
.ybe{bottom:294.963863px;}
.y12d{bottom:299.912108px;}
.y51{bottom:299.916503px;}
.y89{bottom:299.917973px;}
.yd4{bottom:300.960938px;}
.y7d{bottom:300.963863px;}
.y9e{bottom:301.142583px;}
.y6a{bottom:306.963863px;}
.yf9{bottom:312.960938px;}
.y102{bottom:320.613278px;}
.y11e{bottom:321.644528px;}
.yb1{bottom:321.963863px;}
.y9d{bottom:324.084600px;}
.ybd{bottom:326.009768px;}
.y8{bottom:326.649633px;}
.yc7{bottom:330.960938px;}
.y1f{bottom:330.963863px;}
.yd3{bottom:332.009768px;}
.y7c{bottom:332.012693px;}
.yf8{bottom:344.009768px;}
.y101{bottom:351.662108px;}
.y11d{bottom:352.699223px;}
.yb0{bottom:353.009768px;}
.ybc{bottom:357.058598px;}
.y88{bottom:362.009768px;}
.y1e{bottom:362.011238px;}
.y12c{bottom:362.015617px;}
.y7b{bottom:363.058598px;}
.yf7{bottom:375.058598px;}
.y4f{bottom:381.588323px;}
.yaf{bottom:384.058598px;}
.ybb{bottom:388.107428px;}
.y1d{bottom:393.058598px;}
.ye2{bottom:394.101563px;}
.y7a{bottom:394.107428px;}
.yf6{bottom:406.107428px;}
.y11c{bottom:414.796867px;}
.yae{bottom:415.107428px;}
.yba{bottom:419.153318px;}
.y4e{bottom:422.984798px;}
.y12b{bottom:424.101563px;}
.y1c{bottom:424.105957px;}
.y87{bottom:424.107428px;}
.yd2{bottom:425.150393px;}
.y79{bottom:425.153318px;}
.y3d{bottom:436.248053px;}
.yf5{bottom:437.156242px;}
.y100{bottom:444.802733px;}
.y11b{bottom:445.839847px;}
.yad{bottom:446.153318px;}
.yb9{bottom:450.199223px;}
.y1b{bottom:455.153318px;}
.yc6{bottom:455.156242px;}
.yd1{bottom:456.199223px;}
.y78{bottom:456.202148px;}
.y4d{bottom:464.381287px;}
.yff{bottom:465.503903px;}
.y3c{bottom:471.795413px;}
.y11a{bottom:476.888678px;}
.yac{bottom:477.199223px;}
.y86{bottom:486.199222px;}
.y1a{bottom:486.200677px;}
.y77{bottom:487.248052px;}
.yb8{bottom:490.248052px;}
.yf4{bottom:499.248052px;}
.y4c{bottom:505.777777px;}
.y3b{bottom:507.342773px;}
.y119{bottom:507.931642px;}
.yab{bottom:508.248052px;}
.y2a{bottom:517.248052px;}
.yd0{bottom:518.296867px;}
.y7{bottom:527.142419px;}
.yf3{bottom:530.296867px;}
.y118{bottom:538.980473px;}
.y3a{bottom:542.890133px;}
.y4b{bottom:547.174252px;}
.y12a{bottom:548.291018px;}
.y19{bottom:548.295412px;}
.y85{bottom:548.296867px;}
.ycf{bottom:549.339848px;}
.y76{bottom:549.342773px;}
.yf2{bottom:561.339848px;}
.yaa{bottom:570.342773px;}
.y6{bottom:576.300749px;}
.y39{bottom:578.437492px;}
.ycc{bottom:579.339848px;}
.y29{bottom:579.342773px;}
.ye1{bottom:580.388678px;}
.y75{bottom:580.391602px;}
.yce{bottom:586.388678px;}
.y4a{bottom:588.570743px;}
.yf1{bottom:592.388678px;}
.y117{bottom:601.078118px;}
.ya9{bottom:601.388678px;}
.y84{bottom:610.388678px;}
.y28{bottom:610.390133px;}
.y74{bottom:611.437492px;}
.y38{bottom:613.984868px;}
.y5{bottom:625.459079px;}
.y49{bottom:629.967218px;}
.y116{bottom:632.121098px;}
.ya8{bottom:632.437492px;}
.y18{bottom:641.437492px;}
.ye0{bottom:642.480473px;}
.y73{bottom:642.486322px;}
.y37{bottom:649.532228px;}
.yf0{bottom:654.486322px;}
.y115{bottom:663.175777px;}
.ya7{bottom:663.486322px;}
.y48{bottom:671.363708px;}
.y129{bottom:672.480473px;}
.y17{bottom:672.484868px;}
.y83{bottom:672.486322px;}
.y36{bottom:685.079588px;}
.yef{bottom:685.535152px;}
.y114{bottom:694.218742px;}
.ya6{bottom:694.532228px;}
.y27{bottom:703.532228px;}
.ycb{bottom:703.535152px;}
.ydf{bottom:704.578118px;}
.y72{bottom:704.581058px;}
.y47{bottom:712.760198px;}
.y35{bottom:720.626948px;}
.y113{bottom:725.267573px;}
.ya5{bottom:725.578118px;}
.y4{bottom:732.152435px;}
.y82{bottom:734.578118px;}
.y16{bottom:734.579588px;}
.y128{bottom:734.583982px;}
.y71{bottom:735.626948px;}
.yee{bottom:747.626948px;}
.y46{bottom:754.156673px;}
.y34{bottom:756.174322px;}
.ya4{bottom:756.626948px;}
.y15{bottom:765.626948px;}
.y70{bottom:766.675777px;}
.yed{bottom:778.675777px;}
.y112{bottom:787.359367px;}
.y3{bottom:787.560243px;}
.ya3{bottom:787.675777px;}
.y33{bottom:791.721683px;}
.y45{bottom:795.553163px;}
.y14{bottom:796.674322px;}
.y81{bottom:796.675777px;}
.yde{bottom:797.718742px;}
.y6f{bottom:803.721683px;}
.yec{bottom:809.718742px;}
.y111{bottom:818.402348px;}
.y32{bottom:827.269043px;}
.yca{bottom:827.718742px;}
.y13{bottom:827.721683px;}
.ydd{bottom:828.767573px;}
.y44{bottom:836.949652px;}
.yeb{bottom:840.767573px;}
.y110{bottom:849.457028px;}
.ya2{bottom:849.767573px;}
.y2{bottom:854.151126px;}
.y80{bottom:858.767573px;}
.y12{bottom:858.769043px;}
.y127{bottom:858.773438px;}
.ydc{bottom:859.816402px;}
.y31{bottom:862.816402px;}
.yea{bottom:871.816402px;}
.y43{bottom:878.346127px;}
.y10f{bottom:880.499992px;}
.ya1{bottom:880.816402px;}
.y26{bottom:889.816402px;}
.ydb{bottom:890.859367px;}
.y30{bottom:898.363762px;}
.ye9{bottom:902.865232px;}
.y1{bottom:903.716631px;}
.ya0{bottom:911.865232px;}
.y42{bottom:919.742618px;}
.y126{bottom:920.859367px;}
.y11{bottom:920.863762px;}
.y91{bottom:920.865232px;}
.yda{bottom:921.908197px;}
.y2f{bottom:933.911137px;}
.y10e{bottom:942.597652px;}
.y9f{bottom:942.911137px;}
.y10{bottom:951.911137px;}
.yc9{bottom:951.914062px;}
.yd9{bottom:952.957027px;}
.y41{bottom:961.139092px;}
.ye8{bottom:964.957027px;}
.y2e{bottom:969.458498px;}
.y10d{bottom:973.646483px;}
.y90{bottom:982.957027px;}
.yf{bottom:982.958498px;}
.y125{bottom:982.962892px;}
.yd8{bottom:990.005860px;}
.ye7{bottom:996.005859px;}
.y2d{bottom:1000.505859px;}
.y40{bottom:1002.535584px;}
.y10c{bottom:1004.689454px;}
.ye{bottom:1014.005859px;}
.ye6{bottom:1027.054688px;}
.y10b{bottom:1035.738280px;}
.y2c{bottom:1036.053222px;}
.y3f{bottom:1043.932068px;}
.y124{bottom:1045.048829px;}
.yd{bottom:1045.053222px;}
.y8f{bottom:1045.054688px;}
.ye5{bottom:1058.097655px;}
.y10a{bottom:1059.539062px;}
.y2b{bottom:1071.600586px;}
.yc8{bottom:1076.097655px;}
.yc{bottom:1076.100586px;}
.y109{bottom:1083.339843px;}
.y3e{bottom:1085.328552px;}
.ye4{bottom:1089.146484px;}
.y8e{bottom:1107.146484px;}
.y25{bottom:1107.147950px;}
.y123{bottom:1107.152343px;}
.yb{bottom:1138.195312px;}
.hd{height:32.273438px;}
.hb{height:44.730470px;}
.h7{height:48.796875px;}
.h6{height:49.992188px;}
.he{height:53.789061px;}
.h5{height:54.158205px;}
.h3{height:62.490234px;}
.h9{height:63.351563px;}
.h8{height:64.546875px;}
.hc{height:66.049807px;}
.h2{height:73.195313px;}
.h4{height:77.261721px;}
.h1{height:81.328123px;}
.ha{height:107.625000px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x8{left:108.000000px;}
.xc{left:121.500000px;}
.x5{left:123.859569px;}
.xb{left:135.000000px;}
.x7{left:139.456328px;}
.x6{left:150.398584px;}
.x1{left:161.138655px;}
.xe{left:189.000000px;}
.x11{left:202.500000px;}
.xf{left:216.000000px;}
.x3{left:227.426666px;}
.x2{left:235.809079px;}
.x4{left:348.354270px;}
.xa{left:377.453756px;}
.x9{left:576.964159px;}
.x10{left:768.425130px;}
.xd{left:776.669265px;}
@media print{
.v3{vertical-align:-24.285938pt;}
.v2{vertical-align:-20.238283pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285938pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:3.994787pt;}
.ls2{letter-spacing:8.000000pt;}
.ls4{letter-spacing:12.000000pt;}
.ls3{letter-spacing:24.000000pt;}
.ls6{letter-spacing:74.687500pt;}
.ls5{letter-spacing:308.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-14.666667pt;}
.ws6{word-spacing:-13.333333pt;}
.ws4{word-spacing:-9.600000pt;}
.ws5{word-spacing:-8.000000pt;}
.ws2{word-spacing:-2.571760pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:80.000000pt;}
._17{margin-left:-16.000000pt;}
._29{margin-left:-8.910301pt;}
._1{margin-left:-7.589700pt;}
._1f{margin-left:-6.644580pt;}
._7{margin-left:-4.750000pt;}
._10{margin-left:-3.085626pt;}
._0{margin-left:-2.019690pt;}
._1e{margin-left:-0.897503pt;}
._11{width:1.428240pt;}
._5{width:4.000001pt;}
._14{width:5.416680pt;}
._18{width:6.709489pt;}
._3{width:7.999997pt;}
._15{width:10.053242pt;}
._2{width:12.000000pt;}
._16{width:13.178237pt;}
._1c{width:15.930142pt;}
._4{width:20.000002pt;}
._6{width:24.000000pt;}
._19{width:27.999999pt;}
._a{width:31.999996pt;}
._9{width:36.000001pt;}
._1a{width:40.000001pt;}
._20{width:42.687500pt;}
._13{width:43.999999pt;}
._21{width:46.281250pt;}
._12{width:48.000000pt;}
._8{width:52.000019pt;}
._22{width:56.000002pt;}
._1d{width:60.000000pt;}
._24{width:63.289354pt;}
._23{width:64.710614pt;}
._e{width:67.644702pt;}
._f{width:68.738452pt;}
._d{width:72.000001pt;}
._36{width:74.687500pt;}
._28{width:75.999992pt;}
._27{width:79.999999pt;}
._26{width:84.000019pt;}
._25{width:88.000000pt;}
._2a{width:91.999997pt;}
._1b{width:96.000000pt;}
._3a{width:111.437498pt;}
._35{width:155.999989pt;}
._34{width:160.000000pt;}
._38{width:195.289379pt;}
._39{width:196.710620pt;}
._37{width:200.710627pt;}
._33{width:240.355333pt;}
._c{width:260.863442pt;}
._b{width:264.000000pt;}
._31{width:268.710627pt;}
._2c{width:272.000013pt;}
._2b{width:276.000002pt;}
._2e{width:307.999996pt;}
._2d{width:312.000001pt;}
._32{width:876.000020pt;}
._30{width:912.000000pt;}
._2f{width:1984.000020pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:38.400002pt;}
.fsa{font-size:48.000000pt;}
.fs9{font-size:53.333332pt;}
.fs6{font-size:58.666668pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:69.333336pt;}
.fs2{font-size:80.000000pt;}
.fs1{font-size:96.000000pt;}
.fs3{font-size:101.333336pt;}
.fs0{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:53.368492pt;}
.y50{bottom:53.368972pt;}
.y53{bottom:53.369145pt;}
.y8d{bottom:53.369785pt;}
.y55{bottom:99.031243pt;}
.ya{bottom:99.949620pt;}
.yc3{bottom:101.005207pt;}
.y12f{bottom:101.010420pt;}
.yc5{bottom:101.333336pt;}
.ye3{bottom:101.937500pt;}
.y52{bottom:104.090494pt;}
.y5f{bottom:104.090814pt;}
.y63{bottom:105.697910pt;}
.yfe{bottom:112.604167pt;}
.y8b{bottom:114.364576pt;}
.y108{bottom:119.406247pt;}
.y54{bottom:119.422854pt;}
.y94{bottom:119.424147pt;}
.yb7{bottom:120.604167pt;}
.y62{bottom:121.029950pt;}
.yc4{bottom:124.020507pt;}
.yc2{bottom:125.132807pt;}
.y24{bottom:128.604167pt;}
.yd7{bottom:129.531247pt;}
.y58{bottom:129.695310pt;}
.y5b{bottom:134.754880pt;}
.y97{bottom:134.756180pt;}
.yfd{bottom:140.203127pt;}
.y61{bottom:141.421547pt;}
.y95{bottom:145.026043pt;}
.y57{bottom:145.027350pt;}
.y107{bottom:146.999993pt;}
.y122{bottom:147.927087pt;}
.yb6{bottom:148.203127pt;}
.y8a{bottom:150.085614pt;}
.y5c{bottom:150.086920pt;}
.y98{bottom:150.145507pt;}
.yc1{bottom:152.731767pt;}
.y23{bottom:156.201820pt;}
.y93{bottom:156.203127pt;}
.y64{bottom:156.753587pt;}
.yd6{bottom:157.130207pt;}
.y6e{bottom:157.132807pt;}
.y5e{bottom:160.359376pt;}
.y56{bottom:165.418947pt;}
.y67{bottom:167.026043pt;}
.yfc{bottom:167.802087pt;}
.y106{bottom:174.598953pt;}
.y121{bottom:175.520833pt;}
.y5a{bottom:175.691403pt;}
.y96{bottom:175.692710pt;}
.yb5{bottom:175.799473pt;}
.y5d{bottom:180.750974pt;}
.y8c{bottom:180.752280pt;}
.y66{bottom:182.358070pt;}
.y22{bottom:183.799473pt;}
.ycd{bottom:183.802087pt;}
.yd5{bottom:184.729167pt;}
.y6d{bottom:184.731767pt;}
.yc0{bottom:185.661461pt;}
.y7f{bottom:191.023443pt;}
.yfb{bottom:195.395833pt;}
.y59{bottom:196.083014pt;}
.y105{bottom:202.197913pt;}
.y65{bottom:202.749680pt;}
.y120{bottom:203.119793pt;}
.yb4{bottom:203.395833pt;}
.y9c{bottom:206.354163pt;}
.y92{bottom:211.395833pt;}
.y21{bottom:211.397140pt;}
.y12e{bottom:211.401047pt;}
.y7e{bottom:211.415040pt;}
.y6c{bottom:212.328127pt;}
.y69{bottom:213.022136pt;}
.y9b{bottom:221.687496pt;}
.y104{bottom:229.796873pt;}
.yb3{bottom:230.994793pt;}
.y68{bottom:233.413734pt;}
.ybf{bottom:234.593753pt;}
.y9a{bottom:237.020830pt;}
.y20{bottom:238.994793pt;}
.y6b{bottom:239.927087pt;}
.yfa{bottom:250.593753pt;}
.y103{bottom:257.395833pt;}
.y99{bottom:257.411134pt;}
.y11f{bottom:258.312500pt;}
.yb2{bottom:258.593753pt;}
.y9{bottom:260.457762pt;}
.ybe{bottom:262.190100pt;}
.y12d{bottom:266.588540pt;}
.y51{bottom:266.592447pt;}
.y89{bottom:266.593753pt;}
.yd4{bottom:267.520833pt;}
.y7d{bottom:267.523433pt;}
.y9e{bottom:267.682296pt;}
.y6a{bottom:272.856767pt;}
.yf9{bottom:278.187500pt;}
.y102{bottom:284.989580pt;}
.y11e{bottom:285.906247pt;}
.yb1{bottom:286.190100pt;}
.y9d{bottom:288.075200pt;}
.ybd{bottom:289.786460pt;}
.y8{bottom:290.355229pt;}
.yc7{bottom:294.187500pt;}
.y1f{bottom:294.190100pt;}
.yd3{bottom:295.119793pt;}
.y7c{bottom:295.122393pt;}
.yf8{bottom:305.786460pt;}
.y101{bottom:312.588540pt;}
.y11d{bottom:313.510420pt;}
.yb0{bottom:313.786460pt;}
.ybc{bottom:317.385420pt;}
.y88{bottom:321.786460pt;}
.y1e{bottom:321.787767pt;}
.y12c{bottom:321.791660pt;}
.y7b{bottom:322.718753pt;}
.yf7{bottom:333.385420pt;}
.y4f{bottom:339.189620pt;}
.yaf{bottom:341.385420pt;}
.ybb{bottom:344.984380pt;}
.y1d{bottom:349.385420pt;}
.ye2{bottom:350.312500pt;}
.y7a{bottom:350.317713pt;}
.yf6{bottom:360.984380pt;}
.y11c{bottom:368.708327pt;}
.yae{bottom:368.984380pt;}
.yba{bottom:372.580727pt;}
.y4e{bottom:375.986487pt;}
.y12b{bottom:376.979167pt;}
.y1c{bottom:376.983073pt;}
.y87{bottom:376.984380pt;}
.yd2{bottom:377.911460pt;}
.y79{bottom:377.914060pt;}
.y3d{bottom:387.776047pt;}
.yf5{bottom:388.583327pt;}
.y100{bottom:395.380207pt;}
.y11b{bottom:396.302087pt;}
.yad{bottom:396.580727pt;}
.yb9{bottom:400.177087pt;}
.y1b{bottom:404.580727pt;}
.yc6{bottom:404.583327pt;}
.yd1{bottom:405.510420pt;}
.y78{bottom:405.513020pt;}
.y4d{bottom:412.783367pt;}
.yff{bottom:413.781247pt;}
.y3c{bottom:419.373700pt;}
.y11a{bottom:423.901047pt;}
.yac{bottom:424.177087pt;}
.y86{bottom:432.177087pt;}
.y1a{bottom:432.178380pt;}
.y77{bottom:433.109380pt;}
.yb8{bottom:435.776046pt;}
.yf4{bottom:443.776047pt;}
.y4c{bottom:449.580247pt;}
.y3b{bottom:450.971353pt;}
.y119{bottom:451.494793pt;}
.yab{bottom:451.776047pt;}
.y2a{bottom:459.776047pt;}
.yd0{bottom:460.708327pt;}
.y7{bottom:468.571039pt;}
.yf3{bottom:471.374993pt;}
.y118{bottom:479.093753pt;}
.y3a{bottom:482.569007pt;}
.y4b{bottom:486.377113pt;}
.y12a{bottom:487.369793pt;}
.y19{bottom:487.373700pt;}
.y85{bottom:487.374993pt;}
.ycf{bottom:488.302087pt;}
.y76{bottom:488.304687pt;}
.yf2{bottom:498.968753pt;}
.yaa{bottom:506.971353pt;}
.y6{bottom:512.267332pt;}
.y39{bottom:514.166660pt;}
.ycc{bottom:514.968753pt;}
.y29{bottom:514.971353pt;}
.ye1{bottom:515.901047pt;}
.y75{bottom:515.903647pt;}
.yce{bottom:521.234381pt;}
.y4a{bottom:523.173993pt;}
.yf1{bottom:526.567713pt;}
.y117{bottom:534.291660pt;}
.ya9{bottom:534.567713pt;}
.y84{bottom:542.567713pt;}
.y28{bottom:542.569007pt;}
.y74{bottom:543.499993pt;}
.y38{bottom:545.764327pt;}
.y5{bottom:555.963626pt;}
.y49{bottom:559.970860pt;}
.y116{bottom:561.885420pt;}
.ya8{bottom:562.166660pt;}
.y18{bottom:570.166660pt;}
.ye0{bottom:571.093753pt;}
.y73{bottom:571.098953pt;}
.y37{bottom:577.361980pt;}
.yf0{bottom:581.765620pt;}
.y115{bottom:589.489580pt;}
.ya7{bottom:589.765620pt;}
.y48{bottom:596.767740pt;}
.y129{bottom:597.760420pt;}
.y17{bottom:597.764327pt;}
.y83{bottom:597.765620pt;}
.y36{bottom:608.959633pt;}
.yef{bottom:609.364580pt;}
.y114{bottom:617.083327pt;}
.ya6{bottom:617.361980pt;}
.y27{bottom:625.361980pt;}
.ycb{bottom:625.364580pt;}
.ydf{bottom:626.291660pt;}
.y72{bottom:626.294273pt;}
.y47{bottom:633.564620pt;}
.y35{bottom:640.557287pt;}
.y113{bottom:644.682287pt;}
.ya5{bottom:644.958327pt;}
.y4{bottom:650.802165pt;}
.y82{bottom:652.958327pt;}
.y16{bottom:652.959633pt;}
.y128{bottom:652.963540pt;}
.y71{bottom:653.890620pt;}
.yee{bottom:664.557287pt;}
.y46{bottom:670.361487pt;}
.y34{bottom:672.154953pt;}
.ya4{bottom:672.557287pt;}
.y15{bottom:680.557287pt;}
.y70{bottom:681.489580pt;}
.yed{bottom:692.156247pt;}
.y112{bottom:699.874993pt;}
.y3{bottom:700.053550pt;}
.ya3{bottom:700.156247pt;}
.y33{bottom:703.752607pt;}
.y45{bottom:707.158367pt;}
.y14{bottom:708.154953pt;}
.y81{bottom:708.156247pt;}
.yde{bottom:709.083327pt;}
.y6f{bottom:714.419274pt;}
.yec{bottom:719.749993pt;}
.y111{bottom:727.468753pt;}
.y32{bottom:735.350260pt;}
.yca{bottom:735.749993pt;}
.y13{bottom:735.752607pt;}
.ydd{bottom:736.682287pt;}
.y44{bottom:743.955247pt;}
.yeb{bottom:747.348953pt;}
.y110{bottom:755.072913pt;}
.ya2{bottom:755.348953pt;}
.y2{bottom:759.245446pt;}
.y80{bottom:763.348953pt;}
.y12{bottom:763.350260pt;}
.y127{bottom:763.354167pt;}
.ydc{bottom:764.281247pt;}
.y31{bottom:766.947913pt;}
.yea{bottom:774.947913pt;}
.y43{bottom:780.752113pt;}
.y10f{bottom:782.666660pt;}
.ya1{bottom:782.947913pt;}
.y26{bottom:790.947913pt;}
.ydb{bottom:791.874993pt;}
.y30{bottom:798.545567pt;}
.ye9{bottom:802.546873pt;}
.y1{bottom:803.303672pt;}
.ya0{bottom:810.546873pt;}
.y42{bottom:817.548993pt;}
.y126{bottom:818.541660pt;}
.y11{bottom:818.545567pt;}
.y91{bottom:818.546873pt;}
.yda{bottom:819.473953pt;}
.y2f{bottom:830.143233pt;}
.y10e{bottom:837.864580pt;}
.y9f{bottom:838.143233pt;}
.y10{bottom:846.143233pt;}
.yc9{bottom:846.145833pt;}
.yd9{bottom:847.072913pt;}
.y41{bottom:854.345860pt;}
.ye8{bottom:857.739580pt;}
.y2e{bottom:861.740887pt;}
.y10d{bottom:865.463540pt;}
.y90{bottom:873.739580pt;}
.yf{bottom:873.740887pt;}
.y125{bottom:873.744793pt;}
.yd8{bottom:880.005209pt;}
.ye7{bottom:885.338541pt;}
.y2d{bottom:889.338541pt;}
.y40{bottom:891.142741pt;}
.y10c{bottom:893.057292pt;}
.ye{bottom:901.338541pt;}
.ye6{bottom:912.937500pt;}
.y10b{bottom:920.656249pt;}
.y2c{bottom:920.936197pt;}
.y3f{bottom:927.939616pt;}
.y124{bottom:928.932292pt;}
.yd{bottom:928.936197pt;}
.y8f{bottom:928.937500pt;}
.ye5{bottom:940.531249pt;}
.y10a{bottom:941.812500pt;}
.y2b{bottom:952.533855pt;}
.yc8{bottom:956.531249pt;}
.yc{bottom:956.533855pt;}
.y109{bottom:962.968749pt;}
.y3e{bottom:964.736491pt;}
.ye4{bottom:968.130208pt;}
.y8e{bottom:984.130208pt;}
.y25{bottom:984.131511pt;}
.y123{bottom:984.135416pt;}
.yb{bottom:1011.729167pt;}
.hd{height:28.687500pt;}
.hb{height:39.760418pt;}
.h7{height:43.375000pt;}
.h6{height:44.437500pt;}
.he{height:47.812499pt;}
.h5{height:48.140627pt;}
.h3{height:55.546875pt;}
.h9{height:56.312500pt;}
.h8{height:57.375000pt;}
.hc{height:58.710940pt;}
.h2{height:65.062500pt;}
.h4{height:68.677085pt;}
.h1{height:72.291665pt;}
.ha{height:95.666667pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x8{left:96.000000pt;}
.xc{left:108.000000pt;}
.x5{left:110.097395pt;}
.xb{left:120.000000pt;}
.x7{left:123.961180pt;}
.x6{left:133.687630pt;}
.x1{left:143.234360pt;}
.xe{left:168.000000pt;}
.x11{left:180.000000pt;}
.xf{left:192.000000pt;}
.x3{left:202.157036pt;}
.x2{left:209.608070pt;}
.x4{left:309.648240pt;}
.xa{left:335.514450pt;}
.x9{left:512.857030pt;}
.x10{left:683.044560pt;}
.xd{left:690.372680pt;}
}




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