#accordion-container {
	font-size: 13px;
	padding: 5px 10px 10px 10px;
	-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: 14px;
	width: 800px;
	font-weight: 100;
	margin: 5px 0 0 0;
	padding: 10px 20px;
	cursor: pointer;
	color: #fff;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	background-color: #C0504C;
}

.active-header {
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
	
}

.active-header:hover {
	background-color:#777;
	
}

.inactive-header {
	background-color: #476CFD;
	
}

.inactive-header:hover {
	background-color:#777;
	
}

.accordion-content {
	display: none;
	width: 770px;
	padding: 19px;
	background: #eee;
	border: 1px solid #cccccc;
	color: #333;
	border-top: 0;
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
}
