﻿.tabs {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}
.tabs li {
    display: inline-block;
    clear: none;
    float: left;
    height: 24px;
    padding-right:6px;
}
.tabs li a {
    display: block;
    line-height: 24px;
    padding-left: 10px;
    padding-right: 10px;
    background: #f6f6f6;
    border: 1px solid #ccc;
    border-bottom: 0px;
    -moz-border-radius-topleft: 4px;
    border-top-left-radius: 4px;
    -moz-border-radius-topright: 4px;
    border-top-right-radius: 4px;
    /*width: 140px;*/
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}
.tabs li a:hover {
    cursor: pointer;
    text-decoration: underline; 
    line-height:28px;
    margin-top : -5px;
}
.tabs li a.active {
    margin-top: -5px;
    line-height: 28px;
    background: #fff;
    cursor:default;
    color: #999;
    text-decoration: none;
}
.tabscontent {
    clear:both;
    overflow: hidden;
    padding: 5px 10px 0px 10px;
}