﻿@charset "utf-8";
/* CSS Document */

/*custom font for text*/

/*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;}

body {

}


#accordian {
	width: 100%;
	float:left;
	margin-left:0px;
	/*Some cool shadow and glow effect*/
	
}
/*heading styles*/
#accordian h3 {

	line-height: 20px;
	padding: 10px 0px 10px 15px;
	cursor: pointer;
	/*fallback for browsers not supporting gradients*/
    font-weight:normal; font-family:Calibri; font-size:16px;
	color:#666;
    background:url(/images/SiteLayout/Menu_Ul_Bg.png) no-repeat center left;
}
/*heading hover effect*/
#accordian h3:hover {
	color:#2D96EC;
}
/*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: #999;
	text-decoration: none;
	font-size: 14px;
	display: block;
	padding: 5px 0px 5px 30px;
	font-family:Calibri;
	color:#666;	
	
}
/*hover effect on links*/
#accordian ul ul li a:hover {
	color:#fff;
	background-color:#2D96EC;
    font-weight:bold;
    	/*color:#fff;
	background-color:#2D96EC;*/
}
/*Lets hide the non active LIs by default*/
#accordian ul ul {
	display: none;
}
#accordian li.active ul {
	display: block;
}




