
div.tab-frame input{ 
	display:none;
}

div.tab-frame input:hover{ 
	display:none;

}
div.tab-frame label{ 
	background: #EEF3F5;
	display:block;
    color: #FFFCFC;
	float:left;
	padding:5px 10px ; 
	cursor:pointer;
	
}
div.tab-frame input:checked + label{ 
    background:#0E7878;
	color:white; 
	cursor:default
}
div.tab-frame div.tab{ 
	display:none; 
	padding:5px 10px;
	clear:left
}

div.tab-frame input:nth-of-type(1):checked ~ .tab:nth-of-type(1),
div.tab-frame input:nth-of-type(2):checked ~ .tab:nth-of-type(2),
div.tab-frame input:nth-of-type(3):checked ~ .tab:nth-of-type(3),
div.tab-frame input:nth-of-type(4):checked ~ .tab:nth-of-type(4){ 
display:block;}



