@charset "utf-8";
/* 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*/
* {margin: 0; padding: 0;}

body {
	background: #F5F5F5;
	/*font-family: Nunito, arial, verdana;*/
}
#accordian {
	background: #A6CBF0;
	margin:10px auto 0;
	color: #666;
	/*Some cool shadow and glow effect*/
	
}
/*heading styles*/
#accordian h3 {
	font-weight:400;
	font-size: 12px;
	line-height: 35px;
	padding: 0 10px;
	cursor: pointer;
	color:black;
	/*fallback for browsers not supporting gradients*/
	
}
/*heading hover effect*/

#accordian h3, h2, h1{
	margin-top:0px;
	margin-bottom:0px;
	}

#accordian h3:hover {
	color:#003399;
}
/*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: black;
	background:#548CC2;
	border-bottom:1px dashed #000000;
	text-decoration: none;
	font-size: 12px;
	line-height: 33px;
	display: block;
	padding: 0 15px;
	/*transition for smooth hover animation*/
	transition: all 0.15s;
}
/*hover effect on links*/
#accordian ul ul li a:hover {
	color:#FFFFFF;
	
}
#accordian ul ul ul li li a {
	color: white;
	background:#548CC2;
	border-bottom:1px dashed #000000;
	text-decoration: none;
	font-size: 12px;
	line-height: 33px;
	display: block;
	padding: 0 15px;
	/*transition for smooth hover animation*/
	transition: all 0.15s;
}
/*hover effect on links*/
#accordian ul ul ul li li a:hover {
	color:#000000;
	
}

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


