/* css buttons */
.cssButton, .cssButtonHover {
  font: bold 1.0em  Arial, Helvetica, Verdana, sans-serif;
  /* to center the button texts vertically line-height and height need to be equal */
  line-height: 1.5em;
  height: 1.5em;
  border: 1px outset #137FE2;
  color: #F6E8D5;
  background-color: #034484 !important; /* !important to retain the background color after auto form field coloring fix */
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  margin: 1px;
  padding: 0 1.1em;
}
.cssButtonHover, a:hover .cssButton, input.cssButton:hover {
  color: #003366;
  background-color: #99CCFF !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 */
span.cssButton, span.cssButtonHover{
/* added to get the right line-height */
 display: block;
}
.navNextPrevWrapper span.cssButton, .navNextPrevWrapper span.cssButtonHover{
/* note that the diplay inline removes line-height from the element (depending on doctype settings) */
 display: inline;
}