/*this is the css for the vertical version*/
.vertical ul{
	list-style-type: none;
	padding: 0;
	width: 200px;
	margin: 0;
	position: relative;
}
.vertical li a{
	display: block;
	width: 205px;
	text-decoration: none;
	padding: 5px 5px;
	border: 1px dotted;
	border-top: 0px;
	text-align: left;
}
.vertical li{
	position: relative;
	border-bottom: 1px solid transparent;
	margin-bottom: -2px;
} 
.vertical li:first-child>a{
	border-top: 3px solid;
}
.vertical a.first{
	border-top: 0px solid;
}
.vertical li ul{
	position: absolute;
	top: 0;
	left: 216px;
}
.vertical.left ul ul ul,.vertical .left ul{
	left: -203px;
}

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

/*Code to show an element has a child*/
.mlmenu.plus li a:first-child:not(:last-child):after{
	content: '&raquo;';
}
.plus a span{
	padding-left: 1em;
	text-align: right;
}
.noshow{
	visibility: hidden;
}

/*colors for menu*/
.blackwhite li a{
	color: #b1a25d;
	border-color: #b1a25d;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	font-size: 12pt;
	background: #090909;
	letter-spacing: 1px;
	font-style:normal;
}
.blackwhite li a:hover,.blackwhite li a.first:hover,.blackwhite .trail a.hover{
	color: black;
	background: #b1a25d;
	border-color: #b1a25d;
	font-weight: bold;
}
.blackwhite li:first-child>a:hover{
	color: black;
	background: #b1a25d;
	border-color: #b1a25d;
	font-weight: bold;
}
.blackwhite ul{
	border-color: #b1a25d;
}
