/* ############ DROPDOWN MENU STYLES ############ */

#dropdown, #dropdown ul { 
	padding: 0; 
	margin: 0; 
	margin-left: 1px;
	list-style: none; 
	float : left;
	width : 180px;
	background-color: #FFCC99;
	font-size: 0.8em;

}
 
#dropdown {
	border-bottom: 1px solid #000000;
}

* html #dropdown {
	/* Applies only to IE */
	border-top: none;
}

#dropdown a { 
	display: block; 
	width: 166px; 
	text-decoration: none;
	color: #111;
}
 
#dropdown a:hover { 
	color: #000000;
}
 
#dropdown li { 
	position: relative;
	float: left; 
	width: 166px; 
	border-top: 1px solid #000000;
	padding-left: 5px;
	padding-right: 10px;
	padding-top: 3px;
	padding-bottom: 3px;
	line-height: 1.2em;
}

#dropdown li.haschild { 
	background: transparent url(dropdownarrow.gif) no-repeat bottom right;
}

#dropdown li ul {
	position: absolute;
	width: 180px;
	left: -999em;
	margin-left: 176px;
	margin-top: -2em;
	border-right: 1px solid #666;
	border-bottom: 1px solid #666;
	border-left: 1px solid #666;
	z-index: 99;
}

#dropdown li ul li {
	line-height: 1.1em;
	font-size: 1.1em;
	border-top: 1px solid #666;
}

#dropdown li:hover ul, #dropdown li.sfhover ul {
	left: auto;
}

#dropdown li.haschild:hover, #dropdown li.sfhover { 
	background: transparent url(dropdownarrow_over.gif) no-repeat bottom right;
	%position: static;
}

#dropdown li .subtitle {
		display: block; 
		font-size: .8em;
		font-weight: normal;
		font-style: italic;
}

li.morelinks {
	color: #000;
	font-weight: bold;
	font-style: italic;
}

/* ############ END DROPDOWN MENU STYLES ############ */
