#accordion-container {
/* 	font-size: 13px;
	background: #ffffff;
	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: 13px;
    background: #ebebeb;
    margin: 3px 0 0 0;
    padding: 10px 20px;
    /* border: 1px solid #cccccc; */
    cursor: pointer;
    color: #FFFFFF;
    font-family: tahoma;
}

.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) #181818;
  background-repeat: no-repeat;
  background-position: 4px 9px;
  color: #FFFFFF;
  border-left: 4px solid red;
    padding-left: 24px;
}

.active-header:hover {
	background: url(images/active-header.gif) #181818;
	background-repeat: no-repeat;
	  background-position: 4px 13px;
}

.inactive-header {
    background: url(images/inactive-header.gif) #434343;
    background-repeat: no-repeat;
    background-position: 4px 13px;
    padding-left: 25px;
    border-left: 3px solid #434343;
}

.inactive-header:hover {
	background: url(images/inactive-header.gif) #181818;
	background-repeat: no-repeat;
	  background-position: 4px 13px;
}

.accordion-content {
display: none;
  /* padding: 20px; */
 /*  background: #ffffff; */
/*   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; */
  /* padding: 10px; */
}
.accordion-content ul

{
  padding: 0px;
  margin: 0px;

}

.accordion-content li{
	list-style: none;
	  /* height: 25px; */
	  background: #535353;
	  border-bottom: 2px solid #262827;
	  padding: 7px 0px 7px 7px;
	  cursor:pointer;
}

.accordion-content li:hover{ background:#181818 }
.accordion-content a{
	color:#b4b4b4
}