#tabs {
	list-style: none;
	padding: 0;
	margin: 0;
}

#tabs li {
	float: left;
	margin-right: 5px;
}

#tabs a {
	display: block;
	padding: 7px;
	width: 120px;
	text-align: center;
	background-color: #ddd;
	color: #888;
	text-decoration: none;
}

#tabs a:hover {
	color:#4F5155;
}

#tabs a.active {
	background-color: #eee;
	color:#4F5155;
}

.tabdiv {
	background-color: #eee;
	padding: 15px;
	height: expression( this.scrollHeight < 299 ? "300px" : "auto" ); /* sets max-height for IE */
	min-height:300px;
}