ul#menu /* this is the main list */
{
	float: left;
	width: 115x;
	padding: 10px;
	margin: 0px;
	border: 0px;
	vertical-align: top;
	
	list-style: none;
	height: 100%;
}

ul#menu li /* submenu list item */
{
	padding: 0px;
	/*margin-top: 5px;	*/
	margin-bottom: 8px;
	display: inline;
}

ul#menu ul /* submenu list */
{
	display: none;	/* hide it until it's clicked on */
	list-style: none; /* no bullets */
	margin-left: 10px;
	padding: 0px;
}

/* added for suckerfish type javascript */
ul#menu li.open ul
{
	display: block;
}

ul#menu a
{
	display: block;  
	text-decoration: none;
	font-weight: bold;
	color: #660000;
	padding: 0px;
	margin-top: 2px;
	margin-left: 2px;
	margin-right: 2px;
	margin-bottom: 8px;	

}

ul#menu a:hover
{
	/*background-color: navy;*/
	/*border-bottom: 1px dashed black;*/
	/*border-top: 1px dashed black;*/
	text-decoration: underline;
}

ul#menu a.selected
{
	color: blue;
}