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

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

/* link inside the tab. uses a background image */
ul.tabs a {
    background: url(blue.jpg) no-repeat -120px 0;
    font-size:14px;
    display:block;
    height: 37px;
    line-height:37px;
    width: 120px;
    text-align:center;
    text-decoration:none;
    color:#fff;
    padding:0px;
    margin:0px;
    position:relative;
    top:1px;
	font-weight:bold;
}

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

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
    background-position: 0 0;
    color:#fff;
}

/* 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 {
    background-position: -240px 0;
    cursor:default !important;
    color:#000 !important;
}


/* initially all panes are hidden */
.panes .pane {
    display:none;
				    display:none;
    padding:15px 0;
    border-top:1px solid #B0B0B0;
    border-top:0;
    font-size:14px;
    background-color:#fff;
}
