/*
PURPOSE:
	[1] Provides Horizantal Drop Down Menu Functionality	

CREATION DATE:
	May 1, 2009

REVISION HISTORY:
	

STATUS OF THIS DOCUMENT:
	This is a operational document.

DEPENDANCIES:
	DropDownMenu.js -- Provides mouse over background change and sub menu display. 

MAINTAINER:
	Mike Van Alstine
	m v a # L 5 L . b i z

LEGAL NOTICE:
	Distribution of this document is limited.
	Copyright (C) The VAMM Group 2009. All Rights Reserved.
*/

/*
==================================
Header Catagory -- Always Visiable
==================================
*/
#MM
{	margin: 0;
	padding: 0;
	z-index: 1000;
}

#MM li
{	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	font: 12px arial;
	
}

#MM li a
{	
	display: block;	
	width: 137px;
	height: 40px;	
	padding-top: 2px;	
	color: #000000;
	text-align: center;
	text-decoration: none;		
	background-image: url(../Images/SiteDesign/BackGrounds/ButtonBack.jpg);
	background-position: top left;
	background-repeat:repeat-x;	
}

#MM li a:hover
{		
	background-image: url(../Images/SiteDesign/BackGrounds/ButtonBackOver.jpg);
	background-position: top left;
	background-repeat:repeat-x;
}

/*
==================================
Sub Catagory -- Visiable on mouse over
==================================
*/
#MM div
{	
	position:absolute;
	visibility: hidden;
	margin: 0;
	padding: 0;
	background: #CCCCCC;
	border: 1px solid #999999;
	font: 11px arial;	
}

#MM div a
{	position: relative;	
	display: block;
	margin: 0;
	padding-left: 5px;
	padding-top: 5px;
	width: 120px;
	height: 30px;
	white-space: wrap;
	text-align: left;
	text-decoration: none;
	background: #CCCCCC;
	color: #000000;
	
}

#MM div a:hover
{
	background: #999999;
	color: #FF0000;
}
