
/* root element for tabs  */
ul.css-tabs {  
	margin:-1px !important; 
	padding:0;
	height:30px;
}

/* single tab */
ul.css-tabs li {  
	float:left;	 
	padding:0; 
	list-style-type:none;	
}

/* link inside the tab. uses a background image */
ul.css-tabs a { 
	float:left;
	font-size:11px;
	display:block;
	padding:7px;
	text-align:center;	
	text-decoration:none;
	font-family:Arial,Serif;
	height:19px;
	width:75px;
	background-color:#f6f4ee;
	color:#666;
	margin-right:2px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright:4px;
	position:relative;
	top:0px;	
}

ul.css-tabs a:hover {
	background-color:#f6f4ee;
	color:#cc3300;
}
	
/* selected tab */
ul.css-tabs a.current {
	background-color:#ecebdd;
	color:#666666;	
	cursor:default;
}

	
/* tab pane */
div.css-panes div {
	display:none;
	min-height:50px;
	width:550px;
	padding:15px 20px;
	background-color:#ecebdd;
	margin-top:-4px;
	margin-left:-1px;	
}