

/*Basic reset*/
* {padding:0px;}

body {
	background: #4EB889;
	font-family: Nunito, arial, verdana;
}
#accordian {
	background: #F5F5F5;
	width: 230px;
	margin: 100px auto 0 auto;
	color: white;
	margin: 0px; 
	padding: 0px;
	
}
/*heading styles*/
#accordian h3 {
	font-size: 12px;
	line-height: 34px;
	padding: 0 10px;
	cursor: pointer;
	/*fallback for browsers not supporting gradients*/
	background: #087fc3;
	
	
}
/*heading hover effect*/
#accordian h3:hover {
	text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
	
}
/*iconfont styles*/
#accordian h3 span {
	font-size: 16px;
	margin-right: 10px;
}
/*list items*/
#accordian li {
	list-style-type: none;
	margin: 0px; 
	padding: 0px; 
}
/*links*/
#accordian ul ul li a {
	color: 087fc3;
	text-decoration: none;
	font-size: 11px;
	line-height: 27px;
	display: block;
	padding: 0 15px;
	/*transition for smooth hover animation*/
	transition: all 0.15s;
}
/*hover effect on links*/
#accordian ul ul li a:hover {
	background: #087fc3;
	border-left: 5px solid lightgreen;
	color: #ffffff;
}
/*Lets hide the non active LIs by default*/
#accordian ul ul {
	display: none;
}
#accordian li.active ul {
	display: block;
}