﻿
/* root element for tabs  */
ul.tabs {
	display: block;
	position:absolute;
	padding:0;
	margin:5px;
	list-style: none;
	float: left;
	z-index: 40;
	height:19px;
}

/* single tab */
ul.tabs li { 
	float:left;
	clear: right;
	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-repeat: no-repeat;
    background-position: 0px -18px;
	text-align: center;
	font-size:1px;
	display:block;
	text-decoration: none;
	width: 14px;
	height: 14px;
	padding:0px 0px 0px 0px;
	margin:1px;	
	position:relative;
}
ul.tabs a:active {outline:none;}

/* when mouse enters the tab move the background image */
ul.tabs a:hover{font-size: 1px;background-position: 0px 0px;text-decoration: none;}

/* 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 {
    background-position: 0px 0px;
	font-size:1px;	
	cursor:default !important; 
	color:#FFFFFF !important;
	outline:none;
}

/* initially all panes are hidden */ 
div.panes{ position:relative;display:block;}
div.pane {display:none;margin: 0px;padding: 0px;}
