
/* root element for tabs  */
ul.tabs { 
	height:30px;
}

/* single tab */
ul.tabs li { 
	float:left;	 
border-right: 1px solid #333;
}

/* link inside the tab. uses a background image */
ul.tabs a {
background: black;
display: block;
height: 30px;
line-height: 30px;
text-align: center;
padding: 0px 25px;
margin: 0px;
top: 1px;
color: #FDEB4C;

}

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

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
}

/* 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;
background: #313131;
color: white !important;
outline:0 none;
}


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

/* tab pane styling */
.panes div {
	display:none;		
}