.printOnly {
  display:none;
}


/* Note that hiding and showing elements directly rather than via a class over-writes the class settings which will be a problem when printing.*/
.wizStepShow {
	display: block;
}
/* To display elements during steps through the wizard, assign them the class above.
   To hide elements during steps through the wizard, assign them the class below.    */
.wizStepNoShow {
	display: none;
}
/* Note that hiding and showing elements directly rather than via a class over-writes the class settings which will be a problem when printing.*/