function estilos(){
	var x=document.getElementsByTagName('input') 	
	for (i=0; i<x.length;i++) {
		if (x[i].getAttribute('type')=='checkbox') {
			x[i].className='rb';
		}
		if (x[i].getAttribute('type')=='image') {
			x[i].className='rb';
		}
		if (x[i].getAttribute('type')=='radio') {
			x[i].className='rb';
		}
		if (x[i].getAttribute('type')=='button') {
			x[i].className='botao';
		}
		if (x[i].getAttribute('type')=='reset') {
			x[i].className='botao';
		}
		if (x[i].getAttribute('type')=='submit') {
			x[i].className='botao';
		}
	}
}
estilos();