/* ######### Matt Black Strip Main Menu Bar CSS ######### */

.nasmmenu ul{
margin: 0;
padding: 0;
font: 12px Arial;
list-style-type: none;
border-bottom: 2px solid white;
background: white;
overflow: hidden;
width: 100%;
}

.nasmmenu li{
display: inline;
margin: 0;
}

.nasmmenu li a{
float: left; 
display: block;
text-decoration: none;
margin: 0;
padding: 4px 0px; /* padding inside each tab*/
border-right: 1px solid white; /*right divider between tabs*/
color: black;
background: #DAD8D8;
width:94px;
text-align:center;
}

.nasmmenu li a:visited{
color: black;
}

.nasmmenu li a:hover, .nasmmenu a.selected, .nasmmenu a.selected:visited{
background: #2B5EA5; /*background of tabs for hover state */
color: white; /* text color for hover state */
text-decoration:none; /* don't show underline on hover */
}



