﻿ul.tabs
{
    padding: 6px 0;
    font-size: 30px;
    margin: 0;
    list-style-type: none;
    text-align: center; /*set to left, center, or right to align the tabs as desired*/
}
        
ul.tabs li
{
    display: inline;
    margin: 0;
    margin-right:2px; /*distance between tabs*/
}
        
ul.tabs li a
{
    font: normal 30px Roboto;
    text-decoration: none;
    position: relative;
    z-index: 1;
    padding: 6px 16px;
    border: none;
    border-bottom-color:none;
    color: #000;
    background: #c8ba8b;
    border-radius: 4px 4px 0 0;
    outline:none;
}
        
ul.tabs li a:visited
{
    color: #FFF;
}
        
ul.tabs li a:hover
{
    border: none;
    background:#c8ba8b;
    color: #FFF;
}
        
ul.tabs li.selected a
{
    /*selected tab style */
    padding: 9px 16px 6px;
    position: relative;
    top: 0px;
    font-weight:bold;
    background: #c8ba8b;
    border: none;
    border-bottom-color: white;
}
        
        
ul.tabs li.selected a:hover
{
    /*selected tab style */
    text-decoration: none;
}
        
div.tabcontent
{
    display: block;
}

div.tabcontents
{
    border: 2px solid #2f2f2f; padding: 30px;
    background-color:#000;
    border-radius: 4px;
}
