/* root element for tabs  */
ul.tabs {  
	margin:0 !important; 
	padding:0;
	height:30px;
}

/* single tab */
ul.tabs li {  
	float:left;	 
	padding:0; 
	margin:0;  
	list-style-type:none;	
    list-style-image:none;
}

/* link inside the tab. uses a background image */
ul.tabs a { 
	float:left;
	font-size:11px;
	display:block;
    border: 1px solid #333;
    border-bottom: 0px;
	text-decoration:none;
	border-bottom:0px;
	height:10px;
	color:black;
	margin-right:2px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright:4px;
	position:relative;
	top:1px;	
}

ul.tabs a:hover {
	color:#333;
}
	
/* selected tab */
ul.tabs a.current {
	color:#000;	
	cursor:default;
}

	
/* tab pane */
div.panes div {
	display:none;
	min-height:150px;
	padding:15px 20px;
}




