#accordion-container {
	font-size: 13px;
	background: #ffffff;
	padding: 5px 10px 10px 10px;
/*
	border: 1px solid #cccccc;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 0 5px 15px #cccccc;
	-webkit-box-shadow: 0 5px 15px #cccccc;
	box-shadow: 0 5px 15px #cccccc;
*/	
}

.accordion-header {
	font-size: 16px;
	background: #ebebeb;
	margin: 5px 0 0 0 !important;
	padding: 5px 30px 5px 20px;
	border: 1px solid #cccccc;
	cursor: pointer;
	color: #666666;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	display: block;
}

.accordion-header a{
	font-weight: normal;
}

.active-header {
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
/* 	background: url(images/active-header.gif) #ebebeb; */
	background: url(images/active-header.gif) #EBDFC0;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.active-header:hover {
/* 	background: url(images/active-header.gif) #f5f5f5; */
	background: url(images/active-header.gif) #F5EBD3;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.inactive-header {
/* 	background: url(images/inactive-header.gif) #ebebeb; */
	background: url(images/inactive-header.gif) #EBDFC0;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.inactive-header:hover {
/* 	background: url(images/inactive-header.gif) #f5f5f5; */
	background: url(images/inactive-header.gif) #F5EBD3;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.accordion-content {
	display: none;
	padding: 25px;
	background: #ffffff;
	border: 1px solid #cccccc;
	border-top: 0;
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
}