/* ######### Matt Black Strip Main Menu Bar CSS ######### */

.mattblackmenu ul{
	padding: 0;
	list-style-type: none;
	border-bottom: 1px solid gray;
	overflow: hidden;
	width: 900px;
	background-color: #451470;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	background-image: url(../images/menubar_background.jpg);
	background-repeat: repeat-x;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0px;
}

.mattblackmenu 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: white;
	background-color: #451470;
	background-image: url(../images/menubar_background.jpg);
	background-repeat: repeat-x;
}

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

.mattblackmenu li a:hover{
	background-color: #CCCCCC;
	background-image: url(../images/menubar_background_down.jpg);
	background-repeat: repeat-x;
}

.mattblackmenu a.selected{
	background-image: url(../images/menubar_background_down.jpg);
	background-repeat: repeat-x;
}

