
    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_41a44d907a0f5ff90f656e69.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c53fdf569d1f1bc56faf6e71.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7254a36c6fcf3d4d92c8c843.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bcb22b5df3851c3acca60343.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b516d1743014485e60915c42.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.982910;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_5c0a30bd02d194da0766aa3a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.982910;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_d8c2eda08c3e7471def0651e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.957031;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_f4112ddbd48a2ba22d405b37.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.957031;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_55af54958d68690f122d1a02.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.776367;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_18b597515f9c3bc85173db30.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.093262;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_936e0d08022d77b1bfaa4e83.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.093262;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_03e841b331cbfcbfb1fdb5db.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.776367;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2b853960f95212b88e3abf5c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.924805;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;}
.lsc{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.732000px;}
.ls3{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.708000px;}
.lsa{letter-spacing:-0.648000px;}
.ls5{letter-spacing:-0.463800px;}
.ls11{letter-spacing:-0.423600px;}
.ls6{letter-spacing:-0.288000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.447600px;}
.ls9{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.518400px;}
.ls0{letter-spacing:0.535680px;}
.ls10{letter-spacing:0.599040px;}
.ls1{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.731520px;}
.lse{letter-spacing:0.911520px;}
.ls7{letter-spacing:0.966000px;}
.lsd{letter-spacing:10.224000px;}
.ls8{letter-spacing:11.664000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.wsa{word-spacing:-18.720000px;}
.ws7{word-spacing:-18.504000px;}
.ws8{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.712000px;}
.ws0{word-spacing:-16.272000px;}
.ws4{word-spacing:-14.970240px;}
.ws2{word-spacing:-14.506440px;}
.wsc{word-spacing:-14.186880px;}
.wsd{word-spacing:-13.668480px;}
.wsb{word-spacing:-13.244880px;}
.ws1{word-spacing:-11.634720px;}
.ws6{word-spacing:0.000000px;}
._1f{margin-left:-7.951680px;}
._19{margin-left:-6.552000px;}
._6{margin-left:-4.452000px;}
._2{margin-left:-2.980800px;}
._0{margin-left:-1.656000px;}
._1{width:1.008000px;}
._3{width:2.303520px;}
._7{width:4.044000px;}
._e{width:5.100000px;}
._b{width:6.120000px;}
._c{width:7.168800px;}
._1b{width:8.311200px;}
._1c{width:9.369600px;}
._9{width:10.584000px;}
._a{width:11.592000px;}
._1a{width:12.600000px;}
._d{width:13.752000px;}
._10{width:14.832000px;}
._f{width:16.560000px;}
._14{width:19.296000px;}
._13{width:20.952000px;}
._8{width:22.104000px;}
._18{width:23.832000px;}
._1e{width:25.248000px;}
._16{width:27.144000px;}
._15{width:28.512000px;}
._1d{width:29.736000px;}
._17{width:30.744000px;}
._12{width:32.356800px;}
._11{width:34.128000px;}
._5{width:833.489760px;}
._4{width:1591.325760px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc3{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs5{font-size:38.880000px;}
.fs3{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs4{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:57.240000px;}
.ya{bottom:77.436000px;}
.yaa{bottom:109.836000px;}
.y44{bottom:117.036000px;}
.yaf{bottom:121.716000px;}
.y63{bottom:123.876000px;}
.yf5{bottom:124.956000px;}
.y76{bottom:128.916000px;}
.y96{bottom:140.796000px;}
.yf4{bottom:143.316000px;}
.y43{bottom:147.996000px;}
.y20{bottom:151.590000px;}
.yae{bottom:153.030000px;}
.y62{bottom:154.830000px;}
.y75{bottom:159.870000px;}
.yf2{bottom:161.670000px;}
.yf3{bottom:167.070000px;}
.ya9{bottom:172.110000px;}
.y42{bottom:178.950000px;}
.yf0{bottom:180.030000px;}
.y94{bottom:183.990000px;}
.yf1{bottom:185.430000px;}
.y61{bottom:186.150000px;}
.y95{bottom:190.830000px;}
.y1f{bottom:194.790000px;}
.yef{bottom:198.435000px;}
.y74{bottom:203.115000px;}
.ya3{bottom:209.955000px;}
.y93{bottom:214.995000px;}
.yee{bottom:216.435000px;}
.yad{bottom:221.835000px;}
.y41{bottom:222.195000px;}
.y5f{bottom:229.035000px;}
.y73{bottom:234.075000px;}
.yec{bottom:234.795000px;}
.y60{bottom:235.875000px;}
.y1e{bottom:238.035000px;}
.yed{bottom:240.195000px;}
.ya2{bottom:241.275000px;}
.y92{bottom:245.955000px;}
.y40{bottom:253.155000px;}
.yeb{bottom:258.555000px;}
.y5e{bottom:259.995000px;}
.y72{bottom:265.035000px;}
.ye9{bottom:271.515000px;}
.ya1{bottom:272.235000px;}
.yea{bottom:276.915000px;}
.y91{bottom:277.275000px;}
.y1d{bottom:280.875000px;}
.y3f{bottom:284.115000px;}
.ye8{bottom:289.875000px;}
.y5d{bottom:291.315000px;}
.y71{bottom:295.995000px;}
.ya0{bottom:303.195000px;}
.y90{bottom:308.235000px;}
.ye7{bottom:313.635000px;}
.y3e{bottom:315.075000px;}
.y5b{bottom:322.275000px;}
.y1c{bottom:324.105000px;}
.ye6{bottom:326.625000px;}
.y70{bottom:327.345000px;}
.y5c{bottom:329.145000px;}
.y9f{bottom:334.185000px;}
.y8f{bottom:339.225000px;}
.ye4{bottom:344.625000px;}
.y3c{bottom:346.425000px;}
.ye5{bottom:350.025000px;}
.y3d{bottom:353.265000px;}
.y1b{bottom:355.065000px;}
.y6f{bottom:358.305000px;}
.ye3{bottom:362.985000px;}
.y8e{bottom:370.185000px;}
.y3b{bottom:377.385000px;}
.ye1{bottom:381.345000px;}
.y5a{bottom:384.225000px;}
.y1a{bottom:386.025000px;}
.ye2{bottom:386.745000px;}
.y6e{bottom:389.265000px;}
.ye0{bottom:399.705000px;}
.y8d{bottom:401.505000px;}
.y79{bottom:408.345000px;}
.y59{bottom:415.545000px;}
.y19{bottom:417.345000px;}
.yde{bottom:418.065000px;}
.y3a{bottom:420.225000px;}
.ydf{bottom:423.465000px;}
.y8c{bottom:432.465000px;}
.ydd{bottom:436.425000px;}
.y9d{bottom:439.305000px;}
.y9e{bottom:446.145000px;}
.y58{bottom:446.505000px;}
.y18{bottom:448.305000px;}
.y39{bottom:451.590000px;}
.ydb{bottom:454.830000px;}
.ydc{bottom:460.230000px;}
.y6d{bottom:463.470000px;}
.y9c{bottom:470.670000px;}
.yd9{bottom:473.190000px;}
.y8a{bottom:475.350000px;}
.yda{bottom:478.590000px;}
.y17{bottom:479.310000px;}
.y8b{bottom:482.190000px;}
.y38{bottom:482.550000px;}
.y57{bottom:489.750000px;}
.yd8{bottom:491.190000px;}
.y6c{bottom:494.430000px;}
.y9b{bottom:501.630000px;}
.y89{bottom:506.670000px;}
.yd6{bottom:509.550000px;}
.y16{bottom:510.270000px;}
.y37{bottom:513.510000px;}
.yd7{bottom:514.950000px;}
.y56{bottom:520.710000px;}
.y6b{bottom:525.750000px;}
.yd5{bottom:527.910000px;}
.y9a{bottom:532.590000px;}
.y88{bottom:537.630000px;}
.y15{bottom:541.230000px;}
.y36{bottom:544.470000px;}
.yd4{bottom:546.270000px;}
.y55{bottom:551.670000px;}
.y6a{bottom:556.710000px;}
.yb2{bottom:563.550000px;}
.yd3{bottom:564.630000px;}
.y87{bottom:568.590000px;}
.y35{bottom:575.820000px;}
.y53{bottom:582.660000px;}
.yd1{bottom:583.020000px;}
.y14{bottom:584.460000px;}
.y69{bottom:587.700000px;}
.yd2{bottom:588.420000px;}
.y54{bottom:589.500000px;}
.yb1{bottom:594.900000px;}
.y86{bottom:599.580000px;}
.yd0{bottom:601.380000px;}
.y34{bottom:606.780000px;}
.y52{bottom:613.620000px;}
.y68{bottom:618.660000px;}
.y13{bottom:619.380000px;}
.ycf{bottom:624.780000px;}
.yb0{bottom:625.860000px;}
.y85{bottom:630.900000px;}
.y33{bottom:637.740000px;}
.yce{bottom:643.140000px;}
.y51{bottom:644.940000px;}
.y67{bottom:649.620000px;}
.ycd{bottom:656.100000px;}
.y12{bottom:661.140000px;}
.y84{bottom:661.860000px;}
.y99{bottom:668.700000px;}
.ycb{bottom:674.460000px;}
.ycc{bottom:679.860000px;}
.y32{bottom:680.940000px;}
.y50{bottom:687.780000px;}
.y83{bottom:692.820000px;}
.y98{bottom:700.020000px;}
.y11{bottom:704.370000px;}
.yc9{bottom:711.210000px;}
.y31{bottom:711.930000px;}
.yca{bottom:716.610000px;}
.y4f{bottom:719.130000px;}
.y82{bottom:723.810000px;}
.yc8{bottom:729.570000px;}
.y97{bottom:731.010000px;}
.y30{bottom:742.890000px;}
.y10{bottom:747.570000px;}
.yc7{bottom:752.970000px;}
.y81{bottom:755.130000px;}
.y4e{bottom:761.970000px;}
.yc6{bottom:765.930000px;}
.y2f{bottom:773.850000px;}
.yc4{bottom:784.290000px;}
.y78{bottom:786.090000px;}
.yc5{bottom:789.690000px;}
.yf{bottom:790.410000px;}
.y4d{bottom:792.930000px;}
.yac{bottom:797.970000px;}
.yc3{bottom:802.650000px;}
.y2e{bottom:805.170000px;}
.ya8{bottom:812.010000px;}
.y77{bottom:817.050000px;}
.yc1{bottom:821.010000px;}
.ye{bottom:821.370000px;}
.y4c{bottom:824.250000px;}
.yc2{bottom:826.410000px;}
.yab{bottom:828.975000px;}
.y2d{bottom:836.175000px;}
.yc0{bottom:839.415000px;}
.y66{bottom:848.055000px;}
.y4b{bottom:855.255000px;}
.ybe{bottom:857.775000px;}
.ya6{bottom:860.295000px;}
.ybf{bottom:863.175000px;}
.yd{bottom:864.615000px;}
.y2c{bottom:867.135000px;}
.ya7{bottom:873.975000px;}
.ybd{bottom:875.775000px;}
.y65{bottom:879.375000px;}
.y4a{bottom:886.215000px;}
.y7f{bottom:891.255000px;}
.ybb{bottom:894.135000px;}
.yc{bottom:895.575000px;}
.y80{bottom:898.095000px;}
.ybc{bottom:899.535000px;}
.y2b{bottom:910.335000px;}
.yb9{bottom:912.495000px;}
.y9{bottom:916.815000px;}
.y49{bottom:917.175000px;}
.yba{bottom:917.895000px;}
.y7e{bottom:922.215000px;}
.ya5{bottom:929.055000px;}
.yb8{bottom:930.855000px;}
.y8{bottom:936.975000px;}
.y29{bottom:941.295000px;}
.y2a{bottom:948.135000px;}
.yb6{bottom:949.215000px;}
.y7{bottom:952.845000px;}
.y7d{bottom:953.205000px;}
.yb7{bottom:954.645000px;}
.y48{bottom:960.405000px;}
.yb5{bottom:967.605000px;}
.y27{bottom:972.285000px;}
.y28{bottom:979.125000px;}
.y7c{bottom:984.525000px;}
.yb4{bottom:985.965000px;}
.ya4{bottom:991.365000px;}
.y6{bottom:1000.365000px;}
.y26{bottom:1003.245000px;}
.yb3{bottom:1004.685000px;}
.y7b{bottom:1015.485000px;}
.y5{bottom:1017.645000px;}
.y24{bottom:1034.565000px;}
.y4{bottom:1038.165000px;}
.y25{bottom:1041.405000px;}
.y47{bottom:1046.445000px;}
.y64{bottom:1053.285000px;}
.y3{bottom:1060.125000px;}
.y23{bottom:1065.525000px;}
.y46{bottom:1077.405000px;}
.y2{bottom:1082.130000px;}
.y22{bottom:1096.530000px;}
.y1{bottom:1099.770000px;}
.y45{bottom:1108.770000px;}
.y7a{bottom:1115.610000px;}
.y21{bottom:1139.730000px;}
.hb{height:38.671172px;}
.h9{height:41.696016px;}
.h5{height:44.032500px;}
.hc{height:48.667500px;}
.h7{height:51.468750px;}
.h6{height:53.367188px;}
.ha{height:60.155156px;}
.h8{height:63.175781px;}
.h4{height:65.884219px;}
.h2{height:67.824844px;}
.h3{height:73.722656px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w3{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xf{left:84.995987px;}
.x10{left:95.435987px;}
.x7{left:106.235987px;}
.x42{left:110.915973px;}
.x43{left:115.955987px;}
.xd{left:117.035987px;}
.x44{left:120.995987px;}
.x18{left:133.271987px;}
.xa{left:140.111987px;}
.x3e{left:157.394987px;}
.xe{left:159.554987px;}
.x35{left:162.074973px;}
.x30{left:169.994987px;}
.x1a{left:174.314973px;}
.x1b{left:180.434987px;}
.x22{left:193.754973px;}
.x28{left:195.554973px;}
.x24{left:196.634973px;}
.x23{left:205.994987px;}
.x29{left:207.794987px;}
.x25{left:208.874987px;}
.x2c{left:211.754973px;}
.x34{left:221.144987px;}
.x2d{left:224.024987px;}
.x3a{left:254.624973px;}
.x2{left:261.464987px;}
.x3b{left:266.864987px;}
.xb{left:270.104987px;}
.x19{left:276.584987px;}
.x6{left:281.984987px;}
.x26{left:313.709973px;}
.x41{left:322.349987px;}
.x27{left:325.949987px;}
.xc{left:347.549987px;}
.x5{left:348.989987px;}
.x11{left:351.149973px;}
.x12{left:357.269987px;}
.x15{left:364.109987px;}
.x4{left:383.909987px;}
.x3{left:403.379987px;}
.x13{left:418.859973px;}
.x14{left:424.979987px;}
.x3c{left:440.459973px;}
.x8{left:446.579987px;}
.x1c{left:447.659973px;}
.x3d{left:452.699987px;}
.x1d{left:453.779987px;}
.x1e{left:473.219973px;}
.x1f{left:479.339987px;}
.x38{left:495.209973px;}
.x39{left:507.449987px;}
.x20{left:602.174973px;}
.x3f{left:611.534973px;}
.x21{left:614.414987px;}
.x36{left:618.374973px;}
.x40{left:623.774987px;}
.x37{left:630.614987px;}
.x2a{left:704.084973px;}
.x2b{left:716.324987px;}
.x31{left:719.924973px;}
.x32{left:732.164987px;}
.x2e{left:746.564973px;}
.x9{left:753.449987px;}
.x2f{left:758.849987px;}
.x33{left:770.009973px;}
.x16{left:776.129973px;}
.x17{left:782.249987px;}
.x1{left:786.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.650667pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.629333pt;}
.lsa{letter-spacing:-0.576000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls11{letter-spacing:-0.376533pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.397867pt;}
.ls9{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.460800pt;}
.ls0{letter-spacing:0.476160pt;}
.ls10{letter-spacing:0.532480pt;}
.ls1{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.650240pt;}
.lse{letter-spacing:0.810240pt;}
.ls7{letter-spacing:0.858667pt;}
.lsd{letter-spacing:9.088000pt;}
.ls8{letter-spacing:10.368000pt;}
.ws9{word-spacing:-64.000000pt;}
.wsa{word-spacing:-16.640000pt;}
.ws7{word-spacing:-16.448000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws0{word-spacing:-14.464000pt;}
.ws4{word-spacing:-13.306880pt;}
.ws2{word-spacing:-12.894613pt;}
.wsc{word-spacing:-12.610560pt;}
.wsd{word-spacing:-12.149760pt;}
.wsb{word-spacing:-11.773227pt;}
.ws1{word-spacing:-10.341973pt;}
.ws6{word-spacing:0.000000pt;}
._1f{margin-left:-7.068160pt;}
._19{margin-left:-5.824000pt;}
._6{margin-left:-3.957333pt;}
._2{margin-left:-2.649600pt;}
._0{margin-left:-1.472000pt;}
._1{width:0.896000pt;}
._3{width:2.047573pt;}
._7{width:3.594667pt;}
._e{width:4.533333pt;}
._b{width:5.440000pt;}
._c{width:6.372267pt;}
._1b{width:7.387733pt;}
._1c{width:8.328533pt;}
._9{width:9.408000pt;}
._a{width:10.304000pt;}
._1a{width:11.200000pt;}
._d{width:12.224000pt;}
._10{width:13.184000pt;}
._f{width:14.720000pt;}
._14{width:17.152000pt;}
._13{width:18.624000pt;}
._8{width:19.648000pt;}
._18{width:21.184000pt;}
._1e{width:22.442667pt;}
._16{width:24.128000pt;}
._15{width:25.344000pt;}
._1d{width:26.432000pt;}
._17{width:27.328000pt;}
._12{width:28.761600pt;}
._11{width:30.336000pt;}
._5{width:740.879787pt;}
._4{width:1414.511787pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs4{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:50.880000pt;}
.ya{bottom:68.832000pt;}
.yaa{bottom:97.632000pt;}
.y44{bottom:104.032000pt;}
.yaf{bottom:108.192000pt;}
.y63{bottom:110.112000pt;}
.yf5{bottom:111.072000pt;}
.y76{bottom:114.592000pt;}
.y96{bottom:125.152000pt;}
.yf4{bottom:127.392000pt;}
.y43{bottom:131.552000pt;}
.y20{bottom:134.746667pt;}
.yae{bottom:136.026667pt;}
.y62{bottom:137.626667pt;}
.y75{bottom:142.106667pt;}
.yf2{bottom:143.706667pt;}
.yf3{bottom:148.506667pt;}
.ya9{bottom:152.986667pt;}
.y42{bottom:159.066667pt;}
.yf0{bottom:160.026667pt;}
.y94{bottom:163.546667pt;}
.yf1{bottom:164.826667pt;}
.y61{bottom:165.466667pt;}
.y95{bottom:169.626667pt;}
.y1f{bottom:173.146667pt;}
.yef{bottom:176.386667pt;}
.y74{bottom:180.546667pt;}
.ya3{bottom:186.626667pt;}
.y93{bottom:191.106667pt;}
.yee{bottom:192.386667pt;}
.yad{bottom:197.186667pt;}
.y41{bottom:197.506667pt;}
.y5f{bottom:203.586667pt;}
.y73{bottom:208.066667pt;}
.yec{bottom:208.706667pt;}
.y60{bottom:209.666667pt;}
.y1e{bottom:211.586667pt;}
.yed{bottom:213.506667pt;}
.ya2{bottom:214.466667pt;}
.y92{bottom:218.626667pt;}
.y40{bottom:225.026667pt;}
.yeb{bottom:229.826667pt;}
.y5e{bottom:231.106667pt;}
.y72{bottom:235.586667pt;}
.ye9{bottom:241.346667pt;}
.ya1{bottom:241.986667pt;}
.yea{bottom:246.146667pt;}
.y91{bottom:246.466667pt;}
.y1d{bottom:249.666667pt;}
.y3f{bottom:252.546667pt;}
.ye8{bottom:257.666667pt;}
.y5d{bottom:258.946667pt;}
.y71{bottom:263.106667pt;}
.ya0{bottom:269.506667pt;}
.y90{bottom:273.986667pt;}
.ye7{bottom:278.786667pt;}
.y3e{bottom:280.066667pt;}
.y5b{bottom:286.466667pt;}
.y1c{bottom:288.093333pt;}
.ye6{bottom:290.333333pt;}
.y70{bottom:290.973333pt;}
.y5c{bottom:292.573333pt;}
.y9f{bottom:297.053333pt;}
.y8f{bottom:301.533333pt;}
.ye4{bottom:306.333333pt;}
.y3c{bottom:307.933333pt;}
.ye5{bottom:311.133333pt;}
.y3d{bottom:314.013333pt;}
.y1b{bottom:315.613333pt;}
.y6f{bottom:318.493333pt;}
.ye3{bottom:322.653333pt;}
.y8e{bottom:329.053333pt;}
.y3b{bottom:335.453333pt;}
.ye1{bottom:338.973333pt;}
.y5a{bottom:341.533333pt;}
.y1a{bottom:343.133333pt;}
.ye2{bottom:343.773333pt;}
.y6e{bottom:346.013333pt;}
.ye0{bottom:355.293333pt;}
.y8d{bottom:356.893333pt;}
.y79{bottom:362.973333pt;}
.y59{bottom:369.373333pt;}
.y19{bottom:370.973333pt;}
.yde{bottom:371.613333pt;}
.y3a{bottom:373.533333pt;}
.ydf{bottom:376.413333pt;}
.y8c{bottom:384.413333pt;}
.ydd{bottom:387.933333pt;}
.y9d{bottom:390.493333pt;}
.y9e{bottom:396.573333pt;}
.y58{bottom:396.893333pt;}
.y18{bottom:398.493333pt;}
.y39{bottom:401.413333pt;}
.ydb{bottom:404.293333pt;}
.ydc{bottom:409.093333pt;}
.y6d{bottom:411.973333pt;}
.y9c{bottom:418.373333pt;}
.yd9{bottom:420.613333pt;}
.y8a{bottom:422.533333pt;}
.yda{bottom:425.413333pt;}
.y17{bottom:426.053333pt;}
.y8b{bottom:428.613333pt;}
.y38{bottom:428.933333pt;}
.y57{bottom:435.333333pt;}
.yd8{bottom:436.613333pt;}
.y6c{bottom:439.493333pt;}
.y9b{bottom:445.893333pt;}
.y89{bottom:450.373333pt;}
.yd6{bottom:452.933333pt;}
.y16{bottom:453.573333pt;}
.y37{bottom:456.453333pt;}
.yd7{bottom:457.733333pt;}
.y56{bottom:462.853333pt;}
.y6b{bottom:467.333333pt;}
.yd5{bottom:469.253333pt;}
.y9a{bottom:473.413333pt;}
.y88{bottom:477.893333pt;}
.y15{bottom:481.093333pt;}
.y36{bottom:483.973333pt;}
.yd4{bottom:485.573333pt;}
.y55{bottom:490.373333pt;}
.y6a{bottom:494.853333pt;}
.yb2{bottom:500.933333pt;}
.yd3{bottom:501.893333pt;}
.y87{bottom:505.413333pt;}
.y35{bottom:511.840000pt;}
.y53{bottom:517.920000pt;}
.yd1{bottom:518.240000pt;}
.y14{bottom:519.520000pt;}
.y69{bottom:522.400000pt;}
.yd2{bottom:523.040000pt;}
.y54{bottom:524.000000pt;}
.yb1{bottom:528.800000pt;}
.y86{bottom:532.960000pt;}
.yd0{bottom:534.560000pt;}
.y34{bottom:539.360000pt;}
.y52{bottom:545.440000pt;}
.y68{bottom:549.920000pt;}
.y13{bottom:550.560000pt;}
.ycf{bottom:555.360000pt;}
.yb0{bottom:556.320000pt;}
.y85{bottom:560.800000pt;}
.y33{bottom:566.880000pt;}
.yce{bottom:571.680000pt;}
.y51{bottom:573.280000pt;}
.y67{bottom:577.440000pt;}
.ycd{bottom:583.200000pt;}
.y12{bottom:587.680000pt;}
.y84{bottom:588.320000pt;}
.y99{bottom:594.400000pt;}
.ycb{bottom:599.520000pt;}
.ycc{bottom:604.320000pt;}
.y32{bottom:605.280000pt;}
.y50{bottom:611.360000pt;}
.y83{bottom:615.840000pt;}
.y98{bottom:622.240000pt;}
.y11{bottom:626.106667pt;}
.yc9{bottom:632.186667pt;}
.y31{bottom:632.826667pt;}
.yca{bottom:636.986667pt;}
.y4f{bottom:639.226667pt;}
.y82{bottom:643.386667pt;}
.yc8{bottom:648.506667pt;}
.y97{bottom:649.786667pt;}
.y30{bottom:660.346667pt;}
.y10{bottom:664.506667pt;}
.yc7{bottom:669.306667pt;}
.y81{bottom:671.226667pt;}
.y4e{bottom:677.306667pt;}
.yc6{bottom:680.826667pt;}
.y2f{bottom:687.866667pt;}
.yc4{bottom:697.146667pt;}
.y78{bottom:698.746667pt;}
.yc5{bottom:701.946667pt;}
.yf{bottom:702.586667pt;}
.y4d{bottom:704.826667pt;}
.yac{bottom:709.306667pt;}
.yc3{bottom:713.466667pt;}
.y2e{bottom:715.706667pt;}
.ya8{bottom:721.786667pt;}
.y77{bottom:726.266667pt;}
.yc1{bottom:729.786667pt;}
.ye{bottom:730.106667pt;}
.y4c{bottom:732.666667pt;}
.yc2{bottom:734.586667pt;}
.yab{bottom:736.866667pt;}
.y2d{bottom:743.266667pt;}
.yc0{bottom:746.146667pt;}
.y66{bottom:753.826667pt;}
.y4b{bottom:760.226667pt;}
.ybe{bottom:762.466667pt;}
.ya6{bottom:764.706667pt;}
.ybf{bottom:767.266667pt;}
.yd{bottom:768.546667pt;}
.y2c{bottom:770.786667pt;}
.ya7{bottom:776.866667pt;}
.ybd{bottom:778.466667pt;}
.y65{bottom:781.666667pt;}
.y4a{bottom:787.746667pt;}
.y7f{bottom:792.226667pt;}
.ybb{bottom:794.786667pt;}
.yc{bottom:796.066667pt;}
.y80{bottom:798.306667pt;}
.ybc{bottom:799.586667pt;}
.y2b{bottom:809.186667pt;}
.yb9{bottom:811.106667pt;}
.y9{bottom:814.946667pt;}
.y49{bottom:815.266667pt;}
.yba{bottom:815.906667pt;}
.y7e{bottom:819.746667pt;}
.ya5{bottom:825.826667pt;}
.yb8{bottom:827.426667pt;}
.y8{bottom:832.866667pt;}
.y29{bottom:836.706667pt;}
.y2a{bottom:842.786667pt;}
.yb6{bottom:843.746667pt;}
.y7{bottom:846.973333pt;}
.y7d{bottom:847.293333pt;}
.yb7{bottom:848.573333pt;}
.y48{bottom:853.693333pt;}
.yb5{bottom:860.093333pt;}
.y27{bottom:864.253333pt;}
.y28{bottom:870.333333pt;}
.y7c{bottom:875.133333pt;}
.yb4{bottom:876.413333pt;}
.ya4{bottom:881.213333pt;}
.y6{bottom:889.213333pt;}
.y26{bottom:891.773333pt;}
.yb3{bottom:893.053333pt;}
.y7b{bottom:902.653333pt;}
.y5{bottom:904.573333pt;}
.y24{bottom:919.613333pt;}
.y4{bottom:922.813333pt;}
.y25{bottom:925.693333pt;}
.y47{bottom:930.173333pt;}
.y64{bottom:936.253333pt;}
.y3{bottom:942.333333pt;}
.y23{bottom:947.133333pt;}
.y46{bottom:957.693333pt;}
.y2{bottom:961.893333pt;}
.y22{bottom:974.693333pt;}
.y1{bottom:977.573333pt;}
.y45{bottom:985.573333pt;}
.y7a{bottom:991.653333pt;}
.y21{bottom:1013.093333pt;}
.hb{height:34.374375pt;}
.h9{height:37.063125pt;}
.h5{height:39.140000pt;}
.hc{height:43.260000pt;}
.h7{height:45.750000pt;}
.h6{height:47.437500pt;}
.ha{height:53.471250pt;}
.h8{height:56.156250pt;}
.h4{height:58.563750pt;}
.h2{height:60.288750pt;}
.h3{height:65.531250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w3{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xf{left:75.551988pt;}
.x10{left:84.831988pt;}
.x7{left:94.431988pt;}
.x42{left:98.591976pt;}
.x43{left:103.071988pt;}
.xd{left:104.031988pt;}
.x44{left:107.551988pt;}
.x18{left:118.463988pt;}
.xa{left:124.543988pt;}
.x3e{left:139.906655pt;}
.xe{left:141.826655pt;}
.x35{left:144.066643pt;}
.x30{left:151.106655pt;}
.x1a{left:154.946643pt;}
.x1b{left:160.386655pt;}
.x22{left:172.226643pt;}
.x28{left:173.826643pt;}
.x24{left:174.786643pt;}
.x23{left:183.106655pt;}
.x29{left:184.706655pt;}
.x25{left:185.666655pt;}
.x2c{left:188.226643pt;}
.x34{left:196.573322pt;}
.x2d{left:199.133322pt;}
.x3a{left:226.333310pt;}
.x2{left:232.413322pt;}
.x3b{left:237.213322pt;}
.xb{left:240.093322pt;}
.x19{left:245.853322pt;}
.x6{left:250.653322pt;}
.x26{left:278.853310pt;}
.x41{left:286.533322pt;}
.x27{left:289.733322pt;}
.xc{left:308.933322pt;}
.x5{left:310.213322pt;}
.x11{left:312.133310pt;}
.x12{left:317.573322pt;}
.x15{left:323.653322pt;}
.x4{left:341.253322pt;}
.x3{left:358.559988pt;}
.x13{left:372.319976pt;}
.x14{left:377.759988pt;}
.x3c{left:391.519976pt;}
.x8{left:396.959988pt;}
.x1c{left:397.919976pt;}
.x3d{left:402.399988pt;}
.x1d{left:403.359988pt;}
.x1e{left:420.639976pt;}
.x1f{left:426.079988pt;}
.x38{left:440.186643pt;}
.x39{left:451.066655pt;}
.x20{left:535.266643pt;}
.x3f{left:543.586643pt;}
.x21{left:546.146655pt;}
.x36{left:549.666643pt;}
.x40{left:554.466655pt;}
.x37{left:560.546655pt;}
.x2a{left:625.853310pt;}
.x2b{left:636.733322pt;}
.x31{left:639.933310pt;}
.x32{left:650.813322pt;}
.x2e{left:663.613310pt;}
.x9{left:669.733322pt;}
.x2f{left:674.533322pt;}
.x33{left:684.453310pt;}
.x16{left:689.893310pt;}
.x17{left:695.333322pt;}
.x1{left:699.493322pt;}
}




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