/* STYLES FOR FAQ LAYOUT
------------------------------------------------------------ */

	/* style for the questions
	------------------------------------------------------------ */
	#question_list
	{
		margin:				0 0 20px;
		padding:			0 0 10px 20px;
	}
	
	/* each question item
	------------------------------------------------------------ */
	#question_list li
	{
		margin:				0 0 2px 0;
		list-style:			square;
	}
	
	/* the link of the question item
	------------------------------------------------------------ */
	#question_list li a
	{	
		font-size:			inherit;
	}
	
	
	
	
	
	
	/* style for the answers box
	------------------------------------------------------------ */
	#answer_list
	{
		padding:			0;
		margin:				0;
		list-style:			none;
		float:				left;
	}
	
	/* style for each answer
	------------------------------------------------------------ */
	#answer_list li
	{
		margin:				0 0 20px 0;
		width:				100%;
		float:				left;
	}
	
	/* the answer header/title/question
	------------------------------------------------------------ */
	#answer_list li h4
	{
		font-weight:		bold;
	}
	
	/* main answer content
	------------------------------------------------------------ */
	#answer_list li p
	{
		margin:				0 0 10px 0;
		padding:			0;
		text-align:			justify;
	}
	
	/* answer button box
	------------------------------------------------------------ */
	#answer_list li .btn_box
	{
		float:				left;
		display:			block;
		text-align:			right;
		padding:			0 0 10px 0;
	}

/* ------------------------------------------------------------ */