/* css buttons */
.cssButton, .cssButtonHover {
  display:block;
  text-decoration:none;
  margin-bottom:0.5em; margin-top:0.5em;
  color:white; background:#f69e47;
  border-width:1px; border-style:solid; border-color:#fbd7b7 #fbd7b7 #e56d0d #e56d0d;
  border-left:1em solid #b62100;
  padding:0.25em 0.5em 0.4em 0.75em;
  font-weight:bold;  
}
.cssButtonHover, a:hover .cssButton, input.cssButton:hover {
/*  color: #ff0; 
  background-color: #d00 !important; */
  background:#ee2700;
  border-color:#fbd7b7 #fbd7b7 #fbd7b7 #b62100; /* el ultimo valor es el del rectangulo activo */
/*  padding:0.4em 0.35em 0.25em 0.9em;*/
  
}

/* 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;
}