/* General Code */

body {
	color:#D6D6CE;
	background:#000000;
	height:100%;
}

a:link {
	color: #D6D6CE; 
	text-decoration: underline; 
}
a:active {
	color: #D6D6CE; 
	text-decoration: underline; 
}
a:visited {
	color: #D6D6CE; 
	text-decoration: underline; 
}
a:hover {
	color: #FFFFFF; 
	text-decoration: none; 
}

/* Drop Down Menu Code */

* {
	padding:0; 
	margin:0;
}
.dropdown {
	float:left; 
	padding-right:0px;
}
.dropdown dt {
	width:140px; 
	color:#D6D6CE; 
	cursor:pointer;
}
.dropdown dt:hover {
	color:#FFFFFF;
}
.dropdown dd {
	position:absolute; 
	overflow:hidden; 
	width:200px; 
	display:none; 
	z-index:200;
}
.dropdown ul {
	width:140px; 
	list-style:none; 
	border-top:none;
}
.dropdown li {
	display:inline;
}
.dropdown a, .dropdown a:active, .dropdown a:visited {
	display:block; 
	padding:5px; 
	text-decoration:none; 
	background:#000000; 
	width:140px; 
	color:#D6D6CE; 
	text-align:center; 
	font-weight:bold;
	font-variant:small-caps;
}
.dropdown a:hover {
	color:#FFFFFF;
}