/* root element for tabs  */
ul.css-tabs {
	padding:0;
	height:30px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #F0F0F0;
	margin: 0;
}

/* 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 5px;
	text-decoration:none;
	border:1px solid #efefef;
	border-bottom:0px;
	height:18px;
	background-color:#ddd;
	color:#999999;
	margin-right:2px;
	position:relative;
	top:1px;
}

ul.css-tabs a:hover {
	background-color:#666666;
	color:#FFFFFF;
}
	
/* selected tab */
ul.css-tabs a.current {
	background-color:#F0F0F0;
	color:#000;
	cursor:default;
	border-bottom-width: 2px;
	border-left-width: 1px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #F0F0F0;
	border-left-color: #F0F0F0;
}

	
/* tab pane */
div.css-panes div {
	display:none;
	border:1px solid #F0F0F0;
	border-width:0 1px 1px 1px;
	min-height:150px;
	background-color:#F0F0F0;
	margin-bottom: 20px;
	padding: 10px;
}

/* root element for tabs  */
ul.css-tabs2 {
	padding:0;
	height:30px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ACC866;
	margin: 0;
}

/* single tab */
ul.css-tabs2 li {  
	float:left;	 
	padding:0; 
	margin:0;  
	list-style-type:none;	
}

/* link inside the tab. uses a background image */
ul.css-tabs2 a {
	float:left;
	display:block;
	padding:5px 5px;
	text-decoration:none;
	border:1px solid #ACC866;
	border-bottom:0px;
	height:18px;
	background-color:#C2D78E;
	color:#ACC866;
	margin-right:2px;
	position:relative;
	top:1px;
}

ul.css-tabs2 a:hover {
	background-color:#97B742;
	color:#FFFFFF;
}
	
/* selected tab */
ul.css-tabs2 a.current {
	background-color:#ACC866;
	color:#000;
	cursor:default;
	border-bottom-width: 2px;
	border-left-width: 1px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #ACC866;
	border-left-color: #ACC866;
}

	
/* tab pane */
div.css-panes2 div {
	display:none;
	border:1px solid #ACC866;
	border-width:0 1px 1px 1px;
	min-height:150px;
	background-color:#ACC866;
	margin-bottom: 20px;
	padding: 10px;
	color: #FFFFFF;
}
