#tabContainer {
    width:665px;
    padding:10px;
    background-color: #eaeaea;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

#tabs{
    height:30px;
    overflow:hidden;
}

#tabs > ul{
    font: 1em;
    list-style:none;
}

#tabs > ul > li{
    margin:0 2px 0 0;
    padding:7px 10px;
    display:block;
    float:left;
    color: #000000;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 4px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 0px;
    border-top-left-radius:4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    background: #cccccc; /* old browsers */
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #707f85), color-stop(1, #cccccc) );
    background:-moz-linear-gradient( center top, #707f85 5%, #cccccc 100% );
}

#tabs > ul > li:hover{
    background: #cccccc; /* old browsers */
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #acb0b1), color-stop(1, #707f85) );
    background:-moz-linear-gradient( center top, #acb0b1 5%, #707f85 100% );
    cursor:pointer;
    color: #96c11f;
}

#tabs > ul > li.tabActiveHeader{
    background: #cccccc; /* old browsers */
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #acb0b1), color-stop(1, #707f85) );
    background:-moz-linear-gradient( center top, #acb0b1 5%, #707f85 100% );
    cursor:pointer;
    color: #000000;
}

#tabscontent {
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 4px;
    -moz-border-radius-bottomright: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-top-left-radius: 0px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    padding:10px 10px 25px;
    background: #cccccc; /* old browsers */
    border: solid;
    border-color: #707f85;
    margin:0;
    color: #000000;
}
