/* ######### Matt Black Strip Main Menu Bar CSS ######### */

.mattblackmenu ul{
margin:auto;
padding: 0;
font: normal 14px Tahoma, Geneva, sans-serif;
list-style-type: none;
/*background: #333333;*/
overflow: hidden;
width: 980px;
color:#000000;
text-align:center;
}

.mattblackmenu li{
float:left;
margin: 0;
}

.mattblackmenu li a{
font: normal 14px Tahoma, Geneva, sans-serif;
float: left;
display: block;
text-decoration: none;
margin: 0;
margin-left:0px;
padding: 18px 20px 18px 20px; /*padding inside each tab*/
 /*right divider between tabs*/
color:#000000;
border-right:0px solid #EEEEEE;
/*background: #333333;
*/
/*border-top-left-radius:10px;
border-top-right-radius:10px;*/
/*border-radius:10px;*/
}

.mattblackmenu li a.visited{
color: #000000;
}

.mattblackmenu li a:hover{
/*background:#333;*/
color:#FFFFFF; /*background of tabs for hover state */
background: -webkit-gradient(linear, left top, left bottom, from(#666666), to(#333333));
background: -moz-linear-gradient(top,  #666666,  #333333);
filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#666666', endColorstr='#333333');
}

.mattblackmenu a.selected{
color:#FFFFFF; /*background of tabs for hover state */
background: -webkit-gradient(linear, left top, left bottom, from(#666666), to(#333333));
background: -moz-linear-gradient(top,  #666666,  #333333);
filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#666666', endColorstr='#333333'); /*background of tab with "selected" class assigned to its LI */
}
.mattblackmenu li a.active{
color:#FFFFFF; /*background of tabs for hover state */
background: -webkit-gradient(linear, left top, left bottom, from(#666666), to(#333333));
background: -moz-linear-gradient(top,  #666666,  #333333);
filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#666666', endColorstr='#333333');
}