/* CSS Document */

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

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

/* link inside the tab. uses a background image */
ul.tabs a { 
	float:left;
	font-size:14px;
	display:block;
	padding:5px;	
	text-decoration:none;
	/*border:1px solid #CCC;*/	
	border-bottom:0px;
	height:19px;
	/*background-color:#D3EBDB;*/
	color:#00712B;
	margin-right:4px;
	position:relative;
	top:1px;	
	outline:0;
	text-transform:uppercase;
	font-family: "Arial Narrow",LocalArialNarrow,Helvetica,Arial;
	font-weight: 100;
	
    text-shadow: 1px 1px 0 #FFF;
	/*-moz-border-radius:4px 4px 0 0;*/	
}

ul.tabs a:hover {
	/*background-color:#CEEBEA;*/
	border-bottom:1px solid #333;
	color:#333;
}
	
/* selected tab */
ul.tabs a.current {
	background-color:#00712B;
	border-bottom:1px solid #00712B;
	color:#FFF;	
	cursor:default;
	text-shadow:none;
}

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