/*

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

*/

/* BL 2715 increased font size to 1.1em   */

.tab-content {
	background: #FFFBEF; /*#FFF3B3;*/
	border:1px solid #cbac8d; 
	width:560px;
	padding: 8px;
	color: #333333;
	font-size: 1.1em;
}

.tab-content a
{
	color:#5A2F0C;
}


.tab-header {
	position: relative;
	height: 4em;
	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;
}

/* increased font-size to 1 em; BL 2715 for the inactive tabs*/
.tab-header ul.tab-list a,.tab-header ul.tab-list span,.tab-header ul.tab-list a.tab-active {
	width: 160px;
	display: block;
	float: left;
	padding: 4px;
	margin: 1px 2px 0 0;
	text-align: left;
	font-family: Trebuchet MS, Helvetica, sans-serif;
	font-size: 1em;
 	text-decoration: none !important;
	color: #5A2F0C !important;
}

/* active tab */
/* increased font-size to 1.1em; BL 2715 */
.tab-header ul.tab-list span,.tab-header ul.tab-list a.tab-active,.tab-header ul.tab-list a.tab-active:hover {
	border-left:1px solid #cbac8d; 
	border-right:1px solid #cbac8d; 
	border-top:1px solid #cbac8d; 
	border-bottom: none;
	background: #fffbef;
	color: #5A2F0C;
	padding-bottom: 6px;
	margin-top: 0;
	text-transform: uppercase;
	font-size: 1.1em;  
}

/* a link in a background tab */
.tab-header ul.tab-list a 
{
	background:url('/wcsstore/ConsumerDirectStorefrontAssetStore/images/buttons/right.gif');
	padding:5px 15px 4px 6px;
	border-left:1px solid #cbac8d; 
	border-right:1px solid #cbac8d; 
	border-top:1px solid #cbac8d; 
	border-bottom: none;
	color:#5A2F0C;
	font-weight: bold;
	text-decoration: none !important;
}

/* hover on a background tab */
.tab-header ul.tab-list a:hover {
	color: #5A2F0C;
}

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


