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

.mattblacktabs	{
	width: 99%;
	overflow: hidden;
	border-top: 1px solid #F2DAB6;
	border-left: 1px solid #F2DAB6;
	border-right: 1px solid #F2DAB6;
	border-bottom: 1px solid #F2DAB6; /*bottom horizontal line that runs beneath tabs*/
	/* background-color: url(/images/PA1054.JPG); */
}

.mattblacktabs ul{
	margin: 1px;
	padding: 1px;
	padding-left: 10px; /*offset of tabs relative to browser left edge*/
	font: bold 16px Poor Richard;
	list-style-type: none;
}

.mattblacktabs li{
	display: inline;
	margin: 2px;
	height: 30px;
}

.mattblacktabs li a{
	float: left;
	display: block;
	text-decoration: none;
	margin: 0;
	padding: 7px 8px; /*padding inside each tab*/
	border-right: 1px solid white; /*right divider between tabs*/
	color: white;
	background: #4E340E; /*background of tabs (default state)*/
}

.mattblacktabs li a:visited{
	color: white;
}

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

