/* css buttons */
.cssButton, .cssButtonHover {
  font: 0.9em Verdana, Arial, Helvetica, sans-serif;
  letter-spacing: -0.1em;
  /* to center the button texts vertically line-height and height need to be equal */
  line-height: 1.9em;
  height: 1.9em;
  border: solid 1px black;
  color: black;
  background-color: #F2F2F2 !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.1em 0.3em;
}
.cssButtonHover, a:hover .cssButton, input.cssButton:hover {
  background-color: #F2F2F2 !important;
  border: solid 1px red;
  }


/* 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: inline;
}
.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;
}
.button_sold_out_sm, .button_sold_out, .button_update_cart, .button_checkout, .button_login {
	width: 10em; 
	text-align: center;
	}