#menu {
   width: 150px;
} 

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

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

/* Look and Feel of the main navigation */

#menu ul li a:link, #menu ul li a:visited
{
	FONT-FAMILY: arial;
	font-size: 12pt;
	color: #11243F; 
	font-weight: normal;
	text-align: left;
	padding-left: 4px;
	text-decoration: none;
	width: 136px; 
	margin-bottom: 6px;
	margin-left: 6px !important;
	margin-left: 0px;
	display: block;
}

#menu ul li a:hover
{
	background-color: #990000;
	text-decoration: none;
	color: #fff;
}


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

#menu ul ul li
{
	border: solid 1px #990000;
	background: #fff;
	width: 100%;
}

#menu ul ul li:hover
{

	background: #990000;
}

#menu ul ul li a:link, #menu ul ul li a:visited
{
	FONT-FAMILY: arial;
	font-size: 12pt;
	text-decoration: none;
	color: #990000;
	width: 100%;
	display: block;
	margin-bottom: 0px;
}

#menu ul ul li a:hover
{
	width: 135px !important;
	width: 100%;
	text-decoration: none;
	color: #fff;
}

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

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