/* CSS Document 
Special thanks to Son of Suckerfish Dropdowns
http://htmldog.com/articles/suckerfish/dropdowns/
*/

#top-menu {
	position: absolute;
	margin: 0;
	float: right;
	right: 0;
	width: 490px;
	height: 63px;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	z-index: 100;

}

#nav, #nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: left;
	z-index: 5000;
}

#nav a {
	display: block;
	width: auto;
	color: #ece8b2;
	padding: 21px 26px 20px 26px;
	text-decoration: none;
	background-image: url(../images/bg/middle-divider.png);
	background-repeat: no-repeat;
	background-position: top right;
}

#nav a:hover {
	text-decoration: none;
	background-color: #e91732;
	background-image: url(../images/bg/button-hover.png);
	background-repeat: no-repeat;
	background-position: top right;
}

#nav li {
	float: left;
	width: auto;
}

#nav li ul {
	position: absolute;
	width: 12em;
	left: -999em;
	text-align: left;
}

#nav li ul a {
	width: 12em;
	border: none;
	border-right: none;
	border-top: 1px solid #666;
	color: #fff;
	background-image: none;
	background-color: #000;
	padding: 10px;
	font-family: "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
}

#nav li ul a:hover {
	display: block;
	background-color: #e70a1b;
	text-decoration: none;
	color: #fff;
	border-top: 1px #fff solid;
}

#nav li:hover ul, #nav li.sfhover ul {
	display: block;
	left: auto;
}
