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

.mattblackmenu ul {
	margin: 0;
	padding: 0;
	font: bold 12px Arial, Helvetica, sans-serif;
	list-style-type: none;
	overflow: hidden;
	width: 100%;
}
.mattblackmenu li {
	display: inline;
	margin: 0;
}
.mattblackmenu li a {
	float: left;
	display: block;
	text-decoration: none;
	margin: 0;
	padding: 6px 16px; /*padding inside each tab*/
	border-right: 1px solid #666666; /*right divider between tabs*/
	color: white;
	background-color: transparent;
}
.mattblackmenu li a:visited {
	color: white;
	background-image: url(../../gifs/blackshade.gif);
	background-repeat:repeat-x;
}
.mattblackmenu li a:hover {
	background-color: white; /*background of tabs for hover state */
	color: black;
	background-image: url(../../gifs/white-chip.gif);
	background-repeat:repeat-x;
}
.mattblackmenu a.selected {
	background-color: white; /*background of tab with "selected" class assigned to its LI */
	color: black;
	background-image: url(../../gifs/white-chip.gif);
	background-repeat:repeat-x;
}
