ul#topnav {
	margin: 0; padding: 0;
	float:left;
	width: 100%;
	list-style: none;
	font-size: 1.1em;
}
ul#topnav li {
	float: left;
	margin: 0; padding: 0;
	position: relative; /*--Important--*/
}
ul#topnav li a {
	float: left;
	text-indent: -9999px; /*--Push text off of page--*/
	height: 44px;
}
ul#topnav li:hover a, ul#topnav li a:hover { background-position: left bottom; } /*--Hover State--*/
ul#topnav a.home {
	background: url(images/nav/nav_home.png) no-repeat;
	width: 80px;
}
ul#topnav a.news {
	background: url(images/nav/nav_news.png) no-repeat;
	width: 80px;
}
ul#topnav a.games {
	background: url(images/nav/nav_games.png) no-repeat;
	width: 80px;
}
ul#topnav a.team {
	background: url(images/nav/nav_team.png) no-repeat;
	width: 70px;
}
ul#topnav a.club {
	background: url(images/nav/nav_club.png) no-repeat;
	width: 78px;
}
ul#topnav a.history {
	background: url(images/nav/nav_history.png) no-repeat;
	width: 85px;
}
ul#topnav a.archive {
	background: url(images/nav/nav_archive.png) no-repeat;
	width: 71px;
}
ul#topnav a.fans {
	background: url(images/nav/nav_fans.png) no-repeat;
	width: 78px;
}
ul#topnav a.stats {
	background: url(images/nav/nav_data.png) no-repeat;
	width: 72px;
}
ul#topnav a.links {
	background: url(images/nav/nav_links.png) no-repeat;
	width: 69px;
}
ul#topnav a.youth {
	background: url(images/nav/nav_youth.png) no-repeat;
	width: 62px;
}
ul#topnav a.forum {
	background: url(images/nav/nav_forum.png) no-repeat;
	width: 75px;
}
ul#topnav a.photo {
	background: url(images/nav/nav_photo.png) no-repeat;
	width: 64px;
}
ul#topnav a.video {
	background: url(images/nav/nav_video.png) no-repeat;
	width: 71px;
}
#nav {
	overflow: hidden;
	background-image: url(images/nav/nav_bg.png);
	background-repeat: repeat-x;
}
ul#topnav li .sub {
	position: absolute; /*--Important--*/
	top: 44px; left: 0;
	z-index: 99999;
	background: #344c00 url(images/nav/nav_bg.png) repeat-x; /*--Background gradient--*/
	padding: 20px 20px 20px;
	float: left;
	/*--Bottom right rounded corner--*/
	-moz-border-radius-bottomright: 5px;
	-khtml-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	/*--Bottom left rounded corner--*/
	-moz-border-radius-bottomleft: 5px;
	-khtml-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
	display: none; /*--Hidden for those with js turned off--*/
}
ul#topnav li .row { /*--If needed to break out into rows--*/
	clear: both;
	float: left;
	width: 100%;
	margin-bottom: 10px;
}
ul#topnav li .sub ul{
	list-style: none;
	margin: 0; padding: 0;
	width: 150px;
	float: left;
}
ul#topnav .sub ul li {
	width: 100%; /*--Override parent list item--*/
	color: #fff;
}
ul#topnav .sub ul li h2 { /*--Sub nav heading style--*/
	padding: 0;  margin: 0;
	font-size: 1.3em;
	font-weight: normal;
}
ul#topnav .sub ul li h2 a { /*--Sub nav heading link style--*/
	padding: 5px 0;
	background-image: none;
	color: #e8e000;
}
ul#topnav .sub ul li a {
	float: none;
	text-indent: 0; /*--Override text-indent from parent list item--*/
	height: auto; /*--Override height from parent list item--*/
	background: url(images/nav/navlist_arrow.png) no-repeat 5px 12px;
	padding: 7px 5px 7px 15px;
	display: block;
	text-decoration: none;
	color: #fff;
}
ul#topnav .sub ul li a:hover {
	color: #ddd;
	background-position: 5px 12px ;/*--Override background position--*/
}