﻿/* ######### Matt Black Strip Main Menu Bar CSS ######### */

.mattblackmenu ul{
margin: 0;
padding: 0;
font: 12px Verdana;
list-style-type: none;
border-bottom: 1px solid gray;
background: #F5DEB3;   /* #414141 Background colour */
overflow: hidden;
width: 100%;
}

.mattblackmenu li{
display: inline;
margin: 0;
}

.mattblackmenu li a{
float: right;  /*position of memu elements */
display: block;
text-decoration: none;
margin: 0;
padding: 0px 6px; /* Original 6px 8px; padding inside each tab*/
border-left: 1px solid navy; /*  Original solid white.  right divider between tabs*/
color: #000080;/* #414141 Text colour */
background: #F5DEB3; /* #414141 Background colour */
}

.mattblackmenu li a:visited{
color: navy;
}

.mattblackmenu li a:hover{
background: white; /*background of tabs for hover state */
font: bold 12px Verdana;
}

.mattblackmenu a.selected{
background: white; /*background of tab with "selected" class assigned to its LI */
}