#mainMenu * {
padding:0;
margin:0;

}


#mainMenu {
width: 180px; /*width of accordion menu*/
	text-align: left;
	
	position: relative;
	top: 0;
	left: 0;
	color: #000;
	padding-left:10px;
	}

#mainMenu h3.menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
background:#333 url(../images/h3_cornerL.png) left no-repeat;
margin-bottom: 10px; /*bottom spacing between header and rest of content*/
padding: 0px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
	font-family:Georgia, "Times New Roman", Times, serif;;
	color:#833715;
	margin-top:5px;
	font-weight:600;
}

#mainMenu h3 span {
	padding-left:8px;
}

#mainMenu h3.openheader{ /*CSS class to apply to expandable header when it's expanded*/
background:#333 url(../images/h3_cornerL.png) left no-repeat;
}

#mainMenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 16px; /*bottom spacing between each UL and rest of content*/

}

#mainMenu ul li{


	width: 160px;
	margin: 14px 2px 0 2px;
	padding: 0px 0 3px 0px;
	font-size: 0.78em;
}

#mainMenu span.iconLinks {
	display:block; 
	padding-left:10px; 
	width:20px; 
	margin:-4px 0 0 0;
	float:left;

}


#mainMenu ul li .opensubheader{ /*Open state CSS for sub menu header
background: lightblue !important;*/
}

#mainMenu ul li .closedsubheader{ /*Closed state CSS for sub menu header
background: lightgreen !important;*/
}

#mainMenu ul li a{
display: block;
	font-size: 1.0em;
	display: block;
	width:100%;
	color: #fff !important;
		padding-left:8px;
	text-decoration: none;

}

#mainMenu ul li a:visited{
color: #A70303;
}

#mainMenu ul li a:hover{ /*hover state CSS*/
	background: transparent url(../images/bullet.gif) 0 5px no-repeat;
}

#mainMenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header
background: lightblue;*/
}


