/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;	
	
	height:0px;
}

/* single tab */
ul.tabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important; 
}

/* link inside the tab. uses a background image */
ul.tabs a { 

	font-size:15px;
	display:block;
	height: 15px;  
	width: 32px;
	text-align:center;	
	text-decoration:none;
	color:#c1ea00;
	padding:0px;
	margin:0px;	
	position:relative;
	top:1px;
}




/* 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:#fafde9 !important;
}



/* initially all panes are hidden */ 
.panes .pane {
	display:none;		
}
