/* ######### Matt Black Strip Main Menu Bar CSS ######### */

.menustyle ul {
	margin: auto;
	padding: 0;
	width: 998px;
	font-weight: bold;
	font-size: 13px;
	font-family: Arial, Helvetica, sans-serif;
	list-style-type: none;
	background-color: #555;
	overflow: hidden;	
	border-left: 1px solid #252525;
	border-right: 1px solid #252525;
	top: 0;
	left: 0;
	height: 34px;
}

.menustyle li {
	display: inline;
	margin: auto;
}

.menustyle li a {
	float: left;
	display: block;
	text-decoration: none;
	margin: 0;
	padding: 9px 40px; /*padding inside each tab*/
	border-left: 1px solid white; /*right divider between tabs*/
	color: white;
	background-color: #555;
}

.menustyle li a:visited {
	color: white;
}

.menustyle li a:hover {
	background-color: #252525; /*background of tabs for hover state */
}

.menustyle a.selected {
	background-color: #252525; /*background of tab with "selected" class assigned to its LI */
}
