﻿
.menu {
	background-color:#920d11; 
	background-image: url(images/topmenu-bg.gif);
	background-repeat: repeat-x;
	height:29px; 
	position:relative; 
	z-index:100;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}
.menu ul ul {
	width:159px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	background-image: url(images/topmenu-link-separator.gif);
	background-repeat: no-repeat;
	float:left;
	width:160px;
	position:relative;
}
/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	color:#c09f8e; 
	height:29px; 
	padding-left:10px; 
	line-height:29px; 
	text-decoration:none; 
	width:149px; 
	text-align: center; margin-left:1px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:29px;
	left:0; 
	width:159px;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	background:#920d11; 
	border-bottom: 1px solid #74080b;
	color:#c09f8e; 
	height:auto; 
	line-height:1em; 
	padding:5px 10px; 
	width:138px;
	border-width:0 1px 1px 1px;
}
/* style the top level hover */
.menu a:hover, 
.menu ul ul a:hover{
	color:#ffffff; 
	background-image: url(images/topmenu-link-hover-bg.gif);
	background-repeat: repeat-x;
}
.menu :hover > a, 
.menu ul ul :hover > a {
	color:#ffffff; 
	background-image: url(images/topmenu-link-hover-bg.gif);
	background-repeat: repeat-x;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{
	visibility:visible; 
}

