
body {
	font-family: Tahoma, arial, helvetica, serif;
}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
	/* add these */
	white-space:nowrap; /* forces the text to stay to one line */
	padding-left: 8px; /* some space either side */
	padding-right: 8px;
	width : 10em;  /* - remove this <><><><>< If this is changed all Items are not the same size */
	text-decoration: none;
	color: #FFFFFF;background-image:url('images/NewSelection.jpg')
}

#nav li { /* all list items */
	float: left;
	/* width: 10em;  width needed or else Opera goes nuts */
	/* width : 10em; - remove this*/
	/* add this */
	white-space:nowrap; background-image:url('images/NewSelection.jpg')
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #FFFFFF;
	width: 10em; /* MY try */
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
 	
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 8em; /* Changed 10em to 6em This pushes the third level more to the left */
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

#content {
	clear: left;
	color: #CCCCCC;background-color:#4B6CB3
}
#nav li.menubar {  }
#nav li.menuparent { background: transparent } /* url("../images/arrow.gif") right center no-repeat; } */
#nav li:hover.menuparent, #nav li.over { background-color: #C4E9F6; }
#nav li a:hover { color: #000000; background-color: #C4E9F6; }