﻿#tabs {
    /*overflow: hidden;*/
    width: 401px;
    height: 30px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    background: #ececece;
}

    #tabs li {
        float: left;
        width: 100px;
        height: 30px;
        font-size: 16px;
        color: #565656;
        line-height: 30px;
        text-align: center;
    }

    #tabs a {
        height: 0;
        line-height: 30px;
        text-transform: uppercase;
        text-decoration: none;
        /* color: #fff;  */
        filter: alpha(opacity=30);
    }

        #tabs a:hover,
        #tabs a:focus {
            border-bottom-color: #2ac7e1;
            opacity: 1;
            filter: alpha(opacity=100);
        }

        #tabs a:focus {
            outline: 0;
        }

#current {
    background-color: #0077BD;
    line-height: 30px;
    color: #ffffff !important;
    font-weight: bold;
}

    #current a {
        color: #ffffff;
    }
/* ----------- */
#content {
    height: 528px;
}


    #content h3,
    #content p {
        margin: 0 0 15px 0;
    }
