div.flex-tabs-wrapper{
	display: inline;
	float: left;
	margin: 25px 0;
	width: 620px;
}


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

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

/* link inside the tab. uses a background image */
ul.flexi-tabs a { 
	float:left;
	font-size: 0.9em;
	line-height: 1.4em;
	display:block;
	padding:5px 30px;	
	text-decoration:none;
	text-shadow:0 -1px 1px rgba(255, 255, 255, 0.8);
	border:1px solid #ddd;	
	height:18px;
	color:#666;
	margin-right:2px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright:4px;
	-webkit-border-top-right-radius:4px;	
	-webkit-border-top-left-radius:4px;
	position:relative;
	top:1px;	
}

ul.flexi-tabs a:hover {

}
	
/* selected tab */
ul.flexi-tabs a.current {
	background-color:#fff;
	border-bottom:2px solid #fff;	
	color:#333;
	font-weight: bold;

	cursor:default;
	text-shadow:none;
}

	
/* tab pane */
div.flexi-panes > div {
	display:none;
	border:2px solid #ddd;
	border-width:0 1px 1px 1px;
	min-height:150px;
	padding:15px 20px;
	background: url(img/gradient.png)  repeat-x scroll left bottom;
	-moz-border-radius-bottomleft:8px;
	-moz-border-radius-bottomright:8px;
	-webkit-border-bottom-right-radius:8px;	
	-webkit-border-bottom-left-radius:8px;
}
