
/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;
	padding-left:5px;
	height:30px;
	border-bottom:1px solid #E6E6E6;	
}

/* single tab */
ul.tabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image: url(images/menu_bar_background.gif); 
}

/* link inside the tab. uses a background image */
ul.tabs a { 
	background: url(images/tabs_background_rollout.jpg) no-repeat;
	font-family:"futura Book", Arial;
	font-size:11px;
	display:block;
	height: 38px;  
	line-height:35px;
	width: 101px;
	text-align:center;	
	text-decoration:none;
	color:#666;
	padding:0px;
	margin:0px;	
	position:relative;
	top:1px;
}

ul.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background: url(images/tabs_background_rollover.jpg) no-repeat;
	color:#666;
	font-family:"futura Book", Arial;
}


/* 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 {
	background: url(images/tabs_backgroundy.jpg) no-repeat;
	font-family:"futura Book", Arial;
	cursor: auto; 
	color:#999;
}

/* Different widths for tabs: use a class name: w1, w2, w3 or w2 */





/* initially all panes are hidden */ 
div.panes div.pane {	
	display:none;		
}

.bodyTxt {
	font-family:"futura Book", Arial;
	font-size:12px;
	font-weight:normal;
	font-style:normal;
	text-align:left;
	color:#333333;
	background-color:#FFFFFF;	
}


