#accordion-container {
	font-size: 13px;
	background: #ffffff;
	border-radius: 5px;
}

.accordion-header {
	font-size: 14px;
	background: #ebebeb;
	margin: 5px 0 0 0;
	padding: 10px 20px;
	border: 1px solid #cccccc;
	cursor: pointer;
	color: #858587;
	font-weight: normal;
}

.active-header {
	background-repeat: no-repeat;
	background-position: 99% 50%;
	background-color: #CCC;
	background-image: url(../images/active-header.gif);
}

.active-header:hover {
	background-repeat: no-repeat;
	background-position: 99% 50%;
	background-color: #73CAD1;
	background-image: url(../images/active-header.gif);
	-webkit-transition: 250ms linear 0s;
	-moz-transition: 250ms linear 0s;
	-o-transition: 250ms linear 0s;
	transition: 250ms linear 0s;
	outline: 0 none;
}

.inactive-header {
	background-repeat: no-repeat;
	background-position: 99% 50%;
	background-color: #EFEFEF;
	background-image: url(../images/inactive-header.gif);
}

.inactive-header:hover {
	background-repeat: no-repeat;
	background-position: 99% 50%;
	background-color: #73CAD1;
	background-image: url(../images/inactive-header.gif);
	-webkit-transition: 250ms linear 0s;
	-moz-transition: 250ms linear 0s;
	-o-transition: 250ms linear 0s;
	transition: 250ms linear 0s;
	outline: 0 none;
}

.accordion-content {
	display: none;
	padding: 20px;
	background: #ffffff;
	border: 1px solid #cccccc;
	border-top: 0;
}
