/* Span into button by Ian L. of Jafty.com  */

.spanbtn {
background-color: #ccc; /* adds a background colour to the button */
color: #fff; /* changes the text colour */
cursor: pointer; /* changes the mouse on hover */
padding: 4px 7px; /* adds 4px of space to top and bottom of text and 7px of space on either side */
}

.spanbtn:hover {
background-color: #aaa; /* adds a background hover colour to the button */
color: #333; /* changes the text colour on hover */
}

.spanbtn-inline {
background-color: #ccc; /* adds a background colour to the button */
color: #fff; /* changes the text colour */
cursor: pointer; /* changes the mouse on hover */
padding: 0px 7px;
}

.spanbtn-inline:hover {
background-color: #aaa; /* adds a background hover colour to the button */
color: #333; /* changes the text colour on hover */
}
/* END CSS FOR BUTTONS */
