/* css buttons */
.cssButton, .cssButtonHover {
  font: bold 1.1em Verdana, Arial, Helvetica, sans-serif;
  /* to center the button texts vertically line-height and height need to be equal */
  line-height: 18px;
  height: 20px;
  border: none;
  color: #3300FF;
  background: #ffffff !important; /* !important to retain the background color after auto form field coloring fix */
  white-space: nowrap;
  text-align: center;
  cursor: hand;
  margin: 1px;
  /* padding: 0 0.5em; */
  padding: 1px 1px;
}
.cssButtonHover, a:hover .cssButton, input.cssButton:hover {
  color: #FF0000;
  background: #ffffff !important;
}

/* bof some IE comp. stuff */ 
.cssButton, .cssButtonHover{
  /*  _width: 0; needed to stop IE adding "magic" padding to the input, _witdh is a hack that uses an IE bug */
  /* to remove this hack move the width setting to an IE specific stylesheet */
  _width: 0;
  overflow: visible;   
}
/* eof some IE comp. stuff */
