
/*
 * Locate the Print Preview link to the right of the page
 */
#printPreview {float:right;}

/*
 * Change the appearance of the question text and the 'Find Out' links
 */
.quizQuestion {font-weight:bold;} /*question text*/
.quizLink {font-weight:normal;line-height:1.8em;display:none;} /*'Find Out' link. Initial hide unless JavaScript is working*/

/*
 * Used for hidden divs of quiz questions.
 * If JavaScript is not turned on then all answer blocks will still be visible.
 */
.answer {position:relative;display:block;}
.answer p {padding:5px;}

/*
 * There needs to be updated to reflect the number of question/answer blocks on a page.
 * i.e. if there are 10 questions there needs to be 10 answer ids in the form #answer10
 */
#answer1, #answer2, #answer3, #answer4, #answer5, #answer6, #answer7, #answer8, #answer9, #answer10 {color:#000000;background-color:#eeeeee;margin-bottom:26px;}

/*
 * Hide the 'Find Out' and 'Print Preview' links and show all the answers when printing
 */
@media print {
	body {color:#000000;font-size:11pt;}
	.quizQuestion {display:block;}
	.quizLink {display:none;}
	.answer {position:relative;display:block;}
	.answer p {padding-left:0px;}
	#printPreview {display:none;}
}
