/* This imageless css button is based on the button that was generated initially by CSSButtonGenerator.com */
.buttonRow a {
  text-decoration: none;
}
.button, input.button, input.cssButtonHover {




  display:inline-block;
  font-family:'Oswald'; text-transform:uppercase;
  font-size:13px;
  
  margin: 0;
  padding:6px 15px;
  text-decoration:none;
}
input.submit_button {
  background-color:#333;  /* Submit button background color */
  border: 1px solid #333;  /* Submit button border color */
  font-size: 13px;

  display: inline-block;
  margin: 0;
  padding: 6px 15px;
  color: #fff;  /* Text color for submit buttons */
}
input.submit_button:hover, input.cssButtonHover {
  background-color:#000;  /* Hover color for the submit buttons */
  border: 1px solid #ccc; color:#fff;  /* Submit button border color */
  cursor: pointer;
}
span.normal_button {
  background-color:#333;  /* Link button background color */
  border: 1px solid #333;
  color:#fff;  /* Text color for link-related buttons */
}
span.normal_button:hover {
  /* Hover color for link-related buttons */
  border:1px solid #333;
  background:#fff;
  color:#333;
}
