...my own attempts to reformat it with the following code are not taking effect.
You aren't specific enough with your style. Try:
a.printlink {
color: #F00;
}However, the "Print your answers." link doesn't seem to have an underline
The underline is hidden by the containing div border. Add some padding to the container by changing:
.survey-assessment,.survey-completed {
text-align: center;
border: 1px solid #00677d;
background: #f0fdff;
}To:
.survey-assessment,.survey-completed {
text-align: center;
border: 1px solid #00677d;
background: #f0fdff;
padding: 5px;
}