/* CSS Document */






 
.tabs {
    width: 100%;
    float: none;
    list-style: none;
    padding: 0;
   
}
 
.tabs li {
	display: block;
}

.labels:after {
	content: '';
	display: table;
	clear: both;
}

.tabs label {
	display: inline-block;
	float: left;
    padding: 10px 15px;
    color: #1016a1;
    font-size: 18px;
    font-weight: normal;
   
    cursor: pointer;
}
 
.tabs label:hover {
   
}
 
.tab-content {
    display: none;
    width: 100%;
    padding: 15px;

    
}


.tabs input[type=radio] {
    display:none;
}
 
[id^=tab]:checked ~ div[id^=tab-content] {
    display: block;
}

[id^=tab]:checked ~ [id^=label]  {
    background: #08C;
    color: white;
}



