 /* root element for tabs  */
ul.tabs {
    margin: 0 !important; padding: 0; height: 35px; border-bottom: 1px solid #3366ff; background:#3366ff url(../img_temp/gradient.png) repeat-x ;}
/* single tab */
ul.tabs li { 
	float:left;	padding:5px 0 0 0;	margin:0 0 0 3px; list-style-type:none;}
/* link inside the tab. uses a background image */
ul.tabs a { 
	float:left;	font-size:13px;	display:block;	padding:5px 30px;	text-decoration:none;	border:1px solid #666;	
	border-bottom:0px;	height:18px; background-color:#efefef;	color:#777; margin-right:2px; position:relative;	top:1px; 
	}
ul.tabs a:hover {
	background-color:#F7F7F7; color:#333;}
/* selected tab */
ul.tabs a.current {
	background-color:#efefef;	border-bottom:2px solid #efefef; color:#000;	cursor:default;}
/* tab pane */
div.panes div.tabbo {
	display:none;	border:1px solid #3366ff; background-color:#efefef;
	border-width:0 1px 1px 1px;	min-height:150px; padding:15px 20px;} 