#accordian {
	background:#A2A2A2;
	width: 100%;
	color: white;
	margin-bottom:10px;
}
/*heading styles*/
#accordian h3 {
	font-size: 14px;
	color:#E8E8E8;
	line-height: 34px;
	margin:0;
	padding: 0 15px;
	cursor: pointer;
	/*fallback for browsers not supporting gradients*/
	background: #D87D1D; 
	border-bottom:1px solid  #FFFFFF;
}
/*heading hover effect*/
#accordian h3:hover {
	color:#FFFFFF;
}
/*iconfont styles*/
#accordian h3 span {
	font-size: 16px;
	margin-right: 10px;
}
/*list items*/
#accordian ul {
	margin:0;
	padding:0;
}
#accordian li {
	list-style-type: none;
}
/*links*/
#accordian ul ul li a {
	color: white;
	text-decoration: none;
	font-size: 12px;
	line-height: 36px;
	display: block;
	padding: 0 15px;
}
/*hover effect on links*/
#accordian ul ul li a:hover {
	color:#000000;
	background: #E9E9E9;
}
/*Lets hide the non active LIs by default*/
#accordian ul ul {
	display: none;
}
#accordian li.active ul {
	display: block;
}
