/* CSS Document */
#menu {
width: 100%;
background: #eee;
float: left;
}

#menu ul {
list-style: none;
margin: 0;
padding: 0;
width: 111px;
float: left;
}

#menu a, #menu h2 {
font: bold 11px/16px arial, helvetica, sans-serif;
display: block;
border-width: 1px;
border-style: solid;

margin: 0;
padding: 2px 3px;

color: #fff;
background: #b54747;
border-right-color: #fff;
border-bottom-color: #fff;
border-left-color: #fff;
border-top-color: #fff;
}

#menu a:hover {
background: #d7ad00;
}

#menu li {position: relative;}

#menu ul ul {
	position: absolute;
	z-index: 500;
	left: 0px;
}


div#menu ul ul {
display: none;
}

div#menu ul li:hover ul {
display: block;
}

