
/* root element for tabs  */
ul.tabs { 
	color: blue;
	list-style:none; 
	margin:0 !important; 
	padding:0;	
	border-bottom:1px solid #666;	
	height:24px;
}

/* single tab */
div.tabs DIV { 
	color: blue;
	float:left;	 
	text-indent:0;
	padding-top:0;
	padding-bottom:0;
	padding-left: 0px;
	padding-right:0px;
	width: 81px;
	margin:0 !important;
	list-style-type:none;
	list-style-image: none !important; 
}

/* link inside the tab. uses a background image */
DIV.tabs a 
{ 
	background: url(img/tabblue.png) no-repeat -553px 0;
	font-size: 10px;
	font-weight : bold;
	font-family: Verdana, Geneva, sans-serif;
	color: blue;
	display:block;
	height: 24px;  
	line-height:24px;
	text-align:center;	
	text-decoration:none;
	color:#333;
	padding:0px;
	margin:0px;	
	position:relative;
	top:1px;
}

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

/* when mouse enters the tab move the background image */
DIV.tabs a:hover 
{
	color: blue;
	background-position: -553px -25px;	
	color:#fff;	
}

/* active tab uses a class name "current". its highlight is also done by moving the background image. */
DIV.tabs a.current, DIV.tabs a.current:hover, DIV.tabs DIV.current a {
	background-position: -553px -50px;		
	cursor:default !important; 
	color:#000 !important;
}

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


/* width 1 */
ul.tabs a.s 			{ background-position: -553px 0; width:81px; }
ul.tabs a.s:hover 	{ background-position: -553px -31px; }
ul.tabs a.s.current  { background-position: -553px -62px; }

/* width 2 */
ul.tabs a.l 			{ background-position: -248px -0px; width:174px; }
ul.tabs a.l:hover 	{ background-position: -248px -31px; }
ul.tabs a.l.current  { background-position: -248px -62px; }


/* width 3 */
ul.tabs a.xl 			{ background-position: 0 -0px; width:248px; }
ul.tabs a.xl:hover 	{ background-position: 0 -31px; }
ul.tabs a.xl.current { background-position: 0 -62px; }


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

