/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;	
	height:25px;
	line-height: 25px;
	font-family:"Courier New", Courier, monospace;
	letter-spacing: -1px;
	font-size: .8em;
}

/* single tab */
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: #450c53;
	font-size:1em;
	display:block;
	line-height:25px;
	text-decoration:none;
	color: #ffffff;
	padding: 0 7px;
	margin:0px;	
	margin-right: 7px;
	position:relative;
	top:1px;
}

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

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	color: #fff;
	background-color: #6c117f;
	text-shadow: 1px 1px 1px #000;
}

/* 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; 
	color:#f4ca09 !important;
	text-shadow: 1px 1px 1px #000;
}

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

