
/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0 0 0 40px;	
	height:32px;
}

/* single tab */
ul.tabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0 1px !important;
	list-style-image:none !important; 
	width:150px;
	height:32px;
}

/* link inside the tab. uses a background image */
ul.tabs a { 
	background:url(../images-main/tabs_bg.png) no-repeat center top;
	font-size:18px;
	display:block;
	height: 32px;  
	line-height:32px;
	width: 150px;
	text-align:center;	
	text-decoration:none;
	color:#3d3321;
	padding:0px;
	margin:0px;	
	position:relative;
	top:1px;
}

ul.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	color:#3d3321;	
	background:url(../images-main/tabs_bg.png) no-repeat center bottom;
}

/* active tab uses a class name "current". its highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	cursor:default !important; 
	color:#3d3321 !important;
	background:url(../images-main/tabs_bg.png) no-repeat center bottom;
}

/* initially all panes are hidden */ 
.panes .pane {
	display:none;		
}

.panes span {
	display:none;		
	padding:0;
}

