/* root element for tabs  */
ul.tabs {  
	margin:0 !important; 
	padding:0;
	height:30px;
	border-bottom:1px solid #666;	 	
    overflow: hidden;
}

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

/* link inside the tab. */
ul.tabs a { 
	float:left;
    font-size:100%;
    font-weight: bold;
	display:block;
	padding:5px 30px;	
	text-decoration:none;
	border:1px solid #666;	
	border-bottom:0px;
	height:18px;
	background-color:#f6f3e9;
	color:#777;
	margin-right:2px;
	-moz-border-radius-topleft: 8px;
    -moz-border-radius-topright:8px;
	-webkit-border-radius-topleft: 8px;
    -webkit-border-radius-topright:8px;
	position:relative;
	top:1px;	
}

ul.tabs a:hover {
	background-color:#F7F7F7;
	color:#333;
}
	
/* selected tab */
ul.tabs a.current {
	background-color:#e6e3d9;
	border-bottom:2px solid #e6e3d9;	
	color:#000;	
	cursor:default;
}

	
/* tab pane */
div.panes div.pane {
	display:none;
	border:1px solid #666;
	border-width:0 1px 1px 1px;
	min-height:150px;
	padding:15px 20px;
	background-color:#e6e3d9;	
}


