/*
 * Example styling for multiple choice quiz questions. 
 */

.quiz {
	position: relative;
	padding: 10px;
}

#content p.quiz-question {
	margin-top: 3em;
	font-weight: bold;
  clear: left;
}

ol.quiz-question-options {
	margin-left: 4em;
  list-style-type: lower-alpha;
}

ol.quiz-question-options li {
}

ol.quiz-question-options label {
	display: inline;
	cursor: pointer;
}

ol.quiz-question-options label:hover {
  color: #00f;
  text-decoration: underline;
}

ol.quiz-question-options input {
	width: auto;
	border: none;
	position: absolute;
	left: 600px;
	cursor: pointer;
}

