#accordion-container {
	font-size: 13px;
	background: #ffffff;
	padding: 5px 0px 5px 0px;
	border-bottom: 1px solid #000;
	/* 
	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: 14px;
	margin: 0px 0 0 0;
	padding: 5px 8px;
	border-top: 1px solid #000;
	/* padding: 5px 20px; background: #ebebeb; border: 1px solid #cccccc; -moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	color: #666666; */
	cursor: pointer;
	color: #333;
	
}

.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/accordion-active-header.png) #cef98d; */
	background: url(../images/accordion-active-header.png) #fff;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.active-header:hover {
	/* background: url(../images/accordion-active-header.png) #c6f089; */
	background: url(../images/accordion-active-header.png) #fff;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.inactive-header {
	/* background: url(../images/accordion-inactive-header.png) #ebebeb; */
	background: url(../images/accordion-inactive-header.png) #fff;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.inactive-header:hover {
	/* background: url(../images/accordion-inactive-header.png) #f5f5f5; */
	background: url(../images/accordion-inactive-header.png) #fff;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.accordion-content {
	display: none;
	padding: 5px;
	background: #ffffff;
	/* padding: 20px;
	border: 1px solid #cccccc;
	border-top: 0;
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px; */
}