
#accordian {
	
	width: 100%;
	
	color: white;
	/*Some cool shadow and glow effect*/
	
}
/*heading styles*/
#accordian h3 {
	font-size: 12px;
	line-height: 34px;
	padding: 0 10px;
	cursor: pointer;
	/*fallback for browsers not supporting gradients*/
	color:#BF1300;
	border-bottom:1px solid #e2e2e2;
	font-weight:bold;
	color:#000;
}
/*heading hover effect*/
#accordian h3:hover {
	text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
}
 a.black_color
    {
        color:Black;
        text-decoration:none;
            }
    #accordian h3:hover a.black_color
    {
        color:White;
        
    }	
/*iconfont styles*/
#accordian h3 span {
	font-size: 16px;
	margin-right: 10px;
}
/*list items*/
#accordian li {
	list-style-type: none;
}
/*links*/
#accordian ul ul li a {
	color: #000;
	text-decoration: none;
	font-size: 12px;
	line-height: 20px;
	display: block;
	padding: 0 15px;
	/*transition for smooth hover animation*/
	transition: all 0.5s;
	padding-bottom:10px;
	
}

#accordian ul ul li a:hover {
	color: #5f5e5e;
	font-weight:bold;
	
	
}


#accordian ul ul li {
	color: #BF1300;
	text-decoration: none;
	font-size: 12px;
	line-height: 27px;
	display: block;
	padding: 0 0px;
	/*transition for smooth hover animation*/
	transition: all 0.15s;
	
}
/*hover effect on links*/
/*#accordian ul ul li a:hover {
	background: #000;
	border-left: 5px solid #BF1300;
}
/*Lets hide the non active LIs by default*/
#accordian ul ul {
	display: none;
	padding-left:0px !important;
}
#accordian li.active ul {
	display: block;
}

