div#mymenu {
	background: #630;
	padding: 0;
	margin: 0;
	height: 22px;
	padding-left: 30px;
	/*border: 1px solid green;*/
}

/*this is the css for the horizontal version*/
.horizontal ul{
	border: none;
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.horizontal ul li{
/* the line below only shows in IE 5/5.5/6 on Windows
   as demonstrated: http://www.noscope.com/journal/2005/01/showing-css-to-ie-only-the-underscore-hack
   this hack prevents the parent menu item from increasing in height when a child menu appears */
	_border: 1px solid #630;
	float: left;
	position: relative;
}
.horizontal ul li a{
	text-decoration: none;
	margin: 0;
	line-height: 1.2em;
	padding: 3px 5px 3px 5px;
	overflow: hidden;
	display: block;
}
.horizontal li li{
	float: none;
}
.horizontal li li a {
	width: 125px;
	text-align: left;
}
.horizontal ul li ul{
	position: absolute;
	top: 2.25em;
	left: -1px;
	margin-top: -4px;
}
.horizontal ul ul ul{
	width: 130px;
	top: 0px;
	left: 136px;
	margin-top: 0;
}
.horizontal.left ul ul ul,.horizontal .left ul ul{
	top: -1px;
	left: -128px;
}
div.horizontal ul li.pixelfix ul{
	left: 0;
}
div.horizontal ul li.pixelfix ul ul{
	left: 128px;
}
/*here we use a little CSS to make a basic/backup dropdown menu in modern browsers *cough* not IE6 or less *cough* if javascript is disabled.Flickering never happens in these browsers*/
.mlmenu li ul{
	display: none;
}
.mlmenu li:hover>ul{
	display: block;
}
/*This section makes the menu not work in non-javascript enabled browsers by not showing the menu by default-This can be worked around by making top level links point to a sitemap*/
.accessible li ul{
	display: block;
}
/*colors for menu*/
.messiaen li a{
	background-color: #630;
	color: white;
}
.messiaen li a:hover,.blackwhite li a.first:hover,.blackwhite .trail a.hover{
	background-color: black;
	color: white;
}
.messiaen li:first-child>a:hover{
	background-color: black;
	color: white;
}


