body {
	font-family: Papyrus, fantasy;
	color: #306;
	padding: 1em;
	text-align: center;
}

a { 
	text-decoration: none;
	color: #969;
}

a:hover
{	
color: #000;
}

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

li { /* all list items */
	float: left;
	position: relative;
	width: 11em;
	border: solid #969;
	border-width: 1px;
}

li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: -999em;
	background: #FF9;
}

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;
}


#content {
	clear: left;
	padding: 1em;
}