﻿function ativa(id) {
 document.getElementById(id).style.backgroundColor='#FF9F11'
 document.getElementById(id).style.color='#212735';
 document.getElementById(id).style.cursor='pointer';
}

function desativa(id) {
 document.getElementById(id).style.backgroundColor='#FF8F01';
 document.getElementById(id).style.color='#FFFFFF'
}
