
/* root element for tabs  */
.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;
	height:30px;
	font-family: Arial, Helvetica, sans-serif;
	font-size:13px;
	font-weight:bold;
	text-shadow: 0px 2px 2px #000;
}

/* single tab */
.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 */
.tabs a { 
	background: #00308F url(../graph/menu_header_bg.png) no-repeat center; color: white;
	font-size:11px;
	display:block;
	height: 31px;  
	line-height:30px;
	width: 111px;
	text-align:center;	
	text-decoration:none;
	text-transform : uppercase;
	padding:0px;
	margin:0px;	
	position:relative;
	top:1px;
	cursor:pointer;
	border-right:1px solid #FFF;
}

.tabs a:active {
	outline:none;
}

/* when mouse enters the tab move the background image */
.tabs a:hover {
	background-color: #E4E2E0; color:#00308F;
	text-shadow: 0px 0px 0px #FFF;
	border-right:1px solid #FFF;
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
.tabs .current, .tabs .current:hover, .tabs li.current a {
	background-color: #E4E2E0; color:#00308F; text-shadow: none;
	cursor:default !important;
}


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

