
/******************************/
/*                            */
/* Drop Down Menus            */
/*                            */
/* (c) Tektreve Systems, Inc. */
/*                            */
/******************************/



/* Removes bullets, all padding and margins from list items */
.menu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	}

/* Makes top level links horizontal */
.menu li {
	float: left;
	position: relative;
	z-index: 100;
	}


/* Required so that IE 6 will work properly */
.menu table {
	position: absolute;
	border-collapse: collapse;
	z-index: 80;
	left: -2px;
	top: 15px;
	}



/* Style for the top level menu */
.menu a, .menu a:visited {
	display: block;
	padding: 0 20 0 4;
	font-family: verdana, arial, helvetica, sans-serif;
	font-size: 10pt;
	font-weight: bold;
	text-decoration: none;
	text-align: left;
	color: #4F7E2F;
	}

/* Top level menu highlight */
.menu a:hover, .menu ul ul a:hover {
	background-color: #4F7E2F;
	text-decoration: none;
	text-align: left;
	color: #FFFFFF;
	}



/* Style for the drop down menus */
.menu ul ul a, .menu ul ul a:visited {
	font-size: 10pt;
	color: #4F7E2F;
	background-color: #AFDE8F;
	width: 150;
	height: auto;
	padding: 0 0 2 4;
	border-right: solid 1px;
	border-left: solid 1px;
	}

/* Style for the drop down highlight */
.menu ul ul a:hover {
	color: #FFFFFF;
	background-color: #4F7E2F;
	border-right: solid 1px #4F7E2F;
	border-left: solid 1px #4F7E2F;
	}

.menu_top { border-top: solid 1px #4F7E2F; }
.menu_bot { border-bottom: solid 1px #4F7E2F; }



/* Hide drop down menus */
.menu ul ul {
	visibility: hidden;
	position: absolute;
	width: 100;
	height: 0;
	}



/* Display drop down menus when hover on first level list or on link */
.menu ul li:hover ul,
.menu ul a:hover ul {
	visibility: visible;
	color: #FFFFFF;
	}




