@charset "utf-8";
/* CSS Document */
/* #Buttons filled
================================================== */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"]
 {
		background: white;
		display: inline-block;
		text-decoration: none;
		cursor: pointer;
		border-top: 0px solid white;
		border-left: 0px solid white;
		margin: 0px 0px 5px 0px;
		padding: 3px;
		width: auto;
		text-align: left;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
		color: red;
		background: white; /* Old browsers */
		border-top: 0px solid #aaa;
		border-left: 0px solid #aaa;
		margin: 0px 0px 5px 0px;
		padding: 3px;
}

	/* Fix for odd Mozilla border & padding issues */
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
	}
