@charset "utf-8";
a.navbutton {
	display: block;
	width: 256px;		/* half the width of the image */
	height: 32px;		/* full hight of the image */
	background: url("cssrolloverdemo.gif") 0 0 no-repeat;	/* url of the image */
	text-decoration: none;
	float: left;		/* this makes them sit in a line, it's not required for vertical navbars */
	font: 16px/28px Verdana, Arial, Helvetica, sans-serif;	/* font size, line height to bring the text down a bit on the buttons, and font */
	color: #0000FF;		/* font color, cures visited links going purple */
	text-align: center;	/* text alignment on the buttons */
}
a:hover.navbutton {
	background-position: -256px 0;
}