/* QUIZ CSS Document */
/* general */

/* text style of wrong answer message */
.quizWrong {
	color: #FF0000;
	background-color: transparent;
}

/* text style of correct answer message */
.quizCorrect {
	color: #009933;
	background-color: transparent;
}

/* text highlight for user chose answer */
.quizHighlight {
	font-weight:bold;
}

/* fill in the blanks:
   usage: <span class="quiz_underscore"><img class="quiz_empty_long" src="/quiz/images/pixel.gif" alt="Fill in the blanks"></span>
   The image class could be quiz_empty_small,quiz_empty_med, or quiz_empty_long for different sizes of underscore line
*/ 
.quiz_underscore {
	background-image:url("/quiz/images/underscore_15_black.gif");
	vertical-align:bottom;
}

.quiz_underscore_white {
	background-image:url("/quiz/images/underscore_15_white.gif");
	vertical-align:bottom;
}

.quiz_empty_small {
	width:40px;
}

.quiz_empty_med {
	width:40px;;
}

.quiz_empty_long {
	width:40px;
}

img.quiz_icon {
	vertical-align:bottom;
	border:0;
	width:16px;
	height:16px;
	padding-top:2px;
}

img.quiz_icon_arrow{
	vertical-align:top;
	border:0;
	width:13px;
	height:13px;
}

/* Full Page Quiz CSS Template */
/* full page quiz choices display display for dropbox format */
ul.quizChoices {
	list-style-type: none;
	padding-top:15px;
	padding-bottom:15px;
	padding-left:0px;
	margin-left:0px;
}

ul.choice_list {
	padding-right:2px;
	padding-bottom:1em;
}
ul.choice_list li{
	padding-top: 0.5em;
}
ol.question_list li{
	padding-bottom:0.5em;
}
ul.choice_list_answer {
	padding-bottom:0.5em;
}
ul.choice_list_answer li{
	padding-bottom:0;
}


/* Flash Quiz CSS Template */
/* Used inside <div> tag */

/* remove any padding and margin of the form tag */
.rightNavQuiz {
	margin: 0px;
	margin-bottom:10px;
	padding: 0px;
	color:#FFFFFF;			
}
	
.rightNavQuiz a {
	text-decoration:none;
	color:#FFFFFF;
	font-weight:bold;	
}

.rightNavQuiz a:hover {
	color:#FFCC00;
	font-weight:bold;	
	text-decoration:underline;
}	
	

/* flash quiz questions style */
.rightNavQuiz p {
	background-color: #74002B;
	margin:0;
	margin-top: 0;
	padding: 5px;
	}

/* flash quiz choices and answers display style for radio format */
.rightNavQuiz ul {
	background-color:  #74002B;
	margin: 0;
	padding-left: 15px;
	}
	
