
/* Style the tab */
.tab {
    overflow: hidden;
    background-color: #f1f1f1;
    margin-bottom: 2px;
}

/* Style the buttons inside the tab */
.tab button {
    height: 24px;
    line-height: 24px;
    width: auto;
    padding: 0px 7px;
    margin: 0 3px 6px 0;
    display: inline-block;
    font-size: 13px;
    text-decoration: none;
    background: url(img/superbutton.png) repeat-x center -181px transparent;
    color: #7a7a7a;
    text-shadow: 1px 1px #ffffff;
    border: 1px solid #cecece;
    box-shadow: inset 0px 1px 2px #ffffff;
    border-radius: 4px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-position: center -211px;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}