﻿
/* root element for tabs  */
ul.css-tabs {  
	margin:0 !important; 
	padding:0;
	height:30px;
	border-bottom:1px solid #666;	 	
}

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

/* link inside the tab. uses a background image */
ul.css-tabs a { 
	float:left;
	display:block;
	padding:5px 10px;	
	text-decoration:none;
	border:1px solid #666;	
	border-bottom:0px;
	height:18px;
	background-color:#efefef;
	color:#777;
	margin-right:2px;
	position:relative;
	top:1px;	
	outline:0;
	-moz-border-radius:4px 4px 0 0;	
}

ul.css-tabs a:hover {
	background-color:#717171;
	color:#FFF;
}
	
/* selected tab */
ul.css-tabs a.current {
	background-color:#FFF;
	border-bottom:1px solid #FFF;	
	color:#000;	
	cursor:default;
}

/* sales tab */
ul.css-tabs a.sales {
	background-color:#49b749;
	border-bottom:1px solid #49b749;	
	color:#FFF;	
	cursor: pointer;
}
ul.css-tabs a.sales:hover {
	background-color:#717171;
	border-bottom:1px solid #717171;	
	color:#FFF;	
	cursor: pointer;
}

/* tab pane */
.css-panes div {
	display:none;
	min-height:150px;
}
