/* ---------------------------------------------------- */
/* START UC Menu Code */

#nav {
	background: #6C8393; /* Defines the background color for the entire menu */
	line-height: 1em;
	font-family : Arial, Helvetica, sans-serif; 
	font-size: 10px;
}

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

#nav li {
	display: inline;
	padding: 0;
	margin: 0;
	font-size: 10px;
	color: #FFCC00;	 /* Defines color of menu items that are NOT links */
}

#nav li span { /* used for un-linked menu items */
	display: block;
	padding: 6px 10px;
	font-weight: bold;
	color: #FFCC00;
}

#nav li a {
	display: block;
	padding: 2px 3px; /* First number controls the space between menu items */
	text-decoration: none;
	color: #FFCC00; /* Defines color of menu items that ARE links */
}

#nav li a:hover {
	background: #6699CC; /* Defines the color of the overlay box on hover */
	color:#FFCC66; /* Defines the color of the text on hover */
}

#nav li li span { /* used for un-linked menu items */
	padding: 4px 8px 4px 20px; 
}

#nav li li a {
	padding: 6px 8px 6px 20px;
}

/* END UC Menu Code */
/* ---------------------------------------------------- */


