/* css buttons */
.cssButton, .cssButtonHover {
  font: bold 12px Verdana, Arial, Helvetica, sans-serif;
  /* to center the button texts vertically line-height and height need to be equal */
  line-height: 20px;
  height: 20px;
  border: none;
  color: white;
  background: #b00 !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 0.5em; */
  padding: 1px 5px;
}

.cssButtonHover, a:hover .cssButton, .cssButton:hover{
  /*  color: #ff0; */
  background: #d00 !important;
}

/* bof hack to stop IE adding "magic" padding to the button */
* html .cssButton {	/* IE6 hack */
  width:1%;
  overflow: visible;
}
*:first-child+html .cssButton {	/* IE7 hack */
  width:1%;
  overflow: visible;
}

* html .cssButtonHover {	/* IE6 hack */
  width:1%;
  overflow: visible;
}
*:first-child+html .cssButtonHover {	/* IE7 hack */
  width:1%;
  overflow: visible;
}
/* eof hack to stop IE adding "magic" padding to the button */

td .cssButton, td .cssButtonHover{
  /* prevents buttons taking the full width of table cells */
  display: inline;
}

span.cssButton, span.cssButtonHover{
  /* added to get the right line-height */
  display: block;
  height:18px;
}
.navNextPrevWrapper span.cssButton, .navNextPrevWrapper span.cssButtonHover{
  /* note that the diplay inline removes line-height from the element (depending on doctype settings) */
  display: inline;
}
 
/* bof 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;
  text-align: left;
  top: 2em;
  left: 0;
  color: black;
  background: #f6f6f6;
  padding: 0.4em;
  white-space: nowrap;
  border: 1px dotted silver;
}

.cssButtonLinkPopup strong span, .cssButtonSubmitPopup strong span{
  font-weight: normal;
  background: white;
  text-align: center;
  padding: 0.4em;
  margin: 0.2em;
  font-size: xx-small;
  border: 1px solid silver;
  display: block;
  width: 275px;
  white-space: normal;
}
/* eof css popups */

.button_search {
	font-size:13px;
	background: transparent !important; /* !important to retain the background color after auto form field coloring fix */
}

.button_searchHover {
	color:#ec1d25;
}
