#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;
}

h3.accordion-header { text-transform: uppercase; }
.accordion-header {
	background: #fff;
	margin: 10px 0 0 0;
	padding: 10px 0;
	cursor: pointer;
	text-transform: none;
}

.active-header {
	background: url(images/active-header.gif);
	background-repeat: no-repeat;
	background-position: right 50%;
	border: none;
}



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

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

.accordion-content {
	display: none;
	padding: 0 40px 10px 0;
	background: transparent;
	border-top: none;
}