﻿/* ######### Matt Black Strip Main Menu Bar CSS ######### */

.mattblackmenu ul
{
 margin: 0px;
 vertical-align:top;
 padding: 0px;
 font: bold 10pt Arial;
 list-style-type: none;
 border-style:none; border-width:0px;
 /*background: #414141;*/
 overflow: hidden;
 width: 100%;
 height:26px;
 /*background-color:#4e7601;*/
 background-image:url('../images/bgMenu.jpg');
 background-repeat:repeat-x;
}

.mattblackmenu li{
 float: left;
 display: inline-block;
 margin-top: -2px;
}

.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: white;
/*background: #414141;*/
}

.mattblackmenu li a:visited{
color: white;
}

.mattblackmenu li a:hover{
/*background: blue; background of tabs for hover state */
background-image:none;
}

.mattblackmenu a.selected{
/*background: blue; background of tab with "selected" class assigned to its LI */
background-image:none;
}

