<!-- tab pane styling -->
div.wrap {
	/*width:700px;
	margin-bottom:40px;*/
}
	
.pane  {
	background:#f7f7f7;
	display:none;		
	padding:20px;
	border-top:0;
}

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

/* single tab */
ul.tabs li {
	list-style:none;
	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:#000;
	font-family:Tahoma, Geneva, sans-serif;
	font-size:15px;
	display:block;
	text-align:center;	
	text-decoration:none;
	color:#fff;
	padding:8px 15px;
	margin:0px 3px 0px 0px;	
	position:relative;
	top:0px;
	text-transform:uppercase;
}

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

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background:#eaeaea;
	color:#000;
}

/* 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 {		
	cursor:default !important; 
	color:#000 !important;
	background:#f7f7f7 !important;
}

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