#menu ul { /* all lists */
	padding: 0px;
	margin: 0px;
	list-style: none;
}
#menu a {
	color: #FFFFFF;
	text-decoration: none;	
	text-align:left;
}
#menu li { /* all list items */
	float: left;
	position: relative;
	margin-left:0px;
	list-style: none;
	padding-left: 13px;

	padding-top:4px;
	padding-bottom:2px;
	padding-right:13px;
	color: #FFFFFF;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	font-size:10px;
	height:11px;
}

#menu li ul li {
	border: none;
	width: 10em;
	background-color: #E1A5A5;
	padding-top: 2px;
	padding-bottom: 2px;
	width:74px;
}
#menu li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 18px;
	left: 0px;
	border: 1px solid #990033;
}

#menu li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	
	
}

#menu li:hover ul, #menu li.over ul { /* lists nested under hovered list items */
	display: block;
}
#menu li.first {
	border-left: 0;
	padding-left:0;
	margin-left:0px;
	}

