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

.mattblackmenu ul{
margin: 0;
padding: 0;
font: normal 12px Verdana;
list-style-type: none;
background:#fff;
overflow: hidden;
width:490px;
margin-left:3px;
}

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

.mattblackmenu li a{
float:right;
display:block;
text-decoration:none;
font-size:17px;
margin:0;
padding:16px 26px; /*padding inside each tab*/
color:#000;
line-height:94px;
transition: background-color 1s ease;
}

.mattblackmenu li a:visited{
color:#000;
}

.mattblackmenu li a:hover{
background:#6BAEE5;
color:#000; /*background of tabs for hover state */
}

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