I'm not familiar with abcpdf9, but you can probably try @media print in your CSS code (try without !important first) and make sure it doesn't get overridden, so put it at the end of your file if unsure:
@media print {
#h5 {
font-weight: bold !important;
}
}