
/**
 *	The whole of question
 */
#question_wrap {
	display: block;
	position: relative;
	width: 100%;
	margin-bottom: 0.5rem;
}

/**
 *	Choices block
 */
ul#choices {
	list-style: none;
	margin: 0 !important;
	padding: 0;
	padding-left: 0;
}
ul#choices li {
	list-style: none !important;
	margin-left: 0;
}
ul#choices li button {
	width: 100%;
	padding: 0.7em;
	margin-bottom: 3px;
	font-size: 1.25rem;
	border-radius: 10px;
	background: #a47a50;;
	color: #ffffff;
}
ul#choices li button:hover {
	background: #0073aa;	
}

/**
 *	Question block
 */
.yesno_q {
	text-align: center;
	display: block;
	padding: 1rem;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	font-weight: bold;
	border: 1px #333 solid;
	border-radius: 10px;
}
.yesno_q dt {
	display: block;
	padding: 1rem;
	margin-bottom: 1.5rem !important;
}
.yesno_q dt span {
	padding: 1rem;
	font-size: 2rem;
	font-weight: bold;
	background: #0073aa;
	color: #fff;
	border-radius: 10px;
}
.yesno_q dd {
	padding: 1.5rem !important;
}

/*-------------------------------------------------------------
 *	BROWN
 *------------------------------------------------------------*/

.yesno_q {
	border-color: #9D8E7F !important;
}
.yesno_q dt span {
	background-color: #a47a50 !important;
}
ul#choices li button {
	background-color: #4F2702 !important;
}
ul#choices li button:hover {
	background-color: #a47a50 !important;
}
ul#choices li button#back_button {
	background-color: #8D7E6F !important;
}
ul#choices li button#back_button:hover {
	background-color: #9D8E7F !important;
}