
/* root element for tabs  */
ul.css-tabs {  
	margin:0 !important; 
	padding:0;
	height:42px;
	background-image:url(../images/tabs_Bground.gif);

}

/* single tab */
ul.css-tabs li {  
	float:left;
	margin-top:12px;

	list-style-type:none;
	font-family:Helvetica;
}

/* link inside the tab. uses a background image */
ul.css-tabs a { 
	float:left;
	font-size:11px;
	display:block;
	padding:5px 30px;	
	text-decoration:none;
	border:1px solid #666;	
	border-bottom:0px;
	height:18px;
	background-image:url(../images/tabOff_bground.gif);
	color:#666666;
	margin-right:2px;
	position:relative;
	top:1px;	
}

ul.css-tabs a:hover {
	background-image:url(../images/tabOn_bground.gif);
	color:#08454e;
}
	
/* selected tab */
ul.css-tabs a.current {
	background-image:url(../images/tabOn_bground.gif);
	border-bottom:2px solid #ddd;	
	color:#08454e;	
	cursor:default;
}

	
/* tab pane */
div.css-panes div {
	display:none;
	background-color:#FFFFFF;
	width:900px;
	margin:0px auto;
	padding-top:20px;
	padding-bottom:20px;
}



