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

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


/* link inside the tab. no background image */
ul.tabs a {
    /* float:left;  */
    font-size:12px;
    display:block;
    padding:5px 15px;
    text-decoration:none;
    border:1px solid #666;
    height:18px;
    background-color: #ddd;
    color:#FFF;
    margin-right:2px;
    position:relative;
    top:1px;
    outline:0;
	border-radius:6px 6px 0 0;
    -moz-border-radius:6px 6px 0 0;
	-webkit-border-radius:6px 6px 0 0;
}

ul.tabs a:hover {
    background-color:#a9b;
    color:#fff;
}

/* selected tab */
ul.tabs a.current {
    background-color:#fff;
    border-bottom:1px solid #eee;
    color:#000;
    cursor:default;
}


/* tab pane */
div.pane {
    display:none;
    border:1px solid #999;
    min-height:150px;
    padding:15px 10px;
    background-color:#fff;
}

