ul.tabs {
	margin: 0;
	padding: 0;
	padding-left:0px;
	float: left;
	list-style: none;
	height: 21px; /*--Set height of tabs--*/
	width:400px;

}
ul.tabs li {
	float: left;
	margin: 0;
	padding: 0;
	height: 22px; /*--Subtract 1px from the height of the unordered list--*/
	line-height: 22px; /*--Vertically aligns the text within the tab--*/
	border: 0px solid #788452;
	margin-bottom: -1px; /*--Pull the list item down 1px--*/
	overflow: hidden;
	position: relative;
	background: #BEAF6C;
}
ul.tabs li a {
	text-decoration: none;
	color: #fff;
	display: block;
	font-size: 12px;
	font-weight:bold;
	padding: 0 20px;
	/*border: 0px solid #788452; /*--Gives the bevel look with a 1px white border inside the list item--*/*/
	outline: none;
	font-family:Arial,Verdana
}
ul.tabs li a:hover {
	background:#8E813E;
}
html ul.tabs li.active, html ul.tabs li.active a:hover  { /*--Makes sure that the active tab does not listen to the hover properties--*/
	background: #3A2717;
height: 22px;
	/*border-bottom: 1px solid #ccc; */
}