#navbar {
	padding-top:75px;
	margin-left:150px;
	text-align:center;
}
/* Determines placement of top nav bar */
#nav UL {
	padding:0;
	margin:0;
	list-style-type: none;
}
/* Determines colour, font size top nav bar */
li.menu {
	/* the right horizontal rule between top nav bar items */
  border-right:  1px solid;
	border-bottom: 0px solid;
	border-top:  0px;
	border-left:  0px;
	padding-bottom: 0px;
	padding-left: 10px;
	padding-right: 10px;
	float: left;
	position: relative;
	/* determines width of each top level nav; need fixed width for ie5 mac
    width: auto; */
	background-color: transparent;
	text-align: center;
	font: 11px verdana, arial, sans-serif;
	/* use this to position the top of the nav bar in relation to top nav; causes problems in Foxfire and Safari if set too high */
	line-height: 20px;
	list-style-type: none;
}
/* Determines formatting of links on top nav bar */
#nav A {
	font-weight: bold;
	padding-left: 0px;
	color: #3e597c;
	text-decoration: none;
	padding-bottom: 0px;
}
#nav LI LI A {
	font: 11px verdana, arial, sans-serif;
	height: 20px;
	padding-right: 10px;
	padding-left: 10px;
	padding-top: 4px;
	/* determines space between submenu item and next item */
  padding-bottom: 0px;
	display: block;
	/* colour of links in dropdown */
  color: white;
	margin-bottom: 0px;
	list-style-type: none;
	/* sets border above each menu item */
  border-top: #d13f52 0px dotted;
}
#nav LI LI A:hover {
	border-right: #d13f52 5px solid;
	padding-right: 5px;
	padding-left: 5px;
	border-left: #d13f52 5px solid;
}
LI UL {
	font: 16px/11px verdana, arial, sans-serif;
	display: none;
	padding-left: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
	background: #3f597c no-repeat left bottom;
	left: 0px;
	margin: 0px;
	border-top:  #d13f52 4px solid;
	position: absolute;
	width: 195px;
	filter: alpha(opacity=90);
	-moz-opacity: 90%;
	text-align: center;
}
/* Formatting of dropdown box */
LI LI {
	color: white;
	font: bold 12px verdana, arial, sans-serif;
	/* sets distance between background top bar of dropdown and first list item */
  padding-top: 0px;
	padding-left: 0px;
	padding-bottom: 0px;
	display: block;
	float: none;
	border: 0px;
	background-color: #3f597c;
	list-style-type: none;
	text-align: left;
}
LI:hover UL {
	DISPLAY: block
}
LI.over UL {
	DISPLAY: block
}
