
    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_c98ada7f9e37a58efd5163d6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976074;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_2851f4cf653ac1b6c654e3ca.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_d345fe832ab4dbc6b8507d2c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_73a5644a3000f06393111eb2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_c34a336f9cae7e4613867683.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_b5bc1861f9ed50951ddfd8d4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4d671de2642650475534e9de.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.095703;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_f5d2034c7421eafdc2c358eb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_c5e30702988f9fd2a00a8080.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.767578;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;}
.ls3{letter-spacing:-2.160000px;}
.ls8{letter-spacing:-0.792000px;}
.lsb{letter-spacing:-0.720000px;}
.ls1{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.109200px;}
.ls5{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.792000px;}
.ls2{letter-spacing:15.840000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-18.720000px;}
.ws7{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.784000px;}
.ws1{word-spacing:-17.712000px;}
.ws5{word-spacing:-17.208000px;}
.wsb{word-spacing:-16.669200px;}
.ws9{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.840000px;}
.ws2{word-spacing:0.000000px;}
._f{margin-left:-2.040000px;}
._1{margin-left:-1.008000px;}
._0{width:1.008000px;}
._8{width:2.136000px;}
._9{width:3.528000px;}
._e{width:4.608000px;}
._a{width:6.264000px;}
._5{width:7.848000px;}
._6{width:8.928000px;}
._7{width:9.948000px;}
._14{width:11.952000px;}
._19{width:13.680000px;}
._10{width:14.688000px;}
._11{width:15.912000px;}
._1a{width:16.956000px;}
._15{width:19.248000px;}
._b{width:20.304000px;}
._2{width:22.176000px;}
._3{width:23.328000px;}
._4{width:24.636000px;}
._13{width:25.692000px;}
._12{width:26.748000px;}
._16{width:27.876000px;}
._17{width:29.064000px;}
._1c{width:30.228000px;}
._20{width:31.824000px;}
._21{width:32.904000px;}
._1d{width:33.912000px;}
._1e{width:35.136000px;}
._1f{width:36.168000px;}
._1b{width:37.176000px;}
._c{width:38.664000px;}
._d{width:39.840000px;}
._18{width:41.304000px;}
._22{width:68.904000px;}
._23{width:69.924000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y65{bottom:3.960000px;}
.y8c{bottom:6.480000px;}
.y90{bottom:6.660000px;}
.y8e{bottom:6.840000px;}
.y91{bottom:7.020000px;}
.ycb{bottom:17.820000px;}
.y64{bottom:23.040000px;}
.yc8{bottom:28.620000px;}
.ycd{bottom:28.800000px;}
.yc9{bottom:39.600000px;}
.yc7{bottom:50.580000px;}
.y63{bottom:50.940000px;}
.yca{bottom:61.380000px;}
.y62{bottom:70.020000px;}
.yc6{bottom:72.360000px;}
.y61{bottom:97.920000px;}
.y60{bottom:116.820000px;}
.y28{bottom:117.576000px;}
.y119{bottom:117.936000px;}
.ya4{bottom:118.656000px;}
.y56{bottom:118.836000px;}
.yf0{bottom:123.516000px;}
.yc3{bottom:136.836000px;}
.y27{bottom:138.276000px;}
.y118{bottom:138.636000px;}
.ya3{bottom:139.356000px;}
.y55{bottom:139.536000px;}
.y7c{bottom:141.696000px;}
.yef{bottom:144.216000px;}
.y5f{bottom:144.900000px;}
.yc2{bottom:157.530000px;}
.y26{bottom:158.970000px;}
.y117{bottom:159.330000px;}
.ya2{bottom:160.050000px;}
.y54{bottom:160.230000px;}
.y7b{bottom:162.390000px;}
.y5e{bottom:163.845000px;}
.yee{bottom:164.910000px;}
.yc1{bottom:178.230000px;}
.y25{bottom:179.670000px;}
.ya1{bottom:180.750000px;}
.y53{bottom:180.930000px;}
.y7a{bottom:183.090000px;}
.yed{bottom:185.610000px;}
.y116{bottom:189.030000px;}
.y5d{bottom:191.925000px;}
.yc0{bottom:198.930000px;}
.y24{bottom:200.370000px;}
.y52{bottom:201.630000px;}
.yec{bottom:206.310000px;}
.y115{bottom:209.730000px;}
.ya0{bottom:210.450000px;}
.y5c{bottom:210.825000px;}
.y79{bottom:212.790000px;}
.ybf{bottom:219.630000px;}
.y51{bottom:222.330000px;}
.yeb{bottom:227.010000px;}
.y23{bottom:230.070000px;}
.y114{bottom:230.430000px;}
.y9f{bottom:231.150000px;}
.y78{bottom:233.490000px;}
.ybe{bottom:240.330000px;}
.y50{bottom:243.030000px;}
.y22{bottom:250.770000px;}
.y9e{bottom:251.850000px;}
.y77{bottom:254.190000px;}
.yea{bottom:256.710000px;}
.y113{bottom:260.130000px;}
.y4f{bottom:263.730000px;}
.ybd{bottom:270.030000px;}
.y21{bottom:271.470000px;}
.y9d{bottom:272.550000px;}
.y76{bottom:274.935000px;}
.ye9{bottom:277.455000px;}
.y112{bottom:280.875000px;}
.y4e{bottom:284.475000px;}
.ybc{bottom:290.775000px;}
.y20{bottom:292.215000px;}
.y9c{bottom:293.295000px;}
.y75{bottom:295.635000px;}
.ye8{bottom:298.155000px;}
.y111{bottom:301.395000px;}
.y4d{bottom:305.175000px;}
.ybb{bottom:311.475000px;}
.y1f{bottom:312.915000px;}
.ye7{bottom:318.855000px;}
.y9b{bottom:322.995000px;}
.y74{bottom:325.335000px;}
.y4c{bottom:325.875000px;}
.y110{bottom:331.095000px;}
.yba{bottom:332.175000px;}
.y1e{bottom:333.615000px;}
.ye6{bottom:339.555000px;}
.y9a{bottom:343.695000px;}
.y73{bottom:346.035000px;}
.y10f{bottom:351.795000px;}
.yb9{bottom:352.875000px;}
.y4b{bottom:355.035000px;}
.ye5{bottom:360.255000px;}
.y1d{bottom:363.315000px;}
.y99{bottom:364.395000px;}
.y72{bottom:366.735000px;}
.y10e{bottom:372.495000px;}
.ye4{bottom:380.955000px;}
.yb8{bottom:382.395000px;}
.y1c{bottom:384.015000px;}
.y98{bottom:385.095000px;}
.y71{bottom:387.435000px;}
.y4a{bottom:394.095000px;}
.y10d{bottom:402.195000px;}
.yb7{bottom:403.095000px;}
.y1b{bottom:404.715000px;}
.y97{bottom:405.795000px;}
.ye3{bottom:410.655000px;}
.y49{bottom:414.795000px;}
.y70{bottom:417.135000px;}
.y10c{bottom:422.895000px;}
.yb6{bottom:423.795000px;}
.y1a{bottom:425.415000px;}
.ye2{bottom:431.175000px;}
.y48{bottom:435.495000px;}
.y6f{bottom:437.835000px;}
.y10b{bottom:443.595000px;}
.yb5{bottom:444.495000px;}
.y19{bottom:446.115000px;}
.ye1{bottom:451.875000px;}
.y47{bottom:456.195000px;}
.y6e{bottom:458.535000px;}
.yb4{bottom:465.195000px;}
.y18{bottom:466.815000px;}
.ye0{bottom:472.575000px;}
.y10a{bottom:473.295000px;}
.y46{bottom:476.895000px;}
.y6d{bottom:479.235000px;}
.yb3{bottom:485.895000px;}
.y109{bottom:493.995000px;}
.y17{bottom:496.155000px;}
.y45{bottom:497.595000px;}
.ydf{bottom:502.275000px;}
.yb2{bottom:506.595000px;}
.y6c{bottom:508.935000px;}
.y108{bottom:514.695000px;}
.y96{bottom:518.295000px;}
.yde{bottom:522.975000px;}
.y44{bottom:527.295000px;}
.y6b{bottom:529.455000px;}
.y16{bottom:535.215000px;}
.yb1{bottom:536.295000px;}
.ydd{bottom:543.675000px;}
.y107{bottom:544.395000px;}
.y43{bottom:547.995000px;}
.y6a{bottom:550.155000px;}
.y15{bottom:555.945000px;}
.y95{bottom:556.485000px;}
.yb0{bottom:557.025000px;}
.ydc{bottom:564.405000px;}
.y106{bottom:565.125000px;}
.y69{bottom:570.885000px;}
.y94{bottom:575.385000px;}
.y42{bottom:577.725000px;}
.y14{bottom:585.285000px;}
.y105{bottom:585.825000px;}
.yaf{bottom:586.725000px;}
.y68{bottom:591.585000px;}
.ydb{bottom:594.105000px;}
.y41{bottom:598.425000px;}
.y93{bottom:600.945000px;}
.yae{bottom:607.425000px;}
.y67{bottom:612.285000px;}
.y123{bottom:613.005000px;}
.yda{bottom:614.805000px;}
.y104{bottom:615.525000px;}
.y40{bottom:619.125000px;}
.y13{bottom:624.345000px;}
.y92{bottom:624.885000px;}
.yad{bottom:628.125000px;}
.yd9{bottom:635.505000px;}
.y103{bottom:636.225000px;}
.y3f{bottom:639.825000px;}
.y12{bottom:645.045000px;}
.y8f{bottom:648.825000px;}
.y66{bottom:650.625000px;}
.yd8{bottom:656.205000px;}
.y3e{bottom:660.525000px;}
.y11{bottom:665.745000px;}
.y102{bottom:665.925000px;}
.yac{bottom:669.525000px;}
.y8d{bottom:672.945000px;}
.y5b{bottom:675.285000px;}
.yd7{bottom:676.905000px;}
.y122{bottom:683.925000px;}
.y10{bottom:686.445000px;}
.y101{bottom:686.625000px;}
.y3d{bottom:690.225000px;}
.y8b{bottom:696.885000px;}
.yd6{bottom:697.605000px;}
.yf{bottom:707.145000px;}
.y100{bottom:707.325000px;}
.y3c{bottom:710.925000px;}
.y121{bottom:713.625000px;}
.yd5{bottom:718.305000px;}
.y8a{bottom:725.325000px;}
.ye{bottom:727.845000px;}
.y3b{bottom:731.625000px;}
.y120{bottom:734.325000px;}
.yff{bottom:737.025000px;}
.yd4{bottom:739.005000px;}
.yd{bottom:748.545000px;}
.y3a{bottom:752.325000px;}
.y89{bottom:755.025000px;}
.yfe{bottom:757.725000px;}
.yd3{bottom:759.705000px;}
.y11f{bottom:764.025000px;}
.yc{bottom:769.245000px;}
.y39{bottom:773.025000px;}
.y88{bottom:775.725000px;}
.yd2{bottom:780.405000px;}
.yab{bottom:782.025000px;}
.y11e{bottom:784.725000px;}
.yfd{bottom:787.425000px;}
.yb{bottom:789.945000px;}
.y38{bottom:793.725000px;}
.y87{bottom:805.065000px;}
.y11d{bottom:805.425000px;}
.yfc{bottom:808.125000px;}
.yd1{bottom:809.745000px;}
.ya{bottom:810.645000px;}
.yaa{bottom:811.725000px;}
.y37{bottom:814.425000px;}
.y9{bottom:831.345000px;}
.ya9{bottom:832.425000px;}
.y36{bottom:835.125000px;}
.yfb{bottom:837.825000px;}
.y86{bottom:844.170000px;}
.yd0{bottom:848.490000px;}
.ya8{bottom:853.170000px;}
.y11c{bottom:855.870000px;}
.yfa{bottom:858.570000px;}
.y8{bottom:860.730000px;}
.y35{bottom:864.510000px;}
.y85{bottom:864.870000px;}
.ycf{bottom:867.390000px;}
.ya7{bottom:873.870000px;}
.y11b{bottom:876.570000px;}
.yf9{bottom:879.270000px;}
.y84{bottom:885.570000px;}
.yce{bottom:892.050000px;}
.ya6{bottom:894.570000px;}
.y7{bottom:899.790000px;}
.y34{bottom:903.570000px;}
.y83{bottom:906.270000px;}
.yf8{bottom:908.970000px;}
.y5a{bottom:915.270000px;}
.y33{bottom:924.270000px;}
.y82{bottom:926.970000px;}
.y6{bottom:929.490000px;}
.yf7{bottom:929.670000px;}
.ya5{bottom:935.970000px;}
.y32{bottom:944.970000px;}
.y81{bottom:947.670000px;}
.y5{bottom:950.190000px;}
.ycc{bottom:958.290000px;}
.yf6{bottom:959.370000px;}
.y31{bottom:965.670000px;}
.y80{bottom:968.370000px;}
.y11a{bottom:977.370000px;}
.y4{bottom:979.530000px;}
.yf5{bottom:980.070000px;}
.y30{bottom:986.370000px;}
.y7f{bottom:998.070000px;}
.yf4{bottom:1000.770000px;}
.y2f{bottom:1007.070000px;}
.y7e{bottom:1018.770000px;}
.y3{bottom:1019.850000px;}
.yc5{bottom:1024.530000px;}
.y59{bottom:1027.770000px;}
.yf3{bottom:1030.470000px;}
.y2e{bottom:1036.770000px;}
.y58{bottom:1048.470000px;}
.yf2{bottom:1051.170000px;}
.y2d{bottom:1057.470000px;}
.y2{bottom:1061.430000px;}
.y57{bottom:1069.170000px;}
.y2c{bottom:1078.170000px;}
.yf1{bottom:1080.510000px;}
.y7d{bottom:1089.870000px;}
.y2b{bottom:1098.870000px;}
.y1{bottom:1102.830000px;}
.yc4{bottom:1112.550000px;}
.y2a{bottom:1119.570000px;}
.y29{bottom:1140.300000px;}
.hc{height:22.500000px;}
.hf{height:22.530000px;}
.h13{height:50.229844px;}
.h11{height:58.283437px;}
.hb{height:63.351562px;}
.h7{height:64.546875px;}
.ha{height:64.978594px;}
.h9{height:65.010937px;}
.h12{height:65.505000px;}
.hd{height:66.757500px;}
.h4{height:70.628906px;}
.h6{height:70.664062px;}
.h3{height:72.562500px;}
.he{height:74.004654px;}
.h5{height:75.093750px;}
.h2{height:84.585938px;}
.h10{height:87.285000px;}
.h8{height:234.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:84.096000px;}
.w4{width:84.240000px;}
.w6{width:94.485000px;}
.w7{width:94.521000px;}
.w8{width:95.025000px;}
.wa{width:105.660000px;}
.w9{width:169.039500px;}
.w3{width:170.839500px;}
.wb{width:361.335000px;}
.w2{width:627.390000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:6.289500px;}
.xa{left:7.729500px;}
.x28{left:12.240000px;}
.x20{left:13.680000px;}
.x1a{left:16.369500px;}
.xe{left:19.440000px;}
.x24{left:21.240000px;}
.x23{left:22.843500px;}
.x11{left:24.645000px;}
.x14{left:27.883500px;}
.x26{left:31.123500px;}
.x19{left:33.103500px;}
.x15{left:37.980000px;}
.x18{left:39.420000px;}
.x25{left:42.120000px;}
.x16{left:43.185000px;}
.x17{left:44.983500px;}
.x1e{left:46.243500px;}
.x27{left:48.600000px;}
.xc{left:52.543500px;}
.x29{left:61.770000px;}
.x21{left:105.150000px;}
.x8{left:127.656000px;}
.x9{left:132.886500px;}
.x5{left:147.096000px;}
.x2{left:148.896000px;}
.x1d{left:159.690000px;}
.x1{left:162.750000px;}
.x1b{left:164.370000px;}
.xb{left:180.930000px;}
.x1f{left:297.255000px;}
.x6{left:298.335000px;}
.xd{left:303.915000px;}
.x2a{left:313.995000px;}
.x4{left:360.615000px;}
.x7{left:385.095000px;}
.xf{left:388.875000px;}
.x3{left:394.635000px;}
.x1c{left:403.275000px;}
.x10{left:474.060000px;}
.x12{left:569.820000px;}
.x13{left:665.070000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-1.920000pt;}
.ls8{letter-spacing:-0.704000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls1{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.097067pt;}
.ls5{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.704000pt;}
.ls2{letter-spacing:14.080000pt;}
.ws6{word-spacing:-16.640000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws1{word-spacing:-15.744000pt;}
.ws5{word-spacing:-15.296000pt;}
.wsb{word-spacing:-14.817067pt;}
.ws9{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.080000pt;}
.ws2{word-spacing:0.000000pt;}
._f{margin-left:-1.813333pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.896000pt;}
._8{width:1.898667pt;}
._9{width:3.136000pt;}
._e{width:4.096000pt;}
._a{width:5.568000pt;}
._5{width:6.976000pt;}
._6{width:7.936000pt;}
._7{width:8.842667pt;}
._14{width:10.624000pt;}
._19{width:12.160000pt;}
._10{width:13.056000pt;}
._11{width:14.144000pt;}
._1a{width:15.072000pt;}
._15{width:17.109333pt;}
._b{width:18.048000pt;}
._2{width:19.712000pt;}
._3{width:20.736000pt;}
._4{width:21.898667pt;}
._13{width:22.837333pt;}
._12{width:23.776000pt;}
._16{width:24.778667pt;}
._17{width:25.834667pt;}
._1c{width:26.869333pt;}
._20{width:28.288000pt;}
._21{width:29.248000pt;}
._1d{width:30.144000pt;}
._1e{width:31.232000pt;}
._1f{width:32.149333pt;}
._1b{width:33.045333pt;}
._c{width:34.368000pt;}
._d{width:35.413333pt;}
._18{width:36.714667pt;}
._22{width:61.248000pt;}
._23{width:62.154667pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:3.520000pt;}
.y8c{bottom:5.760000pt;}
.y90{bottom:5.920000pt;}
.y8e{bottom:6.080000pt;}
.y91{bottom:6.240000pt;}
.ycb{bottom:15.840000pt;}
.y64{bottom:20.480000pt;}
.yc8{bottom:25.440000pt;}
.ycd{bottom:25.600000pt;}
.yc9{bottom:35.200000pt;}
.yc7{bottom:44.960000pt;}
.y63{bottom:45.280000pt;}
.yca{bottom:54.560000pt;}
.y62{bottom:62.240000pt;}
.yc6{bottom:64.320000pt;}
.y61{bottom:87.040000pt;}
.y60{bottom:103.840000pt;}
.y28{bottom:104.512000pt;}
.y119{bottom:104.832000pt;}
.ya4{bottom:105.472000pt;}
.y56{bottom:105.632000pt;}
.yf0{bottom:109.792000pt;}
.yc3{bottom:121.632000pt;}
.y27{bottom:122.912000pt;}
.y118{bottom:123.232000pt;}
.ya3{bottom:123.872000pt;}
.y55{bottom:124.032000pt;}
.y7c{bottom:125.952000pt;}
.yef{bottom:128.192000pt;}
.y5f{bottom:128.800000pt;}
.yc2{bottom:140.026667pt;}
.y26{bottom:141.306667pt;}
.y117{bottom:141.626667pt;}
.ya2{bottom:142.266667pt;}
.y54{bottom:142.426667pt;}
.y7b{bottom:144.346667pt;}
.y5e{bottom:145.640000pt;}
.yee{bottom:146.586667pt;}
.yc1{bottom:158.426667pt;}
.y25{bottom:159.706667pt;}
.ya1{bottom:160.666667pt;}
.y53{bottom:160.826667pt;}
.y7a{bottom:162.746667pt;}
.yed{bottom:164.986667pt;}
.y116{bottom:168.026667pt;}
.y5d{bottom:170.600000pt;}
.yc0{bottom:176.826667pt;}
.y24{bottom:178.106667pt;}
.y52{bottom:179.226667pt;}
.yec{bottom:183.386667pt;}
.y115{bottom:186.426667pt;}
.ya0{bottom:187.066667pt;}
.y5c{bottom:187.400000pt;}
.y79{bottom:189.146667pt;}
.ybf{bottom:195.226667pt;}
.y51{bottom:197.626667pt;}
.yeb{bottom:201.786667pt;}
.y23{bottom:204.506667pt;}
.y114{bottom:204.826667pt;}
.y9f{bottom:205.466667pt;}
.y78{bottom:207.546667pt;}
.ybe{bottom:213.626667pt;}
.y50{bottom:216.026667pt;}
.y22{bottom:222.906667pt;}
.y9e{bottom:223.866667pt;}
.y77{bottom:225.946667pt;}
.yea{bottom:228.186667pt;}
.y113{bottom:231.226667pt;}
.y4f{bottom:234.426667pt;}
.ybd{bottom:240.026667pt;}
.y21{bottom:241.306667pt;}
.y9d{bottom:242.266667pt;}
.y76{bottom:244.386667pt;}
.ye9{bottom:246.626667pt;}
.y112{bottom:249.666667pt;}
.y4e{bottom:252.866667pt;}
.ybc{bottom:258.466667pt;}
.y20{bottom:259.746667pt;}
.y9c{bottom:260.706667pt;}
.y75{bottom:262.786667pt;}
.ye8{bottom:265.026667pt;}
.y111{bottom:267.906667pt;}
.y4d{bottom:271.266667pt;}
.ybb{bottom:276.866667pt;}
.y1f{bottom:278.146667pt;}
.ye7{bottom:283.426667pt;}
.y9b{bottom:287.106667pt;}
.y74{bottom:289.186667pt;}
.y4c{bottom:289.666667pt;}
.y110{bottom:294.306667pt;}
.yba{bottom:295.266667pt;}
.y1e{bottom:296.546667pt;}
.ye6{bottom:301.826667pt;}
.y9a{bottom:305.506667pt;}
.y73{bottom:307.586667pt;}
.y10f{bottom:312.706667pt;}
.yb9{bottom:313.666667pt;}
.y4b{bottom:315.586667pt;}
.ye5{bottom:320.226667pt;}
.y1d{bottom:322.946667pt;}
.y99{bottom:323.906667pt;}
.y72{bottom:325.986667pt;}
.y10e{bottom:331.106667pt;}
.ye4{bottom:338.626667pt;}
.yb8{bottom:339.906667pt;}
.y1c{bottom:341.346667pt;}
.y98{bottom:342.306667pt;}
.y71{bottom:344.386667pt;}
.y4a{bottom:350.306667pt;}
.y10d{bottom:357.506667pt;}
.yb7{bottom:358.306667pt;}
.y1b{bottom:359.746667pt;}
.y97{bottom:360.706667pt;}
.ye3{bottom:365.026667pt;}
.y49{bottom:368.706667pt;}
.y70{bottom:370.786667pt;}
.y10c{bottom:375.906667pt;}
.yb6{bottom:376.706667pt;}
.y1a{bottom:378.146667pt;}
.ye2{bottom:383.266667pt;}
.y48{bottom:387.106667pt;}
.y6f{bottom:389.186667pt;}
.y10b{bottom:394.306667pt;}
.yb5{bottom:395.106667pt;}
.y19{bottom:396.546667pt;}
.ye1{bottom:401.666667pt;}
.y47{bottom:405.506667pt;}
.y6e{bottom:407.586667pt;}
.yb4{bottom:413.506667pt;}
.y18{bottom:414.946667pt;}
.ye0{bottom:420.066667pt;}
.y10a{bottom:420.706667pt;}
.y46{bottom:423.906667pt;}
.y6d{bottom:425.986667pt;}
.yb3{bottom:431.906667pt;}
.y109{bottom:439.106667pt;}
.y17{bottom:441.026667pt;}
.y45{bottom:442.306667pt;}
.ydf{bottom:446.466667pt;}
.yb2{bottom:450.306667pt;}
.y6c{bottom:452.386667pt;}
.y108{bottom:457.506667pt;}
.y96{bottom:460.706667pt;}
.yde{bottom:464.866667pt;}
.y44{bottom:468.706667pt;}
.y6b{bottom:470.626667pt;}
.y16{bottom:475.746667pt;}
.yb1{bottom:476.706667pt;}
.ydd{bottom:483.266667pt;}
.y107{bottom:483.906667pt;}
.y43{bottom:487.106667pt;}
.y6a{bottom:489.026667pt;}
.y15{bottom:494.173333pt;}
.y95{bottom:494.653333pt;}
.yb0{bottom:495.133333pt;}
.ydc{bottom:501.693333pt;}
.y106{bottom:502.333333pt;}
.y69{bottom:507.453333pt;}
.y94{bottom:511.453333pt;}
.y42{bottom:513.533333pt;}
.y14{bottom:520.253333pt;}
.y105{bottom:520.733333pt;}
.yaf{bottom:521.533333pt;}
.y68{bottom:525.853333pt;}
.ydb{bottom:528.093333pt;}
.y41{bottom:531.933333pt;}
.y93{bottom:534.173333pt;}
.yae{bottom:539.933333pt;}
.y67{bottom:544.253333pt;}
.y123{bottom:544.893333pt;}
.yda{bottom:546.493333pt;}
.y104{bottom:547.133333pt;}
.y40{bottom:550.333333pt;}
.y13{bottom:554.973333pt;}
.y92{bottom:555.453333pt;}
.yad{bottom:558.333333pt;}
.yd9{bottom:564.893333pt;}
.y103{bottom:565.533333pt;}
.y3f{bottom:568.733333pt;}
.y12{bottom:573.373333pt;}
.y8f{bottom:576.733333pt;}
.y66{bottom:578.333333pt;}
.yd8{bottom:583.293333pt;}
.y3e{bottom:587.133333pt;}
.y11{bottom:591.773333pt;}
.y102{bottom:591.933333pt;}
.yac{bottom:595.133333pt;}
.y8d{bottom:598.173333pt;}
.y5b{bottom:600.253333pt;}
.yd7{bottom:601.693333pt;}
.y122{bottom:607.933333pt;}
.y10{bottom:610.173333pt;}
.y101{bottom:610.333333pt;}
.y3d{bottom:613.533333pt;}
.y8b{bottom:619.453333pt;}
.yd6{bottom:620.093333pt;}
.yf{bottom:628.573333pt;}
.y100{bottom:628.733333pt;}
.y3c{bottom:631.933333pt;}
.y121{bottom:634.333333pt;}
.yd5{bottom:638.493333pt;}
.y8a{bottom:644.733333pt;}
.ye{bottom:646.973333pt;}
.y3b{bottom:650.333333pt;}
.y120{bottom:652.733333pt;}
.yff{bottom:655.133333pt;}
.yd4{bottom:656.893333pt;}
.yd{bottom:665.373333pt;}
.y3a{bottom:668.733333pt;}
.y89{bottom:671.133333pt;}
.yfe{bottom:673.533333pt;}
.yd3{bottom:675.293333pt;}
.y11f{bottom:679.133333pt;}
.yc{bottom:683.773333pt;}
.y39{bottom:687.133333pt;}
.y88{bottom:689.533333pt;}
.yd2{bottom:693.693333pt;}
.yab{bottom:695.133333pt;}
.y11e{bottom:697.533333pt;}
.yfd{bottom:699.933333pt;}
.yb{bottom:702.173333pt;}
.y38{bottom:705.533333pt;}
.y87{bottom:715.613333pt;}
.y11d{bottom:715.933333pt;}
.yfc{bottom:718.333333pt;}
.yd1{bottom:719.773333pt;}
.ya{bottom:720.573333pt;}
.yaa{bottom:721.533333pt;}
.y37{bottom:723.933333pt;}
.y9{bottom:738.973333pt;}
.ya9{bottom:739.933333pt;}
.y36{bottom:742.333333pt;}
.yfb{bottom:744.733333pt;}
.y86{bottom:750.373333pt;}
.yd0{bottom:754.213333pt;}
.ya8{bottom:758.373333pt;}
.y11c{bottom:760.773333pt;}
.yfa{bottom:763.173333pt;}
.y8{bottom:765.093333pt;}
.y35{bottom:768.453333pt;}
.y85{bottom:768.773333pt;}
.ycf{bottom:771.013333pt;}
.ya7{bottom:776.773333pt;}
.y11b{bottom:779.173333pt;}
.yf9{bottom:781.573333pt;}
.y84{bottom:787.173333pt;}
.yce{bottom:792.933333pt;}
.ya6{bottom:795.173333pt;}
.y7{bottom:799.813333pt;}
.y34{bottom:803.173333pt;}
.y83{bottom:805.573333pt;}
.yf8{bottom:807.973333pt;}
.y5a{bottom:813.573333pt;}
.y33{bottom:821.573333pt;}
.y82{bottom:823.973333pt;}
.y6{bottom:826.213333pt;}
.yf7{bottom:826.373333pt;}
.ya5{bottom:831.973333pt;}
.y32{bottom:839.973333pt;}
.y81{bottom:842.373333pt;}
.y5{bottom:844.613333pt;}
.ycc{bottom:851.813333pt;}
.yf6{bottom:852.773333pt;}
.y31{bottom:858.373333pt;}
.y80{bottom:860.773333pt;}
.y11a{bottom:868.773333pt;}
.y4{bottom:870.693333pt;}
.yf5{bottom:871.173333pt;}
.y30{bottom:876.773333pt;}
.y7f{bottom:887.173333pt;}
.yf4{bottom:889.573333pt;}
.y2f{bottom:895.173333pt;}
.y7e{bottom:905.573333pt;}
.y3{bottom:906.533333pt;}
.yc5{bottom:910.693333pt;}
.y59{bottom:913.573333pt;}
.yf3{bottom:915.973333pt;}
.y2e{bottom:921.573333pt;}
.y58{bottom:931.973333pt;}
.yf2{bottom:934.373333pt;}
.y2d{bottom:939.973333pt;}
.y2{bottom:943.493333pt;}
.y57{bottom:950.373333pt;}
.y2c{bottom:958.373333pt;}
.yf1{bottom:960.453333pt;}
.y7d{bottom:968.773333pt;}
.y2b{bottom:976.773333pt;}
.y1{bottom:980.293333pt;}
.yc4{bottom:988.933333pt;}
.y2a{bottom:995.173333pt;}
.y29{bottom:1013.600000pt;}
.hc{height:20.000000pt;}
.hf{height:20.026667pt;}
.h13{height:44.648750pt;}
.h11{height:51.807500pt;}
.hb{height:56.312500pt;}
.h7{height:57.375000pt;}
.ha{height:57.758750pt;}
.h9{height:57.787500pt;}
.h12{height:58.226667pt;}
.hd{height:59.340000pt;}
.h4{height:62.781250pt;}
.h6{height:62.812500pt;}
.h3{height:64.500000pt;}
.he{height:65.781915pt;}
.h5{height:66.750000pt;}
.h2{height:75.187500pt;}
.h10{height:77.586667pt;}
.h8{height:208.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:74.752000pt;}
.w4{width:74.880000pt;}
.w6{width:83.986667pt;}
.w7{width:84.018667pt;}
.w8{width:84.466667pt;}
.wa{width:93.920000pt;}
.w9{width:150.257333pt;}
.w3{width:151.857333pt;}
.wb{width:321.186667pt;}
.w2{width:557.680000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:5.590667pt;}
.xa{left:6.870667pt;}
.x28{left:10.880000pt;}
.x20{left:12.160000pt;}
.x1a{left:14.550667pt;}
.xe{left:17.280000pt;}
.x24{left:18.880000pt;}
.x23{left:20.305333pt;}
.x11{left:21.906667pt;}
.x14{left:24.785333pt;}
.x26{left:27.665333pt;}
.x19{left:29.425333pt;}
.x15{left:33.760000pt;}
.x18{left:35.040000pt;}
.x25{left:37.440000pt;}
.x16{left:38.386667pt;}
.x17{left:39.985333pt;}
.x1e{left:41.105333pt;}
.x27{left:43.200000pt;}
.xc{left:46.705333pt;}
.x29{left:54.906667pt;}
.x21{left:93.466667pt;}
.x8{left:113.472000pt;}
.x9{left:118.121333pt;}
.x5{left:130.752000pt;}
.x2{left:132.352000pt;}
.x1d{left:141.946667pt;}
.x1{left:144.666667pt;}
.x1b{left:146.106667pt;}
.xb{left:160.826667pt;}
.x1f{left:264.226667pt;}
.x6{left:265.186667pt;}
.xd{left:270.146667pt;}
.x2a{left:279.106667pt;}
.x4{left:320.546667pt;}
.x7{left:342.306667pt;}
.xf{left:345.666667pt;}
.x3{left:350.786667pt;}
.x1c{left:358.466667pt;}
.x10{left:421.386667pt;}
.x12{left:506.506667pt;}
.x13{left:591.173333pt;}
}




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