
/* root element for tabs  */
ul.css-tabs {  
	margin:0 !important; 
	padding:0;
	height:26px;
	/* 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;
	font-size:12px;
	display:block;
	padding:0px 10px;	
	text-decoration:none;
	height:18px;
	color:#6B5B41;
	font-weight:bold;
	margin-right:1em;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright:4px;
	position:relative;
	top:1px;	
}

ul.css-tabs a:hover {
	background-color:#A4906D;
	color:#f7f7f7;
	border-bottom:2px solid #A4906D;
}
	
/* selected tab */
ul.css-tabs a.current {
	background-color:#4f7069;
	border-bottom:2px solid #4f7069;	
	color:#f7f7f7;	
	cursor:default;
}

	
/* tab pane */
div.css-panes div {
	display:none;
	/* border:1px solid #666; */
	/* border-width:0 1px 1px 1px; */
	border:none;
	text-align:left;
	min-height:150px;
	padding:0px;
	background-color:#4f7069;	
	font-size:80%;
}

table#tbl_Tabs ul{margin:0;}