.dropdown a:link{
	text-decoration:none;
	color:#000;
}
.dropdown a:visited{
	text-decoration:none;
	color:#000;
}
ul.dropdown, ul.dropdown ul {
	margin:0;
	padding:0;
	padding-left: 0px;           /* stops the usual indent from ul */
	cursor: default;             /* gives an arrow cursor */
	margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
}
ul.dropdown li {
	background-image:url(../images/Template/TemplateMenuButtonBackground.gif);
	background-repeat:repeat-x;
	padding-top:7px;
	width:126px;
	height:28px;
	text-align:center;
	float:left;
	list-style-type: none;       /* removes the bullet points */
	margin-right:2px;           /* Opera 7 puts large spacings between li elements, also altered for Mx Cranes */
	position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
								  the lack of offset makes these appear normal, but it will make a difference
								  to the absolutely positioned child blocks */
}
ul.dropdown li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
	display: none;               /* hides child menu blocks - one of the most important declarations */
	position: absolute;          /* make child blocks hover without leaving space for them */
	top:32px;
	left: -1px;
	width:12px;
}
ul.dropdown ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
	display:block; /* specially to go with the className changes in the behaviour file */
	padding-left:1px;
	padding-bottom:1px;
	background-color:rgb(141,109,67);
}
ul.dropdown li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
								  the > targets only the child ul, not any child uls of that child ul */
	display: block;              /* makes the child block visible - one of the most important declarations */
	padding-left:1px;
	padding-bottom:1px;
	background-color:rgb(141,109,67);
	white-space:nowrap;
	width:128px;
}
/* and some link styles */
ul.dropdown ul li{display:block; height:22px; margin:0;} /* Required for other browsers lists, not IE7. Replaces block on anchor which IE7 stuffs up*/
ul.dropdown ul li a{width: 100%;}
ul.dropdown li a {color:#000;}
ul.dropdown li a:hover, ul.dropdown li a.CSStoHighLink {color:#000;}
ul.dropdown li:hover > a {color:#000;} /* supports links in branch headings - should not be display: block; */