#wapTabs {
}
/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;	
	height:32px;
	background: url(../images/tabsTitle_bg.gif) top left no-repeat;
}

/* 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 { 
	background: url(../images/tabs_bg.gif) bottom center no-repeat;
	font-size:11px;
	display:block;
	height: 32px;  
	line-height:25px;
	width: 114px;
	_width: 105px;
	text-align:center;	
	text-decoration:none;
	color:#686868;
	padding:0px;
	margin:0px;
	margin-left:5px;
	position:relative;
	top:1px;
	font-weight:bold;
}

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

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background: url(../images/tabsActive_bg.gif) bottom center no-repeat;	
	color:#e33500;	
}

/* 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: url(../images/tabsActive_bg.gif) bottom center no-repeat;
	cursor:default !important; 
	color:#e33500 !important;
}

/* initially all panes are hidden */ 
.panes, .pane {
	border:1px #dadada solid;
	padding:2px;
}

