#menu {
	position: absolute;
	top: 200px;
	left: 0px;
	width: 100px;
	border-width: 0px 0px 0px 0px;
        border-color: #0000ff;

	z-index: 500;
}

#menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#menu a, #menu h2, #menu h3 {
	font: bold 12px/16px arial, helvetica, sans-serif;
	display: block;
	border-width: 0px 0px 1px 0px;
	border-style: solid;
	border-color: #ccc #888 #555 #bbb;
	margin: 0;
	padding: 2px 3px;
}

#menu h2 {
	color: #fff;
	text-decoration: underline;
}

#menu h3 {
        color: #fff;
	border-width: 0px 0px 0px 0px;
	font-style: italic;
}



#menu a {
	color: #FFFF0A;
	background: #220301  0 0 no-repeat fixed;
	text-decoration: none;
}

#menu a:hover {
	color: #000;
        /*background: #282891;*/
        background: #220301  0 0 no-repeat fixed;
}

#menu li {
	position: relative;
}

#menu ul ul ul {
	position: absolute;
	top: 0;
	left: 100%;
	width: 100%;
	background: #220301;	/* to make submenues appear, otherwise it is transparent to the current of the text box */
}

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;}

