#accordion-container {
	width:100%;
}

#accordion-container p{
	color:#666666;
	font-size:13px;
	line-height:1.5em;
	margin-bottom:10px;
	margin-right:10px;
	}

.accordion-header {
	font-size: 13px;
	margin: 5px 0 0 0;
	padding: 5px 20px;
	padding:15px;
	cursor: pointer;
	color: #454545;
	text-transform:capitalize;
	border:1px solid #E1E1E1
}

.active-header {
	background: url(../images/accordion-minus.png) #f9f9f9;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.active-header:hover {
	background: url(../images/accordion-minus.png) #f9f9f9;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.inactive-header {
	background: url(../images/accordion-plus.png) #f9f9f9;
	background-repeat: no-repeat;
	background-position: right 50%;
	color:#757575;
}

.inactive-header:hover {
	background: url(../images/accordion-plus.png) #f9f9f9;
	background-repeat: no-repeat;
	background-position: right 50%;
	color:#454545;
}

.accordion-content {
	display: none;
	padding: 20px;
	padding-right:10px;
	background: #ffffff;
	border:1px solid #E1E1E1;
	border-top: 0px;
}