/*Basic reset*/
* {margin:0; padding:0;}

#accordian {
	background:#004050;
	width:250px;
	margin:25px auto 0 auto;
	color:white;
	/*Some cool shadow and glow effect*/
	box-shadow: 
		0 5px 15px 1px rgba(0, 0, 0, 0.6), 
		0 0 200px 1px rgba(255, 255, 255, 0.5);
}
/*heading styles*/
#accordian span {
	font-size:12px;
	line-height:34px;
	padding:0 15px;
	cursor:pointer;
	/*fallback for browsers not supporting gradients*/
	color:#000000;
        
}
/*heading hover effect*/
#accordian span:hover {
	text-shadow:0 0 1px rgba(255, 255, 255, 0.7);
}
/*iconfont styles*/
#accordian a span {
	font-size:16px;
	margin-right:10px;
}
/*list items*/
#accordian li {
	list-style-type:none;
}
/*links*/
#accordian li ul li a {
        color:#000000;
        float:left;
        font-family:Verdana,Geneva,sans-serif;
        font-size:12px;
	text-decoration:none;
	line-height:27px;
	display:block;
	padding:0 15px;
	/*transition for smooth hover animation*/
	transition:all 0.15s;
}
/*Lets hide the non active LIs by default*/
#accordian ul {
	display:none;
}
#accordian li.active ul {
	display:block;
}