
/* root element for tabs  */
ul.css-tabs {  
	margin:0 !important; 
	padding:0;
	background: url(../img/bg-tabs-main.jpg) no-repeat; height:50px; background-position:bottom;
} /*background of main tabs section */

/* 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 {
	background-image:url(../img/bg-tab.jpg);
	background-repeat:no-repeat;
	float:left;
	font-size:13px;
	display:block;
	text-decoration:none;
	height:37px;
	color:#777;
	position:relative;
	top:1px;
	padding:10px 0 0 10px;
	width:156px;
}

ul.css-tabs a:hover {
	background-image:url(../img/bg-tab-h.jpg);
	background-repeat:no-repeat;
	background-color:#F7F7F7;
	color:#333;
}
	
/* selected tab */
ul.css-tabs a.current {
	background-image:url(../img/bg-tab-o.jpg);
	background-repeat:no-repeat;
	color:#FF6600;	
	cursor:default;
}

	
/* tab pane */
div.css-panes div {
	padding-top:0px;
}




