#menu {
	width: 150px;
	margin-top: 20px;
	margin-bottom: 100px;
} 

#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: #fff; /* text color */
	font-weight: normal;
	text-align: left;
	padding-left: 4px;
	text-decoration: none;
	width: 100%; 
	border-bottom: solid 1px #fff; 
	margin-bottom: 6px;
	display: block;
	-moz-box-sizing:border-box;box-sizing:border-box;
}

#menu ul li a:hover
{
	background: #fff;
	color: #000;
	text-decoration: none;
	border-bottom: solid 1px #fff;
}


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

/* Look and Feel of the SUB navigation */

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

#menu ul ul li:hover
{

	background: #fff;
}

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

#menu ul ul li a:hover
{
	width: 100%;
	text-decoration: none;
	color: #000099;
	background: #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;}
