
/* root element for tabs  */
ul.css-tabs {
    margin:0px;
    height:30px;
    *margin-left: 40px    !important; /* IE 7 (IE Fix) */
    }

/* 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: 13px;
    display: block;
    padding: 5px 30px 12px 30px;
    text-decoration: none;
    height: 18px;
    background-color: #efefef;
    color: #777;
    margin-right: 2px;
    position: relative;
    top: 1px;
    outline: 0;
    font-variant: small-caps;
    font-weight: bold !important;
    *padding: 2px 15px 13px 15px    !important; /* IE 7 (IE Fix) */
}

ul.css-tabs a:hover {
    background-color:#F7F7F7;
    color:#333;
}

/* selected tab */
ul.css-tabs a.current
{
    background-color: #4db4de; /*border-bottom:1px solid #ddd;*/
    color: #FFFFFF;
    cursor: default;
}


/* tab pane */
.css-panes div {
    display:none;
    /*border:1px solid #666;
    border-width:0 1px 1px 1px;*/
    min-height:150px;
    background-color:#ddd;
}
