/* ######### Matt Black Strip Main Menu Bar CSS ######### */

.mattblackmenu ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	border-bottom: 1px solid gray;
	background: #d5ddb9;
	overflow: hidden;
	width: 100%;
	font-size: 16px;
	font-weight: bold;
	font-family: Verdana, Geneva, sans-serif;
}
.mattgreenmenu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	border-bottom: 1px solid gray;
	overflow: hidden;
	width: 100%;
	font-size: 16px;
	font-weight: bold;
	font-family: Verdana, Geneva, sans-serif;
	background-color: #A5D859;
}

#header1_left {
	width: 800px;
}
#header1_right {
	width: 160px;
}



.mattblackmenu li{
display: inline;
margin: 0;
}
.mattgreenmenu li {
	display: inline;
	margin: 0;
}


.mattblackmenu li a{
	float: left;
	display: block;
	text-decoration: none;
	margin: 0;
	padding: 6px 8px; /*padding inside each tab*/
	border-right: 1px solid white; /*right divider between tabs*/
	color: #000;
	background: #d5ddb9;
}
.mattgreenmenu li a {
	float: left;
	display: block;
	text-decoration: none;
	margin: 0;
	padding: 6px 8px; /*padding inside each tab*/
	border-right: 1px solid white; /*right divider between tabs*/
	color: #000;
	background-color: #A5D859;
	font-weight: bolder;
}


.mattblackmenu li a:visited{
	color: #000;
}
.mattgreenmenu li a:visited {
	color: #000;
	font-weight: bolder;
}


.mattblackmenu li a:hover{
	background-color: #92A550;
	color: #FFF;
}
.mattgreenmenu li a:hover {
	background-color: #6C3;
}


.mattblackmenu a.selected{
	background: black; /*background of tab with "selected" class assigned to its LI */
	color: #FFF;
}
.mattgreenmenu a.selected {
	background-color: #6C3;
}
