/* root element for search tabs  */
ul.search_tabs { 
	list-style: none; 
	margin: 0 !important; 
	padding: 0;
	height: 24px;
}

/* single tab */
ul.search_tabs li { 
	float: left;	 
	text-indent: 0;
	padding: 0px 0px 0px 10px;
	margin: 0 !important;
	list-style-image: none !important;
}

/* link inside the tab. uses a background image */
ul.search_tabs a { 
	background-color: #80C243;
	display: block;
	height: 24px;  
	line-height: 24px;
	text-align: center;	
	text-decoration: none;
	color: #FFFFFF;
	padding: 0px 10px 0px 10px;
	margin: 0px;
}

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

/* when mouse enters the tab move the background image */
ul.search_tabs a:hover {
	background-color: #FFFFFF;
	color: #000000;	
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.search_tabs a.current, ul.search_tabs a.current:hover, ul.search_tabs li.current a {
	background-color: #FFFFFF;
	cursor: default !important; 
	color: #000000 !important;
}


/* initially all panes are hidden */ 
div.search_panes div.search_pane {
	display: none;
}

/* Result Listings "tabs" */

#listing_index_sub_heading ul {
	position: absolute;
	right: 0px;
	top: 5px;
}

#listing_index_sub_heading ul li {
	float: left;
	margin-right: 8px;
}

#listing_index_sub_heading ul li a:link, 
#listing_index_sub_heading ul li a:visited {
	padding: 4px 6px 4px 6px; /* top, right, bottom, left */
	display: block;
	text-decoration: none;
	font-weight: bold;
	background-color: #80C243;
	border: 1px solid #80C243;
}

#listing_index_sub_heading ul li a:hover, 
#listing_index_sub_heading ul li a:active {
	padding: 4px 6px 4px 6px; /* top, right, bottom, left */
	display: block;
	text-decoration: none;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #000000;
	border: 1px solid #FFFFFF;
}

#listing_index_sub_heading ul li a.current {
	padding: 4px 6px 4px 6px; /* top, right, bottom, left */
	color: #FFFFFF;
	font-weight: bold;
	background-color: #000000 !important;
	border: 1px solid #FFFFFF !important;
}

#listing_index_sub_heading ul li a.current:hover {
	cursor: default !important; 
}

