/*

Example CSS file for creating tabs using tabs.js.
Created by Rob Allen (rob at akrabat dot com)
Based on the CSS code from Silverorange Labs at :
http://labs.silverorange.com/archives/2003/september/simplecsstabs

*/

#tab-container {
	width: 589px;
	height: auto;
	padding: 0px;
	float: left;
}

.tab-content {
	width: 580px;
	padding: 6px 3px;
	border-top: 4px solid #000;
	float: left;
}


.tab-header {
	position: relative;
	height: 3em;
	width: 580px; /* a width is required for Opera, older Mozilla browsers, and Konqueror browsers */
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.tab-header ul.tab-list {
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: 0px;
	width: 580px; /* a width is required for Opera, older Mozilla browsers, and Konqueror browsers */
}

.tab-header ul.tab-list li  {
	display: inline;
	list-style: none;
	margin: 0;
}

.tab-header ul.tab-list a,.tab-header ul.tab-list span,.tab-header ul.tab-list a.tab-active {
	width: 110px;
	display: block;
	float: left;
	padding: 4px 0;
	margin: 0px 4px 0 0;
	text-align: center;
	text-decoration: none;
	color: #333;
}

.tab-header ul.tab-list span,.tab-header ul.tab-list a.tab-active,.tab-header ul.tab-list a.tab-active:hover {
	background: #000;
	color: #fff;
	margin-top: 0;
}

/* a link in a background tab */
.tab-header ul.tab-list a {
	background-color: #777;
	border-bottom: none;
	color: #fff;
}

/* hover on a background tab */
.tab-header ul.tab-list a:hover {
	margin-top: 0;
	background: #333;
	color: fff;
}

.tab  /* the heading that became the li */
{
	display: none;
}
