
/* root element for tabs  */
ul.tabs {
/*	height:30px;*/
}

/* single tab */
ul.tabs li {
	float:left;
}

/* link inside the tab. uses a background image */
ul.tabs a {
	display:block;
	position:relative;
/*	top:1px; */
}

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

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
}

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

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

