﻿/* remove the bullets, padding and margins from the lists */
.menu ul{
	list-style-type: none;
	padding: 0px;
	margin: 0px;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
}
/* 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;
}
/* style all the links */
/*the below commented out lines are for different formatting for visited links*/
/*.menu :visited {
	display: block;
	font-size: small;
	width: 110px;
	padding: 7px 0 0 0;
	color: #000;
	text-decoration: none;
	margin-right: 0px;
	height: 23px;
	text-align: center;
	font-family: Tahoma;
	background-image: url('../../../images/MenuButton1(2(2)).png');
	background-repeat: no-repeat;
}*/
.menu ul li a {
	border: 1px #F36F21;
	border-style: solid solid solid solid;
	font-size: small;
	width: 121px;
	color: #000000;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	background-image: url('../images/MenuBackNormal.png');
	height: 20px;
	padding-top: 3px;
	background-repeat: repeat-x;
	display: block;
}
/* style the links hover */
.menu ul li :hover{
	color: #000000;
	background-image: url('../images/MenuBackHover.png');
	background-color: #F8A472;
	text-decoration: none;
	background-repeat: repeat-x;
}
.menu ul li ul li a {
	border: thin #F36F21;
	width: 116px;
	border-style: none solid solid solid;
	background-image: none;
	background-color: #F48846;
	height: auto;
	padding-bottom: 3px;
	padding-left: 5px;
}
/* style the links hover */
.menu ul li ul li :hover{
	text-decoration: none;
	background-color: #F9B388;
	background-image: none;
}
/* hide the sub level links */
.menu ul ul {
	visibility: hidden;
	position: absolute;
	width: 123px;
	height: 20px;
	text-align: left;
}
.menu ul ul ul {
	visibility: hidden;
	position: absolute;
	width: 123px;
	height: 20px;
	margin-left: 122px;
	margin-top: -24px;
	border-top: thin #F36F21;
	border-style: solid none none none;
}
.menu ul li ul li ul li a {
	border: thin #F36F21;
	width: 115px;
	border-style: none solid solid solid;
	background-image: none;
	background-color: #F8A472;
	height: auto;
	padding-bottom: 3px;
	padding-left: 5px;
}

.menu ul li:hover ul{
visibility:visible;
}
.menu ul li:hover ul ul{
visibility: hidden;
}
.menu ul ul li:hover ul{
visibility: visible;
}



