/* BEGIN: 3365 CSS Buttons Everywhere 
 
 /* Replace CSS constants before use
   $background = #008080 - @006699 dark blue, options @668BFF, @4169e1, @327dc8m; dark green option @008080
   $background = #CCFF99 - @DAE0F9 light blue (hover), light green option @CCFF99
   $lighttext  = #ffffff - white
   $darktext   = #000000 - black (hover)
   $bordertnb  = #000000 - black
 */  
.cssButton {
  background: #008080;
  color: #ffffff;
/*  width: 100px;  */
/*  height: 18px; */
  font-weight: bold;
  font-family: verdana, arial, sans-serif;
  font-size: 11px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border: 1px;
  border-style: solid; 
  border-color: #000000;
}
.cssButton:hover {
    background: #CCFF99;
    color: #000000;
}
.cssButtondiv {
/*  float:left;	*/
  background: #008080;
  color: #ffffff;
  font-weight: bold;
  font-family: verdana, arial, sans-serif;
  font-size: 11px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border: 1px;
  border-style: solid; 
  border-color: #000000;
}
.cssButtondiv:hover {
    background: #CCFF99;
    color: #000000;
}
/* END: 3365 CSS Buttons Everywhere */

/* BOF bjcworks: add an alternative button colour */
.cssButtonalt {
  background: #FFD300;
  color: #000000;
/*  width: 100px;  */
/*  height: 18px; */
  font-weight: bold;
  font-family: verdana, arial, sans-serif;
  font-size: 11px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border: 1px;
  border-style: solid; 
  border-color: #000000;
}
.cssButtonalt:hover {
    background: #FFFF66;
    color: #000000;
}
.cssButtondivalt {
/*  float:left;	*/
  background: #FFD300;
  color: #000000;
  font-weight: bold;
  font-family: verdana, arial, sans-serif;
  font-size: 11px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border: 1px;
  border-style: solid; 
  border-color: #000000;
}
.cssButtondivalt:hover {
    background: #FFFF66;
    color: #000000;
}
/* EOF bjcworks: add an alternative button colour */
