﻿/* remove the bullets, padding and margins from the lists */
.BottomMenu {
	background-color: #FF0000;
	width: 735px;
}
.BottomMenu ul{
	list-style-type: none;
	padding: 0;
	margin: 0;
	height: 20px;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.BottomMenu li{
	float: left;
	position: relative;
	z-index: 100;
}

/* use the table to position the dropdown list */

/* style all the links */
.BottomMenu a, .BottomMenu :visited {
	display: block;
	width: 110px;
	padding: 2px 0 2px 0;
	color: #000;
	background: #FF0000;
	text-decoration: none;
	margin-right: 1px;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	height: 15px;
	vertical-align: middle;
	font-weight: bold;
}

/* style the links hover */
.BottomMenu :hover{
	color: #000000;
	background: #FF9966;
}

/* hide the sub level links */
/* make the sub level visible on hover list or link */
.BottomMenuul li:hover ul,
.BottomMenu ul a:hover ul{
	visibility: visible;
}
.BottomMenu2 {
	text-align: center;
	width: 445px;
}
