#accordion-container {
	font-size: 16px;
	padding: 5px 10px 10px 10px;
	border: 1px solid #006633;
	-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;
	font-family: Calibri;
	background-color: #FBFDFC;
}

.accordion-header {
	font-size: 16px;
	height:40px;
	margin: 5px 0 0 0;
	padding: 5px 20px;
	border: 1px solid #2B1D50;
	cursor: pointer;
	color: #000000;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	background-color: #FBFDFC;
	line-height: normal;
}

.active-header {
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
	background-repeat: no-repeat;
	background-position: right 50%;
	font-size: 16px;
	color: #660099;
	background-color: #FBFDFC;
	background-image: url(images/active-header.gif);
	border-top-color: #CCC;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #CCC;
}

.active-header:hover {
	background-repeat: no-repeat;
	background-position: right 50%;
	background-color: #F2F9F7;
	background-image: url(images/active-header.gif);
	color: #5A3391;
}

.inactive-header {
	background-repeat: no-repeat;
	background-position: right 50%;
	font-family: Calibri;
	font-size: 16px;
	color: #000000;
	background-color: #FBFDFC;
	background-image: url(images/inactive-header.gif);
}

.inactive-header:hover {
	background-repeat: no-repeat;
	background-position: right 50%;
	background-color: #FFF;
	background-image: url(images/inactive-header.gif);
	color: #000000;
	border-top-color: #333333;
	border-right-color: #333333;
	border-bottom-color: #333333;
	border-left-color: #333333;
}

.accordion-content {
	display: none;
	padding: 20px;
	background: #ffffff;
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
	font-size: 16px;
	font-family: Calibri;
	color: #000000;
	border-top-width: 0;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #333333;
	border-right-color: #333333;
	border-bottom-color: #333333;
	border-left-color: #333333;
}
