﻿/*Specify your classes for tab & Tidle here*/

#eqspecs:checked ~ #content-eqspecs,
#eqphotos:checked ~ #content-eqphotos {
    display: block;
}

/*Base Element to host tabbed content*/
.tabbed-content {
}

    .tabbed-content > [type="radio"] {
        display: none;
    }

    .tabbed-content > .tab {
        display: block;
        float: left;
        padding: 5px;
        margin: 0px;
        border: solid 1px #e3e3e3;
        background: #fff;
        font-weight: normal;
        font-size: 18px;
    }

    .tabbed-content > .content {
        display: block;
        float: left;
        background: #fff;
        padding: 10px;
    }

    .tabbed-content > [id^="content"] {
        display: none;
        padding: 50px, 10px, 10px, 10px;
    }

    .tabbed-content > [type="radio"]:checked + .tab {
        color: #22609a;
    }

    .tabbed-content > .tab:hover {
        text-decoration: underline;
    }
