/*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/ */


/*/*Basic reset
* {margin: 0; padding: 0;}*/
#wrapper{
	width:100%;
	margin:0 auto;
	background:none;
} 

body {
	
	font-family:  verdana;

}
#accordian {
	/*background-color:#CCC;*/
	width: 100%;
	margin: 80px 0 15px 0;
	
	
		/*Some cool shadow and glow effect*/
}



/*heading styles*/
#accordian h3 {
	
	margin: 0; padding: 0;
	font-size: 14px;
	line-height: 34px;
	padding: 0 10px;
	cursor: pointer;
	border-bottom-width:1px;
	border-bottom-color:#999;
	border-bottom-style:solid;
	/*fallback for browsers not supporting gradients
	background: #003040; 
	background: linear-gradient(#003040, #002535);*/
	}



/*heading hover effect*/
#accordian h3:hover {
	/*text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);*/
	
	background: #0C68AD;
	color:white;

	
}
/*iconfont styles*/
#accordian h3 span {
	font-size: 16px;
	margin-right: 10px;
}

#accordian h3 a {
	color:black;

	
}
#accordian h3 a:hover {
	color:white;

	
}



/*heading styles*/
#accordian  h4 {
	margin: 0; padding: 0;
	font-size: 12px;
	line-height: 34px;
	padding: 0 10px;
	cursor: pointer;
	/*fallback for browsers not supporting gradients*/
	 
	
}
/*heading hover effect*/
#accordian  h4:hover {
	/*text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);*/
	
	background: #0C68AD;
	color:#FFF;
}
/*iconfont styles*/
#accordian h4 span {
	font-size: 12px;
	margin-right: 10px;
}





/*list items*/
#accordian li {
	
	list-style-type: none;
}
/*links*/
#accordian ul ul li a {
	color: #000;	
	text-decoration: none;
	font-size: 9px;
	line-height: 27px;
	display: block;
	padding: 0 5px;
	/*transition for smooth hover animation*/
	transition: all 0.15s;
}
/*hover effect on links*/
#accordian ul ul li a:hover {
	color:#FFF;
	background: #0C68AD;
	border-left: 5px solid  #F00;
}



/*Lets hide the non active LIs by default*/
#accordian ul ul {
	display: none;
	
}
#accordian ul {
	margin: 0; padding: 0;
	
}
#accordian li.active ul {
	display: block;

}

/*#accordian a {
	color:#000;

}
#accordian a:hover {
	color: #FFF;

}*/