/* ===================================== suckerfish dropdowns =========================================  */	

#dropdownmenu {
/*	width: 100%; */
	float: left;
/*	margin-left: 100px; */
	color: #FFF;
	background-color: inherit;
	text-align: left;
	font-size: 100%;
	font-family: Arial, Helvetica, sans-serif;		
	font-weight: bold;	
/*	border: 1px solid #BBB;	*/
}

#dropdownmenu li#home-menu {
	margin-left: 7px;
/*	margin-right: 122px; */
	margin-right: 90px;
}




#dropdownmenu ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

#dropdownmenu a {
	width: 100%;
/*	height: 21px; */
	display: block;
	color: #FFF;
/*	line-height: 26px; */
	line-height: 2em;
	background-color: transparent;
	text-decoration: none;
/*	border-right: 1px solid #999;		*/
/*	padding: 5px; */
	text-align: center;		
}

#dropdownmenu a:hover,
#dropdownmenu a:active {
	color: #FFF;
	background-color: #837F9F;
}	

#dropdownmenu li { /* all list items */
	margin: 0;
	float: left;
	color: #FFF;
/*	text-transform: uppercase; */
}

#dropdownmenu li ul { /* second-level lists */
	padding: 0;
	margin: 0;
	position: absolute;
	color: #FFF;
	background-color: #29295E;	
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	border: 1px solid #BBB;
	border-bottom: none;
/*	border-bottom: 1px solid #666;				*/
}

#dropdownmenu li a {
	color: #FFF;
	background-color: transparent;
}

#dropdownmenu li ul li a {
	width: 13em; /* width needed or else Opera goes nuts */
	color: #FFF;
	background-color: transparent;
	text-align: left;
	border-right: none;		
/*	border-right: 1px solid #666;		*/
	padding: 7px 10px 8px 10px;
/*	line-height: 15px;	*/
	line-height: 1.2em;
}

#dropdownmenu li ul li { /* all list items */
	padding: 0;
	margin: 0;
	float: none;	
	color: #FFF;
	text-transform: none;
	background-color: transparent;
/*	border-color: #A9A9A9;
	border-width: 1px; */
	border-bottom: 1px solid #999;

}

#dropdownmenu li:hover ul,
#dropdownmenu li.sfhover ul { /* lists nested under hovered list items */
	left: auto;

}




body.databases-page #dropdownmenu li#databases-menu,
body.home-page #dropdownmenu li#home-menu,
body.home-front-page #dropdownmenu li#home-menu,

body.interest-groups-page #dropdownmenu li#interest-groups-menu,
body.comminfo-page #dropdownmenu li#comminfo-menu,
body.training-page #dropdownmenu li#training-menu,
body.calendar-page #dropdownmenu li#calendar-menu {
	color: #FFF;
	background-color: #D72E35;
}

