
/* root element for tabs  */
ul.tabs { 
	height: 40px;
	margin:0 !important; 
	padding: 0;
	padding-left: 1px;
	list-style: none; 
	background: url(../images/tabs.png) no-repeat -106px 0;
}

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

/* link inside the tab. uses a background image */
ul.tabs a { 
	width: 107px;
	height: 40px;  
	line-height: 40px;
	top: 1px;
	margin: 0px;	
	padding: 0px;
	position: relative;
	display: block;
	background: url(../images/tabs.png) no-repeat -107px 0;
	font-size: 1em;
	font-weight: bold;
	text-align: center;	
	text-decoration: none;
	color: #000000;
}

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

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background-position: -107px 0px;	
	color: #fec401;	
}

/* 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;		
	cursor:default !important; 
	color:#fec401 !important;
}


/* initially all panes are hidden */ 
div.panes div.pane {
	padding: 0px 0px;
	display: none;		
	background-color: #ffffff;
}

div.panes div.pane h3 {
	
}