
/* root element for tabs  */
ul.tabs { 
	display: block;
	position: relative;
	/*padding:0 0 0 10px;*/
	margin: 0 0 0 0;
	list-style: none;
	top: 65px;
	left: 15px;
	float: left;
	z-index: 40;
	
}

#main > ul.tabs {
	list-style:none; 
	margin:0 !important; 
	padding:0 0 0 10px;
	height:37px;
	float:left;
	position: relative;
	top: 65px;
	left: 10px;
}

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

/* single tab */
#main > 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-repeat: no-repeat;
	text-align: center;
	font-size:11px;
	line-height:24px;
	display:block;
	text-decoration: none;
	width: 26px;
	height: 26px;
	color:#FFFFFF;
	padding:0px 0 0px 0;
	margin:10px 0px 0px 10px;	
	position:relative;
	top:1px;
}


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

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	font-size:22px;
	background-position: 0px -26px;
	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 -26px;	
	font-size:22px;	
	cursor:default !important; 
	color:#FFFFFF !important;
	outline:none;
}



/* initially all panes are hidden */ 
div.panes div.pane {
	float: left;
	display:none;
	margin: 0px;
	padding: 0px;
}

