
.tabs
{
    padding: 8px 0;
    font-size: 0;
    margin:0;
    list-style-type: none;
    text-align: center; /*set to left, center, or right to align the tabs as desired*/
    /*border:1px solid #C3C3C3;*/
    border-bottom:none;
    background:#FFFFFF;
}
        
.tabs li
{
    display: inline;
    margin: 0;
    margin-right:0px; /*distance between tabs*/
}
        
.tabs li a
{
    font: normal 12px Verdana;
    text-decoration: none;
    position: relative;
    z-index: 1;
    padding: 8px 20px;
    border: 1px solid #7B3535;
    /*border-right:none;*/
    color: #000;
    background: #FFF;
    outline:none;
} 

        
.tabs li a:visited
{
    color: #000;
}
        
.tabs li a:hover
{
    text-decoration: none;
    color: #15c;
}
        
.tabs li.selected a
{
    /*selected tab style */
    position: relative;
    top: 0px;
    font-weight:bold;
    background: #7B3535;
    color:White;
}
        
        
.tabs li.selected a:hover
{
    /*selected tab style */
    text-decoration: none;
}
        
.tabcontent
{
    display: block;
}

.tabcontents
{
    /*border: 1px solid #C3C3C3;*/
    border-top: 6px solid #C3C3C3;
    padding: 30px;
    background-color:#FFF;
}