/* css buttons */
.cssButton, .cssButtonHover {
  font-weight: bold;
  font-size: 1.2em;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  border: 0;
  color: white;
  background-color: #09f;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  margin: 1px;
  padding: 0.2em 0.5em;
}
.cssButtonHover{
  color: #ff0;
}

/* bof some IE comp. stuff */ 
input.cssButton, input.cssButtonHover{
  /*  width: 0; needed to stop IE adding "magic" padding to the input */
  width: 0;
  overflow: visible;  
}
span.cssButton, span.cssButtonHover{ /* IE messes up heights without this float */
  float: left;
}
/* the line below is a hack, replace by IE only css link (like <!--[if IE 6]>css link<[endif]-->) if you rather not use a hack  */
input.cssButton[class], input.cssButtonHover[class] { /* IE ignores this [class]*/
  width: auto;
}
/* eof some IE comp. stuff */

/* .headerNavigation .button_search {display: inline;} */
