	// rollovers campos formulario
	function over(id){
		document.getElementById(id).style.background="#b8c12a";
		document.getElementById(id).style.color="#000";
	}
	function out(id){
		document.getElementById(id).style.background="#fff";
		document.getElementById(id).style.color="#000";
	}
	// fin rollovers campos formulario
	
	