#faq
{
	/*padding: 		10px 40px 50px 40px;*/
	background-image: 		url(../images/content/content_header.png);
	background-repeat: 		no-repeat;
	background-position: 	top left;
	padding: 				20px 30px 70px 30px;
	margin: 				0 20px;
	margin-top: 			40px;
}

#faq .commons_wrap
{
	padding: 				30px 50px;
	background-color: 		#fff;
}

.faq_title
{
	font-size: 				11pt;
	font-weight: 			bold;
	background-image: 		url(../images/category/puce_category.png);
	background-position: 	left;
	background-repeat: 		no-repeat;
	padding: 				3px 0 3px 15px;
	color: 					#333;
	
}

.faq_item
{
	margin: 				5px 0;
	-webkit-transition:	all .2s ease-out;
	-moz-transition:	all .2s ease-out;
	-o-transition:		all .2s ease-out;
	transition:			all .2s ease-out;
}
.faq_item.opened
{
	margin: 				25px 0;
}
.faq_question
{
	font-size: 				11pt;
	font-weight: 			500;
	position: 				relative;
	border-bottom: 			2px solid #000;
	padding: 				4px 5px;
	cursor: 				pointer;
}
.opened .faq_question
{
	color: 				#F88BBD;
	border-bottom: 		2px solid #F88BBD;
}
.faq_question::after
{
	content: 			" ";
	display: 			block;
	clear: 				both;
	width: 				10px;
	height: 			10px;
	position: 			absolute;
	right: 				5px;
	bottom: 			10px;
	border-left: 		1px solid #000;
	border-bottom: 		1px solid #000;
	-webkit-transform: 	rotate(-45deg);
	-moz-transform: 	rotate(-45deg);
	-ms-transform: 		rotate(-45deg);
	-webkit-transition:	all .2s ease-out;
	-moz-transition:	all .2s ease-out;
	-o-transition:		all .2s ease-out;
	transition:			all .2s ease-out;
}
.faq_question:hover::after,
.opened .faq_question::after
{
	border-left: 		1px solid #F88BBD;
	border-bottom: 		1px solid #F88BBD;
}
.opened .faq_question::after
{
	-webkit-transform: 	rotate(45deg);
	-moz-transform: 	rotate(45deg);
	-ms-transform: 		rotate(45deg);
}

.faq_answer
{
	display: 				none;
	background-color: 		#e9e1e5;
	padding: 				15px 15px;
}

.opened .faq_answer
{
	display: 				block;
}

.faq_relatedtitle
{
	font-weight: 			bold;
	margin-top: 			25px;
	border-bottom: 			1px solid #AAA;
}

.faq_related_product:link,
.faq_related_product:hover,
.faq_related_product:active,
.faq_related_product:visited
{
	color: 					#A00;
	text-decoration: 		none;
	font-size: 				8pt;
}

.faq_related_product:hover
{
	text-decoration: 		underline;
}

#faq_openclose
{
	text-align: 			right;
	margin: 				15px 0;
}

#faq_openclose span
{
	border: 			1px solid #ccc;
	border-bottom: 		1px solid #888;
	background-color: 	#ddd;
	padding: 			5px 8px;
	cursor: 			pointer;
	margin-left: 		5px;
}


/***************************
 *
 * Responsive
 *
 ***************************/
@media only screen /* Smartphone Horizontal */ 
and (max-width : 700px) 
{
	#faq
	{
		padding: 				20px 0;
	}

}