/*

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-content {
	border: 0px solid #666;
	background: white; /*#FFF3B3;*/
	color: black;
	padding: 0em;
	margin-left: 10px;
}


.tab-header {
	position: relative;
	height: 3em;
	width: 50em; /* 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: 50em; /* 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: 15em;
	display: block;
	float: left;
	padding: 5px 0;
	margin: 0px 2px 0 5px;
	text-align: center;
	font-family: verdana, arial, sans-serif;
	font-size: 10px;
	font-weight: bold;
	text-decoration: none;
	color:#000000;
}

.tab-header ul.tab-list span,.tab-header ul.tab-list a.tab-active,.tab-header ul.tab-list a.tab-active:hover {
	border-top: 1px solid #D4D5D6;
	border-left: 1px solid #D4D5D6;
	border-right: 1px solid #D4D5D6;
	border-bottom: 0px solid #D4D5D6;
	background: #FFFFFF;
	color:#000000;
	padding-bottom: 5px;
	margin-top: 0;
	margin-left: 15px;
}

/* a link in a background tab */
.tab-header ul.tab-list a {
	background: #D4D5D6;
	color:#AA0828;
	border-top: 1px solid #D4D5D6;
	border-left: 1px solid #D4D5D6;
	border-right: 1px solid #D4D5D6;
	border-bottom: 0px solid #D4D5D6;
	margin-left: 15px;
}

/* hover on a background tab */
.tab-header ul.tab-list a:hover {
	margin-top: 0px;
	border-color: #D4D5D6;
	background:#FFFFFF;
    color:#AA0828;
	padding-bottom: 5px;
	margin-left: 15px;
}

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

