/* root element for tabs  */
ul.css-tabs {  
	margin-left:32px !important;  
	margin-left:32px !important;  
	padding:0;
	height:30px;
	border-bottom:1px solid #FFF;	
	list-style-image: none;	
	
}

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

/* link inside the tab. uses a background image */
ul.css-tabs a { 
	float:left;
	font-size:14px;
	display:block;
	padding:5px 30px;	
	text-decoration:none;
	border:1px solid #A5CBBA;	
	height:18px;
	background-color:#eeeeed;
	color:#777;
	margin-right:-1px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-topright:0px;
	position:relative;
	top:1px;	
}

ul.css-tabs a:hover {
	background-color:#F7F7F7;
	color:#333;
}
	
/* selected tab */
ul.css-tabs a.current {
	background-color:#d9e5dd;
	color:#000;	
	cursor:default;
}

	
/* tab pane */
div.css-panes div {
	display:none;
	border:1px solid #666;
	border-width:0;
	min-height:150px;
	padding-left:32px;
	padding-top:-16px;
	background-color:#FFF;	
}



