/* root element for tabs  */
#content ul.css-tabs {
	margin:0 !important;
	padding:0;
	height:21px;
}

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

/* link inside the tab. uses a background image */
#content ul.css-tabs a {
	float:left;
	font-size:11px;
	display:block;
	padding:2px 15px;
	text-decoration:none;
	border:1px solid #666;
    border-bottom: 0px;
	background-color:#efefef;
	color:#777;
	margin-right:2px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright:4px;
	position:relative;
	top:1px;
}

#content ul.css-tabs a:hover {
	background-color:#F7F7F7;
	color:#333;
}

/* selected tab */
#content ul.css-tabs a.current {
	background-color:#007655;
	color:#fff;
	cursor:default;
    border: 0 none;
    border-bottom: 1px solid #007655;
}


/* tab pane */
#content div.css-panes div.pane {
	display:none;
	border:1px solid #d4d4d4;
	min-height:150px;
	background-color:#fff;
}