
/* root element for tabs  */
ul.tabs {
    list-style:none;
    margin:0 !important;
    padding:0 5px 1px 5px;
    border-bottom:1px solid #90896c;
    height:30px;
}

/* single tab */
ul.tabs li {
    float:left;
    text-indent:0;
    padding:0;
    margin:0 !important;
    list-style-image:none !important;
}

/* link inside the tab. uses a background image */
ul.tabs a {
    display:block;
    height: 30px;
    line-height:30px;
    text-align:center;
    text-decoration:none;
    padding:0px 20px;
    margin:0 0 0 3px;
    position:relative;
    top:0px;

	border:1px solid #bcb8a7;
	border-bottom:none;
	background:#ebe9e5;
}

ul.tabs a:active {
    outline:none;
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
}

/* active tab uses a class name "current". its highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	font-weight:bold;
	border:1px solid #90896c;
	border-bottom:1px solid #ebe9e5;
    cursor:default !important;
    color:#4C4B38 !important;
}

/* initially all panes are hidden */
.panes .pane {
    display:none;
}

/* tab pane styling */
.panes div {
    display:none;
    padding:0px;
}
