#menu, #menu ul {
	/* width: 520px;  */
	/* width: 428px;  */
	width: 428px;
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: 1;
	text-align: left;
}

* html #menu{ /*IE only rule, to negate the padding below IE includes in menu width.*/
	width: 515px;
}

#menu a {
	display: block;
	width: 100%;
	
	padding: 0.2em 1em;
	border: 1px solid #000;
	background: #dcdcdc;
}

html>body #menu a { /*Non IE rule*/
	width: 100px;
}

#menu li {
	float: left;
	width: 100px;
}

#menu li ul {
	position: absolute;
	background: #dcdcdc;
	width: 100px;
	left: -999em;
}

#menu li:hover ul, #menu li.hover ul {
	left: auto;
}

#content {
	clear: left;
}