﻿/* ######### Matt Black Strip Main Menu Bar CSS ######### */

/*#2B2A2D - grey*/ /*#CCCCCC - silver*/ /*#414141 - default*/

.mattblackmenu ul{
margin: 0;
padding: 0;
font: bold 12px Verdana;
list-style-type: none;
border-bottom: 2px solid white; /*horizontal borders of the menu - default = 1px solid white*/
background: black; /*background color default is #2B2A2D*/
overflow: hidden;
width: 100%;
}

.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: 0px solid white; /*right divider between tabs, default is 1*/
color: white; /*text color of the main menu*/
background: black; /*background color main menu*/
}

.mattblackmenu li a:visited{
color: white;
}

.mattblackmenu li a:hover{
background: #CCCCCC; /*background of tabs for hover state */
}

.mattblackmenu a.selected{
background: black; /*background of tab with "selected" class assigned to its LI */
}