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

.mattblackmenu ul{
margin: 0;
padding: 0;
font: 12px Arial;
list-style-type: none;
overflow: hidden;
width: 100%;

}

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

.mattblackmenu li a{
padding-left: 8px;
padding-bottom: 3px;
padding-right: 8px;
padding-top: 3px;
float: left;
display: block;
text-decoration: none;
margin: 0; /*padding inside each tab*/ /*right divider between tabs*/
color: white;
font-weight: bold;
background: rgb(66,66,66); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(66,66,66,1) 0%, rgba(13,13,13,1) 33%, rgba(45,45,45,1) 50%, rgba(10,10,10,1) 53%, rgba(27,27,27,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(66,66,66,1)), color-stop(33%,rgba(13,13,13,1)), color-stop(50%,rgba(45,45,45,1)), color-stop(53%,rgba(10,10,10,1)), color-stop(100%,rgba(27,27,27,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(66,66,66,1) 0%,rgba(13,13,13,1) 33%,rgba(45,45,45,1) 50%,rgba(10,10,10,1) 53%,rgba(27,27,27,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(66,66,66,1) 0%,rgba(13,13,13,1) 33%,rgba(45,45,45,1) 50%,rgba(10,10,10,1) 53%,rgba(27,27,27,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(66,66,66,1) 0%,rgba(13,13,13,1) 33%,rgba(45,45,45,1) 50%,rgba(10,10,10,1) 53%,rgba(27,27,27,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(66,66,66,1) 0%,rgba(13,13,13,1) 33%,rgba(45,45,45,1) 50%,rgba(10,10,10,1) 53%,rgba(27,27,27,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#424242', endColorstr='#1b1b1b',GradientType=0 ); /* IE6-9 */
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;	
	margin-left: 2px;
}

.mattblackmenu li a:visited{
}

.mattblackmenu li a:hover{ /*background of tabs for hover state */
	color: #10fe00;                                        
}

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