﻿#menu {
	width: 13.5em; /* set width of menu */;
	background: #eee;
	border-right-style: solid;
	border-right-width: 1px;
	border-right-color: #E0E0E0;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: #E0E0E0;
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: #E0E0E0;
}
#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 {
font: bold 12px arial;
display: block;
border-width: 1px;
border-style: solid;
border-color: #f1f1f1;
margin: 0;
padding: 2px 3px;
}

#menu h2 {
	color: #000080;
	background: #f1f1f1;
	text-transform: none;
	text-indent: 10px;
	font-family: Arial;
	font-size: large;
	font-weight: bold;
}

#menu a {
color: #000;
background: #efefef;
text-decoration: none;
}

#menu a:hover {
	border: 1px solid #C0C0C0;
	color: #a00;
	background: #fff;
}
#menu li {
	/* make the list elements a containing block for the nested lists */
position: relative;
	text-indent: 20px;
	font-family: Arial;
	font-size: 10px;
	font-weight: bold;
	color: #000000;
}

#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">
 
#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: normal  12px/1.5em Arial; 
/* if required use em's for IE as it won't resize pixels */
}
</style>
<![endif]-->

</style>
-->