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

#menu li { /* all list items */
	float: left;
/*	position: relative; */
	cursor: default;
	border: 0px;
	padding:0px;
	margin:0px;
	color: white;
}

li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	padding: 0px;
	margin:0px;
	background-color: #414141;
	/*background: url(images/dropDownNav.jpg) bottom left repeat; */
}

li ul li {
	width: 140px;
}
#menu ul li ul {
padding:5px;
}
/*#menu li ul li {
	width:155px; 
}*/
#menu li ul li a{
	font-size:10px;
	color:#F4F2D3;
}
#menu li ul li a:hover{
	font-size:10px;
	color:#ccc;
}
/* 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 
	top: auto;
	left: auto;
} */

li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}
li.top {float: left;
	position: relative;
	cursor: default;
	border: 0px;
/*	background-color:#CCEAFA; */
}
ul.top {padding: 0;
	
	float:left;
	margin: 0;
	list-style: none;
}
li li {
	display: block;
	float: none;
	background-color: transparent;
	border: 0;
	padding:0px;
	margin:0px;
}