﻿.css-tabs {
	list-style-type:none !important;
}

/* root element for tabs  */
ul.css-tabs {  
	margin:0 !important; 
	padding:0;
	height:30px;
	border-bottom:1px solid #48555d;	
	
	 	
}

/* 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 { 
	border-left: 1px solid #48555d;
	border-right: 1px solid #48555d;
	border-top: 1px solid #48555d;
	float:left;
		font-size:13px;
		display:block;
		padding:5px 30px;	
		text-decoration:none;
		border-bottom:0px;
		height:18px;
	background:url('navimg.jpg') 0 0;
		color:#acd9ff;
		margin-right:2px;
		-moz-border-radius-topleft: 4px;
		-moz-border-radius-topright:4px;
		position:relative;
		top:1px;	
}
/* 
ul.css-tabs a:hover {
	background-color:#F7F7F7;
	color:#333;
}
	
selected tab */
ul.css-tabs a.current {
	background:url('navimg2.jpg') 0 0;
	/*border-bottom:5px solid #f0e8dc;	*/
	color:#fff;	
	cursor:default;
}

	
/* tab pane */
div.css-panes div {
	display:none;
	border-top:5px solid #48555d;
	min-height:150px;
	padding:15px 20px;
	background:url('bgtext.png') 0 0;
	font-size:15px;	
}
div.css-panes{
	padding-top:0;
	padding-right:0;
}


