/* 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: 15px;
  height: 15px;
  border: none;
  color: white;
  background: #095aab !important; /* !important to retain the background color after auto form field coloring fix */
  /*background-image: url(../images/centre.jpg);
  background-repeat:repeat-x;*/
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  margin: 0px;
  padding-left: 2px;
  padding-right: 2px;
}
.cssButtonHover, a:hover .cssButton, input.cssButton:hover {
  color: #000000;
  background: #d00 !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;
}
/* css popups */
.cssButtonLinkPopup strong, .cssButtonSubmitPopup strong{
display: none;
}
span.cssButtonLinkPopup, span.cssButtonSubmitPopup{
position: relative;
}
a:hover .cssButtonLinkPopup strong, span.cssButtonSubmitPopup:hover strong{
display: block;
position: absolute;
top: 2em;
left: 0;
color: black;
background: #fe3;
}
td .cssButton, td .cssButtonHover{
/* prevents buttons taking the full width of table cells */
display: inline;
}
