
/* root element for tabs  */
ul.tabs { 
	list-style:none; 

	padding:0;	
	margin-left:15px;
	margin-top:20px;


}

/* single tab */
ul.tabs li { 
	float:left;	 
	padding:0;
	padding-bottom:10px;
	border:0px solid red;
	padding-left:15px;
	background-image:url(../images/dot2.gif); 
	background-position: 0px 0px;
	background-repeat:no-repeat;

}

/* link inside the tab. uses a background image */
ul.tabs a { 
	font-size:11px;
	font-weight:bold; 
	width: 200px;
	text-align:left;	
	text-decoration:none;
	color:#757575;
	margin:0px;	
		display:block;
}

ul.tabs a:active {
	outline:none;	
	color:red;	

}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	color:red;	
}


/* 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:red !important;

}

ul.tabs li:hover{ 

	background-image:url(../images/dot.gif) !important;
	background-position: 0px 0px;
	background-repeat:no-repeat;
}



/* Different widths for tabs: use a class name: w1, w2, w3 or w2 */




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


