
/*==============================================================

	Version : 2009.08.10

==============================================================*/





/* @end */

/* @group Web Apps */

/*pagination*/
ul.pagination {
	margin: 0;
	padding: 0;
}

ul.pagination li {
	display: inline;
	list-style: none;
	margin: 0 2px;
}


/* 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!important;
}


/* QUIZ STYLES */
/* Styles to prettify the quiz page */



#quiz {
   
    margin: 0 auto;
    
    background: #fff;
    
    
    font-size: 16px;
    color: #353535;
    line-height: 1.5em;
}



#quiz h1 {
    font-size: 26px;
    margin: 0 0 20px;
    color: #0C4569;
}
#quiz h2 {
    font-size: 22px;
    margin: 15px 0;
}
#quiz h3 {
    font-size: 18px;
    margin: 15px 0 10px;
}
#quiz h4 {
    font-size: 16px;
    margin: 10px 0;
}

#quiz h6 {
    font-size: 12px;
    margin: 5px 0;
}

#quiz strong { font-weight: bold; }
#quiz em { font-style: italic; }
#quiz ul { list-style-type: circle; }
#quiz ol { list-style-type: decimal; }
#quiz ol li { list-style-type: decimal; margin-left: 20px; }

#quiz .button {
    float: left;
    width: auto;
    padding: 5px 15px;
    color:#ffffff;
    background-color:darkcyan;
    border: 1px solid #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	text-decoration: none;
}
#quiz .button:hover {
    background-color:darkslategray;
}

#quiz .startQuiz {
    margin-top: 40px;
}

/* clearfix */
#quiz .quizArea, .quizResults {
    zoom: 1;
}
#quiz .quizArea:before, .quizArea:after, .quizResults:before, .quizResults:after {
    content: "\0020";
    display: block;
    height: 0;
    visibility: hidden;
    font-size: 0;
}
#quiz .quizArea:after, .quizResults:after {
    clear: both;
}

#quiz .questionCount {
    font-size: 14px;
    font-style: italic;
}
#quiz .questionCount span {
    font-weight: bold;
}

#quiz ol.questions {
    margin-top: 20px;
    margin-left: 0;
}
#quiz ol.questions li {
    margin-left: 0;
}

#quiz ul.answers {
    margin-left: 20px;
    margin-bottom: 20px;
}

#quiz ul.responses li {
    margin: 10px 20px 20px;
}
#quiz ul.responses li p span {
    display: block;
    font-weight: bold;
    font-size: 18px;
}
#quiz ul.responses li.correct p span {
    color: #6C9F2E;
}
#quiz ul.responses li.incorrect p span {
    color: #B5121B;
}

#quiz .quizResults h3 {
    margin: 0;
}
#quiz .quizResults h3 span {
    font-weight: normal;
    font-style: italic;
}
#quiz .quizResultsCopy {
    margin-top: 20px;
}



/* @end */





