
/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0 0 0 -45px !important; 
	!padding-left: 40px;
	/*height:30px;*/
	font-family: Tahoma;
}

/* 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 { 
	background: #e5e1d4;
	list-style: none;
	font-size:12px;
	display:block;
	line-height:12px;
	width: 200px;
	text-align:left;	
	text-decoration:none;
	color:#00703c;
	padding:12px 15px;
	margin: 2px 0px;	
	position:relative;
	top: 0;
}

ul.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background: #e9dfab;	
}

/* active tab uses a class name "current". its highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	background: #00703c;		
	cursor:default !important; 
	color:#FFF !important;
}

/* initially all panes are hidden */ 
.panes .pane {
	display:none;		
}

/* tab pane styling */
.panes div {
	display:none;		
	padding-top: 10px;
}

/** END ****/

