/* Button code */
.cssbutton{
background-color: #fcfbe4;
border: 2px #614f2b outset;
padding: 1px 4px;
text-decoration: none;
font: bold 90%;
}
.cssbutton:visited{
color: black;
text-decoration:none;
}

.cssbutton:hover{
border-style: inset;
background-color: #fcfbe4;
padding: 2px 3px 0 5px; /*shift text 1px to the right and down*/
}

.cssbutton:active{
color: #614f2b;
text-decoration: none;
}
