.tabs {
    position: relative;   
    min-height: 800px; /* This part sucks */
    clear: both;
    margin: 25px 0;
}
@media screen and (min-width: 1100px) {
    .tabs {
        min-height: 320px; /* This part sucks */
    }
}

.tab {
    float: left
}
.tab label {
    background: #d9d9c3; 
    padding: 10px; 
    border: 1px solid #ccc; 
    margin-left: -1px; 
    position: relative;
    left: 1px; 
    font-size: 0.9em;
}

.tab label:hover {
    text-decoration:underline;
    background: #d9d9c3; 
    padding: 10px; 
    border: 1px solid #ccc; 
    margin-left: -1px; 
    position: relative;
    left: 1px; 
    font-size: 0.9em;
}
.tab [type=radio] {
    display: none;   
}
.content {
    position: absolute;
    top: 28px;
    left: 0;
    background: #fafae1;
    right: 0;
    bottom: 0;
    padding: 20px;
    border: 0px solid #ccc; 
    min-height: 300px;
    max-height: 300px;
}
[type=radio]:checked ~ label {
    text-decoration:none;
    background: #fafae1;
    border-bottom: 1px solid white;
    z-index: 2;
}
[type=radio]:checked ~ label ~ .content {
    z-index: 1;
}

