/*
	drop menu styles
	horizontal bar with drop downs
	Unordered list used with ID=nav
	Unordered lists below nav are the sub menus
	
*/	

/*
	Set up the bar itself and
	lose any standard list formatting on menus and sub menus
*/
#nav {
	height: 26px;
 	width 960px;
	background-image: url(../images/menu-bar-gradient.gif);
	background-repeat: repeat-x;
	padding: 0;
	margin: 0;
	list-style: none;
}
/* 
	float the list items beside each other
*/
#nav li.level1menu {
	float: left;
}
/* 
	shift links to block mode and a common width 
*/
#nav a.level1menu {
	display: block;
	width: 100px;
	/* set up the font */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: center;
	font-size: 14px;
	color: #ffffff;
	/* set up the bar dividers */
	border-right-color: #808183;
	border-right-width: 2px;
	border-right-style: solid;
}
#nav a:hover {
	background-color: #aaaaaa;
}
/* 
	set up the sub menus
	
	sub menus are hidden away to the left 
*/
#nav li ul {
	position: absolute;
	display: block;
	left: -999em;
	z-index:100;
}
#nav li.level2menu a {
	/* set up the font */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
	font-size: 14px;
	color: #ffffff;
	background-color: #808183;
}
#nav li.level2menu a:hover {
	background-color: #aaaaaa;
}
/* comment this next item out to remove submenus */
#nav li:hover ul {
	left: auto;
	background-color: #808183;
	padding:0px 8px 0px 8px;
}
/*
	set up all the section highlights on the nav bar
*/
#home a#homelink, 
.services a#serviceslink,
#clients a#clientslink,
#resources a#resourceslink,
#blog a#bloglink,
#about a#contactlink {
	color:#dddddd;
	background-color:#000;
}
/*
	site info footer navigation
*/
#site_info_nav {
	margin: 0px 0px 0px 248px;
	float:left;
}
#site_info p {
	clear:both;
}
		#site_info ul{ margin:0; padding:0; }
		#site_info ul li{ margin:0; padding:0 10px; float:left; list-style:none; font-size:13px; background: none; }
		#site_info ul li.floatRight{ margin-left:4px; }
		#site_info ul li a, #site_info ul li a:link, #site_info ul li a:visited{ color:#fff; text-decoration:none; }
		#site_info ul li a:hover, #site_info ul li a:active{ color:#000; }

	
	
