@charset "utf-8";
/* CSS Document */

	/* tab pane styling */
	.panes div {
		display:none;
		border:1px solid #999;
		border-top:0;
		font-size:14px;
		background-color:#fff;
	}

/* root element for tabs  */
ul.tabs {
    margin:0 !important;
    padding:0;
    height:24px;
	width: 100%;
}

/* 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 {
    position: relative;
	float: left;
	list-style: none;
	cursor: pointer;
	height: 24px;
	width: 130px;
	background-color: #ffc425;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	margin-right: 3px;
	line-height: 24px;
	text-align: center;
    -moz-border-radius:4px 4px 0 0;
}

ul.tabs a:hover {
    background-color: #000;
	color:#ffc425;
}

/* selected tab */
ul.tabs a.current {
    background-color:#000;
	color: #FFF;
}


/* tab pane */
.panes div {
	clear: both;
	border-top-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #000;
}