﻿
/* root element for tabs  */
ul.tabs { 
	height:30px;
}

/* single tab */
ul.tabs li { 
	float:left;
}

/* link inside the tab. uses a background image */
ul.tabs a { 
	display:block;
	height: 30px;  
	line-height:30px;
	width: 263px;
	padding-left:15px;
	background-color:#111111;
	font-size:14px;
	text-align:left;	
	text-decoration:none;
	text-transform:uppercase;
}

ul.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {    
	background-color:#181818;
}

/* 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-color:#252525;
	cursor:default !important; 
}

/* Different widths for tabs: use a class name: w1, w2, w3 or w2 */

/* initially all panes are hidden */ 
div.panes div.pane {
	display:none;		
}

