/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;
	height:10px;
	}

/* single tab */
ul.tabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important; 
}

/* link inside the tab. uses a background image */
ul.tabs a { 
	font-size:11px;
	display:block;
	height: 30px;  
	line-height:30px;
	width: 203px;
	text-align:center;	
	padding:0px;
	margin:0px;	
	border:1px solid #DFE0E1;
	outline:none;
	background-color:#DFE0E1;
	text-decoration:underline;
	}

ul.tabs a:active {
	outline:none;
	}

ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	border-bottom:white;
	background-color:white;
}

/* initially all panes are hidden */ 
div.panes div.pane {
	display:none;		
}


