


/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;	
	
	height:30px;
}

/* single tab */
ul.tabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important; 
	:-moz-any-link:focus {
  outline: none;
}

}

/* link inside the tab. uses a background image */
ul.tabs a { 
	

	display:block;
	height: 30px;  
	line-height:30px;

	text-align:left;	
	text-decoration:none;
	color:#999;
	padding:0px 20px 0px 0px;
	margin:0px;	
	-moz-outline-style: none;


}

ul.tabs a:active {
	outline:none;
	top:-1;
	position:relative;
	display:block;
	
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background-position: -420px -31px;	
	color:#000;	

}

/* active tab uses a class name "current". its highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	
	font-family: 'AdobeCaslonProBold', Times New Roman, 'Times New Roman', Times;
	
	margin: -1px 0px 0px 0px;

	
 
	color:#000 !important;

	
	
}

/* Different widths for tabs: use a class name: w1, w2, w3 or w2 */
:focus, a:focus {
  -moz-outline-style: none;
}

:-moz-any-link:focus {
  outline: none;
}




