/* CSS Document */
/*custom font for text*/
/*@import url(http://fonts.googleapis.com/css?family=Nunito);
/*CSS file for fontawesome - an iconfont we will be using. This CSS file imported contains the font-face declaration. More info: http://fortawesome.github.io/Font-Awesome/ */
/*@import url(http://thecodeplayer.com/uploads/fonts/fontawesome/css/font-awesome.min.css);

/*Basic reset*/

/*body {
	/background: #4EB889;
	font-family: Nunito, arial, verdana;
}*/
#accordian {
	
	width: auto;
	/*margin: 100px auto 0 auto;*/
	color: #768f19;;
	/*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 h3 {
	font-size: 14px;
	line-height: 34px;
	
	padding: 7px 30px;
    cursor: pointer;
    /* background: #003040; */
    /* background: linear-gradient(#e4e4e4, #ffffff); */
    background-color:#f5f5f5 !important;
    color: #555;
	font-weight:normal;
	    text-indent: 1px;
}
#accordian h3 i{
	
margin-right:14px
	
}

#accordian h3 a{
	
color:#555;
font-weight:normal
	
}

#accordian ul{
    background: #8fbb55;	
	
}
/*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;
}
/*links*/
#accordian ul ul li a {
	color: white;
	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: #4F7A4F;
	border-left: 5px solid lightgreen;
}
/*Lets hide the non active LIs by default*/
#accordian ul ul {
	display: none;
}
#accordian li.active ul {
	display: block;
}

