/* CSS Document */

#menu {
width: 164px; /* set width of menu */
background: #D0DDBF;
padding-left:10px;
padding-top:10px;
} 

#menu ul { /* remove bullets and list indents */
list-style: none;
margin: 0;
padding: 0;
}

/* style, color and size links and headings to suit */
#menu a, #menu h2 {
	display: block;
	border-bottom: 1px solid #bccea6;
	margin: 0;
	padding: 5px 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bolder;
	text-decoration: none;
}

#menu h2 {
color: #fff;
background: #D0DDBF;
text-transform: uppercase;
}

#menu a {
color: #829766;
background: #D0DDBF;
text-decoration: none;
}

#menu a:hover {
color: #FFFFFF;
background: #9ecde3;
}

#menu li {
/* make the list elements a containing block for the nested lists */
position: relative;
} 

#menu ul ul ul {
position: absolute;
top: 0;
left: 100%; /* to position them to the right of their containing block */
width: 100%; /* width is based on the containing block */
}

div#menu ul ul ul,
div#menu ul ul li:hover ul ul
{display: none;}

div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{display: block;}

<!--[if IE]>
<style type="text/css" media="screen">
body {
behavior: url(/images/csshover.htc); /* call hover behaviour file */
font-size: 100%; /* enable IE to resize em fonts */
} 
#menu ul li {
float: left; /* cure IE5.x "whitespace in lists" problem */
width: 100%;
}
#menu ul li a {
height: 1%; /* make links honour display: block; properly */
} 

#menu a, #menu h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bolder;
	text-decoration: none; 
/* if required use em's for IE as it won't resize pixels */
} 
</style>
<![endif]-->
