/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin: 40px 0 0 0; 
	padding:0;		
	height: 90px;
	width: 980px;
}

/* single tab */
ul.tabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin: 0 25px 0 0;
	list-style-image:none;
	cursor: pointer;
}

ul.tabs li.last { 
	margin: 0;
}

ul.tabs li.last h2 {
	margin: 7px 0 0 5px;
	width: 155px;
}


/* link inside the tab. uses a background image */
ul.tabs a { 
	background: url(../img/blue_panes.png) no-repeat;
	display:block;
	height: 91px;   
	width: 310px; 	
	padding:0px;
	margin:0px;
	
	/* font decoration */
	color:#fff;
	text-align:center;
	text-decoration:none;
	
	cursor: pointer;

}

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

/* when mouse enters the tab move the background image */
ul.tabs a:hover {	
	background-position: 0 -91px;	
}

/* 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 {
	background-position: 0 -182px;		
	cursor:default; 
}

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

/* initially all panes are hidden */ 
div.panes {
	display:none;	
	background: url(../img/blue_panes.png) no-repeat 0 -276px;		
	width:980px;
	height: 504px;	
}

