﻿/* ######### Matt Black Strip Main Menu Bar CSS ######### */

.mattblackmenu ul
{
 margin: 0px;
 vertical-align:middle;
 padding: 0px;
 font-family: Arial;
 font-weight:bold;
 font-size:10pt;
 list-style-type: none;
 border-style:none; border-width:0px;
 /*background: #414141;*/
 overflow: hidden;
 width: 1024px;
 height:44px;
 background-image:url('../imagesCorp/bgMenu.jpg'); background-repeat:no-repeat; height:44px;
}

.mattblackmenu li{
 float: left;
 display: inline-block;
 margin-top: 8px;
}

.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;
}


