/* ######### Matt Black Strip Main Menu Bar CSS ######### */

.mattblackmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
border-bottom: 0px solid #ff6400;
background: #0864af;
overflow: hidden;
width: 100%;
}

.mattblackmenu li{
display: inline;
margin: 0;
}

.mattblackmenu li a{
float: left;
display: block;
text-decoration: none;
margin: 0;
font: 15px myfontbold, Arial, Tahoma; font-weight: normal;
padding: 10px 18px 12px 18px;  /*padding inside each tab*/
border-right: 0px solid #00669d; /*right divider between tabs*/
color: white; margin-right: 1px;
background: #0864af;
}

.mattblackmenu li a:visited{
color: white;
}

.mattblackmenu li a:hover{
background: #ff3e00; /*background of tabs for hover state */
color: white; 
background: -moz-linear-gradient(top center,#ff3e00,#bf1d18);
background: -webkit-gradient(linear,left top,left bottom,from(#ff3e00),to(#bf1d18));
}

.mattblackmenu a.selected{
background: #ff3e00; /*background of tab with "selected" class assigned to its LI */
}
