
/* root element for tabs  */
ul.css-tabs {
    margin:0 !important;
    padding:0;
    height:40px;
	width:630px;
	background-color:#7B470D;
}

/* 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:14px;
    display:block;
    padding:7px 20px;
    text-decoration:none;
    border-bottom:0px;
    position:relative;
    top:1px;
    outline:0;
	color:#BDA386;
}
ul.css-tabs a:hover {
	color:#FFF;
}

/* selected tab */
ul.css-tabs a.current {
	font-weight:bold;
	color:#FFF;
    cursor:default;
}


/* tab pane */
.css-panes div {
    display:none;
    min-height:150px;
	margin:20px 0px;
	width:630px;
}


