
/* root element for tabs  */
ul.tabs {
    list-style:none;
    margin:0 !important;
    padding:0;
    height:40px;
}

/* single tab */
ul.tabs li {
    float:right;
    text-indent:0;
    padding:0;
    margin:0 !important;
    list-style-image:none !important;
}

/* link inside the tab. uses a background image */
ul.tabs a {
    font-family: 'qtnowtext-regular', Arial, sans-serif;
	font-weight:100;
    font-size: 21px;
    display:block;
    height: 40px;
    line-height:40px;
    text-align:center;
    text-decoration:none;
    color:#333;
    padding:0px 20px;
    margin:0px;
    position:relative;
    top:1px;
}

ul.tabs a:active {
    outline:none;
	background:#E9EAED;
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background:#A41661;
    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:#E9EAED;
    cursor:default !important;
    color:#555 !important;
}

/* initially all panes are hidden */
.panes .pane {
    display:none;
}
.pane {
	background:#E9EAED;
	clear:both;
    padding:10px;
    padding-bottom:40px;
	}