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

/* single tab */
li.linkato { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0;
	margin-right:2px;
	list-style-image:none !important;
	color:#f3f3f3; background:#a50e33; text-align:center; font-size:25px;
}
/* single tab */
li.non_linkato { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0;
	margin-right:2px;
	list-style-image:none !important;
	color:#CCC; background:#E9E9E9; text-align:center; font-size:25px;
}

/* link inside the tab. uses a background image */
.linkato a{ 
	text-decoration:none;
	position:relative;
	color:#f3f3f3;
	display:block;
	padding-left:10px; padding-right:10px;
}


/* when mouse enters the tab move the background image */
.linkato a:hover {
	/*background-position: -420px -31px;	
	color:#fff;	*/	
	color:#000000;
	background:#ffffff;
	padding-left:10px; padding-right:10px;
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
a.current, a.current:hover, ul.tabs li.current a {
	/*background-position: -420px -62px;	*/	
	cursor:default !important; 
	color:#ffffff !important;
	background:#000000;
}

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