﻿ul#topnav {
	width:100%;
	margin:14px 0;
	padding:0;
	list-style: none;
	float: right;
	font-size: 1em;
	font-weight:600;
	background: url(../images/50x50_bg2.png;);
	background:rgba(100,116,136,.9);
}

ul#topnav li{
	margin: 0;
	padding: 0 10px 0 4px;
	overflow: hidden;  /*--Important - Masking out the hover state by default--*/
	float: left;
	height:40px;
	background: url(../images/a_bg.gif) repeat-x;
}

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-decoration: none;
	color: #fff;
	background: url(../images/a_bg.gif) repeat-x;
	text-transform: uppercase;
	clear: both;
	width: 100%;
	height: 20px;
	line-height: 20px; /*--Vertical alignment of text--*/
}
ul#topnav a{ /*--This is basically the hover state of navigation--*/
	color: #fff;
	background-position: left bottom;
	background:#273549;
	background:rgba(39,53,73,.9);
	text-decoration:none;
}
ul#topnav span{ /*--Default state of navigation--*/
	background-position: left top;
}