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

.mattblackmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
border-bottom: 1px solid #C25F44;
background: #EC704E;
overflow: hidden;
font-weight:bold;
width: 100%;
z-index: 100;
font-size:13px;
-moz-box-shadow: 0px 1px 1px #999;
-webkit-box-shadow: 0px 1px 1px #999;
box-shadow: 0px 1px 1px #999;
-moz-border-radius: 5px;
border-radius: 5px;

}

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

}

.mattblackmenu li a{
float: left;
display: block;
text-decoration: none;
margin: 0;
padding:5px 25px 5px 25px; /*padding inside each tab*/
border-right: 1px solid #C25F44; /*right divider between tabs*/
color: white;
background: #EC704E;margin:5PX 0 5px 13px;
}
.mattblackmenu li a:last-child {border-right: none; /*right divider between tabs*/
}
.mattblackmenu li a:visited{
color: white; margin:5PX 0 5px 13px;
}

.mattblackmenu li a:hover{
background: #000; -moz-border-radius: 5px;
border-radius: 5px; margin:5PX 0 5px 13px;/*background of tabs for hover state */
}

.mattblackmenu a.selected{-moz-border-radius: 5px;
border-radius: 5px;
background: black;margin:5PX 0 5px 13px; /*background of tab with "selected" class assigned to its LI */
}