var inputs = document.getElementsByTagName('INPUT');
for (var el in inputs) {
	if (inputs[el].type=='checkbox' || inputs[el].type=='radio') {
		inputs[el].style.border='none';
		inputs[el].style.width='20px';
	}
}
