#accordion-container {
	background: #E4E4E4;
	padding: 5px 10px 10px 10px;
	border: 1px solid #cccccc;
}

.accordion-header {
	background: #4185F4;
	margin: 1px 0 0 0;
	cursor: pointer;
	color: #fff;
	width:248px;
	text-transform:uppercase;
	font-weight:700;
	line-height:25px;
	text-indent:5px;
}
.active-header {
	background: url('../images/active-header.png') #024579;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.active-header:hover {
	background: url('../images/active-header.png') #024579;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.inactive-header {
	background: url('../images/inactive-header.png') #024579;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.inactive-header:hover {
	background: url('../images/inactive-header.png') #024579;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.accordion-content{
	display: none;
	margin:0;
}
.accordion-content h4{
	margin:5px 5px 0 10px;
	border-bottom:1px solid #333;
	padding-bottom:3px;
}
.accordion-content ul{
	margin:-4px 0 0 0;
	padding:0;
}
.accordion-content ul li{
	border-bottom:1px solid #9a9a9a;
    list-style: outside none none;
    margin: 10px 0 5px 2px;
    padding-bottom: 5px;
    width: 233px;
}
.accordion-content  ul li a
{
	text-decoration:none;
	font-size:13px;
	color:#333;
}