﻿/* remove the bullets, padding and margins from the lists */
.menu ul{
	font-family: "Kristen ITC";
	font-size: small;
	text-align: center;
	text-decoration: none;
	list-style-type: none;
	width: 800px;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
	float: left;
	position: relative;
	z-index: 100;
	height: 50px;	
	width:200px;
}

/* use the table to position the dropdown list */
.menu table{
	position: absolute;
	border-collapse: collapse;
	z-index: 100;
	left: -40px;
	width: 200px;
}

/* style all the links */
.menu ul:visited {
	display: block;
	font-size: small;
	color: #FFFFFF;
	background: #800000;
	text-decoration: none;
	text-align: center;
	height: 35px;	
	width:200px;
}
.menu a {
	border: 5px #FFFFFF outset;
	display: block;
	font-size: small;
	color: #FFFFFF;
	background: #800000;
	text-decoration: none;
	text-align: center;
	height: 35px;
}
/* style the links hover */
.menu a:hover{
	margin: 0px;
	border: 5px #FFFFFF outset;
}
.menu ul ul a:hover{
	margin: 1px;
	border: 4px #000000;
	border-style: outset inset inset outset;
	background-color: #993333;
}
/* hide the sub level links */
.menu ul ul {
	visibility: hidden;
	width: 200px;
}
/* make the sub level visible on hover list or link */
.menu ul a:hover ul{
	visibility: visible;
}
.menu ul li:hover ul{
	visibility:visible;	
}
