
/* Largely stolen from the MK archives.  Thanks, Thae! ;) */	
.dropdown
{
	font-size: 15px;
}
	
.dropdown ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.dropdown li {
	float: left;
	position: relative;
	width: 145px;
	text-align: center;
}

.dropdown li li {
	float: none;
}

.dropdown li ul { /* second-level lists */
	display: none;
	position: absolute;
/*	top: 1.2em; */ /* IE sucks, this is for IE only. */
	left: 0;
}

.dropdown 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;
}

.dropdown li:hover ul, .dropdown li.over ul { /* lists nested under hovered list items */
	display: block;
	background-color: #868478;
	border: 2px solid #1f1e19;
    color: #1f1e19;
	padding: 10px;
}

.dropdown li li a {
	padding: 3px 0 3px 0;
	border: 0;
}

.dropdown a {
	display: block;
	border: 0;
	text-decoration: none;
}

.dropdown a:hover, .dropdown a:visited:hover {
	border: 0;
	background: #afad9c;
}

	#links {
		font-family: Verdana, Arial, sans-serif;
		font-size: 15px;
		background-color: #1f1e19;
		border: 1px solid #1f1e19;
		color: #68665b;
		font-weight: bold;
	}