/* ######### Matt Black Strip Main Menu Bar CSS ######### */
	
.mattblackmenu ul{
margin-left: 180px;
padding: 0;
font: normal 0.9em Verdana;
list-style-type: none;
border-bottom: 0px solid #003040;
overflow: hidden;
width: 100%;
position: fixed;
top:-18px;
z-index:9;
background-image: linear-gradient(
      180deg,
      transparent 0%,
      #0b0e11 8%,
      #11171a 3%,
      #11171a 3%,
      transparent 100%);
}

.mattblackmenu li{
display: inline;
margin: 0;
}

.mattblackmenu li a{
float: left;
display: block;
text-decoration: none;
margin: 0;
padding: 6px 8px; /*padding inside each tab*/
border-right: 0px solid white; /*right divider between tabs*/
color: #cae6e4;
background: transparent;
}

.mattblackmenu li a:visited{
color: #cae6e4;
}

.mattblackmenu li a:hover{
background: #002040; /*background of tabs for hover state */
}

.mattblackmenu a.selected{
background: #002040; /*background of tab with "selected" class assigned to its LI */
}
