@charset "utf-8";
ul#topnav {
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	font-size: 1.1em;
	width:895px;
	margin-left:26px;
}
ul#topnav li{
	margin: 0;
	padding: 0;
	overflow: hidden;  /*--Important - Masking out the hover state by default--*/
	float: left;
	height:50px;
	width:179px;
	text-align:center;
}
ul#topnav a, ul#topnav span { /*--The <a> and <span> share the same properties since the <span>  will be a duplicate of the <a> tag--*/
	padding: 10px 10px;
	float: left;
	text-align:center;
	text-decoration: none;
	color: #fff;
	background:url(a_bg.gif) repeat-x;
	text-transform: uppercase;
	clear: both;
	width: 179px;
	height: 30px;
	line-height: 30px; /*--Vertical alignment of text--*/
}
ul#topnav a{ /*--This is basically the hover state of navigation--*/
	color:#FFFFCC;
	background-position: center bottom;
}
ul#topnav span{ /*--Default state of navigation--*/
	background-position: center top;
}
