/*

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 {
	border:1px solid #d9d9c7;
	-webkit-border-radius: 8px; 
	border-radius: 8px;
	margin-top:16px;
}

.tab-content {
	background: white; /*#FFF3B3;*/
	color: black;
	padding: 0.5em;
	
}


.tab-header {
	position: relative;
	height: 3em;
	width: 255px; /* a width is required for Opera, older Mozilla browsers, and Konqueror browsers */
	margin-bottom: 0px;
	padding-bottom: 0px;
	background-color:#efefe0;
}

.tab-header ul.tab-list {
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: -1px;
	width: 255px; /* 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: 125px;
	display: block;
	float: left;
	padding: 9px 0;
	margin: 1px 2px 0 0;
	text-align: center;
	font-size: 12px;
	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 {
	font-weight:bold;
	border-bottom:none;
	color: black;
	margin-top: 0;
	color:#354d7f;
}

/* a link in a background tab */
.tab-header ul.tab-list a {
	border-bottom:  1px solid #a41b2b;
	font-weight:bold;
}

/* hover on a background tab */
.tab-header ul.tab-list a:hover {
	margin-top: 0;
	color: black;
	font-weight:bold;
	font-size:12px;
	font-family:Arial, Helvetica, sans-serif;
}

.tab  /* the heading that became the li */
{
	display: none;
}
