


/*
	Top menu
*/

#menu
{
	width: 760px;
	height: 24px;
	padding-top: 0px;
	margin-top: 0px;
	padding-left: 12px;
}


/* Sets up the menu */

#nav
{
	width: 760px;
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 0.6em;
}

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


/* Defines the appearance of the links */

#nav a 
{
	display: block;
	color: #c3dbfc;
	font-weight: normal;
	text-decoration: none;
	padding-left: 6px;
	padding-right: 6px;
	padding-top: 5px;
}

#nav li 
{
	float: left;
}

#nav li a:hover
{
	color: #fff;
}


/* These two make the submenus work */

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



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


/* Defines the appearance of the links in the submenus */

#nav li ul a 
{
	display: block;
	color: #fff;
	font-size: 1.3em;
	font-weight: normal;
	text-decoration: none;
	background-color: #0e448d;
	padding-top: 10px;
	padding-bottom: 5px;
	padding-left: 7px;
	width: 117px;
}


#nav li ul a:hover
{
	background-color: #1e56a1;
}

/* IE 7 menu fix */
#nav li:hover {background-position: 0 0}
