#menu dl, dt, dd, ul, li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

#menu {
	float:left;
	margin: 0 auto;
	position:absolute;
	z-index:100;
	border-top: 2px;
	border-bottom: 0;
	border-left: 2px;
	border-right: 2px;
	height: 25px;
}

#menu dl {
	float: left;
	width: 150px;
}

#menu dt {
	cursor: pointer;
	text-align: center;
	font-weight: bold;
	background-color: #ccc;
	color:#000;
	border: 1px solid gray;
	margin: 1px;
	height: 25px;
}

#menu dd {
	display: none;
	border: 1px solid gray;
}

#menu li {
	text-align: center;
	background-color: #fff;
	color:#000;
}

#menu li a {
	background-color: #fff;
	color: #000;
	text-decoration: none;
	display: block;
	height: 100%;
	border: 0 none;
}

#menu dt a {
	background-color: #ccc;
	color: #000;
	text-decoration: none;
	display: block;
	height: 100%;
	border: 0 none;
}

#menu li a:hover, #menu li a:focus, #menu dt a:hover, #menu dt a:focus {
	background-color: #eee;
	color:#000;
}