/* basic styles for jQuery Personality Quiz Plugin*/

.juma-quiz {

  /* current wrapper for question and answers */
  /* clicked answer */
  /* the forward button */
  /* the progress bar */
  /* score at the end of the test */
  /* the final score */ }
/* the questions */
.juma-quiz h3 {
	line-height: 26px;
	border-bottom: 1px solid #333;
	margin: 0;
	font-weight: bold;
	font-size: 18px;
	padding: 0 0 5px 5px; 
}

.juma-quiz ul {padding: 5px 0 5px 10px;}

.juma-quiz li {
	position: relative;
	margin-bottom: 20px;
	list-style: none;
	display: none; 
}

.juma-quiz .active,
.juma-quiz .active li {display: block;}

.juma-quiz ul li {
	cursor: pointer;
	position: relative;
	padding: 10px 5px;
	margin-bottom: 0;
	border-bottom: 1px dotted #999;
}

.juma-quiz ul li:before {
	opacity: 0;
	content: "✓";
	position: absolute;
	top: 8px;
	left: -18px;
	color: #1E9B1A;
	font-size: 20px;
	line-height: 20px;
	text-align: center;
	background-color: #fff;
	width: 20px;
	height: 20px;
	border-radius: 50%;
}

.juma-quiz .juma-choice {
	color: #000;
	font-weight: bold;
}

.juma-quiz ul li:hover:before,
.juma-quiz ul .juma-choice:before {opacity: 1;}

.juma-quiz .juma-forward {
	background-color: #ddd;
	border-radius: 6px;
	display: inline;
	padding: 5px;
}

.juma-quiz .juma-progress {
	background-color: #eee;
	height: 10px;
}

.juma-quiz .juma-progress span {
	height: 10px;
	background-color: #333;
	opacity: 0.7;
	position: absolute;
}

.juma-quiz .juma-score li {
	display: none;
	list-style: none;
	line-height: 24px;
	padding: 2px 10px;
}

.juma-quiz .juma-result {display: block;}