@charset "utf-8";
/* CSS Document */
ul.threetabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;
	height:30px;
}

/* single tab */
ul.threetabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important; 
}

/* link inside the tab. uses a background image */
ul.threetabs a {
	background: url(../media/tabs.png) no-repeat -652px 0;
	font-size:12px;
	display:block;
	height: 30px;
	line-height:30px;
	width: 111px;
	text-align:center;
	text-decoration:none;
	color:#333;
	padding:0px;
	margin:0px;
	position:relative;
	left:105px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
}

ul.threetabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
ul.threetabs a:hover {
	background-position: -652px -31px;	
	color:#fff;	
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.threetabs a.current, ul.threetabs a.current:hover, ul.threetabs li.current a {
	background-position: -652px -62px;		
	cursor:default !important; 
	color:#000 !important;
}
