#accordion-container {
	font-size: 13px;
	background: #ffffff;
	width: 720px;
	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: #;
	margin: 5px 0 0 0;
	padding: 5px 20px;
	border: 1px solid #cccccc;
	cursor: pointer;
	color: #ffffff;
	font-family: arial;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.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) #114aa1;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.active-header:hover {
	background: #2496d4;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.inactive-header {
	color:#3c3c3c;	
	background: url(images/inactive-header.gif) #f0f0f0;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.inactive-header:hover {
	color:#000;
	background: #ee7f2e;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.accordion-content {
	display: none;
	padding: 20px;

	font-size:14px;
	line-height: 1.4;
	background: #ffffff;
	border: 1px solid #cccccc;
	font-family:arial;
	border-top: 0;
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
}