/* remove bullets and list indents */
			#menu ul {
				list-style: none;
				margin: 0px;
				padding: 0px;
			}
/* style, color and size links and headings to suit */
			#menu a {
				border: #3c3634 1px solid;
				display: block;
				font: bold 75%/120% Arial,Helvetica,sans-serif;
				margin: 0px;
				padding: 4px;
			}
			#menu a:active {
				background-color: #cc3300;
				color: #ffffff;
			}
			#menu a {
				background-color: #8d9259;
				color: #3c3634;
				text-decoration: none;
			}
			#menu a:hover, #menu a:focus {
				background-color: #cc3300;
				color: #ffffff;
			}
/* make the list elements a containing block for the nested lists */
			#menu li, #menu li:hover {
				position: relative;
			} 
			#menu ul ul, #menu ul ul ul {
				position: absolute;
				top: 0px;
				left: -100%;	/* to position them to the right of their containing block */
				width: 100%;	/* width is based on the containing block */
			}
			#menu ul ul, #menu ul ul ul, #menu ul li:hover ul, #menu ul li:hover ul ul, #menu ul ul li:hover ul {
				display: none;
			}
			#menu ul li:hover ul, #menu ul ul li:hover ul {
				display: block;
			}

