
/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;	
	border-bottom:1px solid #CCCCCC;	
	height:30px;
	xxxoverflow: hidden;
}

/* single tab */
ul.tabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important; 
	
	border-color: #cccccc;
	border-width: 1px;
	border-radius: 4px 4px 0px 0px;
	border-style: solid;
	
	
	background-color: #fcfcfc;
	background-image: linear-gradient(#fff, #ddd);
	background: #fcfcfc;
	background: linear-gradient(#fff, #ddd);
}

ul.tabs a { 
	font-size:12px;
	font-weight:bold;
	text-transform: uppercase; 
	display:block;
	width: 133px;
	height: 29px;  
	line-height:29px;
	text-align:center;	
	text-decoration:none;
	color:#333;
	padding:0px;
	margin:0px;	
	position:relative;	
}

ul.tabs a:active {
	outline:none;		
}

ul.tabs li:hover {
	background-color: #004483;
	background-image: linear-gradient(#005597, #003f7b);
	background: #004483;
	background: linear-gradient(#005597, #003f7b);
}
ul.tabs li:hover a {
    color: #fff;	
}

ul.tabs li.current:hover,
ul.tabs li.current {
	background-color: #fff;
	background-image: linear-gradient(#fff);
	background: #fff;
	background: linear-gradient(#fff);
	border-bottom-style: none;
}
ul.tabs li.current a {
    cursor:default !important; 
	color:#000 !important;
	height: 30px;  
}

/* initially all panes are hidden */ 
.panes .pane {
	display:none;		
}

