/* BASE QUIZ STYLES */
/* These styles ensure that the necessary elements are hidden for toggling */

/* DO NOT EDIT UNLESS YOU KNOW WHAT YOU ARE DOING!! */

.startQuiz,
.nextQuestion,
.backToQuestion,
.questions li.question,
.questions li.question .responses,
.questions li.question .responses .correct,
.questions li.question .responses .incorrect,
.quizResults {
    display: none;
}

/* If response messages are disabled or only shown on quiz completion,
   nextQuestion button IS checkAnswer button - so it must be displayed */
.nextQuestion.checkAnswer {
    display: block;
}

ol.questions,
ul.answers,
ul.responses,
ol.questions li,
ul.answers li,
ul.responses li {
    list-style-type: none;
}
#slickQuiz{
	display: block;
	position: relative;
    padding:32px;
    background:#238ACD;
    margin-top:7px;
    border-radius:4px; -moz-border-radius:4px; -khtml-border-radius:4px; -webkit-border-radius:4px;	
    -moz-box-shadow: 0 1px 4px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 1px 4px rgba(0,0,0,0.5);
	box-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
#slickQuiz *{
    color:#FFF !important;
    line-height: 150%;

}
#slickQuiz h1 i{
	font-size: 32px;
	float:left;
	display: block;
	position: relative;
	border:solid 4px #FFF;
	margin:14px 10px 0 0;
	width:50px;
	height:50px;
	line-height: 54px;
	text-align: center;
	border-radius:29px; -moz-border-radius:29px; -khtml-border-radius:29px; -webkit-border-radius:29px;	
}

.startQuiz {
    margin-top: 40px;

}

.tryAgain {
    margin: 20px 0;
}

/* clearfix */
.quizArea, .quizResults {
    zoom: 1;
}
.quizArea:before, .quizArea:after, .quizResults:before, .quizResults:after {
    content: "\0020";
    display: block;
    height: 0;
    visibility: hidden;
    font-size: 0;
}
.quizArea:after, .quizResults:after {
    clear: both;
}

.questionCount {
    font-size: 21px;
    font-style: italic;
    padding-bottom:32px;
}
.questionCount span {
    font-weight: bold;
}

ol.questions {
    margin-top: 20px;
    margin-left: 0;
}
ol.questions li {
    margin-left: 0;
}

ul.answers {
    margin: 32px 0px;
    font-size: 21px;
}
ul.answers li {
    padding-bottom:12px;
}
ul.responses{
	margin: 0;
	padding: 0 0 32px 0 !important;
}
ul.responses li {
    margin: 32px 0px !important;
    padding:16px;
    background:#65ADDC;
    border-radius: 4px;
}
ul.responses li p span {
    display: block;
    font-weight: bold;
    font-size: 18px;
}
ul.responses li.correct p span {
    color: #6C9F2E;
}ul.responses li.incorrect p span {
    color: #B5121B;
}

.quizResults h3 {
    margin: 0;
}
.quizResults h3 span {
    font-weight: normal;
    font-style: italic;
}
.quizResultsCopy {
    clear: both;
    margin-top: 20px;
}