
/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	text-decoration:none;
	margin:0 !important; 
	padding:0;	
	height:21px;
	
}

/* single tab */
ul.tabs li { 
	text-decoration:none;
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important;
	width:185px;	
	padding:0 3px 0 0;
}

/* link inside the tab. uses a background image */
ul.tabs a { 
	background: url(../images/tab.jpg) no-repeat ;
	font-size:11px;
	display:block;
	height: 21px;  
	line-height:21px;
	width: 185px;
	text-align:center;	
	text-decoration:none;
	color:#333;
	padding:0px;
	margin:0px;	
	position:relative;
	top:1px;
}

ul.tabs a:active {
	text-decoration:none;
	outline:none;
	background: url(../images/tab-active.jpg) no-repeat ;		
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	color:#e7383a;
	background: url(../images/tab-active.jpg) no-repeat ;
	text-decoration:none;
	
}

/* 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 {
	text-decoration:none !important; 
	color:#e7383a !important;
	background: url(../images/tab-active.jpg) no-repeat !important;	
}

/* initially all panes are hidden */ 
div.panes div.pane {
	display:none;

}

/* tab pane styling */
div.panes div {
	display:none;		
	padding:15px 10px;
	border-top:0;
	background:#e3e2e3;
	height:80px;
	font-size:12px;
	line-height:18px;
}
div.panes div .img{ padding:0 10px 0 0;}

div.panes div  a{color:#e82d2a; text-decoration:underline; float:right; font-size:11px; clear:left;}
div.panes div  a:hover{text-decoration:none;}
