/* root element for tabs  */
ul.css-tabs {
	height:30px;
	padding: 0;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 4px;
	margin-left: 4px;
}

/* single tab */
ul.css-tabs li {
	float:left;
	padding:0;
	list-style-type:none;
}

/* link inside the tab. uses a background image */
ul.css-tabs a {
	float:left;
	font-size:16px;
	display:block;
	text-decoration:none;
	height:18px;
	background-color:#1B1B1B;
	color:#999;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright:4px;
	position:relative;
	outline:none;
	font-family: Georgia, "Times New Roman", Times, serif;
	padding-top: 5px;
	padding-right: 20px;
	padding-bottom: 8px;
	padding-left: 15px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 0px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #333;
	border-right-color: #333;
	border-bottom-color: #333;
	border-left-color: #333;
	margin-left: 4px;
	margin-top: 2px;
	font-style: italic;
}

ul.css-tabs a:hover {
	background-color:#353535;
	color:#999;
}
	
/* selected tab */
ul.css-tabs a.current {
	background-color:#292929;
	color:#6D6D6D;
	cursor:default;
}

	
/* tab pane */
div.css-panes div {
	min-height:150px;
	background-color:#222;
	margin-top: 0px;
	padding-top: 20px;
	padding-bottom: 20px;
	width: 920px;
	color: #999;
	background-color:#1B1B1B;
	display: none;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0px;
}
