#mainMenu { /* container div */
	position:relative;
	background-color: #FFFBDD; /* off-white - color of main menu bar */
}

#menuList {
	position:relative;
	/* font-size:1em; */
	font-size: 76%;
	z-index:100;
	margin: 0px;
	padding: 0px;
}

#menuList ul {
	z-index:100;
	margin: 0px;
	padding: 0px;
}

#menuList li {
	z-index:100;
	display: inline;
	list-style: none;
	margin: 0px;
	padding: 0px;
}

top_level, a.top_level { /* controls top level menu items */
	color: #196492; /* blue */
	text-decoration: none;
	z-index:100;
	margin: 0px 0px 0px 0px; /* top, right, bottom, left */
	padding: 20px 90px 20px 10px; /* top, right, bottom, left */
}

a.top_level:hover, a.top_level:focus {
	color: #EE5B02; /* rollover color - orange */
}

/* special style for 'home' link so it sits flush left */
	top_level_home, a.top_level_home { 
		color: #196492; /* blue */
		text-decoration: none;
		z-index:100;
		margin: 0px 0px 0px 0px; /* top, right, bottom, left */
		padding: 20px 90px 20px 0px; /* top, right, bottom, left */
	}
	
	a.top_level_home:hover, a.top_level_home:focus {
		color: #EE5B02; /* rollover color - orange */
	}
/* end of 'home' style */

/* these control width of drop-down box div */
#services { width: 148px; }

.drop_down { /* drop-down text styling - overall */
	font-size: 100%;
	text-decoration: none;
	text-align: left;
 	position: absolute; 
	visibility: hidden;
	z-index: 100;
}
.drop_down li {
	width: 100%;
}
/* Only for IE-Mac */ 
.drop_down li a {
	background: #FFFFFF; /* white */
	z-index: 100;
	color: #196492; /* blue */
	display: block;
	width: 100%;
	text-decoration: none;
	padding: 10px 0px 8px 10px; /* top, right, bottom, left */
	margin: -7px 0px 0px 0px; /* top, right, bottom, left  - ensure rollover continues into dropdown */
	border-top: 1px dotted #EE5B02;
	border-left: 1px solid #EE5B02;
	border-right: 1px solid #EE5B02;
	border-bottom: 1px solid #EE5B02;
}

.drop_down li a:hover {
	background-color: #EE5B02;
	color: #FFFFFF;
}

/* Hide from IE-Mac \*/ 
.drop_down li a {
	background: #FFFFFF; /* white */
	z-index: 100;
	color: #196492; /* blue */
	display: block;
	width: 100%;
	text-decoration: none;
	padding: 4px 8px 4px 10px; /* top, right, bottom, left */
	margin: -2px 0px 0px 0px; /* top, right, bottom, left  - ensure rollover continues into dropdown */
	border-left: 1px solid #EE5B02;
	border-right: 1px solid #EE5B02;
	border-bottom: 1px solid #EE5B02;
}

.drop_down li a:hover {
	background-color: #EE5B02;
	color: #FFFFFF;
}

/* End hide */

