#questions_answers
{
	position: relative;
	float: left;
	width: 728px;
	min-height: 100px;
	margin: 12px 0 0 0;
	border: 1px solid #afb5ba;
	border-top-width: 0px;
	box-sizing: border-box;
	background-color: #ccd9e7;
	overflow: hidden;
	clear: both;
}

#questions_loading
{
	position: absolute;
	
	top: 0px;
	left: 0px;
	
	width: 100%;
	height: 100%;
	
	border-top: 1px solid #afb5ba;
	
	background-color: rgba(187,187,187,0.5);
	background-image: url('../../images/loading.gif');
	background-position: 50% 50%;
	background-repeat: no-repeat;
	
	z-index: 10;
}

#questions_answers #questions_answers_questions,
#questions_answers #questions_answers_answers
{
	float: left;
	list-style: none;
	text-align: left;
}

#questions_answers #questions_answers_questions
{
	margin: 0 0 -1000px 0;
	padding: 0 0 1000px 0;
	
	width: 50%;

	box-sizing: border-box;
	
	background-color: #e1e1e1;
}	

#questions_answers #questions_answers_answers
{
	margin: 0px 0px -990px 0px;
	padding: 10px 12px 1000px 12px;
	
	width: 50%;

	box-sizing: border-box;
	
	border-top:  1px solid #afb5ba;
	background-color: #ccd9e7;
	
	border-left: 1px solid #afb5ba;
}

#questions_answers #questions_answers_answers li
{
	float: left;
	clear: both;
	
	margin: 4px 0;
	padding: 10px;
	
	width: 100%;

	box-sizing: border-box;

	background-color: #ffffff;
	
	border: 1px solid #afb5ba;
	
	font-family: Arial;
	font-size: 14px;
	font-weight: bold;
	color: #2b6bb2;

	overflow: hidden;
}

#questions_answers #questions_answers_answers li:hover
{
	cursor: pointer;
	background-color: #f4f4f4;
}

#questions_answers #questions_answers_answers li.focus
{
	outline: 2px solid #2b6bb2;
	border: 1px solid #2b6bb2;
}

#questions_answers #questions_answers_answers li input
{
	margin-right: 6px;
}

#questions_answers #questions_answers_answers li span
{
	display: inline-block;
	position: relative;
	top: -2px;	
	
	margin-left: 6px;
	
	width: 7px;
	height: 4px;
	
	background-image: url('../../images/blue_arrow_down.png');
}

#questions_answers #questions_answers_answers li.hide_answer
{
	display: none;
}


#questions_answers #questions_answers_questions li
{
	float:left;
	clear: both;
	
	padding: 0 6px;
	
	width: 100%;
	height: 36px;
	
	line-height: 36px;

	box-sizing: border-box;

	border-bottom: 1px solid #afb5ba;
	
	font-weight: bold;
	text-decoration: none;
	
	font-family: Arial;
	font-size: 12px;
	
	position: relative;
	overflow: hidden;
}

#questions_answers #questions_answers_questions li:first-child
{
	border-top: 1px solid #afb5ba;
}


#questions_answers #questions_answers_questions li:hover
{
	cursor: pointer;
}

#questions_answers #questions_answers_questions li .question_string
{
	display: block;
	
	position: absolute;
	top: 0px;
	left: 0px;
	
	padding: 0 6px;
	
	height: 100%;

	text-shadow: #ffffff 0 1px 0px;
}

#questions_answers #questions_answers_questions li .answer_string
{
	display: block;
	
	position: absolute;
	top: 0px;
	right: 0px;
	
	padding: 0 6px;
	
	height: 100%;
	
	font-weight: normal;
}

/* INACTIVE */
#questions_answers #questions_answers_questions li.inactive
{
	background: #f4f4f4; /* Old browsers */
	background: -moz-linear-gradient(top,  #f4f4f4 0%, #ebebeb 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f4f4f4), color-stop(100%,#ebebeb)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f4f4f4 0%,#ebebeb 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f4f4f4 0%,#ebebeb 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f4f4f4 0%,#ebebeb 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #f4f4f4 0%,#ebebeb 100%); /* W3C */

	color: #2b6bb2;
}

#questions_answers #questions_answers_questions li.inactive .answer_string
{
	background: #f4f4f4; /* Old browsers */
	background: -moz-linear-gradient(top,  #f4f4f4 0%, #ebebeb 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f4f4f4), color-stop(100%,#ebebeb)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f4f4f4 0%,#ebebeb 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f4f4f4 0%,#ebebeb 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f4f4f4 0%,#ebebeb 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #f4f4f4 0%,#ebebeb 100%); /* W3C */
	
	color: #009f3c;
}

/* ACTIVE */
#questions_answers #questions_answers_questions li.active
{
	background-color: #ccd9e7;
	
	position: relative;
	width: 100.3%;
	color: #4a4a4a;
	box-sizing: border-box;
}

#questions_answers #questions_answers_questions li.active .answer_string
{
	background-color: #ccd9e7;
	color: #009f3c;
}

/* DISABLED */
#questions_answers #questions_answers_questions li.disabled
{
	background-color: #e1e1e1;
	color: #aeaeae;
}

#questions_answers #questions_answers_questions li.disabled:hover
{
	cursor: default;
}

#questions_answers #questions_answers_questions li.disabled .answer_string
{
	background-color: #e1e1e1;
	color: #aeaeae;
}

#question_box
{
	/* float: left; */
	width: 728px;
	margin: 0 auto;
	display: block;
	position: relative;
	overflow: auto;
	/* clear: both; */
}
#permament_question_wrapper  #keyboard_question {
	position: absolute;
	width: 80px;
	background-color: #2b6bb2;
	height: 52px;
	margin: -10px -15px;
	border-radius: 4px 0 0 4px;
}
#permament_question_wrapper  #keyboard_question:before {
	content: url('../../images/keyboards/carselect.svg');
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	width: 48px;
	height: 18px;
}
#permament_question_header {
	float: left;
	display: inline;
	padding: 7px 0 5px 70px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}
.question_header
{
	float: left;
	margin: 0 0 0 12px;
	padding: 0px;
	
	font-family: Arial;
	font-size: 18px;
	color: #878787;
	font-weight: bold;
}

.inactive_questions_header
{
	color: #2b6bb2;
	cursor: pointer;
}

#question_header span
{
	color: #2b6bb2;
	cursor: pointer;
}

#question_info
{
	float: left;
	margin: 6px 0 0 12px;
	padding: 0px;
	
	width: 12px;
	height: 12px;
	background-image: url('../../images/info3.png');
	cursor: pointer;
}

#alert_box
{
	float: left;
	clear: both;
	
	margin: 0 0 0 12px;
	padding: 0px;
}

#partnumberselectortablerow
{
	width: 728px;
	box-sizing: border-box;
	margin: 0 auto;
	padding-top: 24px;
	overflow: auto;
	clear: both;
	/*width: 100%;*/
}

@media (max-width: 1134px)
{
	#questions_answers #questions_answers_questions li,
	#questions_answers #questions_answers_answers li
	{
		min-height: 56px;
		line-height: 56px;
	}

	#questions_answers #questions_answers_answers li
	{
		line-height: 36px;
	}
}

@media (max-width: 728px)
{
	#keyboard_question {
		display: none;
	}

	#question_box, #questions_answers, #partnumberselectortablerow {
		width: 100%;
	}

	#partnumberselectortablerow {
		overflow: visible;
	}
}