function buttonSel(id) {
  document.getElementById(id).style.backgroundColor='#E81F27';
  document.getElementById(id).style.borderBottom='2px #FFF solid';
  document.getElementById(id).style.borderLeft='2px #FFF solid';
  document.getElementById(id).style.borderRight='2px #FFF solid';
  document.getElementById(id+'d').style.color='#FFFFFF';

  document.getElementById(id+'d').style.borderRight='0px #C2BB9D solid';

}

function buttonUnSel(id) {
  document.getElementById(id).style.backgroundColor='#DFDCCF';
  document.getElementById(id).style.borderBottom='2px #DFDCCF solid';
  document.getElementById(id).style.borderLeft='2px #DFDCCF solid';
  document.getElementById(id).style.borderRight='2px #DFDCCF solid';
  document.getElementById(id+'d').style.color='#625C47';

  document.getElementById(id+'d').style.borderRight='1px #C2BB9D solid';

}
