/* 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;
}

/* Accessibility */
.quizName span:first-child {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.startQuiz {
    margin-top: 40px;
}

.tryAgain {
    float: none;
    margin: 20px 0;
	width: auto;
    padding: 0px 15px;
    color:#ffffff;
    background-color:#6F0000;
    border: 0px solid #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	text-decoration: none;
}

.tryAgain:hover {
    background-color:#518710;
	color:#ffffff;
	text-decoration: none;
}

/* 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: 14px;
    font-style: italic;
}
.questionCount span {
    font-weight: bold;
}

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

ul.answers {
    margin-left: 0px;
    margin-bottom: 0px;
}

ul.responses li {
    margin: 0px 18px 20px;
}
ul.responses li {
    display: block;
    font-weight: bold;
    font-size: 18px;
}
.complete ul.answers li.correct, ul.responses li.correct {
    color: #518710;
}
ul.responses li.incorrect {
    color: #6F0000;
}

.quizResults h3 {
    margin: 0;
}

.quizResults h3 span {
    font-weight: normal;
    font-style: italic;
}

.quizArea h3 strong {
    color: #6F0000;
}

.quizResultsCopy {
    clear: both;
    margin-top: 20px;
}

.quizArea ul li label{
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
  max-width: 90%;
  vertical-align: top;  
}

.quizResults ul li label{
  max-width: 90%;
  vertical-align: top;  
}

.quizArea ul li:hover label{
	color: #518710;
}

.quizArea ul.answers li {
    margin-top: 20px;
}