
/* DROPDOWN MENUS
Custom version of Suckerfish Dropdowns by Patrick Griffiths and Dan Webb.
*/
li.droplist, li.droplist ul { /* width of menus */
	width: 100px;
}
li.droplist li {
	width: 100%;
}
.dropmenu a.droptop { /* top of list */
	border: 1px solid black;
}
.dropmenu, .dropmenu ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	z-index: 5;
}
.dropmenu a {
	display: block;
	text-decoration: none;
	padding: 2px 6px;
}
.dropmenu li { /* all list items */
	float: left;
	padding: 0;
	margin: 0;
	background: white;
}
.dropmenu li ul { /* second-level lists */
	position: absolute;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	border: 1px solid black;
}
.dropmenu li:hover ul, .dropmenu li.drophover ul { /* lists nested under hovered list items */
	left: auto;
}
.dropmenu a:hover { /* hovered list items */
	background: #fff4c9;
}

/* MAIN MENU */
li.droplist, li.droplist ul { /* width of menus */
	width: 65px;
}
#dropmain a {
	color: black;
	font-size: 12px;
	line-height: 16px;
}
#dropmain a.droptop {
	color: orange;
	font-size: 16px;
	line-height: 16px;
	background: black;
}
#dropmain li.droplist {
	border: 1px solid orange;
	margin-right: 7px;
}
#dropmain ul li { /* all list items */
	border-top: 1px solid black;
}
.dropmenu li ul { /* second-level lists */
	border: 1px solid orange;
	border-top: 1px solid brown;
	margin-left: -1px;
	margin-top: 1px;
}
#dropmain a.droptop:hover {
	color: #C33;
}
#dropmain a:hover { /* hovered list items */
	background: #fff4d9;
	color: #C33;
}
#dropmain li:hover ul, #dropmain li.drophover ul { /* lists nested under hovered list items */
	opacity: 0.96;
}

/* IE6 Fix: Doesn't support width:auto */
* html #dropmain li.droplist {
	margin-right: 4px;
}
* html #dropmain a {
	width: 97%;
	padding: 3px;
	border: none;
}