﻿
/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;	
	height:25px;
}

/* single tab */
ul.tabs 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.tabs a { 
	font-size:11px;
	display:block;
	height: 25px;  
	line-height:25px;
	text-align:left;	
	text-decoration:none;
	color:#747e8d;
	padding:0px 10px 0px 10px;
	margin:0px;	
	position:relative;
	top:1px;
	background-image:url('/images/tab-bg.png'); background-repeat:repeat-x;
}

ul.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	color:#515560;	
}

/* 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 {
	cursor:default !important; 
	color:#515560 !important;
	background-image:url('/images/tab-bg-selected.png'); background-repeat:repeat-x;
}

/* Different widths for tabs: use a class name: w1, w2, w3 or w2 */


/* width 1 */
ul.tabs a.s 			{width:81px; }
ul.tabs a.s:hover 	{ }
ul.tabs a.s.current  {  }

/* width 2 */
ul.tabs a.l 			{ width:174px; }
ul.tabs a.l:hover 	{  }
ul.tabs a.l.current  {  }


/* width 3 */
ul.tabs a.xl 			{ width:248px; }
ul.tabs a.xl:hover 	{  }
ul.tabs a.xl.current {  }


/* initially all panes are hidden */ 
div.panes div.pane {
	display:none;
	padding:19px;	
}