/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	width:100%;
	margin-top:20px;
	margin-bottom:10px;
}

/* single tab */
ul.tabs li { 
	display:inline;
	text-indent:0;
	list-style-image:none !important; 
	color:#0066CC;
}

/* link inside the tab. uses a background image */
ul.tabs a { 
	margin-right:50px;
	text-align:left;	
	text-decoration:underline;
	color:#0066CC;
	font-size:22px;
	font-weight:bold;
	}

ul.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	color:#0CF;	
}

/* 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 {
	color:#474749 !important;
}


/* initially all panes are hidden */ 
div.panes div.pane {
	display:none;		
}


