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

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

/* link inside the tab. uses a background image */
ul.css-tabs a
{
	float: left;
	font-size: 10px;
	display: block;
	padding: 5px;
	text-decoration: none;
	border: 1px solid #555;
	border-bottom: none;
	height: 18px;
	background-color: #333;
	margin-right: 2px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	position: relative;
	top: 1px;
}

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

/* selected tab */
ul.css-tabs a.current
{
	background-color: #111;
	border-bottom: 0px solid #ddd;
	color: #ff9900;
	cursor: default;
	height: 18px;
	top: 3px;
	padding: 4px 5px 5px 5px ;
}

/* tab pane */
div.css-panes div
{
	display: none;
	border: 1px solid #555;
	border-width: 0 1px 1px 1px;
	height: 400px;
	overflow:auto;
	padding: 15px 20px 40px 20px;
	background-color: #111;
	line-height:150%;

}

div.css-panes div h1
{
	margin: 6px 0 16px 0;
	padding:0;
	font-size: 35px;
	font-weight: 150;
	font-family: "HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,sans-serif;
	color:#444;
}
