/* bof css buttons */
/* remove "magic" yellow input backgrounds coming from form help scripts, like google toolbar */
/*
If applied you need to add !important to the button colors too!
input { background-color: white !important}
select { background-color: white !important}
textarea { background-color: white !important}
*/

/* , input.cssButton, input.cssButtonHover  */

.cssButton, .cssButtonHover{
font: bold 1.2em Verdana, Arial, Helvetica, sans-serif;
/* to center the button texts vertically line-height and height need to be equal */
line-height: 1.6em;
height: 1.6em;
border: none;
border: 1px solid #a30;
color: white !important;
background: #f75d00 !important;
white-space: nowrap;
text-align: center;
cursor: pointer;
margin: 1px;
padding: 0 0.3em !important;
}
.cssButtonHover, .cssButton:hover{
border: 1px solid #a30;  
color: #ff0 !important;
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;
}
.navEZPageNextPrev span, .navNextPrevWrapper span{
/* note that the diplay inline removes line-height from the element (depending on doctype settings) */
display: inline;
}
td .cssButton, td .cssButtonHover{
/* prevents buttons taking over the size of table cells */
display: inline;
}
.navBarContent .button_search{
font-size: 1em;
border: none;
}
.button_in_cart{
height: 1.8em;
}
/* eof css buttons */