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

/* single tab */
ul.tabs li {  
	float:left;	 
	padding:0; 
	margin:0;  
	list-style-type:none;	
}

/* link inside the tab. uses a background image */
ul.tabs a { 
	float:left;
	font-size:16px;
	display:block;
	padding:5px 30px;	
	text-decoration:none;
	border:1px solid #666;	
	border-bottom:0px;
	height:18px;
	background-color:#333;
	color:#fff;
	margin-right:2px;
	position:relative;
	top:1px;	
	outline:0;
	
	border-top-left-radius: 5px;	
	-moz-border-radius-topleft: 5px;
	-webkit-border-top-left-radius: 5px;
	
	border-top-right-radius: 5px;	
	-moz-border-radius-topright: 5px;
	-webkit-border-top-right-radius: 5px;
	
/*	
		border-bottom-left-radius: 20px;	
	-moz-border-radius-bottomleft: 20px;
	-webkit-border-bottom-left-radius: 20px;*/
}

ul.tabs a:hover {
	background-color:#666;
	color:#fff;
}
	
/* selected tab */
ul.tabs a.current {
	background-color:#111;
	border-bottom:2px solid #111;	
	color:#fff;	
	cursor:default;
}

	
/* tab pane */
.panes .pane {
	display:none;
	border:1px solid #666;
	border-width:0 1px 1px 1px;
	padding:15px 20px;
	
	min-height:200px;
	color:#fff;	
	/*background:#4F5C6A;*/
	background:#111;
	
background-image: linear-gradient(bottom, rgb(34,34,34) 25%, rgb(17,17,17) 74%);
background-image: -o-linear-gradient(bottom, rgb(34,34,34) 25%, rgb(17,17,17) 74%);
background-image: -moz-linear-gradient(bottom, rgb(34,34,34) 25%, rgb(17,17,17) 74%);
background-image: -webkit-linear-gradient(bottom, rgb(34,34,34) 25%, rgb(17,17,17) 74%);
background-image: -ms-linear-gradient(bottom, rgb(34,34,34) 25%, rgb(17,17,17) 74%);

background-image: -webkit-gradient(
	linear,
	left bottom,
	left top,
	color-stop(0.25, rgb(34,34,34)),
	color-stop(0.74, rgb(17,17,17))
);
}



