/* root element for tabs  */
ul.tabs {  
	margin:0 !important; 
	padding:0;
	height:50px;
}

/* single tab */
ul.tabs li {  
	float:left;	 
	padding:0; 
	margin:0;  
	list-style-type:none;
}

/* link inside the tab. uses a background image */
ul.tabs a { 
	float:left;
	font-size:13px;
	display:block;
	text-decoration: underline;
	height:50px;
	line-height: 30px;
	color:#777;
	position:relative;
	padding-left: 30px;
	width: 158px;
}

ul.tabs a:hover {
	color:#333;
}
	
/* selected tab */
ul.tabs a.current {
	color:#000;	
	cursor:default;
}

	
/* tab pane */
div.panes > div {
	display:none;
	padding:0;
}



