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

.mattblackmenu ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	overflow: hidden;
	width: 100%;
	border-bottom-width:0px;
	border-bottom-style: solid;
	border-bottom-color: #999999;
	background-color: #FFFFFF;
	font-family: "Times New Roman", Times, serif;
	font-size: 18px;
	font-style: italic;
	color: #999999;
}

.mattblackmenu li{
	display: inline;
	margin: 0;
	color: #999999;
}

.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: #999999;
}

.mattblackmenu li a:visited{
	color: #999999;
	background-color: #FFFFFF;
}

.mattblackmenu li a:hover{
	color: #666666;
	background-color: #FFFFFF;
	text-decoration: none;
	font-weight: normal;
}

.mattblackmenu a.selected{
	background-color: #666666;
	color: #000000;
}

