/* 

Menu CSS and JS is via Sons of Suckerfish Dropdowns
 - http://www.htmldog.com/articles/suckerfish/dropdowns/

*/

#nav, #nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#nav {
	background: #60676D url(images/nav-bg.png) repeat-x top left;
	height: 4.4em;
}

#nav a {
	margin: 0;
	padding: 0;
	padding: 1em;
	padding-top: 2em;

	text-decoration: none;
	color: #FFFFFF;
	text-transform: uppercase;
	font-weight: bold;

	background: transparent url(images/menu-button.png) no-repeat top left;

	border-right: 1px solid #D9DADC;
	border-left: 1px solid #325A64;

	display: block;
	font-size: 100%;
	
	/* IE on mac hack */
	width: 99%;
	/* \*/
	width: auto;
	/* */
}

#nav .fir a {
	border-left: 0px;
}

#nav .las a {
	border-right: 0px;
}

#nav li {
	padding: 0;
	margin: 0;
	list-style-type: none;
	float: left;

	/* IE on mac hack */
	width: 8.5em;
	/* \*/
	width: auto;
	/* */
}

#nav li ul {
	position: absolute;
	width: 17em;
	left: -999em;
}

#nav li:hover ul, #nav li.sfhover ul {
	left: auto;
}

#nav li li a, #nav li li a:hover {
	background: #E7E7E7;
	color: #000000;
	border: 0;
	font-weight: normal;
	padding-left: 1.1em;
	width: 14em;
	padding-top: 0.3em;
	padding-bottom: 0.3em;
    margin: 0;

	border-bottom: 1px solid #FFFFFF;
	text-transform: none;
	letter-spacing: 0;
}


#nav li li a:hover {
	background: #A0012A;
	color: #FFFFFF;

	/* IE on mac requires these */
	text-align: left;
}

*:first-child+html #nav li {
	height: 1%;
}

