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