
/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;
	height:23px;	
}

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

/* link inside the tab. uses a background image */
ul.tabs a, ul.tabs a:visited {	
	background-image: url('tabs/inactive_tab.gif');
    background-repeat: no-repeat;
    background-position:top;
	
	font-size:11px;
	display:block;
	height:23px;	
	width:104px;
	_width:109px;	
	text-align:right;		
	text-decoration:none;
	line-height:23px;	
	color:#6767a0;
	padding:0px;
	padding-right:5px;
	margin:0px;
	_margin-right: 1px;
	position:relative;
	z-index: 1;
}

ul.tabs a:active, ul.tabs a:focus  {
	outline:none;	
	-moz-outline-style:none;			
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {	
	background-image: url('tabs/hover_tab.gif');
	z-index: 999;
	color:#2d4073;		
	-moz-border-radius-topright:6px;	
}

/* 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, ul.tabs a.current:visited {
	background-image: url('tabs/current_tab.gif');
	cursor:default !important; 
	color:#ffffff !important;
	z-index: 1000;
	-moz-border-radius-topright:6px;
}

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


/* width 1 */
ul.tabs a.w1 			{ }
ul.tabs a.w1:hover 	{ }
ul.tabs a.w1.current { }

/* width 2 */
ul.tabs a.w2 			{ }
ul.tabs a.w2:hover 	{ }
ul.tabs a.w2.current { }


/* width 3 */
ul.tabs a.w3 			{ }
ul.tabs a.w3:hover 	{ }
ul.tabs a.w3.current { }

/* width 4 */
ul.tabs a.w4 			{ }
ul.tabs a.w4:hover 	{ }
ul.tabs a.w4.current { }


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

.panes{
	
	text-align:center;
	background-color:#566D91;
	-moz-border-radius-topleft:6px;
	-moz-border-radius-bottomright:6px;
	-moz-border-radius-bottomleft:6px;
}
