
/* root element for tabs  */
ul.tabs { 
	list-style:none; 		
	height:26px;
	background-image:url('../images/tab_line.png'); 
	background-repeat:repeat-x; 
	background-position:bottom; 
	margin:15px 0 0 0;
	text-decoration:none;
}

/* single tab */
ul.tabs li { 
	float:left;	 
	text-decoration:none;
	padding:0;
	margin:0 6px 0 0;
	list-style-image:none !important;
	list-style:none; 
}

/* link inside the tab. uses a background image */
ul.tabs a 
{
    background-image:url('../images/tab_passive.png'); 
    background-repeat:no-repeat; 
    color:#959595;
    text-align:center; 
    border:none; 
    cursor:pointer; 
    width:157px; 
    height:26px; 
    font-size:12px; 
    line-height:26px; 
    margin:0;
    text-decoration:none;	
	padding:0px;		
	position:relative;
	top:0px;
	display:block;
}

ul.tabs a:active {
	background-image:url('../images/tab_active.png');
	text-decoration:none; 		
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background-image:url('../images/tab_passive.png'); 	
	color:#959595;	
	text-decoration:none;
}

/* 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 {
	background-image:url('../images/tab_active.png'); 		
	cursor:default !important; 
	color:black;
	text-decoration:none;
}

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


/* width 1 */
ul.tabs a.s 			{text-decoration:none;}
ul.tabs a.s:hover 	{text-decoration:none;}
ul.tabs a.s.current  {text-decoration:none;}

/* width 2 */
ul.tabs a.l 			{text-decoration:none;}
ul.tabs a.l:hover 	{text-decoration:none;}
ul.tabs a.l.current  {text-decoration:none;}


/* width 3 */
ul.tabs a.xl 			{text-decoration:none;}
ul.tabs a.xl:hover 	{text-decoration:none;}
ul.tabs a.xl.current {text-decoration:none;}


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


