/* QUIZ STYLES */
/* Styles to prettify the quiz page */





strong { font-weight: bold; }
em { font-style: italic; }
ul { list-style-type: circle; }
ol { list-style-type: decimal; }
ol li { list-style-type: decimal; margin-left: 20px; }

h3.quizLevel {
    color: #50587b;
    margin: 30px 0 40px 0px !important;
    background-color: white;
    border: 1px solid green;
    padding: 10px 20px 10px 10px;
    border-radius: 10px;
}
h1#slickQuiz-name {
    border-bottom: 2px solid #8692c9;
    padding: 0px 0 2px 0;
    margin: 0px 0 15px 0;
}
.button {
    float: left;
    width: auto;
    padding: 5px 15px;
    color:#ffffff;
    background-color:#8692c9;
    border: 1px solid #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	text-decoration: none;
}
.button:hover {
	background-color:#5f6890;
	color:#ffffff;
	
}
a.button.startQuiz {
    text-decoration: none;
    text-transform: uppercase;
}
a.button.checkAnswer {
	text-decoration: none;
}
a.button.nextQuestion {
	text-decoration: none;
}
a.button.tryAgain {
	text-decoration: none;
	text-transform: uppercase;
}

.startQuiz {
    margin-top: 10px;
}

.tryAgain {
    float: none;
    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: 14px;
    font-style: italic;
    border-top: 2px solid #8692c9;
    border-bottom: 1px solid #8692c9;
    padding: 5px 0 5px 0px;
    margin: 0px 0 20px 0;
}
.questionCount span {
    font-weight: bold;
}

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

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

ul.responses li {
	margin: 10px -20px 20px;
}
ul.responses li p span {
    display: block;
    font-weight: bold;
    font-size: 18px;
}
.complete ul.answers li.correct, 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;
}
