.clear { /* generic container (i.e. div) for floating buttons */
    overflow: hidden;
    width: 100%;
}

a.button {
	color: #333333;
	height: 33px;
	display: inline;
	border: 0px none black;
	float: left;
	margin: 0px;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	line-height: 33px;
	font-weight: bold;
	font-variant: normal;
	background-repeat: repeat;
	vertical-align: middle;
	width: 111px;
	visibility: visible;
	cursor: default;
	padding: 0px;
	background-image: url(cssbutton/bgbutton.png);
}

a.button:hover {
	color: white;
}

a.button:active {
    background-position: bottom left;
    color: red;
    outline: none;
}

