/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.mattblacktabs{
width: 100%;
overflow: hidden;
/*border-bottom: 1px solid black; bottom horizontal line that runs beneath tabs*/
}

.mattblacktabs ul{
margin: 0px;
padding: 0px;
padding-left: 5px; /*offset of tabs relative to browser left edge*/
font-family:Tahoma, Geneva, sans-serif;	font-size:13px;	font-weight:bold;	color:#000;
	text-decoration:none; list-style-type: none;
}

.mattblacktabs li{
display: inline;
margin: 0px;
}

.mattblacktabs li a{
float: left;
display: block;
text-decoration: none;
margin: 0px;
padding: 5px 10px; /*padding inside each tab*/
border-right:2px solid white; /*right divider between tabs*/
color: #000;
background:url(../images/menubg.jpg) repeat-x; /*background of tabs (default state)*/
}

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

.mattblacktabs li a:hover, .mattblacktabs li.selected a{
color:#333;
background: #d6d6d6; /*background of tabs for hover state, plus tab with "selected" class assigned to its LI */
}

