/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	padding:0;
}

/* single tab */
ul.tabs li { 
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important; 
}

/* link inside the tab. uses a background image */

ul.tabs a { 
	text-align:center;	
	text-decoration:none;
	padding:0px;
	margin:0px;	
	position:relative;
}
ul.tabs a:active {outline:none;}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {font-weight:bold;}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	background-position: 0 0;		
	cursor:default !important; 
	font-weight:bold;	
}
/* initially all panes are hidden */ 
div.panes div.pane {display:none;}

div.panes div.tab {
	display:none;
	margin:10px 0 0 0;
	padding:10px 0;
	border-top:1px solid #c40006;
}