/* ######### Matt Tabs Main Menu Bar CSS ######### */

.matttabs ul{
	margin: 0 auto;
	padding: 0;
	font: bold 12px Arial;
	list-style-type: none;
	overflow: hidden;
	width: 550px;
	position: absolute;
	right: -1px;
	top: 80px;
	background-color: #3a6e19;
}

.matttabs li{
display: inline;
margin: 0;
}

.matttabs li a{
	float: left;
	display: block;
	text-decoration: none;
	margin: 0;
	padding: 6px 12px; /*right divider between tabs*/
	color: white;
	background-color: #3a6e19;
}

.matttabs li a:visited{
color: white;
}

.matttabs li a:hover{
	background: #81B43D; /*background of tabs for hover state */
}

.matttabs a.selected{
	background: #81B43D;
}

