/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	width: 334px;
	margin-bottom: 20px;
}

/*
A.lien{
	color:#ca0059;
	font-size:11px;
	text-decoration:underline;
	background-image:url(../images/Pictos/arrow.gif);
	background-repeat:no-repeat;
	background-position:right;
	padding-right:10px;
}
A.lien:hover{
	color:#a6a6a6;
	font-size:11px;
	text-decoration:none;
	background-image:url(../images/Pictos/arrow_on.gif);
	background-repeat:no-repeat;
	background-position:right;
	padding-right:10px;					
}		

 accordion header */
#accordion h2 {
	margin:0;
	padding:5px 8px;
	font-size:12px;
	font-weight:normal;
	cursor:pointer;
	color: #DB086A;
	background-image:url(../images/Pictos/arrow.gif);
	background-repeat:no-repeat;
	background-position:318px;
}

#accordion h2:hover {
	cursor:pointer;
	color: #999999;
	background-color:#EEE;
	background-image:url(../images/Pictos/arrow-down-on.gif);
	background-repeat:no-repeat;
	background-position:318px;
}

/* currently active header */
#accordion h2.current {
	cursor:default;
	color: #DB086A;
	background-color:#DDD;
	background-image:url(../images/Pictos/arrow-down.gif);
	background-repeat:no-repeat;
	background-position:318px
}

/* accordion pane */
#accordion div.pane {
	border-width:0 2px;
	display:none;
	height:auto;
	padding-top: 15px;
	padding-bottom: 15px;
}
