/* menu.css */

/* style the outer div to give it width */
.menu {
	width: 600px;
	height: 30px;
	font-family: Verdana, Geneva, sans-serif;
	font-size:12px;
	color: #FFF;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none; 
	height:30px; 
	background:#fff;
}

/* style the sub-level lists */
.menu ul ul {
	width:100px;
}

/* float the top list items to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu ul li {
	float: left;
	height:30px;
	line-height:30px;
}

/* style the sub level list items */
.menu ul ul li {
	display:block;
	width:100px;
	height:auto;
	position:relative;
	line-height:1px;
}

/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	float:left;
	height:100%;
	font-size:12px;
	text-decoration:none;
	color: #CCC;
	background:#fff;
	padding:0 1em 0 1em;
}

/* style the sub level links */
.menu ul ul a, .menu ul ul a:visited {
	display:block;
	background:#93342f; 
	color:#fff;
	width:12em;
	line-height:1em; 
	padding:0.5em 1em;
}

.menu ul table ul a, .menu ul table ul a:visited  {
	width:14em; 
	w\idth:12em;
}


/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {
	position:absolute; 
	left:0; 
	top:0; 
	font-size:1em; 
	z-index:-1;
}
.menu ul ul table {
	lef\t:-1px;
}

.menu ul ul table ul.left {
	margin-lef\t:2px;
}

.menu li:hover {
	position:relative;
}

* html .menu a:hover {
	position:relative;
}


/* style the sub level 1 background */
.menu ul :hover a.sub1 {
	background:#93342f;
}

/* style the sub level 2 background */
.menu ul ul :hover a.sub2 {
	background:#93342f;
}

/* style the level hovers */
/* first */
.menu a:hover {
	color:#fff;
	background:#93342f;
}

.menu :hover > a {
	color:#fff;
	background:#93342f;
}

/* second */
.menu ul ul a:hover{
	color:#fff;
	background:#93342f;
}

.menu ul ul :hover > a {
	color:#fff;
	background:#93342f;
}



/* 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:30px;
	left:0;
	width:0em;
}

/* 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; 
	height:auto; 
	padding-bottom:3em; 
}